123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- class IUP_SPLIT
- inherit
- IUP_CONTAINER
- redefine
- execute_valuechanged
- end
- IUP_WIDGET_EXPAND
- IUP_WIDGET_WID
- IUP_WIDGET_FONT
- IUP_WIDGET_SIZE
- IUP_WIDGET_RASTERSIZE
- IUP_WIDGET_USERSIZE
- IUP_WIDGET_CLIENTSIZE
- IUP_WIDGET_CLIENTOFFSET
- IUP_WIDGET_POSITION
- IUP_WIDGET_MAXMIN_SIZE
- IUP_WIDGET_CHILD
- IUP_WIDGET_NAME
- IUP_WIDGET_CUSTOM_ATTRIBUTES
- create {ANY}
- split_empty,
- split
- feature {ANY}
- split_empty
-
- local
- p, a_split: POINTER
- do
- a_split := int_split (p, p)
- set_widget(a_split)
- end
-
- split (child1, child2: IUP_WIDGET)
-
- local
- a_split: POINTER
- do
- a_split := int_split (child1.widget, child2.widget)
- set_widget(a_split)
- end
-
- set_auto_hide (state: BOOLEAN)
-
-
- do
- iup_open.set_attribute(Current, "AUTOHIDE", boolean_to_yesno(state))
- end
- is_auto_hide: BOOLEAN
-
- local
- str: STRING
- do
- str := iup_open.get_attribute(Current, "AUTOHIDE")
- Result := yesno_to_boolean(str)
- end
- set_bar_size (size: INTEGER)
-
- require
- size >= 0
- do
- iup_open.set_attribute(Current, "BARSIZE", size.out)
- end
- get_bar_size: INTEGER
-
- local
- str: STRING
- do
- str := iup_open.get_attribute(Current, "BARSIZE")
- Result := str.to_integer
- end
- set_rgb_color (red, green, blue: INTEGER)
-
-
- do
- iup_open.set_attribute(Current, "COLOR", rgb_to_string(red, green, blue))
- end
-
- get_rgb_color: TUPLE[INTEGER, INTEGER, INTEGER]
-
- do
- Result := iup_open.get_rgb(Current, "COLOR")
- end
- set_horizontal_orientation
-
-
-
- do
- iup_open.set_attribute(Current, "ORIENTATION", "HORIZONTAL")
- end
- set_vertical_orientation
-
-
-
- do
- iup_open.set_attribute(Current, "ORIENTATION", "VERTICAL")
- end
- is_horizontal: BOOLEAN
- local
- str: STRING
- do
- str := iup_open.get_attribute(Current, "ORIENTATION")
- if str.is_equal("HORIZONTAL") then
- Result := True
- else
- Result := False
- end
- end
- is_vertical: BOOLEAN
- local
- str: STRING
- do
- str := iup_open.get_attribute(Current, "ORIENTATION")
- if str.is_equal("VERTICAL") then
- Result := True
- else
- Result := False
- end
- end
- set_layout_drag (state: BOOLEAN)
-
-
-
- do
- iup_open.set_attribute(Current, "LAYOUTDRAG", boolean_to_yesno(state))
- end
- is_layout_drag: BOOLEAN
-
- local
- str: STRING
- do
- str := iup_open.get_attribute(Current, "LAYOUTDRAG")
- Result := yesno_to_boolean(str)
- end
- set_min_and_max (min: INTEGER; max: INTEGER)
-
-
-
-
- require
- non_negative: min >= 0
- max >= 0
- less: min <= 1000
- max <= 1000
- min <= max
- local
- size: STRING
- do
- size := min.out
- size.append_string(":")
- size.append_string(max.out)
- iup_open.set_attribute(Current, "MINMAX", size)
- end
- get_min_and_max: TUPLE[INTEGER, INTEGER]
-
- local
- size: STRING
- do
- size := iup_open.get_attribute(Current, "MINMAX")
- Result := components_of_size(size)
- end
- set_show_grip (value: STRING)
-
-
-
-
-
- require
- is_valid_showgrip(value)
- do
- iup_open.set_attribute(Current, "SHOWGRIP", value)
- end
- get_show_grip: STRING
-
- do
- Result := iup_open.get_attribute(Current, "SHOWGRIP")
- end
- set_value (value: INTEGER)
-
-
-
-
- require
- value >= 0
- value <= 1000
- do
- iup_open.set_attribute(Current, "VALUE", value.out)
- end
- get_value: STRING
-
- do
- Result := iup_open.get_attribute(Current, "VALUE")
- end
-
- set_cb_value_changed (act: detachable FUNCTION[TUPLE[IUP_SPLIT], STRING])
- local
- operation: INTEGER
- do
- cb_valuechanged := act
- if cb_valuechanged /= Void then
- operation := 1
- else
- operation := 0
- end
-
- iup_open.set_callback (Current, "VALUECHANGED_CB", "NONEEDED", operation)
- end
-
- is_valid_showgrip (value: STRING): BOOLEAN
- do
- if is_yes_no(value) or
- value.is_equal("LINES") then
- Result := True
- else
- Result := False
- end
- end
- feature {IUP}
- execute_valuechanged: STRING
- do
- if attached cb_valuechanged as int_cb then
- Result := int_cb.item([Current])
- else
- Result := "IUP_DEFAULT"
- end
- end
- feature {NONE}
-
- cb_valuechanged: detachable FUNCTION[TUPLE[IUP_SPLIT], STRING]
-
-
- int_split (child1, child2: POINTER): POINTER
- external
- "C inline use %"eiffel-iup.h%""
- alias
- "return IupSplit ($child1, $child2);"
- end
- end
|