SpinBox.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <class name="SpinBox" inherits="Range" keywords="number, numeric, input" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
  3. <brief_description>
  4. An input field for numbers.
  5. </brief_description>
  6. <description>
  7. [SpinBox] is a numerical input text field. It allows entering integers and floating-point numbers. The [SpinBox] also has up and down buttons that can be clicked increase or decrease the value. The value can also be changed by dragging the mouse up or down over the [SpinBox]'s arrows.
  8. Additionally, mathematical expressions can be entered. These are evaluated when the user presses [kbd]Enter[/kbd] while editing the [SpinBox]'s text field. This uses the [Expression] class to parse and evaluate the expression. The result of the expression is then set as the value of the [SpinBox]. Some examples of valid expressions are [code]5 + 2 * 3[/code], [code]pow(2, 4)[/code], and [code]PI + sin(0.5)[/code]. Expressions are case-sensitive.
  9. [b]Example:[/b] Create a [SpinBox], disable its context menu and set its text alignment to right.
  10. [codeblocks]
  11. [gdscript]
  12. var spin_box = SpinBox.new()
  13. add_child(spin_box)
  14. var line_edit = spin_box.get_line_edit()
  15. line_edit.context_menu_enabled = false
  16. spin_box.horizontal_alignment = LineEdit.HORIZONTAL_ALIGNMENT_RIGHT
  17. [/gdscript]
  18. [csharp]
  19. var spinBox = new SpinBox();
  20. AddChild(spinBox);
  21. var lineEdit = spinBox.GetLineEdit();
  22. lineEdit.ContextMenuEnabled = false;
  23. spinBox.AlignHorizontal = LineEdit.HorizontalAlignEnum.Right;
  24. [/csharp]
  25. [/codeblocks]
  26. See [Range] class for more options over the [SpinBox].
  27. [b]Note:[/b] With the [SpinBox]'s context menu disabled, you can right-click the bottom half of the spinbox to set the value to its minimum, while right-clicking the top half sets the value to its maximum.
  28. [b]Note:[/b] [SpinBox] relies on an underlying [LineEdit] node. To theme a [SpinBox]'s background, add theme items for [LineEdit] and customize them. The [LineEdit] has the [code]SpinBoxInnerLineEdit[/code] theme variation, so that you can give it a distinct appearance from regular [LineEdit]s.
  29. [b]Note:[/b] If you want to implement drag and drop for the underlying [LineEdit], you can use [method Control.set_drag_forwarding] on the node returned by [method get_line_edit].
  30. </description>
  31. <tutorials>
  32. </tutorials>
  33. <methods>
  34. <method name="apply">
  35. <return type="void" />
  36. <description>
  37. Applies the current value of this [SpinBox]. This is equivalent to pressing [kbd]Enter[/kbd] while editing the [LineEdit] used by the [SpinBox]. This will cause [signal LineEdit.text_submitted] to be emitted and its currently contained expression to be evaluated.
  38. </description>
  39. </method>
  40. <method name="get_line_edit">
  41. <return type="LineEdit" />
  42. <description>
  43. Returns the [LineEdit] instance from this [SpinBox]. You can use it to access properties and methods of [LineEdit].
  44. [b]Warning:[/b] 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 [member CanvasItem.visible] property.
  45. </description>
  46. </method>
  47. </methods>
  48. <members>
  49. <member name="alignment" type="int" setter="set_horizontal_alignment" getter="get_horizontal_alignment" enum="HorizontalAlignment" default="0">
  50. Changes the alignment of the underlying [LineEdit].
  51. </member>
  52. <member name="custom_arrow_step" type="float" setter="set_custom_arrow_step" getter="get_custom_arrow_step" default="0.0">
  53. If not [code]0[/code], sets the step when interacting with the arrow buttons of the [SpinBox].
  54. [b]Note:[/b] [member Range.value] will still be rounded to a multiple of [member Range.step].
  55. </member>
  56. <member name="editable" type="bool" setter="set_editable" getter="is_editable" default="true" keywords="readonly, disabled, enabled">
  57. If [code]true[/code], the [SpinBox] will be editable. Otherwise, it will be read only.
  58. </member>
  59. <member name="prefix" type="String" setter="set_prefix" getter="get_prefix" default="&quot;&quot;">
  60. Adds the specified prefix string before the numerical value of the [SpinBox].
  61. </member>
  62. <member name="select_all_on_focus" type="bool" setter="set_select_all_on_focus" getter="is_select_all_on_focus" default="false">
  63. If [code]true[/code], the [SpinBox] will select the whole text when the [LineEdit] gains focus. Clicking the up and down arrows won't trigger this behavior.
  64. </member>
  65. <member name="size_flags_vertical" type="int" setter="set_v_size_flags" getter="get_v_size_flags" overrides="Control" enum="Control.SizeFlags" is_bitfield="true" default="1" />
  66. <member name="step" type="float" setter="set_step" getter="get_step" overrides="Range" default="1.0" />
  67. <member name="suffix" type="String" setter="set_suffix" getter="get_suffix" default="&quot;&quot;">
  68. Adds the specified suffix string after the numerical value of the [SpinBox].
  69. </member>
  70. <member name="update_on_text_changed" type="bool" setter="set_update_on_text_changed" getter="get_update_on_text_changed" default="false">
  71. Sets the value of the [Range] for this [SpinBox] when the [LineEdit] text is [i]changed[/i] instead of [i]submitted[/i]. See [signal LineEdit.text_changed] and [signal LineEdit.text_submitted].
  72. [b]Note:[/b] If set to [code]true[/code], this will interfere with entering mathematical expressions in the [SpinBox]. The [SpinBox] will try to evaluate the expression as you type, which means symbols like a trailing [code]+[/code] are removed immediately by the expression being evaluated.
  73. </member>
  74. </members>
  75. <theme_items>
  76. <theme_item name="down_disabled_icon_modulate" data_type="color" type="Color" default="Color(0.875, 0.875, 0.875, 0.5)">
  77. Down button icon modulation color, when the button is disabled.
  78. </theme_item>
  79. <theme_item name="down_hover_icon_modulate" data_type="color" type="Color" default="Color(0.95, 0.95, 0.95, 1)">
  80. Down button icon modulation color, when the button is hovered.
  81. </theme_item>
  82. <theme_item name="down_icon_modulate" data_type="color" type="Color" default="Color(0.875, 0.875, 0.875, 1)">
  83. Down button icon modulation color.
  84. </theme_item>
  85. <theme_item name="down_pressed_icon_modulate" data_type="color" type="Color" default="Color(0.95, 0.95, 0.95, 1)">
  86. Down button icon modulation color, when the button is being pressed.
  87. </theme_item>
  88. <theme_item name="up_disabled_icon_modulate" data_type="color" type="Color" default="Color(0.875, 0.875, 0.875, 0.5)">
  89. Up button icon modulation color, when the button is disabled.
  90. </theme_item>
  91. <theme_item name="up_hover_icon_modulate" data_type="color" type="Color" default="Color(0.95, 0.95, 0.95, 1)">
  92. Up button icon modulation color, when the button is hovered.
  93. </theme_item>
  94. <theme_item name="up_icon_modulate" data_type="color" type="Color" default="Color(0.875, 0.875, 0.875, 1)">
  95. Up button icon modulation color.
  96. </theme_item>
  97. <theme_item name="up_pressed_icon_modulate" data_type="color" type="Color" default="Color(0.95, 0.95, 0.95, 1)">
  98. Up button icon modulation color, when the button is being pressed.
  99. </theme_item>
  100. <theme_item name="buttons_vertical_separation" data_type="constant" type="int" default="0">
  101. Vertical separation between the up and down buttons.
  102. </theme_item>
  103. <theme_item name="buttons_width" data_type="constant" type="int" default="16">
  104. Width of the up and down buttons. If smaller than any icon set on the buttons, the respective icon may overlap neighboring elements. If smaller than [code]0[/code], the width is automatically adjusted from the icon size.
  105. </theme_item>
  106. <theme_item name="field_and_buttons_separation" data_type="constant" type="int" default="2">
  107. Width of the horizontal separation between the text input field ([LineEdit]) and the buttons.
  108. </theme_item>
  109. <theme_item name="set_min_buttons_width_from_icons" data_type="constant" type="int" default="1" deprecated="This property exists only for compatibility with older themes. Setting [theme_item buttons_width] to a negative value has the same effect.">
  110. If not [code]0[/code], the minimum button width corresponds to the widest of all icons set on those buttons, even if [theme_item buttons_width] is smaller.
  111. </theme_item>
  112. <theme_item name="down" data_type="icon" type="Texture2D">
  113. Down button icon, displayed in the middle of the down (value-decreasing) button.
  114. </theme_item>
  115. <theme_item name="down_disabled" data_type="icon" type="Texture2D">
  116. Down button icon when the button is disabled.
  117. </theme_item>
  118. <theme_item name="down_hover" data_type="icon" type="Texture2D">
  119. Down button icon when the button is hovered.
  120. </theme_item>
  121. <theme_item name="down_pressed" data_type="icon" type="Texture2D">
  122. Down button icon when the button is being pressed.
  123. </theme_item>
  124. <theme_item name="up" data_type="icon" type="Texture2D">
  125. Up button icon, displayed in the middle of the up (value-increasing) button.
  126. </theme_item>
  127. <theme_item name="up_disabled" data_type="icon" type="Texture2D">
  128. Up button icon when the button is disabled.
  129. </theme_item>
  130. <theme_item name="up_hover" data_type="icon" type="Texture2D">
  131. Up button icon when the button is hovered.
  132. </theme_item>
  133. <theme_item name="up_pressed" data_type="icon" type="Texture2D">
  134. Up button icon when the button is being pressed.
  135. </theme_item>
  136. <theme_item name="updown" data_type="icon" type="Texture2D" deprecated="Use [theme_item up] and [theme_item down] instead.">
  137. Single texture representing both the up and down buttons icons. It is displayed in the middle of the buttons and does not change upon interaction. If a valid icon is assigned, it will replace [theme_item up] and [theme_item down].
  138. </theme_item>
  139. <theme_item name="down_background" data_type="style" type="StyleBox">
  140. Background style of the down button.
  141. </theme_item>
  142. <theme_item name="down_background_disabled" data_type="style" type="StyleBox">
  143. Background style of the down button when disabled.
  144. </theme_item>
  145. <theme_item name="down_background_hovered" data_type="style" type="StyleBox">
  146. Background style of the down button when hovered.
  147. </theme_item>
  148. <theme_item name="down_background_pressed" data_type="style" type="StyleBox">
  149. Background style of the down button when being pressed.
  150. </theme_item>
  151. <theme_item name="field_and_buttons_separator" data_type="style" type="StyleBox">
  152. [StyleBox] drawn in the space occupied by the separation between the input field and the buttons.
  153. </theme_item>
  154. <theme_item name="up_background" data_type="style" type="StyleBox">
  155. Background style of the up button.
  156. </theme_item>
  157. <theme_item name="up_background_disabled" data_type="style" type="StyleBox">
  158. Background style of the up button when disabled.
  159. </theme_item>
  160. <theme_item name="up_background_hovered" data_type="style" type="StyleBox">
  161. Background style of the up button when hovered.
  162. </theme_item>
  163. <theme_item name="up_background_pressed" data_type="style" type="StyleBox">
  164. Background style of the up button when being pressed.
  165. </theme_item>
  166. <theme_item name="up_down_buttons_separator" data_type="style" type="StyleBox">
  167. [StyleBox] drawn in the space occupied by the separation between the up and down buttons.
  168. </theme_item>
  169. </theme_items>
  170. </class>