class_checkbox.rst 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. :github_url: hide
  2. .. DO NOT EDIT THIS FILE!!!
  3. .. Generated automatically from Godot engine sources.
  4. .. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CheckBox.xml.
  6. .. _class_CheckBox:
  7. CheckBox
  8. ========
  9. **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>`
  10. A button that represents a binary choice.
  11. .. rst-class:: classref-introduction-group
  12. Description
  13. -----------
  14. **CheckBox** allows the user to choose one of only two possible options. It's similar to :ref:`CheckButton<class_CheckButton>` in functionality, but it has a different appearance. To follow established UX patterns, it's recommended to use **CheckBox** when toggling it has **no** immediate effect on something. For example, it could be used when toggling it will only do something once a confirmation button is pressed.
  15. See also :ref:`BaseButton<class_BaseButton>` which contains common properties and methods associated with this node.
  16. When :ref:`BaseButton.button_group<class_BaseButton_property_button_group>` specifies a :ref:`ButtonGroup<class_ButtonGroup>`, **CheckBox** changes its appearance to that of a radio button and uses the various ``radio_*`` theme properties.
  17. .. rst-class:: classref-reftable-group
  18. Properties
  19. ----------
  20. .. table::
  21. :widths: auto
  22. +-------------------------------------------------------------------+-------------+-------------------------------------------------------------------------------+
  23. | :ref:`HorizontalAlignment<enum_@GlobalScope_HorizontalAlignment>` | alignment | ``0`` (overrides :ref:`Button<class_Button_property_alignment>`) |
  24. +-------------------------------------------------------------------+-------------+-------------------------------------------------------------------------------+
  25. | :ref:`bool<class_bool>` | toggle_mode | ``true`` (overrides :ref:`BaseButton<class_BaseButton_property_toggle_mode>`) |
  26. +-------------------------------------------------------------------+-------------+-------------------------------------------------------------------------------+
  27. .. rst-class:: classref-reftable-group
  28. Theme Properties
  29. ----------------
  30. .. table::
  31. :widths: auto
  32. +-----------------------------------+--------------------------------------------------------------------------------------+-----------------------+
  33. | :ref:`Color<class_Color>` | :ref:`checkbox_checked_color<class_CheckBox_theme_color_checkbox_checked_color>` | ``Color(1, 1, 1, 1)`` |
  34. +-----------------------------------+--------------------------------------------------------------------------------------+-----------------------+
  35. | :ref:`Color<class_Color>` | :ref:`checkbox_unchecked_color<class_CheckBox_theme_color_checkbox_unchecked_color>` | ``Color(1, 1, 1, 1)`` |
  36. +-----------------------------------+--------------------------------------------------------------------------------------+-----------------------+
  37. | :ref:`int<class_int>` | :ref:`check_v_offset<class_CheckBox_theme_constant_check_v_offset>` | ``0`` |
  38. +-----------------------------------+--------------------------------------------------------------------------------------+-----------------------+
  39. | :ref:`Texture2D<class_Texture2D>` | :ref:`checked<class_CheckBox_theme_icon_checked>` | |
  40. +-----------------------------------+--------------------------------------------------------------------------------------+-----------------------+
  41. | :ref:`Texture2D<class_Texture2D>` | :ref:`checked_disabled<class_CheckBox_theme_icon_checked_disabled>` | |
  42. +-----------------------------------+--------------------------------------------------------------------------------------+-----------------------+
  43. | :ref:`Texture2D<class_Texture2D>` | :ref:`radio_checked<class_CheckBox_theme_icon_radio_checked>` | |
  44. +-----------------------------------+--------------------------------------------------------------------------------------+-----------------------+
  45. | :ref:`Texture2D<class_Texture2D>` | :ref:`radio_checked_disabled<class_CheckBox_theme_icon_radio_checked_disabled>` | |
  46. +-----------------------------------+--------------------------------------------------------------------------------------+-----------------------+
  47. | :ref:`Texture2D<class_Texture2D>` | :ref:`radio_unchecked<class_CheckBox_theme_icon_radio_unchecked>` | |
  48. +-----------------------------------+--------------------------------------------------------------------------------------+-----------------------+
  49. | :ref:`Texture2D<class_Texture2D>` | :ref:`radio_unchecked_disabled<class_CheckBox_theme_icon_radio_unchecked_disabled>` | |
  50. +-----------------------------------+--------------------------------------------------------------------------------------+-----------------------+
  51. | :ref:`Texture2D<class_Texture2D>` | :ref:`unchecked<class_CheckBox_theme_icon_unchecked>` | |
  52. +-----------------------------------+--------------------------------------------------------------------------------------+-----------------------+
  53. | :ref:`Texture2D<class_Texture2D>` | :ref:`unchecked_disabled<class_CheckBox_theme_icon_unchecked_disabled>` | |
  54. +-----------------------------------+--------------------------------------------------------------------------------------+-----------------------+
  55. .. rst-class:: classref-section-separator
  56. ----
  57. .. rst-class:: classref-descriptions-group
  58. Theme Property Descriptions
  59. ---------------------------
  60. .. _class_CheckBox_theme_color_checkbox_checked_color:
  61. .. rst-class:: classref-themeproperty
  62. :ref:`Color<class_Color>` **checkbox_checked_color** = ``Color(1, 1, 1, 1)`` :ref:`🔗<class_CheckBox_theme_color_checkbox_checked_color>`
  63. The color of the checked icon when the checkbox is pressed.
  64. .. rst-class:: classref-item-separator
  65. ----
  66. .. _class_CheckBox_theme_color_checkbox_unchecked_color:
  67. .. rst-class:: classref-themeproperty
  68. :ref:`Color<class_Color>` **checkbox_unchecked_color** = ``Color(1, 1, 1, 1)`` :ref:`🔗<class_CheckBox_theme_color_checkbox_unchecked_color>`
  69. The color of the unchecked icon when the checkbox is not pressed.
  70. .. rst-class:: classref-item-separator
  71. ----
  72. .. _class_CheckBox_theme_constant_check_v_offset:
  73. .. rst-class:: classref-themeproperty
  74. :ref:`int<class_int>` **check_v_offset** = ``0`` :ref:`🔗<class_CheckBox_theme_constant_check_v_offset>`
  75. The vertical offset used when rendering the check icons (in pixels).
  76. .. rst-class:: classref-item-separator
  77. ----
  78. .. _class_CheckBox_theme_icon_checked:
  79. .. rst-class:: classref-themeproperty
  80. :ref:`Texture2D<class_Texture2D>` **checked** :ref:`🔗<class_CheckBox_theme_icon_checked>`
  81. The check icon to display when the **CheckBox** is checked.
  82. .. rst-class:: classref-item-separator
  83. ----
  84. .. _class_CheckBox_theme_icon_checked_disabled:
  85. .. rst-class:: classref-themeproperty
  86. :ref:`Texture2D<class_Texture2D>` **checked_disabled** :ref:`🔗<class_CheckBox_theme_icon_checked_disabled>`
  87. The check icon to display when the **CheckBox** is checked and is disabled.
  88. .. rst-class:: classref-item-separator
  89. ----
  90. .. _class_CheckBox_theme_icon_radio_checked:
  91. .. rst-class:: classref-themeproperty
  92. :ref:`Texture2D<class_Texture2D>` **radio_checked** :ref:`🔗<class_CheckBox_theme_icon_radio_checked>`
  93. The check icon to display when the **CheckBox** is configured as a radio button and is checked.
  94. .. rst-class:: classref-item-separator
  95. ----
  96. .. _class_CheckBox_theme_icon_radio_checked_disabled:
  97. .. rst-class:: classref-themeproperty
  98. :ref:`Texture2D<class_Texture2D>` **radio_checked_disabled** :ref:`🔗<class_CheckBox_theme_icon_radio_checked_disabled>`
  99. The check icon to display when the **CheckBox** is configured as a radio button, is disabled, and is unchecked.
  100. .. rst-class:: classref-item-separator
  101. ----
  102. .. _class_CheckBox_theme_icon_radio_unchecked:
  103. .. rst-class:: classref-themeproperty
  104. :ref:`Texture2D<class_Texture2D>` **radio_unchecked** :ref:`🔗<class_CheckBox_theme_icon_radio_unchecked>`
  105. The check icon to display when the **CheckBox** is configured as a radio button and is unchecked.
  106. .. rst-class:: classref-item-separator
  107. ----
  108. .. _class_CheckBox_theme_icon_radio_unchecked_disabled:
  109. .. rst-class:: classref-themeproperty
  110. :ref:`Texture2D<class_Texture2D>` **radio_unchecked_disabled** :ref:`🔗<class_CheckBox_theme_icon_radio_unchecked_disabled>`
  111. The check icon to display when the **CheckBox** is configured as a radio button, is disabled, and is unchecked.
  112. .. rst-class:: classref-item-separator
  113. ----
  114. .. _class_CheckBox_theme_icon_unchecked:
  115. .. rst-class:: classref-themeproperty
  116. :ref:`Texture2D<class_Texture2D>` **unchecked** :ref:`🔗<class_CheckBox_theme_icon_unchecked>`
  117. The check icon to display when the **CheckBox** is unchecked.
  118. .. rst-class:: classref-item-separator
  119. ----
  120. .. _class_CheckBox_theme_icon_unchecked_disabled:
  121. .. rst-class:: classref-themeproperty
  122. :ref:`Texture2D<class_Texture2D>` **unchecked_disabled** :ref:`🔗<class_CheckBox_theme_icon_unchecked_disabled>`
  123. The check icon to display when the **CheckBox** is unchecked and is disabled.
  124. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  125. .. |required| replace:: :abbr:`required (This method is required to be overridden when extending its base class.)`
  126. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  127. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  128. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  129. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  130. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  131. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
  132. .. |void| replace:: :abbr:`void (No return value.)`