class_splitcontainer.rst 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  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/4.1/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SplitContainer.xml.
  6. .. _class_SplitContainer:
  7. SplitContainer
  8. ==============
  9. **Inherits:** :ref:`Container<class_Container>` **<** :ref:`Control<class_Control>` **<** :ref:`CanvasItem<class_CanvasItem>` **<** :ref:`Node<class_Node>` **<** :ref:`Object<class_Object>`
  10. **Inherited By:** :ref:`HSplitContainer<class_HSplitContainer>`, :ref:`VSplitContainer<class_VSplitContainer>`
  11. A container that splits two child controls horizontally or vertically and provides a grabber for adjusting the split ratio.
  12. .. rst-class:: classref-introduction-group
  13. Description
  14. -----------
  15. A container that accepts only two child controls, then arranges them horizontally or vertically and creates a divisor between them. The divisor can be dragged around to change the size relation between the child controls.
  16. .. rst-class:: classref-introduction-group
  17. Tutorials
  18. ---------
  19. - :doc:`Using Containers <../tutorials/ui/gui_containers>`
  20. .. rst-class:: classref-reftable-group
  21. Properties
  22. ----------
  23. .. table::
  24. :widths: auto
  25. +-----------------------------------------------------------------+-----------------------------------------------------------------------------+-----------+
  26. | :ref:`bool<class_bool>` | :ref:`collapsed<class_SplitContainer_property_collapsed>` | ``false`` |
  27. +-----------------------------------------------------------------+-----------------------------------------------------------------------------+-----------+
  28. | :ref:`DraggerVisibility<enum_SplitContainer_DraggerVisibility>` | :ref:`dragger_visibility<class_SplitContainer_property_dragger_visibility>` | ``0`` |
  29. +-----------------------------------------------------------------+-----------------------------------------------------------------------------+-----------+
  30. | :ref:`int<class_int>` | :ref:`split_offset<class_SplitContainer_property_split_offset>` | ``0`` |
  31. +-----------------------------------------------------------------+-----------------------------------------------------------------------------+-----------+
  32. | :ref:`bool<class_bool>` | :ref:`vertical<class_SplitContainer_property_vertical>` | ``false`` |
  33. +-----------------------------------------------------------------+-----------------------------------------------------------------------------+-----------+
  34. .. rst-class:: classref-reftable-group
  35. Methods
  36. -------
  37. .. table::
  38. :widths: auto
  39. +------+---------------------------------------------------------------------------------------+
  40. | void | :ref:`clamp_split_offset<class_SplitContainer_method_clamp_split_offset>` **(** **)** |
  41. +------+---------------------------------------------------------------------------------------+
  42. .. rst-class:: classref-reftable-group
  43. Theme Properties
  44. ----------------
  45. .. table::
  46. :widths: auto
  47. +-----------------------------------+-------------------------------------------------------------------------------------------+--------+
  48. | :ref:`int<class_int>` | :ref:`autohide<class_SplitContainer_theme_constant_autohide>` | ``1`` |
  49. +-----------------------------------+-------------------------------------------------------------------------------------------+--------+
  50. | :ref:`int<class_int>` | :ref:`minimum_grab_thickness<class_SplitContainer_theme_constant_minimum_grab_thickness>` | ``6`` |
  51. +-----------------------------------+-------------------------------------------------------------------------------------------+--------+
  52. | :ref:`int<class_int>` | :ref:`separation<class_SplitContainer_theme_constant_separation>` | ``12`` |
  53. +-----------------------------------+-------------------------------------------------------------------------------------------+--------+
  54. | :ref:`Texture2D<class_Texture2D>` | :ref:`h_grabber<class_SplitContainer_theme_icon_h_grabber>` | |
  55. +-----------------------------------+-------------------------------------------------------------------------------------------+--------+
  56. | :ref:`Texture2D<class_Texture2D>` | :ref:`v_grabber<class_SplitContainer_theme_icon_v_grabber>` | |
  57. +-----------------------------------+-------------------------------------------------------------------------------------------+--------+
  58. .. rst-class:: classref-section-separator
  59. ----
  60. .. rst-class:: classref-descriptions-group
  61. Signals
  62. -------
  63. .. _class_SplitContainer_signal_dragged:
  64. .. rst-class:: classref-signal
  65. **dragged** **(** :ref:`int<class_int>` offset **)**
  66. Emitted when the dragger is dragged by user.
  67. .. rst-class:: classref-section-separator
  68. ----
  69. .. rst-class:: classref-descriptions-group
  70. Enumerations
  71. ------------
  72. .. _enum_SplitContainer_DraggerVisibility:
  73. .. rst-class:: classref-enumeration
  74. enum **DraggerVisibility**:
  75. .. _class_SplitContainer_constant_DRAGGER_VISIBLE:
  76. .. rst-class:: classref-enumeration-constant
  77. :ref:`DraggerVisibility<enum_SplitContainer_DraggerVisibility>` **DRAGGER_VISIBLE** = ``0``
  78. The split dragger is visible when the cursor hovers it.
  79. .. _class_SplitContainer_constant_DRAGGER_HIDDEN:
  80. .. rst-class:: classref-enumeration-constant
  81. :ref:`DraggerVisibility<enum_SplitContainer_DraggerVisibility>` **DRAGGER_HIDDEN** = ``1``
  82. The split dragger is never visible.
  83. .. _class_SplitContainer_constant_DRAGGER_HIDDEN_COLLAPSED:
  84. .. rst-class:: classref-enumeration-constant
  85. :ref:`DraggerVisibility<enum_SplitContainer_DraggerVisibility>` **DRAGGER_HIDDEN_COLLAPSED** = ``2``
  86. The split dragger is never visible and its space collapsed.
  87. .. rst-class:: classref-section-separator
  88. ----
  89. .. rst-class:: classref-descriptions-group
  90. Property Descriptions
  91. ---------------------
  92. .. _class_SplitContainer_property_collapsed:
  93. .. rst-class:: classref-property
  94. :ref:`bool<class_bool>` **collapsed** = ``false``
  95. .. rst-class:: classref-property-setget
  96. - void **set_collapsed** **(** :ref:`bool<class_bool>` value **)**
  97. - :ref:`bool<class_bool>` **is_collapsed** **(** **)**
  98. If ``true``, the area of the first :ref:`Control<class_Control>` will be collapsed and the dragger will be disabled.
  99. .. rst-class:: classref-item-separator
  100. ----
  101. .. _class_SplitContainer_property_dragger_visibility:
  102. .. rst-class:: classref-property
  103. :ref:`DraggerVisibility<enum_SplitContainer_DraggerVisibility>` **dragger_visibility** = ``0``
  104. .. rst-class:: classref-property-setget
  105. - void **set_dragger_visibility** **(** :ref:`DraggerVisibility<enum_SplitContainer_DraggerVisibility>` value **)**
  106. - :ref:`DraggerVisibility<enum_SplitContainer_DraggerVisibility>` **get_dragger_visibility** **(** **)**
  107. Determines the dragger's visibility. See :ref:`DraggerVisibility<enum_SplitContainer_DraggerVisibility>` for details.
  108. .. rst-class:: classref-item-separator
  109. ----
  110. .. _class_SplitContainer_property_split_offset:
  111. .. rst-class:: classref-property
  112. :ref:`int<class_int>` **split_offset** = ``0``
  113. .. rst-class:: classref-property-setget
  114. - void **set_split_offset** **(** :ref:`int<class_int>` value **)**
  115. - :ref:`int<class_int>` **get_split_offset** **(** **)**
  116. The initial offset of the splitting between the two :ref:`Control<class_Control>`\ s, with ``0`` being at the end of the first :ref:`Control<class_Control>`.
  117. .. rst-class:: classref-item-separator
  118. ----
  119. .. _class_SplitContainer_property_vertical:
  120. .. rst-class:: classref-property
  121. :ref:`bool<class_bool>` **vertical** = ``false``
  122. .. rst-class:: classref-property-setget
  123. - void **set_vertical** **(** :ref:`bool<class_bool>` value **)**
  124. - :ref:`bool<class_bool>` **is_vertical** **(** **)**
  125. If ``true``, the **SplitContainer** will arrange its children vertically, rather than horizontally.
  126. Can't be changed when using :ref:`HSplitContainer<class_HSplitContainer>` and :ref:`VSplitContainer<class_VSplitContainer>`.
  127. .. rst-class:: classref-section-separator
  128. ----
  129. .. rst-class:: classref-descriptions-group
  130. Method Descriptions
  131. -------------------
  132. .. _class_SplitContainer_method_clamp_split_offset:
  133. .. rst-class:: classref-method
  134. void **clamp_split_offset** **(** **)**
  135. Clamps the :ref:`split_offset<class_SplitContainer_property_split_offset>` value to not go outside the currently possible minimal and maximum values.
  136. .. rst-class:: classref-section-separator
  137. ----
  138. .. rst-class:: classref-descriptions-group
  139. Theme Property Descriptions
  140. ---------------------------
  141. .. _class_SplitContainer_theme_constant_autohide:
  142. .. rst-class:: classref-themeproperty
  143. :ref:`int<class_int>` **autohide** = ``1``
  144. Boolean value. If 1 (``true``), the grabber will hide automatically when it isn't under the cursor. If 0 (``false``), it's always visible.
  145. .. rst-class:: classref-item-separator
  146. ----
  147. .. _class_SplitContainer_theme_constant_minimum_grab_thickness:
  148. .. rst-class:: classref-themeproperty
  149. :ref:`int<class_int>` **minimum_grab_thickness** = ``6``
  150. The minimum thickness of the area users can click on to grab the splitting line. If :ref:`separation<class_SplitContainer_theme_constant_separation>` or :ref:`h_grabber<class_SplitContainer_theme_icon_h_grabber>` / :ref:`v_grabber<class_SplitContainer_theme_icon_v_grabber>`'s thickness are too small, this ensure that the splitting line can still be dragged.
  151. .. rst-class:: classref-item-separator
  152. ----
  153. .. _class_SplitContainer_theme_constant_separation:
  154. .. rst-class:: classref-themeproperty
  155. :ref:`int<class_int>` **separation** = ``12``
  156. The space between sides of the container.
  157. .. rst-class:: classref-item-separator
  158. ----
  159. .. _class_SplitContainer_theme_icon_h_grabber:
  160. .. rst-class:: classref-themeproperty
  161. :ref:`Texture2D<class_Texture2D>` **h_grabber**
  162. The icon used for the grabber drawn in the middle area when :ref:`vertical<class_SplitContainer_property_vertical>` is ``false``.
  163. .. rst-class:: classref-item-separator
  164. ----
  165. .. _class_SplitContainer_theme_icon_v_grabber:
  166. .. rst-class:: classref-themeproperty
  167. :ref:`Texture2D<class_Texture2D>` **v_grabber**
  168. The icon used for the grabber drawn in the middle area when :ref:`vertical<class_SplitContainer_property_vertical>` is ``true``.
  169. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  170. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  171. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  172. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  173. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  174. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  175. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`