class_checkbox.rst 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  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:`int<class_int>` | :ref:`check_v_offset<class_CheckBox_theme_constant_check_v_offset>` | ``0`` |
  34. +-----------------------------------+-------------------------------------------------------------------------------------+-------+
  35. | :ref:`Texture2D<class_Texture2D>` | :ref:`checked<class_CheckBox_theme_icon_checked>` | |
  36. +-----------------------------------+-------------------------------------------------------------------------------------+-------+
  37. | :ref:`Texture2D<class_Texture2D>` | :ref:`checked_disabled<class_CheckBox_theme_icon_checked_disabled>` | |
  38. +-----------------------------------+-------------------------------------------------------------------------------------+-------+
  39. | :ref:`Texture2D<class_Texture2D>` | :ref:`radio_checked<class_CheckBox_theme_icon_radio_checked>` | |
  40. +-----------------------------------+-------------------------------------------------------------------------------------+-------+
  41. | :ref:`Texture2D<class_Texture2D>` | :ref:`radio_checked_disabled<class_CheckBox_theme_icon_radio_checked_disabled>` | |
  42. +-----------------------------------+-------------------------------------------------------------------------------------+-------+
  43. | :ref:`Texture2D<class_Texture2D>` | :ref:`radio_unchecked<class_CheckBox_theme_icon_radio_unchecked>` | |
  44. +-----------------------------------+-------------------------------------------------------------------------------------+-------+
  45. | :ref:`Texture2D<class_Texture2D>` | :ref:`radio_unchecked_disabled<class_CheckBox_theme_icon_radio_unchecked_disabled>` | |
  46. +-----------------------------------+-------------------------------------------------------------------------------------+-------+
  47. | :ref:`Texture2D<class_Texture2D>` | :ref:`unchecked<class_CheckBox_theme_icon_unchecked>` | |
  48. +-----------------------------------+-------------------------------------------------------------------------------------+-------+
  49. | :ref:`Texture2D<class_Texture2D>` | :ref:`unchecked_disabled<class_CheckBox_theme_icon_unchecked_disabled>` | |
  50. +-----------------------------------+-------------------------------------------------------------------------------------+-------+
  51. .. rst-class:: classref-section-separator
  52. ----
  53. .. rst-class:: classref-descriptions-group
  54. Theme Property Descriptions
  55. ---------------------------
  56. .. _class_CheckBox_theme_constant_check_v_offset:
  57. .. rst-class:: classref-themeproperty
  58. :ref:`int<class_int>` **check_v_offset** = ``0`` :ref:`🔗<class_CheckBox_theme_constant_check_v_offset>`
  59. The vertical offset used when rendering the check icons (in pixels).
  60. .. rst-class:: classref-item-separator
  61. ----
  62. .. _class_CheckBox_theme_icon_checked:
  63. .. rst-class:: classref-themeproperty
  64. :ref:`Texture2D<class_Texture2D>` **checked** :ref:`🔗<class_CheckBox_theme_icon_checked>`
  65. The check icon to display when the **CheckBox** is checked.
  66. .. rst-class:: classref-item-separator
  67. ----
  68. .. _class_CheckBox_theme_icon_checked_disabled:
  69. .. rst-class:: classref-themeproperty
  70. :ref:`Texture2D<class_Texture2D>` **checked_disabled** :ref:`🔗<class_CheckBox_theme_icon_checked_disabled>`
  71. The check icon to display when the **CheckBox** is checked and is disabled.
  72. .. rst-class:: classref-item-separator
  73. ----
  74. .. _class_CheckBox_theme_icon_radio_checked:
  75. .. rst-class:: classref-themeproperty
  76. :ref:`Texture2D<class_Texture2D>` **radio_checked** :ref:`🔗<class_CheckBox_theme_icon_radio_checked>`
  77. The check icon to display when the **CheckBox** is configured as a radio button and is checked.
  78. .. rst-class:: classref-item-separator
  79. ----
  80. .. _class_CheckBox_theme_icon_radio_checked_disabled:
  81. .. rst-class:: classref-themeproperty
  82. :ref:`Texture2D<class_Texture2D>` **radio_checked_disabled** :ref:`🔗<class_CheckBox_theme_icon_radio_checked_disabled>`
  83. The check icon to display when the **CheckBox** is configured as a radio button, is disabled, and is unchecked.
  84. .. rst-class:: classref-item-separator
  85. ----
  86. .. _class_CheckBox_theme_icon_radio_unchecked:
  87. .. rst-class:: classref-themeproperty
  88. :ref:`Texture2D<class_Texture2D>` **radio_unchecked** :ref:`🔗<class_CheckBox_theme_icon_radio_unchecked>`
  89. The check icon to display when the **CheckBox** is configured as a radio button and is unchecked.
  90. .. rst-class:: classref-item-separator
  91. ----
  92. .. _class_CheckBox_theme_icon_radio_unchecked_disabled:
  93. .. rst-class:: classref-themeproperty
  94. :ref:`Texture2D<class_Texture2D>` **radio_unchecked_disabled** :ref:`🔗<class_CheckBox_theme_icon_radio_unchecked_disabled>`
  95. The check icon to display when the **CheckBox** is configured as a radio button, is disabled, and is unchecked.
  96. .. rst-class:: classref-item-separator
  97. ----
  98. .. _class_CheckBox_theme_icon_unchecked:
  99. .. rst-class:: classref-themeproperty
  100. :ref:`Texture2D<class_Texture2D>` **unchecked** :ref:`🔗<class_CheckBox_theme_icon_unchecked>`
  101. The check icon to display when the **CheckBox** is unchecked.
  102. .. rst-class:: classref-item-separator
  103. ----
  104. .. _class_CheckBox_theme_icon_unchecked_disabled:
  105. .. rst-class:: classref-themeproperty
  106. :ref:`Texture2D<class_Texture2D>` **unchecked_disabled** :ref:`🔗<class_CheckBox_theme_icon_unchecked_disabled>`
  107. The check icon to display when the **CheckBox** is unchecked and is disabled.
  108. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  109. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  110. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  111. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  112. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  113. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  114. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
  115. .. |void| replace:: :abbr:`void (No return value.)`