diff options
author | Yuri Sizov <yuris@humnom.net> | 2023-09-26 16:41:24 +0200 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2023-09-26 18:48:51 +0200 |
commit | 596dd726a111fe5bea76165bcdfe44dc06e01244 (patch) | |
tree | 16c81589fa4f81fa317e84a4b7a07b9710d38030 /doc/classes | |
parent | 36945dad0730ee013547493df60c4c59567b4290 (diff) | |
download | redot-engine-596dd726a111fe5bea76165bcdfe44dc06e01244.tar.gz |
Use bound theme properties for documentation
Diffstat (limited to 'doc/classes')
32 files changed, 131 insertions, 547 deletions
diff --git a/doc/classes/Button.xml b/doc/classes/Button.xml index 25c71deb1f..bee0cbcf4a 100644 --- a/doc/classes/Button.xml +++ b/doc/classes/Button.xml @@ -131,20 +131,40 @@ <theme_item name="font_size" data_type="font_size" type="int"> Font size of the [Button]'s text. </theme_item> + <theme_item name="icon" data_type="icon" type="Texture2D"> + </theme_item> <theme_item name="disabled" data_type="style" type="StyleBox"> [StyleBox] used when the [Button] is disabled. </theme_item> + <theme_item name="disabled_mirrored" data_type="style" type="StyleBox"> + [StyleBox] used when the [Button] is disabled (for right-to-left layouts). + </theme_item> <theme_item name="focus" data_type="style" type="StyleBox"> [StyleBox] used when the [Button] is focused. The [code]focus[/code] [StyleBox] is displayed [i]over[/i] the base [StyleBox], so a partially transparent [StyleBox] should be used to ensure the base [StyleBox] remains visible. A [StyleBox] that represents an outline or an underline works well for this purpose. To disable the focus visual effect, assign a [StyleBoxEmpty] resource. Note that disabling the focus visual effect will harm keyboard/controller navigation usability, so this is not recommended for accessibility reasons. </theme_item> <theme_item name="hover" data_type="style" type="StyleBox"> [StyleBox] used when the [Button] is being hovered. </theme_item> + <theme_item name="hover_mirrored" data_type="style" type="StyleBox"> + [StyleBox] used when the [Button] is being hovered (for right-to-left layouts). + </theme_item> + <theme_item name="hover_pressed" data_type="style" type="StyleBox"> + [StyleBox] used when the [Button] is being pressed and hovered at the same time. + </theme_item> + <theme_item name="hover_pressed_mirrored" data_type="style" type="StyleBox"> + [StyleBox] used when the [Button] is being pressed and hovered at the same time (for right-to-left layouts). + </theme_item> <theme_item name="normal" data_type="style" type="StyleBox"> Default [StyleBox] for the [Button]. </theme_item> + <theme_item name="normal_mirrored" data_type="style" type="StyleBox"> + Default [StyleBox] for the [Button] (for right-to-left layouts). + </theme_item> <theme_item name="pressed" data_type="style" type="StyleBox"> [StyleBox] used when the [Button] is being pressed. </theme_item> + <theme_item name="pressed_mirrored" data_type="style" type="StyleBox"> + [StyleBox] used when the [Button] is being pressed (for right-to-left layouts). + </theme_item> </theme_items> </class> diff --git a/doc/classes/CheckBox.xml b/doc/classes/CheckBox.xml index fb733a95b8..5b2c93f7b3 100644 --- a/doc/classes/CheckBox.xml +++ b/doc/classes/CheckBox.xml @@ -15,43 +15,9 @@ <member name="toggle_mode" type="bool" setter="set_toggle_mode" getter="is_toggle_mode" overrides="BaseButton" default="true" /> </members> <theme_items> - <theme_item name="font_color" data_type="color" type="Color" default="Color(0.875, 0.875, 0.875, 1)"> - The [CheckBox] text's font color. - </theme_item> - <theme_item name="font_disabled_color" data_type="color" type="Color" default="Color(0.875, 0.875, 0.875, 0.5)"> - The [CheckBox] text's font color when it's disabled. - </theme_item> - <theme_item name="font_focus_color" data_type="color" type="Color" default="Color(0.95, 0.95, 0.95, 1)"> - The [CheckBox] text's font color when it's focused. Only replaces the normal text color of the checkbox. Disabled, hovered, and pressed states take precedence over this color. - </theme_item> - <theme_item name="font_hover_color" data_type="color" type="Color" default="Color(0.95, 0.95, 0.95, 1)"> - The [CheckBox] text's font color when it's hovered. - </theme_item> - <theme_item name="font_hover_pressed_color" data_type="color" type="Color" default="Color(1, 1, 1, 1)"> - The [CheckBox] text's font color when it's hovered and pressed. - </theme_item> - <theme_item name="font_outline_color" data_type="color" type="Color" default="Color(1, 1, 1, 1)"> - The tint of text outline of the [CheckBox]. - </theme_item> - <theme_item name="font_pressed_color" data_type="color" type="Color" default="Color(1, 1, 1, 1)"> - The [CheckBox] text's font color when it's pressed. - </theme_item> <theme_item name="check_v_offset" data_type="constant" type="int" default="0"> The vertical offset used when rendering the check icons (in pixels). </theme_item> - <theme_item name="h_separation" data_type="constant" type="int" default="4"> - The separation between the check icon and the text (in pixels). Negative values will be treated as [code]0[/code] when used. - </theme_item> - <theme_item name="outline_size" data_type="constant" type="int" default="0"> - The size of the text outline. - [b]Note:[/b] If using a font with [member FontFile.multichannel_signed_distance_field] enabled, its [member FontFile.msdf_pixel_range] must be set to at least [i]twice[/i] the value of [theme_item outline_size] for outline rendering to look correct. Otherwise, the outline may appear to be cut off earlier than intended. - </theme_item> - <theme_item name="font" data_type="font" type="Font"> - The [Font] to use for the [CheckBox] text. - </theme_item> - <theme_item name="font_size" data_type="font_size" type="int"> - Font size of the [CheckBox]'s text. - </theme_item> <theme_item name="checked" data_type="icon" type="Texture2D"> The check icon to display when the [CheckBox] is checked. </theme_item> @@ -76,23 +42,5 @@ <theme_item name="unchecked_disabled" data_type="icon" type="Texture2D"> The check icon to display when the [CheckBox] is unchecked and is disabled. </theme_item> - <theme_item name="disabled" data_type="style" type="StyleBox"> - The [StyleBox] to display as a background when the [CheckBox] is disabled. - </theme_item> - <theme_item name="focus" data_type="style" type="StyleBox"> - The [StyleBox] to display as a background when the [CheckBox] is focused. The [code]focus[/code] [StyleBox] is displayed [i]over[/i] the base [StyleBox], so a partially transparent [StyleBox] should be used to ensure the base [StyleBox] remains visible. A [StyleBox] that represents an outline or an underline works well for this purpose. To disable the focus visual effect, assign a [StyleBoxEmpty] resource. Note that disabling the focus visual effect will harm keyboard/controller navigation usability, so this is not recommended for accessibility reasons. - </theme_item> - <theme_item name="hover" data_type="style" type="StyleBox"> - The [StyleBox] to display as a background when the [CheckBox] is hovered. - </theme_item> - <theme_item name="hover_pressed" data_type="style" type="StyleBox"> - The [StyleBox] to display as a background when the [CheckBox] is hovered and pressed. - </theme_item> - <theme_item name="normal" data_type="style" type="StyleBox"> - The [StyleBox] to display as a background. - </theme_item> - <theme_item name="pressed" data_type="style" type="StyleBox"> - The [StyleBox] to display as a background when the [CheckBox] is pressed. - </theme_item> </theme_items> </class> diff --git a/doc/classes/CheckButton.xml b/doc/classes/CheckButton.xml index 0fffe7f621..c2da6cfe3e 100644 --- a/doc/classes/CheckButton.xml +++ b/doc/classes/CheckButton.xml @@ -14,43 +14,9 @@ <member name="toggle_mode" type="bool" setter="set_toggle_mode" getter="is_toggle_mode" overrides="BaseButton" default="true" /> </members> <theme_items> - <theme_item name="font_color" data_type="color" type="Color" default="Color(0.875, 0.875, 0.875, 1)"> - The [CheckButton] text's font color. - </theme_item> - <theme_item name="font_disabled_color" data_type="color" type="Color" default="Color(0.875, 0.875, 0.875, 0.5)"> - The [CheckButton] text's font color when it's disabled. - </theme_item> - <theme_item name="font_focus_color" data_type="color" type="Color" default="Color(0.95, 0.95, 0.95, 1)"> - The [CheckButton] text's font color when it's focused. Only replaces the normal text color of the button. Disabled, hovered, and pressed states take precedence over this color. - </theme_item> - <theme_item name="font_hover_color" data_type="color" type="Color" default="Color(0.95, 0.95, 0.95, 1)"> - The [CheckButton] text's font color when it's hovered. - </theme_item> - <theme_item name="font_hover_pressed_color" data_type="color" type="Color" default="Color(1, 1, 1, 1)"> - The [CheckButton] text's font color when it's hovered and pressed. - </theme_item> - <theme_item name="font_outline_color" data_type="color" type="Color" default="Color(1, 1, 1, 1)"> - The tint of text outline of the [CheckButton]. - </theme_item> - <theme_item name="font_pressed_color" data_type="color" type="Color" default="Color(1, 1, 1, 1)"> - The [CheckButton] text's font color when it's pressed. - </theme_item> <theme_item name="check_v_offset" data_type="constant" type="int" default="0"> The vertical offset used when rendering the toggle icons (in pixels). </theme_item> - <theme_item name="h_separation" data_type="constant" type="int" default="4"> - The separation between the toggle icon and the text (in pixels). Negative values will be treated as [code]0[/code] when used. - </theme_item> - <theme_item name="outline_size" data_type="constant" type="int" default="0"> - The size of the text outline. - [b]Note:[/b] If using a font with [member FontFile.multichannel_signed_distance_field] enabled, its [member FontFile.msdf_pixel_range] must be set to at least [i]twice[/i] the value of [theme_item outline_size] for outline rendering to look correct. Otherwise, the outline may appear to be cut off earlier than intended. - </theme_item> - <theme_item name="font" data_type="font" type="Font"> - The [Font] to use for the [CheckButton] text. - </theme_item> - <theme_item name="font_size" data_type="font_size" type="int"> - Font size of the [CheckButton]'s text. - </theme_item> <theme_item name="checked" data_type="icon" type="Texture2D"> The icon to display when the [CheckButton] is checked (for left-to-right layouts). </theme_item> @@ -75,23 +41,5 @@ <theme_item name="unchecked_mirrored" data_type="icon" type="Texture2D"> The icon to display when the [CheckButton] is unchecked (for right-to-left layouts). </theme_item> - <theme_item name="disabled" data_type="style" type="StyleBox"> - The [StyleBox] to display as a background when the [CheckButton] is disabled. - </theme_item> - <theme_item name="focus" data_type="style" type="StyleBox"> - The [StyleBox] to display as a background when the [CheckButton] is focused. The [code]focus[/code] [StyleBox] is displayed [i]over[/i] the base [StyleBox], so a partially transparent [StyleBox] should be used to ensure the base [StyleBox] remains visible. A [StyleBox] that represents an outline or an underline works well for this purpose. To disable the focus visual effect, assign a [StyleBoxEmpty] resource. Note that disabling the focus visual effect will harm keyboard/controller navigation usability, so this is not recommended for accessibility reasons. - </theme_item> - <theme_item name="hover" data_type="style" type="StyleBox"> - The [StyleBox] to display as a background when the [CheckButton] is hovered. - </theme_item> - <theme_item name="hover_pressed" data_type="style" type="StyleBox"> - The [StyleBox] to display as a background when the [CheckButton] is hovered and pressed. - </theme_item> - <theme_item name="normal" data_type="style" type="StyleBox"> - The [StyleBox] to display as a background. - </theme_item> - <theme_item name="pressed" data_type="style" type="StyleBox"> - The [StyleBox] to display as a background when the [CheckButton] is pressed. - </theme_item> </theme_items> </class> diff --git a/doc/classes/CodeEdit.xml b/doc/classes/CodeEdit.xml index 9b4b3aa36e..e5c255706f 100644 --- a/doc/classes/CodeEdit.xml +++ b/doc/classes/CodeEdit.xml @@ -633,9 +633,6 @@ </constant> </constants> <theme_items> - <theme_item name="background_color" data_type="color" type="Color" default="Color(0, 0, 0, 0)"> - Sets the background [Color]. - </theme_item> <theme_item name="bookmark_color" data_type="color" type="Color" default="Color(0.5, 0.64, 1, 0.8)"> [Color] of the bookmark icon for bookmarked lines. </theme_item> @@ -645,12 +642,6 @@ <theme_item name="breakpoint_color" data_type="color" type="Color" default="Color(0.9, 0.29, 0.3, 1)"> [Color] of the breakpoint icon for bookmarked lines. </theme_item> - <theme_item name="caret_background_color" data_type="color" type="Color" default="Color(0, 0, 0, 1)"> - [Color] of the text behind the caret when block caret is enabled. - </theme_item> - <theme_item name="caret_color" data_type="color" type="Color" default="Color(0.875, 0.875, 0.875, 1)"> - [Color] of the caret. - </theme_item> <theme_item name="code_folding_color" data_type="color" type="Color" default="Color(0.8, 0.8, 0.8, 0.8)"> [Color] for all icons related to line folding. </theme_item> @@ -660,9 +651,6 @@ <theme_item name="completion_existing_color" data_type="color" type="Color" default="Color(0.87, 0.87, 0.87, 0.13)"> Background highlight [Color] for matching text in code completion options. </theme_item> - <theme_item name="completion_font_color" data_type="color" type="Color" default="Color(0.67, 0.67, 0.67, 1)"> - Font [Color] for the code completion popup. - </theme_item> <theme_item name="completion_scroll_color" data_type="color" type="Color" default="Color(1, 1, 1, 0.29)"> [Color] of the scrollbar in the code completion popup. </theme_item> @@ -672,48 +660,18 @@ <theme_item name="completion_selected_color" data_type="color" type="Color" default="Color(0.26, 0.26, 0.27, 1)"> Background highlight [Color] for the current selected option item in the code completion popup. </theme_item> - <theme_item name="current_line_color" data_type="color" type="Color" default="Color(0.25, 0.25, 0.26, 0.8)"> - Background [Color] of the line containing the caret. - </theme_item> <theme_item name="executing_line_color" data_type="color" type="Color" default="Color(0.98, 0.89, 0.27, 1)"> [Color] of the executing icon for executing lines. </theme_item> <theme_item name="folded_code_region_color" data_type="color" type="Color" default="Color(0.68, 0.46, 0.77, 0.2)"> [Color] of background line highlight for folded code region. </theme_item> - <theme_item name="font_color" data_type="color" type="Color" default="Color(0.875, 0.875, 0.875, 1)"> - Sets the font [Color]. - </theme_item> - <theme_item name="font_outline_color" data_type="color" type="Color" default="Color(1, 1, 1, 1)"> - The tint of text outline of the [CodeEdit]. - </theme_item> - <theme_item name="font_placeholder_color" data_type="color" type="Color" default="Color(0.875, 0.875, 0.875, 0.6)"> - Font color for [member TextEdit.placeholder_text]. - </theme_item> - <theme_item name="font_readonly_color" data_type="color" type="Color" default="Color(0.875, 0.875, 0.875, 0.5)"> - Sets the font [Color] when [member TextEdit.editable] is disabled. - </theme_item> - <theme_item name="font_selected_color" data_type="color" type="Color" default="Color(0, 0, 0, 0)"> - Sets the [Color] of the selected text. If equal to [code]Color(0, 0, 0, 0)[/code], it will be ignored. - </theme_item> <theme_item name="line_length_guideline_color" data_type="color" type="Color" default="Color(0.3, 0.5, 0.8, 0.1)"> [Color] of the main line length guideline, secondary guidelines will have 50% alpha applied. </theme_item> <theme_item name="line_number_color" data_type="color" type="Color" default="Color(0.67, 0.67, 0.67, 0.4)"> Sets the [Color] of line numbers. </theme_item> - <theme_item name="search_result_border_color" data_type="color" type="Color" default="Color(0.3, 0.3, 0.3, 0.4)"> - [Color] of the border around text that matches the search query. - </theme_item> - <theme_item name="search_result_color" data_type="color" type="Color" default="Color(0.3, 0.3, 0.3, 1)"> - [Color] behind the text that matches the search query. - </theme_item> - <theme_item name="selection_color" data_type="color" type="Color" default="Color(0.5, 0.5, 0.5, 1)"> - Sets the highlight [Color] of text selections. - </theme_item> - <theme_item name="word_highlighted_color" data_type="color" type="Color" default="Color(0.8, 0.9, 0.9, 0.15)"> - Sets the highlight [Color] of multiple occurrences. [member TextEdit.highlight_all_occurrences] has to be enabled. - </theme_item> <theme_item name="completion_lines" data_type="constant" type="int" default="7"> Max number of options to display in the code completion popup at any one time. </theme_item> @@ -723,19 +681,6 @@ <theme_item name="completion_scroll_width" data_type="constant" type="int" default="6"> Width of the scrollbar in the code completion popup. </theme_item> - <theme_item name="line_spacing" data_type="constant" type="int" default="4"> - Sets the spacing between the lines. - </theme_item> - <theme_item name="outline_size" data_type="constant" type="int" default="0"> - The size of the text outline. - [b]Note:[/b] If using a font with [member FontFile.multichannel_signed_distance_field] enabled, its [member FontFile.msdf_pixel_range] must be set to at least [i]twice[/i] the value of [theme_item outline_size] for outline rendering to look correct. Otherwise, the outline may appear to be cut off earlier than intended. - </theme_item> - <theme_item name="font" data_type="font" type="Font"> - Sets the default [Font]. - </theme_item> - <theme_item name="font_size" data_type="font_size" type="int"> - Sets default font size. - </theme_item> <theme_item name="bookmark" data_type="icon" type="Texture2D"> Sets a custom [Texture2D] to draw in the bookmark gutter for bookmarked lines. </theme_item> @@ -760,23 +705,8 @@ <theme_item name="folded_eol_icon" data_type="icon" type="Texture2D"> Sets a custom [Texture2D] to draw at the end of a folded line. </theme_item> - <theme_item name="space" data_type="icon" type="Texture2D"> - Sets a custom [Texture2D] for space text characters. - </theme_item> - <theme_item name="tab" data_type="icon" type="Texture2D"> - Sets a custom [Texture2D] for tab text characters. - </theme_item> <theme_item name="completion" data_type="style" type="StyleBox"> [StyleBox] for the code completion popup. </theme_item> - <theme_item name="focus" data_type="style" type="StyleBox"> - Sets the [StyleBox] when in focus. The [code]focus[/code] [StyleBox] is displayed [i]over[/i] the base [StyleBox], so a partially transparent [StyleBox] should be used to ensure the base [StyleBox] remains visible. A [StyleBox] that represents an outline or an underline works well for this purpose. To disable the focus visual effect, assign a [StyleBoxEmpty] resource. Note that disabling the focus visual effect will harm keyboard/controller navigation usability, so this is not recommended for accessibility reasons. - </theme_item> - <theme_item name="normal" data_type="style" type="StyleBox"> - Sets the [StyleBox]. - </theme_item> - <theme_item name="read_only" data_type="style" type="StyleBox"> - Sets the [StyleBox] when [member TextEdit.editable] is disabled. - </theme_item> </theme_items> </class> diff --git a/doc/classes/ColorPicker.xml b/doc/classes/ColorPicker.xml index 2f01e791a2..dfa8d7d840 100644 --- a/doc/classes/ColorPicker.xml +++ b/doc/classes/ColorPicker.xml @@ -142,7 +142,7 @@ </constants> <theme_items> <theme_item name="center_slider_grabbers" data_type="constant" type="int" default="1"> - Overrides the [theme_item HSlider.center_grabber] theme property of the sliders. + Overrides the [theme_item Slider.center_grabber] theme property of the sliders. </theme_item> <theme_item name="h_width" data_type="constant" type="int" default="30"> The width of the hue selection slider. diff --git a/doc/classes/ColorPickerButton.xml b/doc/classes/ColorPickerButton.xml index f6af188998..89cb01407d 100644 --- a/doc/classes/ColorPickerButton.xml +++ b/doc/classes/ColorPickerButton.xml @@ -56,54 +56,8 @@ </signal> </signals> <theme_items> - <theme_item name="font_color" data_type="color" type="Color" default="Color(1, 1, 1, 1)"> - Default text [Color] of the [ColorPickerButton]. - </theme_item> - <theme_item name="font_disabled_color" data_type="color" type="Color" default="Color(0.9, 0.9, 0.9, 0.3)"> - Text [Color] used when the [ColorPickerButton] is disabled. - </theme_item> - <theme_item name="font_focus_color" data_type="color" type="Color" default="Color(1, 1, 1, 1)"> - Text [Color] used when the [ColorPickerButton] is focused. Only replaces the normal text color of the button. Disabled, hovered, and pressed states take precedence over this color. - </theme_item> - <theme_item name="font_hover_color" data_type="color" type="Color" default="Color(1, 1, 1, 1)"> - Text [Color] used when the [ColorPickerButton] is being hovered. - </theme_item> - <theme_item name="font_outline_color" data_type="color" type="Color" default="Color(1, 1, 1, 1)"> - The tint of text outline of the [ColorPickerButton]. - </theme_item> - <theme_item name="font_pressed_color" data_type="color" type="Color" default="Color(0.8, 0.8, 0.8, 1)"> - Text [Color] used when the [ColorPickerButton] is being pressed. - </theme_item> - <theme_item name="h_separation" data_type="constant" type="int" default="4"> - The horizontal space between [ColorPickerButton]'s icon and text. - </theme_item> - <theme_item name="outline_size" data_type="constant" type="int" default="0"> - The size of the text outline. - [b]Note:[/b] If using a font with [member FontFile.multichannel_signed_distance_field] enabled, its [member FontFile.msdf_pixel_range] must be set to at least [i]twice[/i] the value of [theme_item outline_size] for outline rendering to look correct. Otherwise, the outline may appear to be cut off earlier than intended. - </theme_item> - <theme_item name="font" data_type="font" type="Font"> - [Font] of the [ColorPickerButton]'s text. - </theme_item> - <theme_item name="font_size" data_type="font_size" type="int"> - Font size of the [ColorPickerButton]'s text. - </theme_item> <theme_item name="bg" data_type="icon" type="Texture2D"> The background of the color preview rect on the button. </theme_item> - <theme_item name="disabled" data_type="style" type="StyleBox"> - [StyleBox] used when the [ColorPickerButton] is disabled. - </theme_item> - <theme_item name="focus" data_type="style" type="StyleBox"> - [StyleBox] used when the [ColorPickerButton] is focused. The [code]focus[/code] [StyleBox] is displayed [i]over[/i] the base [StyleBox], so a partially transparent [StyleBox] should be used to ensure the base [StyleBox] remains visible. A [StyleBox] that represents an outline or an underline works well for this purpose. To disable the focus visual effect, assign a [StyleBoxEmpty] resource. Note that disabling the focus visual effect will harm keyboard/controller navigation usability, so this is not recommended for accessibility reasons. - </theme_item> - <theme_item name="hover" data_type="style" type="StyleBox"> - [StyleBox] used when the [ColorPickerButton] is being hovered. - </theme_item> - <theme_item name="normal" data_type="style" type="StyleBox"> - Default [StyleBox] for the [ColorPickerButton]. - </theme_item> - <theme_item name="pressed" data_type="style" type="StyleBox"> - [StyleBox] used when the [ColorPickerButton] is being pressed. - </theme_item> </theme_items> </class> diff --git a/doc/classes/GraphElement.xml b/doc/classes/GraphElement.xml index 6c3b6b727a..589b553cb6 100644 --- a/doc/classes/GraphElement.xml +++ b/doc/classes/GraphElement.xml @@ -66,4 +66,9 @@ </description> </signal> </signals> + <theme_items> + <theme_item name="resizer" data_type="icon" type="Texture2D"> + The icon used for the resizer, visible when [member resizable] is enabled. + </theme_item> + </theme_items> </class> diff --git a/doc/classes/GraphNode.xml b/doc/classes/GraphNode.xml index 5d52ea17e2..9e1392567a 100644 --- a/doc/classes/GraphNode.xml +++ b/doc/classes/GraphNode.xml @@ -263,9 +263,6 @@ <theme_item name="port" data_type="icon" type="Texture2D"> The icon used for representing ports. </theme_item> - <theme_item name="resizer" data_type="icon" type="Texture2D"> - The icon used for the resizer, visible when [member GraphElement.resizable] is enabled. - </theme_item> <theme_item name="panel" data_type="style" type="StyleBox"> The default background for the slot area of the [GraphNode]. </theme_item> diff --git a/doc/classes/HBoxContainer.xml b/doc/classes/HBoxContainer.xml index 331c1d23ad..f531f3f910 100644 --- a/doc/classes/HBoxContainer.xml +++ b/doc/classes/HBoxContainer.xml @@ -9,9 +9,4 @@ <tutorials> <link title="Using Containers">$DOCS_URL/tutorials/ui/gui_containers.html</link> </tutorials> - <theme_items> - <theme_item name="separation" data_type="constant" type="int" default="4"> - The horizontal space between the [HBoxContainer]'s elements. - </theme_item> - </theme_items> </class> diff --git a/doc/classes/HFlowContainer.xml b/doc/classes/HFlowContainer.xml index 44d1af37cf..36a87376ca 100644 --- a/doc/classes/HFlowContainer.xml +++ b/doc/classes/HFlowContainer.xml @@ -9,12 +9,4 @@ <tutorials> <link title="Using Containers">$DOCS_URL/tutorials/ui/gui_containers.html</link> </tutorials> - <theme_items> - <theme_item name="h_separation" data_type="constant" type="int" default="4"> - The horizontal separation of children nodes. - </theme_item> - <theme_item name="v_separation" data_type="constant" type="int" default="4"> - The vertical separation of children nodes. - </theme_item> - </theme_items> </class> diff --git a/doc/classes/HScrollBar.xml b/doc/classes/HScrollBar.xml index 307d244a40..84ed0c69ad 100644 --- a/doc/classes/HScrollBar.xml +++ b/doc/classes/HScrollBar.xml @@ -8,39 +8,4 @@ </description> <tutorials> </tutorials> - <theme_items> - <theme_item name="decrement" data_type="icon" type="Texture2D"> - Icon used as a button to scroll the [ScrollBar] left. Supports custom step using the [member ScrollBar.custom_step] property. - </theme_item> - <theme_item name="decrement_highlight" data_type="icon" type="Texture2D"> - Displayed when the mouse cursor hovers over the decrement button. - </theme_item> - <theme_item name="decrement_pressed" data_type="icon" type="Texture2D"> - Displayed when the decrement button is being pressed. - </theme_item> - <theme_item name="increment" data_type="icon" type="Texture2D"> - Icon used as a button to scroll the [ScrollBar] right. Supports custom step using the [member ScrollBar.custom_step] property. - </theme_item> - <theme_item name="increment_highlight" data_type="icon" type="Texture2D"> - Displayed when the mouse cursor hovers over the increment button. - </theme_item> - <theme_item name="increment_pressed" data_type="icon" type="Texture2D"> - Displayed when the increment button is being pressed. - </theme_item> - <theme_item name="grabber" data_type="style" type="StyleBox"> - Used as texture for the grabber, the draggable element representing current scroll. - </theme_item> - <theme_item name="grabber_highlight" data_type="style" type="StyleBox"> - Used when the mouse hovers over the grabber. - </theme_item> - <theme_item name="grabber_pressed" data_type="style" type="StyleBox"> - Used when the grabber is being dragged. - </theme_item> - <theme_item name="scroll" data_type="style" type="StyleBox"> - Used as background of this [ScrollBar]. - </theme_item> - <theme_item name="scroll_focus" data_type="style" type="StyleBox"> - Used as background when the [ScrollBar] has the GUI focus. - </theme_item> - </theme_items> </class> diff --git a/doc/classes/HSeparator.xml b/doc/classes/HSeparator.xml index c749eaa10e..ffba571f90 100644 --- a/doc/classes/HSeparator.xml +++ b/doc/classes/HSeparator.xml @@ -8,12 +8,4 @@ </description> <tutorials> </tutorials> - <theme_items> - <theme_item name="separation" data_type="constant" type="int" default="4"> - The height of the area covered by the separator. Effectively works like a minimum height. - </theme_item> - <theme_item name="separator" data_type="style" type="StyleBox"> - The style for the separator line. Works best with [StyleBoxLine]. - </theme_item> - </theme_items> </class> diff --git a/doc/classes/HSlider.xml b/doc/classes/HSlider.xml index 352ab3773e..40ec408f9b 100644 --- a/doc/classes/HSlider.xml +++ b/doc/classes/HSlider.xml @@ -8,33 +8,4 @@ </description> <tutorials> </tutorials> - <theme_items> - <theme_item name="center_grabber" data_type="constant" type="int" default="0"> - Boolean constant. If [code]1[/code], the grabber texture size will be ignored and it will fit within slider's bounds based only on its center position. - </theme_item> - <theme_item name="grabber_offset" data_type="constant" type="int" default="0"> - Vertical offset of the grabber. - </theme_item> - <theme_item name="grabber" data_type="icon" type="Texture2D"> - The texture for the grabber (the draggable element). - </theme_item> - <theme_item name="grabber_disabled" data_type="icon" type="Texture2D"> - The texture for the grabber when it's disabled. - </theme_item> - <theme_item name="grabber_highlight" data_type="icon" type="Texture2D"> - The texture for the grabber when it's focused. - </theme_item> - <theme_item name="tick" data_type="icon" type="Texture2D"> - The texture for the ticks, visible when [member Slider.tick_count] is greater than 0. - </theme_item> - <theme_item name="grabber_area" data_type="style" type="StyleBox"> - The background of the area to the left of the grabber. - </theme_item> - <theme_item name="grabber_area_highlight" data_type="style" type="StyleBox"> - The background of the area to the left of the grabber that displays when it's being hovered or focused. - </theme_item> - <theme_item name="slider" data_type="style" type="StyleBox"> - The background for the whole slider. Determines the height of the [code]grabber_area[/code]. - </theme_item> - </theme_items> </class> diff --git a/doc/classes/HSplitContainer.xml b/doc/classes/HSplitContainer.xml index 7cc6d94af3..1d8dbcb17c 100644 --- a/doc/classes/HSplitContainer.xml +++ b/doc/classes/HSplitContainer.xml @@ -9,18 +9,4 @@ <tutorials> <link title="Using Containers">$DOCS_URL/tutorials/ui/gui_containers.html</link> </tutorials> - <theme_items> - <theme_item name="autohide" data_type="constant" type="int" default="1"> - Boolean value. If 1 ([code]true[/code]), the grabber will hide automatically when it isn't under the cursor. If 0 ([code]false[/code]), it's always visible. - </theme_item> - <theme_item name="minimum_grab_thickness" data_type="constant" type="int" default="6"> - The minimum thickness of the area users can click on to grab the splitting line. If [theme_item separation] or [theme_item grabber]'s thickness are too small, this ensure that the splitting line can still be dragged. - </theme_item> - <theme_item name="separation" data_type="constant" type="int" default="12"> - The space between sides of the container. - </theme_item> - <theme_item name="grabber" data_type="icon" type="Texture2D"> - The icon used for the grabber drawn in the middle area. - </theme_item> - </theme_items> </class> diff --git a/doc/classes/LinkButton.xml b/doc/classes/LinkButton.xml index 010760cae0..4f38b4d336 100644 --- a/doc/classes/LinkButton.xml +++ b/doc/classes/LinkButton.xml @@ -62,12 +62,18 @@ <theme_item name="font_color" data_type="color" type="Color" default="Color(0.875, 0.875, 0.875, 1)"> Default text [Color] of the [LinkButton]. </theme_item> + <theme_item name="font_disabled_color" data_type="color" type="Color" default="Color(0, 0, 0, 1)"> + Text [Color] used when the [LinkButton] is disabled. + </theme_item> <theme_item name="font_focus_color" data_type="color" type="Color" default="Color(0.95, 0.95, 0.95, 1)"> Text [Color] used when the [LinkButton] is focused. Only replaces the normal text color of the button. Disabled, hovered, and pressed states take precedence over this color. </theme_item> <theme_item name="font_hover_color" data_type="color" type="Color" default="Color(0.95, 0.95, 0.95, 1)"> Text [Color] used when the [LinkButton] is being hovered. </theme_item> + <theme_item name="font_hover_pressed_color" data_type="color" type="Color" default="Color(0, 0, 0, 1)"> + Text [Color] used when the [LinkButton] is being hovered and pressed. + </theme_item> <theme_item name="font_outline_color" data_type="color" type="Color" default="Color(1, 1, 1, 1)"> The tint of text outline of the [LinkButton]. </theme_item> diff --git a/doc/classes/MenuBar.xml b/doc/classes/MenuBar.xml index 7d1b73278e..07f64d0572 100644 --- a/doc/classes/MenuBar.xml +++ b/doc/classes/MenuBar.xml @@ -154,17 +154,32 @@ <theme_item name="disabled" data_type="style" type="StyleBox"> [StyleBox] used when the menu item is disabled. </theme_item> - <theme_item name="focus" data_type="style" type="StyleBox"> - [StyleBox] used when the menu item is focused. The [code]focus[/code] [StyleBox] is displayed [i]over[/i] the base [StyleBox], so a partially transparent [StyleBox] should be used to ensure the base [StyleBox] remains visible. A [StyleBox] that represents an outline or an underline works well for this purpose. To disable the focus visual effect, assign a [StyleBoxEmpty] resource. Note that disabling the focus visual effect will harm keyboard/controller navigation usability, so this is not recommended for accessibility reasons. + <theme_item name="disabled_mirrored" data_type="style" type="StyleBox"> + [StyleBox] used when the menu item is disabled (for right-to-left layouts). </theme_item> <theme_item name="hover" data_type="style" type="StyleBox"> [StyleBox] used when the menu item is being hovered. </theme_item> + <theme_item name="hover_mirrored" data_type="style" type="StyleBox"> + [StyleBox] used when the menu item is being hovered (for right-to-left layouts). + </theme_item> + <theme_item name="hover_pressed" data_type="style" type="StyleBox"> + [StyleBox] used when the menu item is being pressed and hovered at the same time. + </theme_item> + <theme_item name="hover_pressed_mirrored" data_type="style" type="StyleBox"> + [StyleBox] used when the menu item is being pressed and hovered at the same time (for right-to-left layouts). + </theme_item> <theme_item name="normal" data_type="style" type="StyleBox"> Default [StyleBox] for the menu item. </theme_item> + <theme_item name="normal_mirrored" data_type="style" type="StyleBox"> + Default [StyleBox] for the menu item (for right-to-left layouts). + </theme_item> <theme_item name="pressed" data_type="style" type="StyleBox"> [StyleBox] used when the menu item is being pressed. </theme_item> + <theme_item name="pressed_mirrored" data_type="style" type="StyleBox"> + [StyleBox] used when the menu item is being pressed (for right-to-left layouts). + </theme_item> </theme_items> </class> diff --git a/doc/classes/MenuButton.xml b/doc/classes/MenuButton.xml index e3a707ba72..6aa17c1e16 100644 --- a/doc/classes/MenuButton.xml +++ b/doc/classes/MenuButton.xml @@ -50,52 +50,4 @@ </description> </signal> </signals> - <theme_items> - <theme_item name="font_color" data_type="color" type="Color" default="Color(0.875, 0.875, 0.875, 1)"> - Default text [Color] of the [MenuButton]. - </theme_item> - <theme_item name="font_disabled_color" data_type="color" type="Color" default="Color(1, 1, 1, 0.3)"> - Text [Color] used when the [MenuButton] is disabled. - </theme_item> - <theme_item name="font_focus_color" data_type="color" type="Color" default="Color(0.95, 0.95, 0.95, 1)"> - Text [Color] used when the [MenuButton] is focused. Only replaces the normal text color of the button. Disabled, hovered, and pressed states take precedence over this color. - </theme_item> - <theme_item name="font_hover_color" data_type="color" type="Color" default="Color(0.95, 0.95, 0.95, 1)"> - Text [Color] used when the [MenuButton] is being hovered. - </theme_item> - <theme_item name="font_outline_color" data_type="color" type="Color" default="Color(1, 1, 1, 1)"> - The tint of text outline of the [MenuButton]. - </theme_item> - <theme_item name="font_pressed_color" data_type="color" type="Color" default="Color(1, 1, 1, 1)"> - Text [Color] used when the [MenuButton] is being pressed. - </theme_item> - <theme_item name="h_separation" data_type="constant" type="int" default="4"> - The horizontal space between [MenuButton]'s icon and text. Negative values will be treated as [code]0[/code] when used. - </theme_item> - <theme_item name="outline_size" data_type="constant" type="int" default="0"> - The size of the text outline. - [b]Note:[/b] If using a font with [member FontFile.multichannel_signed_distance_field] enabled, its [member FontFile.msdf_pixel_range] must be set to at least [i]twice[/i] the value of [theme_item outline_size] for outline rendering to look correct. Otherwise, the outline may appear to be cut off earlier than intended. - </theme_item> - <theme_item name="font" data_type="font" type="Font"> - [Font] of the [MenuButton]'s text. - </theme_item> - <theme_item name="font_size" data_type="font_size" type="int"> - Font size of the [MenuButton]'s text. - </theme_item> - <theme_item name="disabled" data_type="style" type="StyleBox"> - [StyleBox] used when the [MenuButton] is disabled. - </theme_item> - <theme_item name="focus" data_type="style" type="StyleBox"> - [StyleBox] used when the [MenuButton] is focused. The [code]focus[/code] [StyleBox] is displayed [i]over[/i] the base [StyleBox], so a partially transparent [StyleBox] should be used to ensure the base [StyleBox] remains visible. A [StyleBox] that represents an outline or an underline works well for this purpose. To disable the focus visual effect, assign a [StyleBoxEmpty] resource. Note that disabling the focus visual effect will harm keyboard/controller navigation usability, so this is not recommended for accessibility reasons. - </theme_item> - <theme_item name="hover" data_type="style" type="StyleBox"> - [StyleBox] used when the [MenuButton] is being hovered. - </theme_item> - <theme_item name="normal" data_type="style" type="StyleBox"> - Default [StyleBox] for the [MenuButton]. - </theme_item> - <theme_item name="pressed" data_type="style" type="StyleBox"> - [StyleBox] used when the [MenuButton] is being pressed. - </theme_item> - </theme_items> </class> diff --git a/doc/classes/OptionButton.xml b/doc/classes/OptionButton.xml index 47a68802aa..4e223c12fa 100644 --- a/doc/classes/OptionButton.xml +++ b/doc/classes/OptionButton.xml @@ -243,75 +243,14 @@ </signal> </signals> <theme_items> - <theme_item name="font_color" data_type="color" type="Color" default="Color(0.875, 0.875, 0.875, 1)"> - Default text [Color] of the [OptionButton]. - </theme_item> - <theme_item name="font_disabled_color" data_type="color" type="Color" default="Color(0.875, 0.875, 0.875, 0.5)"> - Text [Color] used when the [OptionButton] is disabled. - </theme_item> - <theme_item name="font_focus_color" data_type="color" type="Color" default="Color(0.95, 0.95, 0.95, 1)"> - Text [Color] used when the [OptionButton] is focused. Only replaces the normal text color of the button. Disabled, hovered, and pressed states take precedence over this color. - </theme_item> - <theme_item name="font_hover_color" data_type="color" type="Color" default="Color(0.95, 0.95, 0.95, 1)"> - Text [Color] used when the [OptionButton] is being hovered. - </theme_item> - <theme_item name="font_hover_pressed_color" data_type="color" type="Color" default="Color(1, 1, 1, 1)"> - Text [Color] used when the [OptionButton] is being hovered and pressed. - </theme_item> - <theme_item name="font_outline_color" data_type="color" type="Color" default="Color(1, 1, 1, 1)"> - The tint of text outline of the [OptionButton]. - </theme_item> - <theme_item name="font_pressed_color" data_type="color" type="Color" default="Color(1, 1, 1, 1)"> - Text [Color] used when the [OptionButton] is being pressed. - </theme_item> <theme_item name="arrow_margin" data_type="constant" type="int" default="4"> The horizontal space between the arrow icon and the right edge of the button. </theme_item> - <theme_item name="h_separation" data_type="constant" type="int" default="4"> - The horizontal space between [OptionButton]'s icon and text. Negative values will be treated as [code]0[/code] when used. - </theme_item> <theme_item name="modulate_arrow" data_type="constant" type="int" default="0"> If different than [code]0[/code], the arrow icon will be modulated to the font color. </theme_item> - <theme_item name="outline_size" data_type="constant" type="int" default="0"> - The size of the text outline. - [b]Note:[/b] If using a font with [member FontFile.multichannel_signed_distance_field] enabled, its [member FontFile.msdf_pixel_range] must be set to at least [i]twice[/i] the value of [theme_item outline_size] for outline rendering to look correct. Otherwise, the outline may appear to be cut off earlier than intended. - </theme_item> - <theme_item name="font" data_type="font" type="Font"> - [Font] of the [OptionButton]'s text. - </theme_item> - <theme_item name="font_size" data_type="font_size" type="int"> - Font size of the [OptionButton]'s text. - </theme_item> <theme_item name="arrow" data_type="icon" type="Texture2D"> The arrow icon to be drawn on the right end of the button. </theme_item> - <theme_item name="disabled" data_type="style" type="StyleBox"> - [StyleBox] used when the [OptionButton] is disabled (for left-to-right layouts). - </theme_item> - <theme_item name="disabled_mirrored" data_type="style" type="StyleBox"> - [StyleBox] used when the [OptionButton] is disabled (for right-to-left layouts). - </theme_item> - <theme_item name="focus" data_type="style" type="StyleBox"> - [StyleBox] used when the [OptionButton] is focused. The [code]focus[/code] [StyleBox] is displayed [i]over[/i] the base [StyleBox], so a partially transparent [StyleBox] should be used to ensure the base [StyleBox] remains visible. A [StyleBox] that represents an outline or an underline works well for this purpose. To disable the focus visual effect, assign a [StyleBoxEmpty] resource. Note that disabling the focus visual effect will harm keyboard/controller navigation usability, so this is not recommended for accessibility reasons. - </theme_item> - <theme_item name="hover" data_type="style" type="StyleBox"> - [StyleBox] used when the [OptionButton] is being hovered (for left-to-right layouts). - </theme_item> - <theme_item name="hover_mirrored" data_type="style" type="StyleBox"> - [StyleBox] used when the [OptionButton] is being hovered (for right-to-left layouts). - </theme_item> - <theme_item name="normal" data_type="style" type="StyleBox"> - Default [StyleBox] for the [OptionButton] (for left-to-right layouts). - </theme_item> - <theme_item name="normal_mirrored" data_type="style" type="StyleBox"> - Default [StyleBox] for the [OptionButton] (for right-to-left layouts). - </theme_item> - <theme_item name="pressed" data_type="style" type="StyleBox"> - [StyleBox] used when the [OptionButton] is being pressed (for left-to-right layouts). - </theme_item> - <theme_item name="pressed_mirrored" data_type="style" type="StyleBox"> - [StyleBox] used when the [OptionButton] is being pressed (for right-to-left layouts). - </theme_item> </theme_items> </class> diff --git a/doc/classes/Popup.xml b/doc/classes/Popup.xml index 29b44a98f2..c435f3d291 100644 --- a/doc/classes/Popup.xml +++ b/doc/classes/Popup.xml @@ -23,4 +23,9 @@ </description> </signal> </signals> + <theme_items> + <theme_item name="panel" data_type="style" type="StyleBox"> + Default [StyleBox] for the [Popup]. + </theme_item> + </theme_items> </class> diff --git a/doc/classes/PopupMenu.xml b/doc/classes/PopupMenu.xml index d1c1304509..6293fcb309 100644 --- a/doc/classes/PopupMenu.xml +++ b/doc/classes/PopupMenu.xml @@ -691,12 +691,6 @@ <theme_item name="labeled_separator_right" data_type="style" type="StyleBox"> [StyleBox] for the right side of labeled separator. See [method add_separator]. </theme_item> - <theme_item name="panel" data_type="style" type="StyleBox"> - Default [StyleBox] of the [PopupMenu] items. - </theme_item> - <theme_item name="panel_disabled" data_type="style" type="StyleBox"> - [StyleBox] used when the [PopupMenu] item is disabled. - </theme_item> <theme_item name="separator" data_type="style" type="StyleBox"> [StyleBox] used for the separators. See [method add_separator]. </theme_item> diff --git a/doc/classes/PopupPanel.xml b/doc/classes/PopupPanel.xml index ad981116de..b86972e8af 100644 --- a/doc/classes/PopupPanel.xml +++ b/doc/classes/PopupPanel.xml @@ -8,9 +8,4 @@ </description> <tutorials> </tutorials> - <theme_items> - <theme_item name="panel" data_type="style" type="StyleBox"> - The background panel style of this [PopupPanel]. - </theme_item> - </theme_items> </class> diff --git a/doc/classes/ProgressBar.xml b/doc/classes/ProgressBar.xml index 595749f4b6..1102f0369a 100644 --- a/doc/classes/ProgressBar.xml +++ b/doc/classes/ProgressBar.xml @@ -37,9 +37,6 @@ <theme_item name="font_outline_color" data_type="color" type="Color" default="Color(1, 1, 1, 1)"> The tint of text outline of the [ProgressBar]. </theme_item> - <theme_item name="font_shadow_color" data_type="color" type="Color" default="Color(0, 0, 0, 1)"> - The color of the text's shadow. - </theme_item> <theme_item name="outline_size" data_type="constant" type="int" default="0"> The size of the text outline. [b]Note:[/b] If using a font with [member FontFile.multichannel_signed_distance_field] enabled, its [member FontFile.msdf_pixel_range] must be set to at least [i]twice[/i] the value of [theme_item outline_size] for outline rendering to look correct. Otherwise, the outline may appear to be cut off earlier than intended. diff --git a/doc/classes/ScrollBar.xml b/doc/classes/ScrollBar.xml index 0cbb60198b..e8d2753a9a 100644 --- a/doc/classes/ScrollBar.xml +++ b/doc/classes/ScrollBar.xml @@ -21,4 +21,41 @@ </description> </signal> </signals> + <theme_items> + <theme_item name="decrement" data_type="icon" type="Texture2D"> + Icon used as a button to scroll the [ScrollBar] left/up. Supports custom step using the [member ScrollBar.custom_step] property. + </theme_item> + <theme_item name="decrement_highlight" data_type="icon" type="Texture2D"> + Displayed when the mouse cursor hovers over the decrement button. + </theme_item> + <theme_item name="decrement_pressed" data_type="icon" type="Texture2D"> + Displayed when the decrement button is being pressed. + </theme_item> + <theme_item name="increment" data_type="icon" type="Texture2D"> + Icon used as a button to scroll the [ScrollBar] right/down. Supports custom step using the [member ScrollBar.custom_step] property. + </theme_item> + <theme_item name="increment_highlight" data_type="icon" type="Texture2D"> + Displayed when the mouse cursor hovers over the increment button. + </theme_item> + <theme_item name="increment_pressed" data_type="icon" type="Texture2D"> + Displayed when the increment button is being pressed. + </theme_item> + <theme_item name="grabber" data_type="style" type="StyleBox"> + Used as texture for the grabber, the draggable element representing current scroll. + </theme_item> + <theme_item name="grabber_highlight" data_type="style" type="StyleBox"> + Used when the mouse hovers over the grabber. + </theme_item> + <theme_item name="grabber_pressed" data_type="style" type="StyleBox"> + Used when the grabber is being dragged. + </theme_item> + <theme_item name="hscroll" data_type="style" type="StyleBox"> + </theme_item> + <theme_item name="scroll" data_type="style" type="StyleBox"> + Used as background of this [ScrollBar]. + </theme_item> + <theme_item name="scroll_focus" data_type="style" type="StyleBox"> + Used as background when the [ScrollBar] has the GUI focus. + </theme_item> + </theme_items> </class> diff --git a/doc/classes/Separator.xml b/doc/classes/Separator.xml index fe6f6858b7..d0535d450f 100644 --- a/doc/classes/Separator.xml +++ b/doc/classes/Separator.xml @@ -8,4 +8,12 @@ </description> <tutorials> </tutorials> + <theme_items> + <theme_item name="separation" data_type="constant" type="int" default="0"> + The size of the area covered by the separator. Effectively works like a minimum width/height. + </theme_item> + <theme_item name="separator" data_type="style" type="StyleBox"> + The style for the separator line. Works best with [StyleBoxLine] (remember to enable [member StyleBoxLine.vertical] for [VSeparator]). + </theme_item> + </theme_items> </class> diff --git a/doc/classes/Slider.xml b/doc/classes/Slider.xml index b946b6cedb..efb646b7ae 100644 --- a/doc/classes/Slider.xml +++ b/doc/classes/Slider.xml @@ -37,4 +37,33 @@ </description> </signal> </signals> + <theme_items> + <theme_item name="center_grabber" data_type="constant" type="int" default="0"> + Boolean constant. If [code]1[/code], the grabber texture size will be ignored and it will fit within slider's bounds based only on its center position. + </theme_item> + <theme_item name="grabber_offset" data_type="constant" type="int" default="0"> + Vertical/horizontal offset of the grabber. + </theme_item> + <theme_item name="grabber" data_type="icon" type="Texture2D"> + The texture for the grabber (the draggable element). + </theme_item> + <theme_item name="grabber_disabled" data_type="icon" type="Texture2D"> + The texture for the grabber when it's disabled. + </theme_item> + <theme_item name="grabber_highlight" data_type="icon" type="Texture2D"> + The texture for the grabber when it's focused. + </theme_item> + <theme_item name="tick" data_type="icon" type="Texture2D"> + The texture for the ticks, visible when [member Slider.tick_count] is greater than 0. + </theme_item> + <theme_item name="grabber_area" data_type="style" type="StyleBox"> + The background of the area to the left/bottom of the grabber. + </theme_item> + <theme_item name="grabber_area_highlight" data_type="style" type="StyleBox"> + The background of the area to the left/bottom of the grabber that displays when it's being hovered or focused. + </theme_item> + <theme_item name="slider" data_type="style" type="StyleBox"> + The background for the whole slider. Determines the height/width of the [code]grabber_area[/code]. + </theme_item> + </theme_items> </class> diff --git a/doc/classes/SplitContainer.xml b/doc/classes/SplitContainer.xml index 5078685cce..454a542cc8 100644 --- a/doc/classes/SplitContainer.xml +++ b/doc/classes/SplitContainer.xml @@ -61,6 +61,9 @@ <theme_item name="separation" data_type="constant" type="int" default="12"> The space between sides of the container. </theme_item> + <theme_item name="grabber" data_type="icon" type="Texture2D"> + The icon used for the grabber drawn in the middle area. + </theme_item> <theme_item name="h_grabber" data_type="icon" type="Texture2D"> The icon used for the grabber drawn in the middle area when [member vertical] is [code]false[/code]. </theme_item> diff --git a/doc/classes/VBoxContainer.xml b/doc/classes/VBoxContainer.xml index 38541859a6..d3ea94c0eb 100644 --- a/doc/classes/VBoxContainer.xml +++ b/doc/classes/VBoxContainer.xml @@ -10,9 +10,4 @@ <link title="Using Containers">$DOCS_URL/tutorials/ui/gui_containers.html</link> <link title="3D Voxel Demo">https://godotengine.org/asset-library/asset/676</link> </tutorials> - <theme_items> - <theme_item name="separation" data_type="constant" type="int" default="4"> - The vertical space between the [VBoxContainer]'s elements. - </theme_item> - </theme_items> </class> diff --git a/doc/classes/VFlowContainer.xml b/doc/classes/VFlowContainer.xml index dcec1a58d9..5c896da729 100644 --- a/doc/classes/VFlowContainer.xml +++ b/doc/classes/VFlowContainer.xml @@ -9,12 +9,4 @@ <tutorials> <link title="Using Containers">$DOCS_URL/tutorials/ui/gui_containers.html</link> </tutorials> - <theme_items> - <theme_item name="h_separation" data_type="constant" type="int" default="4"> - The horizontal separation of children nodes. - </theme_item> - <theme_item name="v_separation" data_type="constant" type="int" default="4"> - The vertical separation of children nodes. - </theme_item> - </theme_items> </class> diff --git a/doc/classes/VScrollBar.xml b/doc/classes/VScrollBar.xml index 7cb1a3d16d..d6a69a6bba 100644 --- a/doc/classes/VScrollBar.xml +++ b/doc/classes/VScrollBar.xml @@ -12,39 +12,4 @@ <member name="size_flags_horizontal" type="int" setter="set_h_size_flags" getter="get_h_size_flags" overrides="Control" enum="Control.SizeFlags" is_bitfield="true" default="0" /> <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" /> </members> - <theme_items> - <theme_item name="decrement" data_type="icon" type="Texture2D"> - Icon used as a button to scroll the [ScrollBar] up. Supports custom step using the [member ScrollBar.custom_step] property. - </theme_item> - <theme_item name="decrement_highlight" data_type="icon" type="Texture2D"> - Displayed when the mouse cursor hovers over the decrement button. - </theme_item> - <theme_item name="decrement_pressed" data_type="icon" type="Texture2D"> - Displayed when the decrement button is being pressed. - </theme_item> - <theme_item name="increment" data_type="icon" type="Texture2D"> - Icon used as a button to scroll the [ScrollBar] down. Supports custom step using the [member ScrollBar.custom_step] property. - </theme_item> - <theme_item name="increment_highlight" data_type="icon" type="Texture2D"> - Displayed when the mouse cursor hovers over the increment button. - </theme_item> - <theme_item name="increment_pressed" data_type="icon" type="Texture2D"> - Displayed when the increment button is being pressed. - </theme_item> - <theme_item name="grabber" data_type="style" type="StyleBox"> - Used as texture for the grabber, the draggable element representing current scroll. - </theme_item> - <theme_item name="grabber_highlight" data_type="style" type="StyleBox"> - Used when the mouse hovers over the grabber. - </theme_item> - <theme_item name="grabber_pressed" data_type="style" type="StyleBox"> - Used when the grabber is being dragged. - </theme_item> - <theme_item name="scroll" data_type="style" type="StyleBox"> - Used as background of this [ScrollBar]. - </theme_item> - <theme_item name="scroll_focus" data_type="style" type="StyleBox"> - Used as background when the [ScrollBar] has the GUI focus. - </theme_item> - </theme_items> </class> diff --git a/doc/classes/VSeparator.xml b/doc/classes/VSeparator.xml index ffb4e76df8..57d1c9e704 100644 --- a/doc/classes/VSeparator.xml +++ b/doc/classes/VSeparator.xml @@ -8,12 +8,4 @@ </description> <tutorials> </tutorials> - <theme_items> - <theme_item name="separation" data_type="constant" type="int" default="4"> - The width of the area covered by the separator. Effectively works like a minimum width. - </theme_item> - <theme_item name="separator" data_type="style" type="StyleBox"> - The style for the separator line. Works best with [StyleBoxLine] (remember to enable [member StyleBoxLine.vertical]). - </theme_item> - </theme_items> </class> diff --git a/doc/classes/VSlider.xml b/doc/classes/VSlider.xml index 7475e5ff7e..eea5ba5060 100644 --- a/doc/classes/VSlider.xml +++ b/doc/classes/VSlider.xml @@ -12,33 +12,4 @@ <member name="size_flags_horizontal" type="int" setter="set_h_size_flags" getter="get_h_size_flags" overrides="Control" enum="Control.SizeFlags" is_bitfield="true" default="0" /> <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" /> </members> - <theme_items> - <theme_item name="center_grabber" data_type="constant" type="int" default="0"> - Boolean constant. If [code]1[/code], the grabber texture size will be ignored and it will fit within slider's bounds based only on its center position. - </theme_item> - <theme_item name="grabber_offset" data_type="constant" type="int" default="0"> - Horizontal offset of the grabber. - </theme_item> - <theme_item name="grabber" data_type="icon" type="Texture2D"> - The texture for the grabber (the draggable element). - </theme_item> - <theme_item name="grabber_disabled" data_type="icon" type="Texture2D"> - The texture for the grabber when it's disabled. - </theme_item> - <theme_item name="grabber_highlight" data_type="icon" type="Texture2D"> - The texture for the grabber when it's focused. - </theme_item> - <theme_item name="tick" data_type="icon" type="Texture2D"> - The texture for the ticks, visible when [member Slider.tick_count] is greater than 0. - </theme_item> - <theme_item name="grabber_area" data_type="style" type="StyleBox"> - The background of the area below the grabber. - </theme_item> - <theme_item name="grabber_area_highlight" data_type="style" type="StyleBox"> - The background of the area below the grabber that displays when it's being hovered or focused. - </theme_item> - <theme_item name="slider" data_type="style" type="StyleBox"> - The background for the whole slider. Determines the width of the [code]grabber_area[/code]. - </theme_item> - </theme_items> </class> diff --git a/doc/classes/VSplitContainer.xml b/doc/classes/VSplitContainer.xml index 1e363d987c..5932ca7369 100644 --- a/doc/classes/VSplitContainer.xml +++ b/doc/classes/VSplitContainer.xml @@ -9,18 +9,4 @@ <tutorials> <link title="Using Containers">$DOCS_URL/tutorials/ui/gui_containers.html</link> </tutorials> - <theme_items> - <theme_item name="autohide" data_type="constant" type="int" default="1"> - Boolean value. If 1 ([code]true[/code]), the grabber will hide automatically when it isn't under the cursor. If 0 ([code]false[/code]), it's always visible. - </theme_item> - <theme_item name="minimum_grab_thickness" data_type="constant" type="int" default="6"> - The minimum thickness of the area users can click on to grab the splitting line. If [theme_item separation] or [theme_item grabber]'s thickness are too small, this ensure that the splitting line can still be dragged. - </theme_item> - <theme_item name="separation" data_type="constant" type="int" default="12"> - The space between sides of the container. - </theme_item> - <theme_item name="grabber" data_type="icon" type="Texture2D"> - The icon used for the grabber drawn in the middle area. - </theme_item> - </theme_items> </class> |