2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-02-01 02:03:48 +01:00
<class name= "RichTextLabel" inherits= "Control" version= "4.0" >
2017-09-12 22:42:36 +02:00
<brief_description >
Label that displays rich text.
</brief_description>
<description >
2017-11-13 04:05:28 +01:00
Rich text can contain custom text, fonts, images and some basic formatting. The label manages these as an internal tag stack. It also adapts itself to given width/heights.
2019-06-22 01:04:47 +02:00
[b]Note:[/b] Assignments to [member bbcode_text] clear the tag stack and reconstruct it from the property's contents. Any edits made to [member bbcode_text] will erase previous edits made from other manual sources such as [method append_bbcode] and the [code]push_*[/code] / [method pop] methods.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
2018-11-05 08:46:27 +01:00
<link > https://docs.godotengine.org/en/latest/tutorials/gui/bbcode_in_richtextlabel.html</link>
2017-09-12 22:42:36 +02:00
</tutorials>
<methods >
<method name= "add_image" >
<return type= "void" >
</return>
2020-02-12 09:59:06 +01:00
<argument index= "0" name= "image" type= "Texture2D" >
2017-09-12 22:42:36 +02:00
</argument>
2019-10-16 12:00:15 +02:00
<argument index= "1" name= "width" type= "int" default= "0" >
</argument>
<argument index= "2" name= "height" type= "int" default= "0" >
</argument>
2017-09-12 22:42:36 +02:00
<description >
2019-10-16 12:00:15 +02:00
Adds an image's opening and closing tags to the tag stack, optionally providing a [code]width[/code] and [code]height[/code] to resize the image.
If [code]width[/code] or [code]height[/code] is set to 0, the image size will be adjusted in order to keep the original aspect ratio.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "add_text" >
<return type= "void" >
</return>
<argument index= "0" name= "text" type= "String" >
</argument>
<description >
2019-06-22 01:04:47 +02:00
Adds raw non-BBCode-parsed text to the tag stack.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "append_bbcode" >
<return type= "int" enum= "Error" >
</return>
<argument index= "0" name= "bbcode" type= "String" >
</argument>
<description >
2019-06-27 12:34:26 +02:00
Parses [code]bbcode[/code] and adds tags to the tag stack as needed. Returns the result of the parsing, [constant OK] if successful.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "clear" >
<return type= "void" >
</return>
<description >
2017-11-13 04:05:28 +01:00
Clears the tag stack and sets [member bbcode_text] to an empty string.
2017-09-12 22:42:36 +02:00
</description>
</method>
2018-05-12 09:38:00 +02:00
<method name= "get_content_height" >
<return type= "int" >
</return>
<description >
Returns the height of the content.
</description>
</method>
2017-09-23 10:59:35 +02:00
<method name= "get_line_count" qualifiers= "const" >
<return type= "int" >
</return>
<description >
2017-11-13 04:05:28 +01:00
Returns the total number of newlines in the tag stack's text tags. Considers wrapped text as one line.
2017-09-23 10:59:35 +02:00
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_total_character_count" qualifiers= "const" >
<return type= "int" >
</return>
<description >
2019-06-22 01:04:47 +02:00
Returns the total number of characters from text tags. Does not include BBCodes.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_v_scroll" >
<return type= "VScrollBar" >
</return>
<description >
2017-11-13 04:05:28 +01:00
Returns the vertical scrollbar.
2017-09-12 22:42:36 +02:00
</description>
</method>
2017-09-23 10:59:35 +02:00
<method name= "get_visible_line_count" qualifiers= "const" >
<return type= "int" >
</return>
<description >
2017-10-25 20:15:39 +02:00
Returns the number of visible lines.
2017-09-23 10:59:35 +02:00
</description>
</method>
2019-09-24 11:44:48 +02:00
<method name= "install_effect" >
<return type= "void" >
</return>
<argument index= "0" name= "effect" type= "Variant" >
</argument>
<description >
2020-01-06 06:33:53 +01:00
Installs a custom effect. [code]effect[/code] should be a valid [RichTextEffect].
2019-09-24 11:44:48 +02:00
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "newline" >
<return type= "void" >
</return>
<description >
2017-11-13 04:05:28 +01:00
Adds a newline tag to the tag stack.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "parse_bbcode" >
<return type= "int" enum= "Error" >
</return>
<argument index= "0" name= "bbcode" type= "String" >
</argument>
<description >
2019-06-27 12:34:26 +02:00
The assignment version of [method append_bbcode]. Clears the tag stack and inserts the new content. Returns [constant OK] if parses [code]bbcode[/code] successfully.
2017-09-12 22:42:36 +02:00
</description>
</method>
2019-09-24 11:44:48 +02:00
<method name= "parse_expressions_for_values" >
<return type= "Dictionary" >
</return>
2020-02-18 13:59:24 +01:00
<argument index= "0" name= "expressions" type= "PackedStringArray" >
2019-09-24 11:44:48 +02:00
</argument>
<description >
2020-01-06 06:33:53 +01:00
Parses BBCode parameter [code]expressions[/code] into a dictionary.
2019-09-24 11:44:48 +02:00
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "pop" >
<return type= "void" >
</return>
<description >
2019-06-22 01:04:47 +02:00
Terminates the current tag. Use after [code]push_*[/code] methods to close BBCodes manually. Does not need to follow [code]add_*[/code] methods.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "push_align" >
<return type= "void" >
</return>
<argument index= "0" name= "align" type= "int" enum= "RichTextLabel.Align" >
</argument>
<description >
2019-06-22 01:04:47 +02:00
Adds an [code][align][/code] tag based on the given [code]align[/code] value. See [enum Align] for possible values.
2017-09-12 22:42:36 +02:00
</description>
</method>
2019-10-26 16:40:31 +02:00
<method name= "push_bold" >
<return type= "void" >
</return>
<description >
2020-01-06 06:33:53 +01:00
Adds a [code][font][/code] tag with a bold font to the tag stack. This is the same as adding a [code][b][/code] tag if not currently in a [code][i][/code] tag.
2019-10-26 16:40:31 +02:00
</description>
</method>
<method name= "push_bold_italics" >
<return type= "void" >
</return>
<description >
2020-01-06 06:33:53 +01:00
Adds a [code][font][/code] tag with a bold italics font to the tag stack.
2019-10-26 16:40:31 +02:00
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "push_cell" >
<return type= "void" >
</return>
<description >
2019-01-07 10:02:04 +01:00
Adds a [code][cell][/code] tag to the tag stack. Must be inside a [code][table][/code] tag. See [method push_table] for details.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "push_color" >
<return type= "void" >
</return>
<argument index= "0" name= "color" type= "Color" >
</argument>
<description >
2017-11-13 04:05:28 +01:00
Adds a [code][color][/code] tag to the tag stack.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "push_font" >
<return type= "void" >
</return>
<argument index= "0" name= "font" type= "Font" >
</argument>
<description >
2017-11-13 04:05:28 +01:00
Adds a [code][font][/code] tag to the tag stack. Overrides default fonts for its duration.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "push_indent" >
<return type= "void" >
</return>
<argument index= "0" name= "level" type= "int" >
</argument>
<description >
2020-01-06 06:33:53 +01:00
Adds an [code][indent][/code] tag to the tag stack. Multiplies [code]level[/code] by current [member tab_size] to determine new margin length.
2017-09-12 22:42:36 +02:00
</description>
</method>
2019-10-26 16:40:31 +02:00
<method name= "push_italics" >
<return type= "void" >
</return>
<description >
2020-01-06 06:33:53 +01:00
Adds a [code][font][/code] tag with a italics font to the tag stack. This is the same as adding a [code][i][/code] tag if not currently in a [code][b][/code] tag.
2019-10-26 16:40:31 +02:00
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "push_list" >
<return type= "void" >
</return>
<argument index= "0" name= "type" type= "int" enum= "RichTextLabel.ListType" >
</argument>
<description >
2019-06-22 01:04:47 +02:00
Adds a [code][list][/code] tag to the tag stack. Similar to the BBCodes [code][ol][/code] or [code][ul][/code], but supports more list types. Not fully implemented!
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "push_meta" >
<return type= "void" >
</return>
<argument index= "0" name= "data" type= "Variant" >
</argument>
<description >
2019-06-22 01:04:47 +02:00
Adds a [code][meta][/code] tag to the tag stack. Similar to the BBCode [code][url=something]{text}[/url][/code], but supports non-[String] metadata types.
2017-09-12 22:42:36 +02:00
</description>
</method>
2019-10-26 16:40:31 +02:00
<method name= "push_mono" >
<return type= "void" >
</return>
<description >
2020-01-06 06:33:53 +01:00
Adds a [code][font][/code] tag with a monospace font to the tag stack.
2019-10-26 16:40:31 +02:00
</description>
</method>
<method name= "push_normal" >
<return type= "void" >
</return>
<description >
2020-01-06 06:33:53 +01:00
Adds a [code][font][/code] tag with a normal font to the tag stack.
2019-10-26 16:40:31 +02:00
</description>
</method>
2018-10-07 15:52:07 +02:00
<method name= "push_strikethrough" >
<return type= "void" >
</return>
<description >
2018-10-12 16:43:03 +02:00
Adds a [code][s][/code] tag to the tag stack.
2018-10-07 15:52:07 +02:00
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "push_table" >
<return type= "void" >
</return>
<argument index= "0" name= "columns" type= "int" >
</argument>
<description >
2017-11-13 04:05:28 +01:00
Adds a [code][table=columns][/code] tag to the tag stack.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "push_underline" >
<return type= "void" >
</return>
<description >
2017-11-13 04:05:28 +01:00
Adds a [code][u][/code] tag to the tag stack.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "remove_line" >
<return type= "bool" >
</return>
<argument index= "0" name= "line" type= "int" >
</argument>
<description >
2020-01-07 01:29:10 +01:00
Removes a line of content from the label. Returns [code]true[/code] if the line exists.
The [code]line[/code] argument is the index of the line to remove, it can take values in the interval [code][0, get_line_count() - 1][/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "scroll_to_line" >
<return type= "void" >
</return>
<argument index= "0" name= "line" type= "int" >
</argument>
<description >
2017-11-13 04:05:28 +01:00
Scrolls the window's top line to match [code]line[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "set_table_column_expand" >
<return type= "void" >
</return>
<argument index= "0" name= "column" type= "int" >
</argument>
<argument index= "1" name= "expand" type= "bool" >
</argument>
<argument index= "2" name= "ratio" type= "int" >
</argument>
<description >
2019-06-22 01:04:47 +02:00
Edits the selected column's expansion options. If [code]expand[/code] is [code]true[/code], the column expands in proportion to its expansion ratio versus the other columns' ratios.
2017-11-13 04:05:28 +01:00
For example, 2 columns with ratios 3 and 4 plus 70 pixels in available width would expand 30 and 40 pixels, respectively.
2019-06-22 01:04:47 +02:00
If [code]expand[/code] is [code]false[/code], the column will not contribute to the total ratio.
2017-09-12 22:42:36 +02:00
</description>
</method>
</methods>
<members >
2019-06-29 12:38:01 +02:00
<member name= "bbcode_enabled" type= "bool" setter= "set_use_bbcode" getter= "is_using_bbcode" default= "false" >
2019-06-29 15:24:23 +02:00
If [code]true[/code], the label uses BBCode formatting.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "bbcode_text" type= "String" setter= "set_bbcode" getter= "get_bbcode" default= """" >
2017-11-13 04:05:28 +01:00
The label's text in BBCode format. Is not representative of manual modifications to the internal tag stack. Erases changes made by other methods when edited.
2019-12-20 23:55:09 +01:00
[b]Note:[/b] It is unadvised to use [code]+=[/code] operator with [code]bbcode_text[/code] (e.g. [code]bbcode_text += "some string"[/code]) as it replaces the whole text and can cause slowdowns. Use [method append_bbcode] for adding text instead.
2017-09-12 22:42:36 +02:00
</member>
2019-09-24 11:44:48 +02:00
<member name= "custom_effects" type= "Array" setter= "set_effects" getter= "get_effects" default= "[ ]" >
2020-01-06 06:33:53 +01:00
The currently installed custom effects. This is an array of [RichTextEffect]s.
To add a custom effect, it's more convenient to use [method install_effect].
2019-09-24 11:44:48 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "meta_underlined" type= "bool" setter= "set_meta_underline" getter= "is_meta_underlined" default= "true" >
2019-06-29 15:24:23 +02:00
If [code]true[/code], the label underlines meta tags such as [code][url]{text}[/url][/code].
2018-01-11 23:38:35 +01:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "override_selected_font_color" type= "bool" setter= "set_override_selected_font_color" getter= "is_overriding_selected_font_color" default= "false" >
2019-06-29 15:24:23 +02:00
If [code]true[/code], the label uses the custom font color.
2017-10-21 12:02:08 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "percent_visible" type= "float" setter= "set_percent_visible" getter= "get_percent_visible" default= "1.0" >
2020-01-06 06:33:53 +01:00
The range of characters to display, as a [float] between 0.0 and 1.0. When assigned an out of range value, it's the same as assigning 1.0.
[b]Note:[/b] Setting this property updates [member visible_characters] based on current [method get_total_character_count].
2017-09-12 22:42:36 +02:00
</member>
2019-09-24 13:34:03 +02:00
<member name= "rect_clip_content" type= "bool" setter= "set_clip_contents" getter= "is_clipping_contents" override= "true" default= "true" />
2019-06-29 12:38:01 +02:00
<member name= "scroll_active" type= "bool" setter= "set_scroll_active" getter= "is_scroll_active" default= "true" >
2020-01-06 06:33:53 +01:00
If [code]true[/code], the scrollbar is visible. Setting this to [code]false[/code] does not block scrolling completely. See [method scroll_to_line].
2018-01-11 23:38:35 +01:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "scroll_following" type= "bool" setter= "set_scroll_follow" getter= "is_scroll_following" default= "false" >
2019-06-29 15:24:23 +02:00
If [code]true[/code], the window scrolls down to display new content automatically.
2018-01-11 23:38:35 +01:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "selection_enabled" type= "bool" setter= "set_selection_enabled" getter= "is_selection_enabled" default= "false" >
2018-01-11 23:38:35 +01:00
If [code]true[/code], the label allows text selection.
</member>
2019-06-29 12:38:01 +02:00
<member name= "tab_size" type= "int" setter= "set_tab_size" getter= "get_tab_size" default= "4" >
2019-06-22 01:04:47 +02:00
The number of spaces associated with a single tab length. Does not affect [code]\t[/code] in text tags, only indent tags.
2018-01-11 23:38:35 +01:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "text" type= "String" setter= "set_text" getter= "get_text" default= """" >
2018-01-11 23:38:35 +01:00
The raw text of the label.
2019-06-22 01:04:47 +02:00
When set, clears the tag stack and adds a raw text tag to the top of it. Does not parse BBCodes. Does not modify [member bbcode_text].
2018-01-11 23:38:35 +01:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "visible_characters" type= "int" setter= "set_visible_characters" getter= "get_visible_characters" default= "-1" >
2019-06-22 01:04:47 +02:00
The restricted number of characters to display in the label. If [code]-1[/code], all characters will be displayed.
2017-09-12 22:42:36 +02:00
</member>
</members>
<signals >
<signal name= "meta_clicked" >
2020-01-26 15:18:06 +01:00
<argument index= "0" name= "meta" type= "Variant" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-01-06 06:33:53 +01:00
Triggered when the user clicks on content between meta tags. If the meta is defined in text, e.g. [code][url={"data"="hi"}]hi[/url][/code], then the parameter for this signal will be a [String] type. If a particular type or an object is desired, the [method push_meta] method must be used to manually insert the data into the tag stack.
2017-09-12 22:42:36 +02:00
</description>
</signal>
2017-11-24 09:16:27 +01:00
<signal name= "meta_hover_ended" >
2020-01-26 15:18:06 +01:00
<argument index= "0" name= "meta" type= "Variant" >
2017-11-17 06:49:39 +01:00
</argument>
<description >
2017-11-24 09:16:27 +01:00
Triggers when the mouse exits a meta tag.
2017-11-17 06:49:39 +01:00
</description>
</signal>
2017-11-24 09:16:27 +01:00
<signal name= "meta_hover_started" >
2020-01-26 15:18:06 +01:00
<argument index= "0" name= "meta" type= "Variant" >
2017-11-17 06:49:39 +01:00
</argument>
<description >
2017-11-24 09:16:27 +01:00
Triggers when the mouse enters a meta tag.
2017-11-17 06:49:39 +01:00
</description>
</signal>
2017-09-12 22:42:36 +02:00
</signals>
<constants >
2017-11-24 23:16:30 +01:00
<constant name= "ALIGN_LEFT" value= "0" enum= "Align" >
2020-01-06 06:33:53 +01:00
Makes text left aligned.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "ALIGN_CENTER" value= "1" enum= "Align" >
2020-01-06 06:33:53 +01:00
Makes text centered.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "ALIGN_RIGHT" value= "2" enum= "Align" >
2020-01-06 06:33:53 +01:00
Makes text right aligned.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "ALIGN_FILL" value= "3" enum= "Align" >
2020-01-06 06:33:53 +01:00
Makes text fill width.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "LIST_NUMBERS" value= "0" enum= "ListType" >
2020-01-06 06:33:53 +01:00
Each list item has a number marker.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "LIST_LETTERS" value= "1" enum= "ListType" >
2020-01-06 06:33:53 +01:00
Each list item has a letter marker.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "LIST_DOTS" value= "2" enum= "ListType" >
2020-01-06 06:33:53 +01:00
Each list item has a filled circle marker.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "ITEM_FRAME" value= "0" enum= "ItemType" >
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "ITEM_TEXT" value= "1" enum= "ItemType" >
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "ITEM_IMAGE" value= "2" enum= "ItemType" >
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "ITEM_NEWLINE" value= "3" enum= "ItemType" >
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "ITEM_FONT" value= "4" enum= "ItemType" >
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "ITEM_COLOR" value= "5" enum= "ItemType" >
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "ITEM_UNDERLINE" value= "6" enum= "ItemType" >
2017-09-12 22:42:36 +02:00
</constant>
2018-10-07 15:52:07 +02:00
<constant name= "ITEM_STRIKETHROUGH" value= "7" enum= "ItemType" >
</constant>
<constant name= "ITEM_ALIGN" value= "8" enum= "ItemType" >
2017-09-12 22:42:36 +02:00
</constant>
2018-10-07 15:52:07 +02:00
<constant name= "ITEM_INDENT" value= "9" enum= "ItemType" >
2017-09-12 22:42:36 +02:00
</constant>
2018-10-07 15:52:07 +02:00
<constant name= "ITEM_LIST" value= "10" enum= "ItemType" >
2017-09-12 22:42:36 +02:00
</constant>
2018-10-07 15:52:07 +02:00
<constant name= "ITEM_TABLE" value= "11" enum= "ItemType" >
2017-10-22 12:56:11 +02:00
</constant>
2019-09-24 11:44:48 +02:00
<constant name= "ITEM_FADE" value= "12" enum= "ItemType" >
</constant>
<constant name= "ITEM_SHAKE" value= "13" enum= "ItemType" >
</constant>
<constant name= "ITEM_WAVE" value= "14" enum= "ItemType" >
</constant>
<constant name= "ITEM_TORNADO" value= "15" enum= "ItemType" >
</constant>
<constant name= "ITEM_RAINBOW" value= "16" enum= "ItemType" >
</constant>
<constant name= "ITEM_CUSTOMFX" value= "18" enum= "ItemType" >
</constant>
<constant name= "ITEM_META" value= "17" enum= "ItemType" >
2017-09-12 22:42:36 +02:00
</constant>
</constants>
<theme_items >
<theme_item name= "bold_font" type= "Font" >
2020-03-03 19:21:21 +01:00
The font used for bold text.
2017-09-12 22:42:36 +02:00
</theme_item>
<theme_item name= "bold_italics_font" type= "Font" >
2020-03-03 19:21:21 +01:00
The font used for bold italics text.
2017-09-12 22:42:36 +02:00
</theme_item>
2019-06-29 12:38:01 +02:00
<theme_item name= "default_color" type= "Color" default= "Color( 1, 1, 1, 1 )" >
2020-03-03 19:21:21 +01:00
The default text color.
2017-09-12 22:42:36 +02:00
</theme_item>
<theme_item name= "focus" type= "StyleBox" >
2020-03-03 19:21:21 +01:00
The background The background used when the [RichTextLabel] is focused.
2017-09-12 22:42:36 +02:00
</theme_item>
2019-07-09 09:13:00 +02:00
<theme_item name= "font_color_selected" type= "Color" default= "Color( 0.49, 0.49, 0.49, 1 )" >
2020-03-03 19:21:21 +01:00
The color of selected text, used when [member selection_enabled] is [code]true[/code].
2017-09-12 22:42:36 +02:00
</theme_item>
2019-06-29 12:38:01 +02:00
<theme_item name= "font_color_shadow" type= "Color" default= "Color( 0, 0, 0, 0 )" >
2020-03-03 19:21:21 +01:00
The color of the font's shadow.
2018-04-11 15:08:56 +02:00
</theme_item>
2017-09-12 22:42:36 +02:00
<theme_item name= "italics_font" type= "Font" >
2020-03-03 19:21:21 +01:00
The font used for italics text.
2017-09-12 22:42:36 +02:00
</theme_item>
2019-06-29 12:38:01 +02:00
<theme_item name= "line_separation" type= "int" default= "1" >
2020-03-03 19:21:21 +01:00
The vertical space between lines.
2017-09-12 22:42:36 +02:00
</theme_item>
<theme_item name= "mono_font" type= "Font" >
2020-03-03 19:21:21 +01:00
The font used for monospace text.
2017-09-12 22:42:36 +02:00
</theme_item>
<theme_item name= "normal" type= "StyleBox" >
2020-03-03 19:21:21 +01:00
The normal background for the [RichTextLabel].
2017-09-12 22:42:36 +02:00
</theme_item>
<theme_item name= "normal_font" type= "Font" >
2020-03-03 19:21:21 +01:00
The default text font.
2017-09-12 22:42:36 +02:00
</theme_item>
2019-06-29 12:38:01 +02:00
<theme_item name= "selection_color" type= "Color" default= "Color( 0.1, 0.1, 1, 0.8 )" >
2020-03-03 19:21:21 +01:00
The color of the selection box.
2017-09-12 22:42:36 +02:00
</theme_item>
2019-06-29 12:38:01 +02:00
<theme_item name= "shadow_as_outline" type= "int" default= "0" >
2020-03-03 19:21:21 +01:00
Boolean value. If 1 ([code]true[/code]), the shadow will be displayed around the whole text as an outline.
2018-05-12 09:38:00 +02:00
</theme_item>
2019-06-29 12:38:01 +02:00
<theme_item name= "shadow_offset_x" type= "int" default= "1" >
2020-03-03 19:21:21 +01:00
The horizontal offset of the font's shadow.
2018-05-12 09:38:00 +02:00
</theme_item>
2019-06-29 12:38:01 +02:00
<theme_item name= "shadow_offset_y" type= "int" default= "1" >
2020-03-03 19:21:21 +01:00
The vertical offset of the font's shadow.
2018-05-12 09:38:00 +02:00
</theme_item>
2019-06-29 12:38:01 +02:00
<theme_item name= "table_hseparation" type= "int" default= "3" >
2020-03-03 19:21:21 +01:00
The horizontal separation of elements in a table.
2017-09-12 22:42:36 +02:00
</theme_item>
2019-06-29 12:38:01 +02:00
<theme_item name= "table_vseparation" type= "int" default= "3" >
2020-03-03 19:21:21 +01:00
The vertical separation of elements in a table.
2017-09-12 22:42:36 +02:00
</theme_item>
</theme_items>
</class>