A menu is a list of items displayed above its parent.
When the menu is showing its parent is darkened. Each item can have a sub-menu. The menu object can be used to display a menu on a right click event, in a toolbar, anywhere.
clicked - the user clicked the empty space in the menu to dismiss.dismissed - the user clicked the empty space in the menu to dismiss (since 1.8)default - A main content of the menu itemdefault - label in the menu itemefl.elementary.Menu(Object parent, *args, **kwargs)¶Bases: efl.elementary.__init__.Object
| Parameters: |
|
|---|
callback_clicked_add(func, *args, **kwargs)¶The user clicked the empty space in the menu to dismiss.
callback_clicked_del(func)¶callback_dismissed_add(func, *args, **kwargs)¶the user clicked the empty space in the menu to dismiss
New in version 1.8.
callback_dismissed_del(func)¶close()¶Close a opened menu
Hides the menu and all it’s sub-menus.
first_item¶The first item in the menu
| Type: | MenuItem |
|---|
first_item_get()¶item_add(parent=None, label=None, icon=None, callback=None, *args, **kwargs)¶Add an item at the end of the given menu widget
| Parameters: |
|
|---|---|
| Returns: | Returns the new item. |
| Return type: |
item_separator_add(parent=None)¶Add a separator item to menu under parent.
This item is a Separator.
| Parameters: | parent (Object) – The item to add the separator under |
|---|---|
| Returns: | The created item or None on failure |
| Return type: | MenuSeparatorItem |
items_get()¶last_item_get()¶move(x, y)¶Move the menu to a new position
Sets the top-left position of the menu to (x, y).
Note
x and y coordinates are relative to parent.
| Parameters: |
|
|---|
open()¶Open a closed menu
Show the menu with no child sub-menus expanded.
New in version 1.20.
parent¶The parent for the given menu widget.
| Type: | Object |
|---|
parent_get()¶selected_item_get()¶efl.elementary.MenuItem(MenuItem parent=None, label=None, icon=None, callback=None, cb_data=None, *args, **kargs)¶Bases: efl.elementary.__init__.ObjectItem
add_to(menu)¶icon_name¶The standard icon name of a menu item
Once this icon is set, any previously set icon will be deleted.
| Type: | string |
|---|
icon_name_get()¶icon_name_set(icon)¶index¶Get the position of a menu item
This function returns the index position of a menu item in a menu. For a sub-menu, this number is relative to the first item in the sub-menu.
Note
Index values begin with 0
| Type: | int |
|---|
index_get()¶is_separator¶Returns whether the item is a separator.
See also
| Type: | bool |
|---|
next_get()¶object¶Get the Evas_Object of an Elm_Object_Item
Warning
Don’t manipulate this object!
| Returns: | The edje object containing the swallowed content |
|---|
object_get()¶prev_get()¶selected¶The selected state of the item.
| Type: | bool |
|---|
selected_get()¶selected_set(selected)¶subitems¶A list of item’s subitems.
| Type: | tuple of MenuItem |
|---|
New in version 1.8: Calling del on this property clears the subitems
subitems_clear()¶subitems_get()¶