summaryrefslogtreecommitdiffstats
path: root/doc/classes/PopupMenu.xml
diff options
context:
space:
mode:
authorVolTer <mew.pur.pur@abv.bg>2023-04-30 16:26:09 +0200
committerVolTer <mew.pur.pur@abv.bg>2023-05-28 14:24:54 +0200
commit151a4ba6a59f6e965bb56ce8fbc75b14d056fa79 (patch)
treee5d78c825e09d7718156870377155dbc2331518a /doc/classes/PopupMenu.xml
parenta67d37f7cffe7f31c68e971280950d487ea99e2c (diff)
downloadredot-engine-151a4ba6a59f6e965bb56ce8fbc75b14d056fa79.tar.gz
Overhaul the top sections of the class reference (GUI classes)
Diffstat (limited to 'doc/classes/PopupMenu.xml')
-rw-r--r--doc/classes/PopupMenu.xml9
1 files changed, 4 insertions, 5 deletions
diff --git a/doc/classes/PopupMenu.xml b/doc/classes/PopupMenu.xml
index 2f1d4a528a..2b91236f56 100644
--- a/doc/classes/PopupMenu.xml
+++ b/doc/classes/PopupMenu.xml
@@ -1,13 +1,12 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="PopupMenu" inherits="Popup" version="4.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
<brief_description>
- PopupMenu displays a list of options.
+ A modal window used to display a list of options.
</brief_description>
<description>
- [PopupMenu] is a modal window used to display a list of options. They are popular in toolbars or context menus.
- The size of a [PopupMenu] can be limited by using [member Window.max_size]. If the height of the list of items is larger than the maximum height of the [PopupMenu], a [ScrollContainer] within the popup will allow the user to scroll the contents.
- If no maximum size is set, or if it is set to 0, the [PopupMenu] height will be limited by its parent rect.
- All [code]set_*[/code] methods allow negative item index, which makes the item accessed from the last one.
+ [PopupMenu] is a modal window used to display a list of options. Useful for toolbars and context menus.
+ The size of a [PopupMenu] can be limited by using [member Window.max_size]. If the height of the list of items is larger than the maximum height of the [PopupMenu], a [ScrollContainer] within the popup will allow the user to scroll the contents. If no maximum size is set, or if it is set to [code]0[/code], the [PopupMenu] height will be limited by its parent rect.
+ All [code]set_*[/code] methods allow negative item indices, i.e. [code]-1[/code] to access the last item, [code]-2[/code] to select the second-to-last item, and so on.
[b]Incremental search:[/b] Like [ItemList] and [Tree], [PopupMenu] supports searching within the list while the control is focused. Press a key that matches the first letter of an item's name to select the first item starting with the given letter. After that point, there are two ways to perform incremental search: 1) Press the same key again before the timeout duration to select the next item starting with the same letter. 2) Press letter keys that match the rest of the word before the timeout duration to match to select the item in question directly. Both of these actions will be reset to the beginning of the list if the timeout duration has passed since the last keystroke was registered. You can adjust the timeout duration by changing [member ProjectSettings.gui/timers/incremental_search_max_interval_msec].
[b]Note:[/b] The ID values used for items are limited to 32 bits, not full 64 bits of [int]. This has a range of [code]-2^32[/code] to [code]2^32 - 1[/code], i.e. [code]-2147483648[/code] to [code]2147483647[/code].
</description>