class_optionbutton.rst 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628
  1. :github_url: hide
  2. .. meta::
  3. :keywords: select
  4. .. DO NOT EDIT THIS FILE!!!
  5. .. Generated automatically from Godot engine sources.
  6. .. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py.
  7. .. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/OptionButton.xml.
  8. .. _class_OptionButton:
  9. OptionButton
  10. ============
  11. **Inherits:** :ref:`Button<class_Button>` **<** :ref:`BaseButton<class_BaseButton>` **<** :ref:`Control<class_Control>` **<** :ref:`CanvasItem<class_CanvasItem>` **<** :ref:`Node<class_Node>` **<** :ref:`Object<class_Object>`
  12. A button that brings up a dropdown with selectable options when pressed.
  13. .. rst-class:: classref-introduction-group
  14. Description
  15. -----------
  16. **OptionButton** is a type of button that brings up a dropdown with selectable items when pressed. The item selected becomes the "current" item and is displayed as the button text.
  17. See also :ref:`BaseButton<class_BaseButton>` which contains common properties and methods associated with this node.
  18. \ **Note:** The ID values used for items are limited to 32 bits, not full 64 bits of :ref:`int<class_int>`. This has a range of ``-2^32`` to ``2^32 - 1``, i.e. ``-2147483648`` to ``2147483647``.
  19. \ **Note:** The :ref:`Button.text<class_Button_property_text>` and :ref:`Button.icon<class_Button_property_icon>` properties are set automatically based on the selected item. They shouldn't be changed manually.
  20. .. rst-class:: classref-reftable-group
  21. Properties
  22. ----------
  23. .. table::
  24. :widths: auto
  25. +-------------------------------------------------------------------+-----------------------------------------------------------------------------+-------------------------------------------------------------------------------+
  26. | :ref:`ActionMode<enum_BaseButton_ActionMode>` | action_mode | ``0`` (overrides :ref:`BaseButton<class_BaseButton_property_action_mode>`) |
  27. +-------------------------------------------------------------------+-----------------------------------------------------------------------------+-------------------------------------------------------------------------------+
  28. | :ref:`HorizontalAlignment<enum_@GlobalScope_HorizontalAlignment>` | alignment | ``0`` (overrides :ref:`Button<class_Button_property_alignment>`) |
  29. +-------------------------------------------------------------------+-----------------------------------------------------------------------------+-------------------------------------------------------------------------------+
  30. | :ref:`bool<class_bool>` | :ref:`allow_reselect<class_OptionButton_property_allow_reselect>` | ``false`` |
  31. +-------------------------------------------------------------------+-----------------------------------------------------------------------------+-------------------------------------------------------------------------------+
  32. | :ref:`bool<class_bool>` | :ref:`fit_to_longest_item<class_OptionButton_property_fit_to_longest_item>` | ``true`` |
  33. +-------------------------------------------------------------------+-----------------------------------------------------------------------------+-------------------------------------------------------------------------------+
  34. | :ref:`int<class_int>` | :ref:`item_count<class_OptionButton_property_item_count>` | ``0`` |
  35. +-------------------------------------------------------------------+-----------------------------------------------------------------------------+-------------------------------------------------------------------------------+
  36. | :ref:`int<class_int>` | :ref:`selected<class_OptionButton_property_selected>` | ``-1`` |
  37. +-------------------------------------------------------------------+-----------------------------------------------------------------------------+-------------------------------------------------------------------------------+
  38. | :ref:`bool<class_bool>` | toggle_mode | ``true`` (overrides :ref:`BaseButton<class_BaseButton_property_toggle_mode>`) |
  39. +-------------------------------------------------------------------+-----------------------------------------------------------------------------+-------------------------------------------------------------------------------+
  40. .. rst-class:: classref-reftable-group
  41. Methods
  42. -------
  43. .. table::
  44. :widths: auto
  45. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  46. | |void| | :ref:`add_icon_item<class_OptionButton_method_add_icon_item>`\ (\ texture\: :ref:`Texture2D<class_Texture2D>`, label\: :ref:`String<class_String>`, id\: :ref:`int<class_int>` = -1\ ) |
  47. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  48. | |void| | :ref:`add_item<class_OptionButton_method_add_item>`\ (\ label\: :ref:`String<class_String>`, id\: :ref:`int<class_int>` = -1\ ) |
  49. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  50. | |void| | :ref:`add_separator<class_OptionButton_method_add_separator>`\ (\ text\: :ref:`String<class_String>` = ""\ ) |
  51. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  52. | |void| | :ref:`clear<class_OptionButton_method_clear>`\ (\ ) |
  53. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  54. | :ref:`Texture2D<class_Texture2D>` | :ref:`get_item_icon<class_OptionButton_method_get_item_icon>`\ (\ idx\: :ref:`int<class_int>`\ ) |const| |
  55. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  56. | :ref:`int<class_int>` | :ref:`get_item_id<class_OptionButton_method_get_item_id>`\ (\ idx\: :ref:`int<class_int>`\ ) |const| |
  57. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  58. | :ref:`int<class_int>` | :ref:`get_item_index<class_OptionButton_method_get_item_index>`\ (\ id\: :ref:`int<class_int>`\ ) |const| |
  59. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  60. | :ref:`Variant<class_Variant>` | :ref:`get_item_metadata<class_OptionButton_method_get_item_metadata>`\ (\ idx\: :ref:`int<class_int>`\ ) |const| |
  61. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  62. | :ref:`String<class_String>` | :ref:`get_item_text<class_OptionButton_method_get_item_text>`\ (\ idx\: :ref:`int<class_int>`\ ) |const| |
  63. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  64. | :ref:`String<class_String>` | :ref:`get_item_tooltip<class_OptionButton_method_get_item_tooltip>`\ (\ idx\: :ref:`int<class_int>`\ ) |const| |
  65. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  66. | :ref:`PopupMenu<class_PopupMenu>` | :ref:`get_popup<class_OptionButton_method_get_popup>`\ (\ ) |const| |
  67. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  68. | :ref:`int<class_int>` | :ref:`get_selectable_item<class_OptionButton_method_get_selectable_item>`\ (\ from_last\: :ref:`bool<class_bool>` = false\ ) |const| |
  69. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  70. | :ref:`int<class_int>` | :ref:`get_selected_id<class_OptionButton_method_get_selected_id>`\ (\ ) |const| |
  71. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  72. | :ref:`Variant<class_Variant>` | :ref:`get_selected_metadata<class_OptionButton_method_get_selected_metadata>`\ (\ ) |const| |
  73. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  74. | :ref:`bool<class_bool>` | :ref:`has_selectable_items<class_OptionButton_method_has_selectable_items>`\ (\ ) |const| |
  75. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  76. | :ref:`bool<class_bool>` | :ref:`is_item_disabled<class_OptionButton_method_is_item_disabled>`\ (\ idx\: :ref:`int<class_int>`\ ) |const| |
  77. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  78. | :ref:`bool<class_bool>` | :ref:`is_item_separator<class_OptionButton_method_is_item_separator>`\ (\ idx\: :ref:`int<class_int>`\ ) |const| |
  79. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  80. | |void| | :ref:`remove_item<class_OptionButton_method_remove_item>`\ (\ idx\: :ref:`int<class_int>`\ ) |
  81. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  82. | |void| | :ref:`select<class_OptionButton_method_select>`\ (\ idx\: :ref:`int<class_int>`\ ) |
  83. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  84. | |void| | :ref:`set_disable_shortcuts<class_OptionButton_method_set_disable_shortcuts>`\ (\ disabled\: :ref:`bool<class_bool>`\ ) |
  85. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  86. | |void| | :ref:`set_item_disabled<class_OptionButton_method_set_item_disabled>`\ (\ idx\: :ref:`int<class_int>`, disabled\: :ref:`bool<class_bool>`\ ) |
  87. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  88. | |void| | :ref:`set_item_icon<class_OptionButton_method_set_item_icon>`\ (\ idx\: :ref:`int<class_int>`, texture\: :ref:`Texture2D<class_Texture2D>`\ ) |
  89. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  90. | |void| | :ref:`set_item_id<class_OptionButton_method_set_item_id>`\ (\ idx\: :ref:`int<class_int>`, id\: :ref:`int<class_int>`\ ) |
  91. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  92. | |void| | :ref:`set_item_metadata<class_OptionButton_method_set_item_metadata>`\ (\ idx\: :ref:`int<class_int>`, metadata\: :ref:`Variant<class_Variant>`\ ) |
  93. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  94. | |void| | :ref:`set_item_text<class_OptionButton_method_set_item_text>`\ (\ idx\: :ref:`int<class_int>`, text\: :ref:`String<class_String>`\ ) |
  95. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  96. | |void| | :ref:`set_item_tooltip<class_OptionButton_method_set_item_tooltip>`\ (\ idx\: :ref:`int<class_int>`, tooltip\: :ref:`String<class_String>`\ ) |
  97. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  98. | |void| | :ref:`show_popup<class_OptionButton_method_show_popup>`\ (\ ) |
  99. +-----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  100. .. rst-class:: classref-reftable-group
  101. Theme Properties
  102. ----------------
  103. .. table::
  104. :widths: auto
  105. +-----------------------------------+-------------------------------------------------------------------------+-------+
  106. | :ref:`int<class_int>` | :ref:`arrow_margin<class_OptionButton_theme_constant_arrow_margin>` | ``4`` |
  107. +-----------------------------------+-------------------------------------------------------------------------+-------+
  108. | :ref:`int<class_int>` | :ref:`modulate_arrow<class_OptionButton_theme_constant_modulate_arrow>` | ``0`` |
  109. +-----------------------------------+-------------------------------------------------------------------------+-------+
  110. | :ref:`Texture2D<class_Texture2D>` | :ref:`arrow<class_OptionButton_theme_icon_arrow>` | |
  111. +-----------------------------------+-------------------------------------------------------------------------+-------+
  112. .. rst-class:: classref-section-separator
  113. ----
  114. .. rst-class:: classref-descriptions-group
  115. Signals
  116. -------
  117. .. _class_OptionButton_signal_item_focused:
  118. .. rst-class:: classref-signal
  119. **item_focused**\ (\ index\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_OptionButton_signal_item_focused>`
  120. Emitted when the user navigates to an item using the :ref:`ProjectSettings.input/ui_up<class_ProjectSettings_property_input/ui_up>` or :ref:`ProjectSettings.input/ui_down<class_ProjectSettings_property_input/ui_down>` input actions. The index of the item selected is passed as argument.
  121. .. rst-class:: classref-item-separator
  122. ----
  123. .. _class_OptionButton_signal_item_selected:
  124. .. rst-class:: classref-signal
  125. **item_selected**\ (\ index\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_OptionButton_signal_item_selected>`
  126. Emitted when the current item has been changed by the user. The index of the item selected is passed as argument.
  127. \ :ref:`allow_reselect<class_OptionButton_property_allow_reselect>` must be enabled to reselect an item.
  128. .. rst-class:: classref-section-separator
  129. ----
  130. .. rst-class:: classref-descriptions-group
  131. Property Descriptions
  132. ---------------------
  133. .. _class_OptionButton_property_allow_reselect:
  134. .. rst-class:: classref-property
  135. :ref:`bool<class_bool>` **allow_reselect** = ``false`` :ref:`๐Ÿ”—<class_OptionButton_property_allow_reselect>`
  136. .. rst-class:: classref-property-setget
  137. - |void| **set_allow_reselect**\ (\ value\: :ref:`bool<class_bool>`\ )
  138. - :ref:`bool<class_bool>` **get_allow_reselect**\ (\ )
  139. If ``true``, the currently selected item can be selected again.
  140. .. rst-class:: classref-item-separator
  141. ----
  142. .. _class_OptionButton_property_fit_to_longest_item:
  143. .. rst-class:: classref-property
  144. :ref:`bool<class_bool>` **fit_to_longest_item** = ``true`` :ref:`๐Ÿ”—<class_OptionButton_property_fit_to_longest_item>`
  145. .. rst-class:: classref-property-setget
  146. - |void| **set_fit_to_longest_item**\ (\ value\: :ref:`bool<class_bool>`\ )
  147. - :ref:`bool<class_bool>` **is_fit_to_longest_item**\ (\ )
  148. If ``true``, minimum size will be determined by the longest item's text, instead of the currently selected one's.
  149. \ **Note:** For performance reasons, the minimum size doesn't update immediately when adding, removing or modifying items.
  150. .. rst-class:: classref-item-separator
  151. ----
  152. .. _class_OptionButton_property_item_count:
  153. .. rst-class:: classref-property
  154. :ref:`int<class_int>` **item_count** = ``0`` :ref:`๐Ÿ”—<class_OptionButton_property_item_count>`
  155. .. rst-class:: classref-property-setget
  156. - |void| **set_item_count**\ (\ value\: :ref:`int<class_int>`\ )
  157. - :ref:`int<class_int>` **get_item_count**\ (\ )
  158. The number of items to select from.
  159. .. rst-class:: classref-item-separator
  160. ----
  161. .. _class_OptionButton_property_selected:
  162. .. rst-class:: classref-property
  163. :ref:`int<class_int>` **selected** = ``-1`` :ref:`๐Ÿ”—<class_OptionButton_property_selected>`
  164. .. rst-class:: classref-property-setget
  165. - :ref:`int<class_int>` **get_selected**\ (\ )
  166. The index of the currently selected item, or ``-1`` if no item is selected.
  167. .. rst-class:: classref-section-separator
  168. ----
  169. .. rst-class:: classref-descriptions-group
  170. Method Descriptions
  171. -------------------
  172. .. _class_OptionButton_method_add_icon_item:
  173. .. rst-class:: classref-method
  174. |void| **add_icon_item**\ (\ texture\: :ref:`Texture2D<class_Texture2D>`, label\: :ref:`String<class_String>`, id\: :ref:`int<class_int>` = -1\ ) :ref:`๐Ÿ”—<class_OptionButton_method_add_icon_item>`
  175. Adds an item, with a ``texture`` icon, text ``label`` and (optionally) ``id``. If no ``id`` is passed, the item index will be used as the item's ID. New items are appended at the end.
  176. .. rst-class:: classref-item-separator
  177. ----
  178. .. _class_OptionButton_method_add_item:
  179. .. rst-class:: classref-method
  180. |void| **add_item**\ (\ label\: :ref:`String<class_String>`, id\: :ref:`int<class_int>` = -1\ ) :ref:`๐Ÿ”—<class_OptionButton_method_add_item>`
  181. Adds an item, with text ``label`` and (optionally) ``id``. If no ``id`` is passed, the item index will be used as the item's ID. New items are appended at the end.
  182. .. rst-class:: classref-item-separator
  183. ----
  184. .. _class_OptionButton_method_add_separator:
  185. .. rst-class:: classref-method
  186. |void| **add_separator**\ (\ text\: :ref:`String<class_String>` = ""\ ) :ref:`๐Ÿ”—<class_OptionButton_method_add_separator>`
  187. Adds a separator to the list of items. Separators help to group items, and can optionally be given a ``text`` header. A separator also gets an index assigned, and is appended at the end of the item list.
  188. .. rst-class:: classref-item-separator
  189. ----
  190. .. _class_OptionButton_method_clear:
  191. .. rst-class:: classref-method
  192. |void| **clear**\ (\ ) :ref:`๐Ÿ”—<class_OptionButton_method_clear>`
  193. Clears all the items in the **OptionButton**.
  194. .. rst-class:: classref-item-separator
  195. ----
  196. .. _class_OptionButton_method_get_item_icon:
  197. .. rst-class:: classref-method
  198. :ref:`Texture2D<class_Texture2D>` **get_item_icon**\ (\ idx\: :ref:`int<class_int>`\ ) |const| :ref:`๐Ÿ”—<class_OptionButton_method_get_item_icon>`
  199. Returns the icon of the item at index ``idx``.
  200. .. rst-class:: classref-item-separator
  201. ----
  202. .. _class_OptionButton_method_get_item_id:
  203. .. rst-class:: classref-method
  204. :ref:`int<class_int>` **get_item_id**\ (\ idx\: :ref:`int<class_int>`\ ) |const| :ref:`๐Ÿ”—<class_OptionButton_method_get_item_id>`
  205. Returns the ID of the item at index ``idx``.
  206. .. rst-class:: classref-item-separator
  207. ----
  208. .. _class_OptionButton_method_get_item_index:
  209. .. rst-class:: classref-method
  210. :ref:`int<class_int>` **get_item_index**\ (\ id\: :ref:`int<class_int>`\ ) |const| :ref:`๐Ÿ”—<class_OptionButton_method_get_item_index>`
  211. Returns the index of the item with the given ``id``.
  212. .. rst-class:: classref-item-separator
  213. ----
  214. .. _class_OptionButton_method_get_item_metadata:
  215. .. rst-class:: classref-method
  216. :ref:`Variant<class_Variant>` **get_item_metadata**\ (\ idx\: :ref:`int<class_int>`\ ) |const| :ref:`๐Ÿ”—<class_OptionButton_method_get_item_metadata>`
  217. Retrieves the metadata of an item. Metadata may be any type and can be used to store extra information about an item, such as an external string ID.
  218. .. rst-class:: classref-item-separator
  219. ----
  220. .. _class_OptionButton_method_get_item_text:
  221. .. rst-class:: classref-method
  222. :ref:`String<class_String>` **get_item_text**\ (\ idx\: :ref:`int<class_int>`\ ) |const| :ref:`๐Ÿ”—<class_OptionButton_method_get_item_text>`
  223. Returns the text of the item at index ``idx``.
  224. .. rst-class:: classref-item-separator
  225. ----
  226. .. _class_OptionButton_method_get_item_tooltip:
  227. .. rst-class:: classref-method
  228. :ref:`String<class_String>` **get_item_tooltip**\ (\ idx\: :ref:`int<class_int>`\ ) |const| :ref:`๐Ÿ”—<class_OptionButton_method_get_item_tooltip>`
  229. Returns the tooltip of the item at index ``idx``.
  230. .. rst-class:: classref-item-separator
  231. ----
  232. .. _class_OptionButton_method_get_popup:
  233. .. rst-class:: classref-method
  234. :ref:`PopupMenu<class_PopupMenu>` **get_popup**\ (\ ) |const| :ref:`๐Ÿ”—<class_OptionButton_method_get_popup>`
  235. Returns the :ref:`PopupMenu<class_PopupMenu>` contained in this button.
  236. \ **Warning:** This is a required internal node, removing and freeing it may cause a crash. If you wish to hide it or any of its children, use their :ref:`Window.visible<class_Window_property_visible>` property.
  237. .. rst-class:: classref-item-separator
  238. ----
  239. .. _class_OptionButton_method_get_selectable_item:
  240. .. rst-class:: classref-method
  241. :ref:`int<class_int>` **get_selectable_item**\ (\ from_last\: :ref:`bool<class_bool>` = false\ ) |const| :ref:`๐Ÿ”—<class_OptionButton_method_get_selectable_item>`
  242. Returns the index of the first item which is not disabled, or marked as a separator. If ``from_last`` is ``true``, the items will be searched in reverse order.
  243. Returns ``-1`` if no item is found.
  244. .. rst-class:: classref-item-separator
  245. ----
  246. .. _class_OptionButton_method_get_selected_id:
  247. .. rst-class:: classref-method
  248. :ref:`int<class_int>` **get_selected_id**\ (\ ) |const| :ref:`๐Ÿ”—<class_OptionButton_method_get_selected_id>`
  249. Returns the ID of the selected item, or ``-1`` if no item is selected.
  250. .. rst-class:: classref-item-separator
  251. ----
  252. .. _class_OptionButton_method_get_selected_metadata:
  253. .. rst-class:: classref-method
  254. :ref:`Variant<class_Variant>` **get_selected_metadata**\ (\ ) |const| :ref:`๐Ÿ”—<class_OptionButton_method_get_selected_metadata>`
  255. Gets the metadata of the selected item. Metadata for items can be set using :ref:`set_item_metadata<class_OptionButton_method_set_item_metadata>`.
  256. .. rst-class:: classref-item-separator
  257. ----
  258. .. _class_OptionButton_method_has_selectable_items:
  259. .. rst-class:: classref-method
  260. :ref:`bool<class_bool>` **has_selectable_items**\ (\ ) |const| :ref:`๐Ÿ”—<class_OptionButton_method_has_selectable_items>`
  261. Returns ``true`` if this button contains at least one item which is not disabled, or marked as a separator.
  262. .. rst-class:: classref-item-separator
  263. ----
  264. .. _class_OptionButton_method_is_item_disabled:
  265. .. rst-class:: classref-method
  266. :ref:`bool<class_bool>` **is_item_disabled**\ (\ idx\: :ref:`int<class_int>`\ ) |const| :ref:`๐Ÿ”—<class_OptionButton_method_is_item_disabled>`
  267. Returns ``true`` if the item at index ``idx`` is disabled.
  268. .. rst-class:: classref-item-separator
  269. ----
  270. .. _class_OptionButton_method_is_item_separator:
  271. .. rst-class:: classref-method
  272. :ref:`bool<class_bool>` **is_item_separator**\ (\ idx\: :ref:`int<class_int>`\ ) |const| :ref:`๐Ÿ”—<class_OptionButton_method_is_item_separator>`
  273. Returns ``true`` if the item at index ``idx`` is marked as a separator.
  274. .. rst-class:: classref-item-separator
  275. ----
  276. .. _class_OptionButton_method_remove_item:
  277. .. rst-class:: classref-method
  278. |void| **remove_item**\ (\ idx\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_OptionButton_method_remove_item>`
  279. Removes the item at index ``idx``.
  280. .. rst-class:: classref-item-separator
  281. ----
  282. .. _class_OptionButton_method_select:
  283. .. rst-class:: classref-method
  284. |void| **select**\ (\ idx\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_OptionButton_method_select>`
  285. Selects an item by index and makes it the current item. This will work even if the item is disabled.
  286. Passing ``-1`` as the index deselects any currently selected item.
  287. .. rst-class:: classref-item-separator
  288. ----
  289. .. _class_OptionButton_method_set_disable_shortcuts:
  290. .. rst-class:: classref-method
  291. |void| **set_disable_shortcuts**\ (\ disabled\: :ref:`bool<class_bool>`\ ) :ref:`๐Ÿ”—<class_OptionButton_method_set_disable_shortcuts>`
  292. If ``true``, shortcuts are disabled and cannot be used to trigger the button.
  293. .. rst-class:: classref-item-separator
  294. ----
  295. .. _class_OptionButton_method_set_item_disabled:
  296. .. rst-class:: classref-method
  297. |void| **set_item_disabled**\ (\ idx\: :ref:`int<class_int>`, disabled\: :ref:`bool<class_bool>`\ ) :ref:`๐Ÿ”—<class_OptionButton_method_set_item_disabled>`
  298. Sets whether the item at index ``idx`` is disabled.
  299. Disabled items are drawn differently in the dropdown and are not selectable by the user. If the current selected item is set as disabled, it will remain selected.
  300. .. rst-class:: classref-item-separator
  301. ----
  302. .. _class_OptionButton_method_set_item_icon:
  303. .. rst-class:: classref-method
  304. |void| **set_item_icon**\ (\ idx\: :ref:`int<class_int>`, texture\: :ref:`Texture2D<class_Texture2D>`\ ) :ref:`๐Ÿ”—<class_OptionButton_method_set_item_icon>`
  305. Sets the icon of the item at index ``idx``.
  306. .. rst-class:: classref-item-separator
  307. ----
  308. .. _class_OptionButton_method_set_item_id:
  309. .. rst-class:: classref-method
  310. |void| **set_item_id**\ (\ idx\: :ref:`int<class_int>`, id\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_OptionButton_method_set_item_id>`
  311. Sets the ID of the item at index ``idx``.
  312. .. rst-class:: classref-item-separator
  313. ----
  314. .. _class_OptionButton_method_set_item_metadata:
  315. .. rst-class:: classref-method
  316. |void| **set_item_metadata**\ (\ idx\: :ref:`int<class_int>`, metadata\: :ref:`Variant<class_Variant>`\ ) :ref:`๐Ÿ”—<class_OptionButton_method_set_item_metadata>`
  317. Sets the metadata of an item. Metadata may be of any type and can be used to store extra information about an item, such as an external string ID.
  318. .. rst-class:: classref-item-separator
  319. ----
  320. .. _class_OptionButton_method_set_item_text:
  321. .. rst-class:: classref-method
  322. |void| **set_item_text**\ (\ idx\: :ref:`int<class_int>`, text\: :ref:`String<class_String>`\ ) :ref:`๐Ÿ”—<class_OptionButton_method_set_item_text>`
  323. Sets the text of the item at index ``idx``.
  324. .. rst-class:: classref-item-separator
  325. ----
  326. .. _class_OptionButton_method_set_item_tooltip:
  327. .. rst-class:: classref-method
  328. |void| **set_item_tooltip**\ (\ idx\: :ref:`int<class_int>`, tooltip\: :ref:`String<class_String>`\ ) :ref:`๐Ÿ”—<class_OptionButton_method_set_item_tooltip>`
  329. Sets the tooltip of the item at index ``idx``.
  330. .. rst-class:: classref-item-separator
  331. ----
  332. .. _class_OptionButton_method_show_popup:
  333. .. rst-class:: classref-method
  334. |void| **show_popup**\ (\ ) :ref:`๐Ÿ”—<class_OptionButton_method_show_popup>`
  335. Adjusts popup position and sizing for the **OptionButton**, then shows the :ref:`PopupMenu<class_PopupMenu>`. Prefer this over using ``get_popup().popup()``.
  336. .. rst-class:: classref-section-separator
  337. ----
  338. .. rst-class:: classref-descriptions-group
  339. Theme Property Descriptions
  340. ---------------------------
  341. .. _class_OptionButton_theme_constant_arrow_margin:
  342. .. rst-class:: classref-themeproperty
  343. :ref:`int<class_int>` **arrow_margin** = ``4`` :ref:`๐Ÿ”—<class_OptionButton_theme_constant_arrow_margin>`
  344. The horizontal space between the arrow icon and the right edge of the button.
  345. .. rst-class:: classref-item-separator
  346. ----
  347. .. _class_OptionButton_theme_constant_modulate_arrow:
  348. .. rst-class:: classref-themeproperty
  349. :ref:`int<class_int>` **modulate_arrow** = ``0`` :ref:`๐Ÿ”—<class_OptionButton_theme_constant_modulate_arrow>`
  350. If different than ``0``, the arrow icon will be modulated to the font color.
  351. .. rst-class:: classref-item-separator
  352. ----
  353. .. _class_OptionButton_theme_icon_arrow:
  354. .. rst-class:: classref-themeproperty
  355. :ref:`Texture2D<class_Texture2D>` **arrow** :ref:`๐Ÿ”—<class_OptionButton_theme_icon_arrow>`
  356. The arrow icon to be drawn on the right end of the button.
  357. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  358. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  359. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  360. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  361. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  362. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  363. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
  364. .. |void| replace:: :abbr:`void (No return value.)`