efl/src/lib/elementary/elm_menu_item.eo

78 lines
2.6 KiB
Plaintext
Raw Normal View History

class Elm.Menu.Item(Elm.Widget.Item, Efl.Access.Selection,
Efl.Ui.Item, Efl.Ui.Legacy)
2014-09-27 22:14:39 -07:00
{
[[Elementary menu item class]]
legacy_prefix: elm_menu_item;
2014-09-27 22:14:39 -07:00
eo_prefix: elm_obj_menu_item;
2015-05-07 09:32:53 -07:00
methods {
@property icon_name {
2014-09-27 22:14:39 -07:00
get {
2015-07-31 07:23:56 -07:00
[[Get the string representation from the icon of a menu item
2014-09-27 22:14:39 -07:00
Once this icon is set, any previously set icon will be deleted.
To hide icon set it to "".
2015-07-31 07:23:56 -07:00
]]
2014-09-27 22:14:39 -07:00
}
set {
2015-07-31 07:23:56 -07:00
[[Set the icon of a menu item to the standard icon with the
given name.
2014-09-27 22:14:39 -07:00
Once this icon is set, any previously set icon will be deleted.
To hide icon set it to "".
2015-07-31 07:23:56 -07:00
]]
2014-09-27 22:14:39 -07:00
}
values {
icon: string; [[The name of icon object.]]
2014-09-27 22:14:39 -07:00
}
}
index_get @const {
[[Get the item index]]
return: uint; [[Item index]]
2014-09-27 22:14:39 -07:00
}
subitems_clear {
2015-07-31 07:23:56 -07:00
[[Remove all sub-items (children) of the given item
2014-09-27 22:14:39 -07:00
2015-07-31 07:23:56 -07:00
This removes all items that are children (and their descendants)
of the given item $it.
2014-09-27 22:14:39 -07:00
2015-07-31 07:23:56 -07:00
@since 1.8
]]
2014-09-27 22:14:39 -07:00
}
subitems_get @const {
2015-07-31 07:23:56 -07:00
[[Returns a list of $item's subitems.]]
return: const(list<Elm.Widget.Item>); [[A list of $item's subitems]]
2014-09-27 22:14:39 -07:00
}
is_separator @const {
2015-07-31 07:23:56 -07:00
[[Returns whether $item is a separator.]]
return: bool; [[$true if the item is a separator.]]
2014-09-27 22:14:39 -07:00
}
object_get @const {
2015-07-31 07:23:56 -07:00
[[Get the real Evas(Edje) object created to implement the view of
a given menu item.
2014-09-27 22:14:39 -07:00
2015-07-31 07:23:56 -07:00
Warning: Don't manipulate this object!
]]
return: Efl.Canvas.Object; [[The base Edje object containing the
2015-07-31 07:23:56 -07:00
swallowed content associated with the item.]]
2014-09-27 22:14:39 -07:00
}
}
implements {
Efl.Object.constructor;
Efl.Object.destructor;
Elm.Widget.Item.disable;
Elm.Widget.Item.signal_emit;
Elm.Widget.Item.part_text { get; set; }
Elm.Widget.Item.part_content { get; set; }
Efl.Access.children { get; }
Efl.Access.parent { get; }
Efl.Access.role { get; }
2018-02-14 18:14:52 -08:00
Efl.Access.i18n_name { get; }
Efl.Access.state_set { get; }
Efl.Access.Selection.selected_children_count { get; }
Efl.Access.Selection.selected_child { get; }
Efl.Ui.Item.selected { get; set; }
Efl.Ui.Item.prev { get; }
Efl.Ui.Item.next { get; }
2014-09-27 22:14:39 -07:00
}
}