PopupMenu displays a list of options. PopupMenu is the typical Control that displays a list of options. They are popular in toolbars or context menus. Add a new checkable item with text "label". An id can optionally be provided, as well as an accelerator. If no id is provided, one will be created from the index. Note that checkable items just display a checkmark, but don't have any built-in checking behavior and must be checked/unchecked manually. Add a new checkable item with text "label" and icon "texture". An id can optionally be provided, as well as an accelerator. If no id is provided, one will be created from the index. Note that checkable items just display a checkmark, but don't have any built-in checking behavior and must be checked/unchecked manually. Add a new item with text "label" and icon "texture". An id can optionally be provided, as well as an accelerator keybinding. If no id is provided, one will be created from the index. Add a new item with text "label". An id can optionally be provided, as well as an accelerator keybinding. If no id is provided, one will be created from the index. Add a separator between items. Separators also occupy an index. Adds an item with a submenu. The submenu is the name of a child PopupMenu node that would be shown when the item is clicked. An id can optionally be provided, but if is isn't provided, one will be created from the index. Clear the popup menu, in effect removing all items. Return the accelerator of the item at index "idx". Accelerators are special combinations of keys that activate the item, no matter which control is focused. Return the amount of items. Return the icon of the item at index "idx". Return the id of the item at index "idx". Find and return the index of the item containing a given id. Return the metadata of an item, which might be of any type. You can set it with [method set_item_metadata], which provides a simple way of assigning context data to items. Return the submenu name of the item at index "idx". Return the text of the item at index "idx". Return whether the item at index "idx" has a checkbox. Note that checkable items just display a checkmark, but don't have any built-in checking behavior and must be checked/unchecked manually. Return the checkstate status of the item at index "idx". Return whether the item at index "idx" is disabled. When it is disabled it can't be selected, or its action invoked. Return whether the item is a seperator. If it is, it would be displayed as a line. Removes the item at index "idx" from the menu. Note that the indexes of items after the removed item are going to be shifted by one. Set the accelerator of the item at index "idx". Accelerators are special combinations of keys that activate the item, no matter which control is focused. Set whether the item at index "idx" has a checkbox. Note that checkable items just display a checkmark, but don't have any built-in checking behavior and must be checked/unchecked manually. Mark the item at index "idx" as a seperator, which means that it would be displayed as a mere line. Set the checkstate status of the item at index "idx". Sets whether the item at index "idx" is disabled or not. When it is disabled it can't be selected, or its action invoked. Set the id of the item at index "idx". Sets the metadata of an item, which might be of any type. You can later get it with [method get_item_metadata], which provides a simple way of assigning context data to items. Sets the submenu of the item at index "idx". The submenu is the name of a child PopupMenu node that would be shown when the item is clicked. Set the text of the item at index "idx". This event is emitted when an item of some id is pressed or its accelerator is activated. This event is emitted when an item of some index is pressed or its accelerator is activated.