mirror of
https://github.com/godotengine/godot-docs.git
synced 2025-12-31 17:49:03 +03:00
76 lines
5.4 KiB
ReStructuredText
76 lines
5.4 KiB
ReStructuredText
:github_url: hide
|
|
|
|
.. Generated automatically by doc/tools/makerst.py in Godot's source tree.
|
|
.. DO NOT EDIT THIS FILE, but the CheckBox.xml source instead.
|
|
.. The source is found in doc/classes or modules/<name>/doc_classes.
|
|
|
|
.. _class_CheckBox:
|
|
|
|
CheckBox
|
|
========
|
|
|
|
**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>`
|
|
|
|
Binary choice user interface widget. See also :ref:`CheckButton<class_CheckButton>`.
|
|
|
|
Description
|
|
-----------
|
|
|
|
A checkbox allows the user to make a binary choice (choosing only one of 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 instance, it should be used when toggling it will only do something once a confirmation button is pressed.
|
|
|
|
See also :ref:`BaseButton<class_BaseButton>` which contains common properties and methods associated with this node.
|
|
|
|
Properties
|
|
----------
|
|
|
|
+-----------------------------------------+-------------+------------------------------+
|
|
| :ref:`TextAlign<enum_Button_TextAlign>` | align | ``0`` *(parent override)* |
|
|
+-----------------------------------------+-------------+------------------------------+
|
|
| :ref:`bool<class_bool>` | toggle_mode | ``true`` *(parent override)* |
|
|
+-----------------------------------------+-------------+------------------------------+
|
|
|
|
Theme Properties
|
|
----------------
|
|
|
|
+---------------------------------+--------------------------+------------------------------+
|
|
| :ref:`int<class_int>` | check_vadjust | 0 |
|
|
+---------------------------------+--------------------------+------------------------------+
|
|
| :ref:`Texture<class_Texture>` | checked | |
|
|
+---------------------------------+--------------------------+------------------------------+
|
|
| :ref:`StyleBox<class_StyleBox>` | disabled | |
|
|
+---------------------------------+--------------------------+------------------------------+
|
|
| :ref:`StyleBox<class_StyleBox>` | focus | |
|
|
+---------------------------------+--------------------------+------------------------------+
|
|
| :ref:`Font<class_Font>` | font | |
|
|
+---------------------------------+--------------------------+------------------------------+
|
|
| :ref:`Color<class_Color>` | font_color | Color( 0.88, 0.88, 0.88, 1 ) |
|
|
+---------------------------------+--------------------------+------------------------------+
|
|
| :ref:`Color<class_Color>` | font_color_disabled | Color( 0.9, 0.9, 0.9, 0.2 ) |
|
|
+---------------------------------+--------------------------+------------------------------+
|
|
| :ref:`Color<class_Color>` | font_color_hover | Color( 0.94, 0.94, 0.94, 1 ) |
|
|
+---------------------------------+--------------------------+------------------------------+
|
|
| :ref:`Color<class_Color>` | font_color_hover_pressed | Color( 1, 1, 1, 1 ) |
|
|
+---------------------------------+--------------------------+------------------------------+
|
|
| :ref:`Color<class_Color>` | font_color_pressed | Color( 1, 1, 1, 1 ) |
|
|
+---------------------------------+--------------------------+------------------------------+
|
|
| :ref:`StyleBox<class_StyleBox>` | hover | |
|
|
+---------------------------------+--------------------------+------------------------------+
|
|
| :ref:`StyleBox<class_StyleBox>` | hover_pressed | |
|
|
+---------------------------------+--------------------------+------------------------------+
|
|
| :ref:`int<class_int>` | hseparation | 4 |
|
|
+---------------------------------+--------------------------+------------------------------+
|
|
| :ref:`StyleBox<class_StyleBox>` | normal | |
|
|
+---------------------------------+--------------------------+------------------------------+
|
|
| :ref:`StyleBox<class_StyleBox>` | pressed | |
|
|
+---------------------------------+--------------------------+------------------------------+
|
|
| :ref:`Texture<class_Texture>` | radio_checked | |
|
|
+---------------------------------+--------------------------+------------------------------+
|
|
| :ref:`Texture<class_Texture>` | radio_unchecked | |
|
|
+---------------------------------+--------------------------+------------------------------+
|
|
| :ref:`Texture<class_Texture>` | unchecked | |
|
|
+---------------------------------+--------------------------+------------------------------+
|
|
|
|
.. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
|
|
.. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
|
|
.. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
|