MenuItem#
Added in version 2.32.
Superclasses: Object
MenuItem is an opaque structure type. You must access it using the
functions below.
Constructors#
- class MenuItem
- classmethod new(label: str | None = None, detailed_action: str | None = None) → MenuItem#
Creates a new
MenuItem.If
labelis non-Noneit is used to set the “label” attribute of the new item.If
detailed_actionis non-Noneit is used to set the “action” and possibly the “target” attribute of the new item. Seeset_detailed_action()for more information.Added in version 2.32.
- Parameters:
label – the section label, or
Nonedetailed_action – the detailed action string, or
None
- classmethod new_from_model(model: MenuModel, item_index: int) → MenuItem#
Creates a
MenuItemas an exact copy of an existing menu item in aMenuModel.item_indexmust be valid (ie: be sure to callget_n_items()first).Added in version 2.34.
- Parameters:
model – a
MenuModelitem_index – the index of an item in
model
- classmethod new_section(label: str | None, section: MenuModel) → MenuItem#
Creates a new
MenuItemrepresenting a section.This is a convenience API around
new()andset_section().The effect of having one menu appear as a section of another is exactly as it sounds: the items from
sectionbecome a direct part of the menu thatmenu_itemis added to.Visual separation is typically displayed between two non-empty sections. If
labelis non-Nonethen it will be incorporated into this visual indication. This allows for labeled subsections of a menu.As a simple example, consider a typical “Edit” menu from a simple program. It probably contains an “Undo” and “Redo” item, followed by a separator, followed by “Cut”, “Copy” and “Paste”.
This would be accomplished by creating three
Menuinstances. The first would be populated with the “Undo” and “Redo” items, and the second with the “Cut”, “Copy” and “Paste” items. The first and second menus would then be added as submenus of the third. In XML format, this would look something like the following:<menu id='edit-menu'> <section> <item label='Undo'/> <item label='Redo'/> </section> <section> <item label='Cut'/> <item label='Copy'/> <item label='Paste'/> </section> </menu>
The following example is exactly equivalent. It is more illustrative of the exact relationship between the menus and items (keeping in mind that the ‘link’ element defines a new menu that is linked to the containing one). The style of the second example is more verbose and difficult to read (and therefore not recommended except for the purpose of understanding what is really going on).
<menu id='edit-menu'> <item> <link name='section'> <item label='Undo'/> <item label='Redo'/> </link> </item> <item> <link name='section'> <item label='Cut'/> <item label='Copy'/> <item label='Paste'/> </link> </item> </menu>
Added in version 2.32.
- Parameters:
label – the section label, or
Nonesection – a
MenuModelwith the items of the section
- classmethod new_submenu(label: str | None, submenu: MenuModel) → MenuItem#
Creates a new
MenuItemrepresenting a submenu.This is a convenience API around
new()andset_submenu().Added in version 2.32.
- Parameters:
label – the section label, or
Nonesubmenu – a
MenuModelwith the items of the submenu
Methods#
- class MenuItem
- get_attribute_value(attribute: str, expected_type: VariantType | None = None) → Variant | None#
Queries the named
attributeonmenu_item.If
expected_typeis specified and the attribute does not have this type,Noneis returned.Noneis also returned if the attribute simply does not exist.Added in version 2.34.
- Parameters:
attribute – the attribute name to query
expected_type – the expected type of the attribute
- get_link(link: str) → MenuModel | None#
Queries the named
linkonmenu_item.Added in version 2.34.
- Parameters:
link – the link name to query
- set_action_and_target_value(action: str | None = None, target_value: Variant | None = None) → None#
Sets or unsets the “action” and “target” attributes of
menu_item.If
actionisNonethen both the “action” and “target” attributes are unset (andtarget_valueis ignored).If
actionis non-Nonethen the “action” attribute is set. The “target” attribute is then set to the value oftarget_valueif it is non-Noneor unset otherwise.Normal menu items (ie: not submenu, section or other custom item types) are expected to have the “action” attribute set to identify the action that they are associated with. The state type of the action help to determine the disposition of the menu item. See
ActionandActionGroupfor an overview of actions.In general, clicking on the menu item will result in activation of the named action with the “target” attribute given as the parameter to the action invocation. If the “target” attribute is not set then the action is invoked with no parameter.
If the action has no state then the menu item is usually drawn as a plain menu item (ie: with no additional decoration).
If the action has a boolean state then the menu item is usually drawn as a toggle menu item (ie: with a checkmark or equivalent indication). The item should be marked as ‘toggled’ or ‘checked’ when the boolean state is
True.If the action has a string state then the menu item is usually drawn as a radio menu item (ie: with a radio bullet or equivalent indication). The item should be marked as ‘selected’ when the string state is equal to the value of the
targetproperty.See
set_action_and_target()orset_detailed_action()for two equivalent calls that are probably more convenient for most uses.Added in version 2.32.
- Parameters:
action – the name of the action for this item
target_value – a
Variantto use as the action target
- set_attribute(attributes)#
Sets or unsets an attribute on
menu_item.The attribute to set or unset is specified by
attribute. This can be one of the standard attribute namesMENU_ATTRIBUTE_LABEL,MENU_ATTRIBUTE_ACTION,MENU_ATTRIBUTE_TARGET, or a custom attribute name. Attribute names are restricted to lowercase characters, numbers and ‘-’. Furthermore, the names must begin with a lowercase character, must not end with a ‘-’, and must not contain consecutive dashes.If
format_stringis non-Nonethen the proper position parameters are collected to create aVariantinstance to use as the attribute value. If it isNonethen the positional parameterrs are ignored and the named attribute is unset.See also
set_attribute_value()for an equivalent call that directly accepts aVariant.Added in version 2.32.
- Parameters:
attributes
- set_attribute_value(attribute: str, value: Variant | None = None) → None#
Sets or unsets an attribute on
menu_item.The attribute to set or unset is specified by
attribute. This can be one of the standard attribute namesMENU_ATTRIBUTE_LABEL,MENU_ATTRIBUTE_ACTION,MENU_ATTRIBUTE_TARGET, or a custom attribute name. Attribute names are restricted to lowercase characters, numbers and ‘-’. Furthermore, the names must begin with a lowercase character, must not end with a ‘-’, and must not contain consecutive dashes.must consist only of lowercase ASCII characters, digits and ‘-‘.
If
valueis non-Nonethen it is used as the new value for the attribute. IfvalueisNonethen the attribute is unset. If thevalueVariantis floating, it is consumed.See also
set_attribute()for a more convenient way to do the same.Added in version 2.32.
- Parameters:
attribute – the attribute to set
value – a
Variantto use as the value, orNone
- set_detailed_action(detailed_action: str) → None#
Sets the “action” and possibly the “target” attribute of
menu_item.The format of
detailed_actionis the same format parsed byparse_detailed_name().See
set_action_and_target()orset_action_and_target_value()for more flexible (but slightly less convenient) alternatives.See also
set_action_and_target_value()for a description of the semantics of the action and target attributes.Added in version 2.32.
- Parameters:
detailed_action – the “detailed” action string
- set_icon(icon: Icon) → None#
Sets (or unsets) the icon on
menu_item.This call is the same as calling
serialize()and using the result as the value toset_attribute_value()forMENU_ATTRIBUTE_ICON.This API is only intended for use with “noun” menu items; things like bookmarks or applications in an “Open With” menu. Don’t use it on menu items corresponding to verbs (eg: stock icons for ‘Save’ or ‘Quit’).
If
iconisNonethen the icon is unset.Added in version 2.38.
- Parameters:
icon – a
Icon, orNone
- set_label(label: str | None = None) → None#
Sets or unsets the “label” attribute of
menu_item.If
labelis non-Noneit is used as the label for the menu item. If it isNonethen the label attribute is unset.Added in version 2.32.
- Parameters:
label – the label to set, or
Noneto unset
- set_link(link: str, model: MenuModel | None = None) → None#
Creates a link from
menu_itemtomodelif non-None, or unsets it.Links are used to establish a relationship between a particular menu item and another menu. For example,
MENU_LINK_SUBMENUis used to associate a submenu with a particular menu item, andMENU_LINK_SECTIONis used to create a section. Other types of link can be used, but there is no guarantee that clients will be able to make sense of them. Link types are restricted to lowercase characters, numbers and ‘-’. Furthermore, the names must begin with a lowercase character, must not end with a ‘-’, and must not contain consecutive dashes.Added in version 2.32.
- Parameters:
link – type of link to establish or unset
model – the
MenuModelto link to (orNoneto unset)
- set_section(section: MenuModel | None = None) → None#
Sets or unsets the “section” link of
menu_itemtosection.The effect of having one menu appear as a section of another is exactly as it sounds: the items from
sectionbecome a direct part of the menu thatmenu_itemis added to. Seenew_section()for more information about what it means for a menu item to be a section.Added in version 2.32.
- Parameters:
section – a
MenuModel, orNone
- set_submenu(submenu: MenuModel | None = None) → None#
Sets or unsets the “submenu” link of
menu_itemtosubmenu.If
submenuis non-None, it is linked to. If it isNonethen the link is unset.The effect of having one menu appear as a submenu of another is exactly as it sounds.
Added in version 2.32.
- Parameters:
submenu – a
MenuModel, orNone