efl/legacy/elementary/src/lib/elm_combobox.eo

60 lines
1.4 KiB
Plaintext

class Elm.Combobox (Elm.Button, Evas.Selectable_Interface,
Elm.Interface_Atspi_Widget_Action,
Elm.Entry, Elm.Genlist, Elm.Hover)
{
eo_prefix: elm_obj_combobox;
methods {
@property expanded {
get {
[[Returns whether the combobox is expanded.
This will return EINA_TRUE if the combobox is expanded or
EINA_FALSE if it is not expanded.
@since 1.17
]]
return: bool;
}
}
hover_begin {
[[This triggers the combobox popup from code, the same as if the user
had clicked the button.
@since 1.17
]]
}
hover_end {
[[This dismisses the combobox popup as if the user had clicked
outside the hover.
@since 1.17
]]
}
}
implements {
class.constructor;
Eo.Base.constructor;
Evas.Object_Smart.hide;
Evas.Object_Smart.show;
Evas.Object_Smart.add;
Evas.Object_Smart.del;
Evas.Object_Smart.resize;
Elm.Widget.part_text.set;
Elm.Widget.part_text.get;
Elm.Widget.theme_apply;
Elm.Widget.translate;
Elm.Widget.event;
Elm.Button.admits_autorepeat.get;
Elm.Genlist.filter.set;
Elm.Interface_Atspi_Widget_Action.elm_actions.get;
}
events {
dismissed;
expanded;
clicked;
item,selected;
item,pressed;
filter,done;
}
}