Class reference

Theme

Inherits Resource

A resource used for styling/skinning Controls and Windows.

Description

A resource used for styling/skinning Control and Window nodes. While individual controls can be styled using their local theme overrides (see Control.add_theme_color_override()), theme resources allow you to store and apply the same settings across all controls sharing the same type (e.g. style all Buttons the same). One theme resource can be used for the entire project, but you can also set a separate theme resource to a branch of control nodes. A theme resource assigned to a control applies to the control itself, as well as all of its direct and indirect children (as long as a chain of controls is uninterrupted). Use ProjectSettings.gui/theme/custom to set up a project-scope theme that will be available to every control in your project. Use Control.theme of any control node to set up a theme that will be available to that control and all of its direct and indirect children.

Properties

float default_base_scale = 0.0

The default base scale factor of this theme resource. Used by some controls to scale their visual properties based on the global scale factor. If this value is set to 0.0, the global scale factor is used (see ThemeDB.fallback_base_scale). Use has_default_base_scale() to check if this value is valid.

Font default_font

The default font of this theme resource. Used as the default value when trying to fetch a font resource that doesn't exist in this theme or is in invalid state. If the default font is also missing or invalid, the engine fallback value is used (see ThemeDB.fallback_font). Use has_default_font() to check if this value is valid.

int default_font_size = -1

The default font size of this theme resource. Used as the default value when trying to fetch a font size value that doesn't exist in this theme or is in invalid state. If the default font size is also missing or invalid, the engine fallback value is used (see ThemeDB.fallback_font_size). Values below 1 are invalid and can be used to unset the property. Use has_default_font_size() to check if this value is valid.

Methods

void add_type(StringName theme_type)

Adds an empty theme type for every valid data type. Note: Empty types are not saved with the theme. This method only exists to perform in-memory changes to the resource. Use available set_* methods to add theme items.

void clear()

Removes all the theme properties defined on the theme resource.

void clear_color(StringName name, StringName theme_type)

Removes the Color property defined by name and theme_type, if it exists. Fails if it doesn't exist. Use has_color() to check for existence.

void clear_constant(StringName name, StringName theme_type)

Removes the constant property defined by name and theme_type, if it exists. Fails if it doesn't exist. Use has_constant() to check for existence.

void clear_font(StringName name, StringName theme_type)

Removes the Font property defined by name and theme_type, if it exists. Fails if it doesn't exist. Use has_font() to check for existence.

void clear_font_size(StringName name, StringName theme_type)

Removes the font size property defined by name and theme_type, if it exists. Fails if it doesn't exist. Use has_font_size() to check for existence.

void clear_icon(StringName name, StringName theme_type)

Removes the icon property defined by name and theme_type, if it exists. Fails if it doesn't exist. Use has_icon() to check for existence.

void clear_theme_item(int data_type, StringName name, StringName theme_type)

Removes the theme property of data_type defined by name and theme_type, if it exists. Fails if it doesn't exist. Use has_theme_item() to check for existence. Note: This method is analogous to calling the corresponding data type specific method, but can be used for more generalized logic.

Color get_color(StringName name, StringName theme_type) const

Returns the Color property defined by name and theme_type, if it exists. Returns the default color value if the property doesn't exist. Use has_color() to check for existence.

int get_constant(StringName name, StringName theme_type) const

Returns the constant property defined by name and theme_type, if it exists. Returns 0 if the property doesn't exist. Use has_constant() to check for existence.

PackedStringArray get_constant_type_list() const

Returns a list of all unique theme type names for constant properties. Use get_type_list() to get a list of all unique theme types.

Font get_font(StringName name, StringName theme_type) const

Returns the Font property defined by name and theme_type, if it exists. Returns the default theme font if the property doesn't exist and the default theme font is set up (see default_font). Use has_font() to check for existence of the property and has_default_font() to check for existence of the default theme font. Returns the engine fallback font value, if neither exist (see ThemeDB.fallback_font).

int get_font_size(StringName name, StringName theme_type) const

Returns the font size property defined by name and theme_type, if it exists. Returns the default theme font size if the property doesn't exist and the default theme font size is set up (see default_font_size). Use has_font_size() to check for existence of the property and has_default_font_size() to check for existence of the default theme font. Returns the engine fallback font size value, if neither exist (see ThemeDB.fallback_font_size).

PackedStringArray get_font_size_type_list() const

Returns a list of all unique theme type names for font size properties. Use get_type_list() to get a list of all unique theme types.

PackedStringArray get_icon_type_list() const

Returns a list of all unique theme type names for icon properties. Use get_type_list() to get a list of all unique theme types.

Variant get_theme_item(int data_type, StringName name, StringName theme_type) const

Returns the theme property of data_type defined by name and theme_type, if it exists. Returns the engine fallback value if the property doesn't exist (see ThemeDB). Use has_theme_item() to check for existence. Note: This method is analogous to calling the corresponding data type specific method, but can be used for more generalized logic.

PackedStringArray get_theme_item_list(int data_type, String theme_type) const

Returns a list of names for properties of data_type defined with theme_type. Use get_theme_item_type_list() to get a list of possible theme type names. Note: This method is analogous to calling the corresponding data type specific method, but can be used for more generalized logic.

PackedStringArray get_theme_item_type_list(int data_type) const

Returns a list of all unique theme type names for data_type properties. Use get_type_list() to get a list of all unique theme types. Note: This method is analogous to calling the corresponding data type specific method, but can be used for more generalized logic.

PackedStringArray get_type_list() const

Returns a list of all unique theme type names. Use the appropriate get_*_type_list method to get a list of unique theme types for a single data type.

StringName get_type_variation_base(StringName theme_type) const

Returns the name of the base theme type if theme_type is a valid variation type. Returns an empty string otherwise.

bool has_constant(StringName name, StringName theme_type) const

Returns true if the constant property defined by name and theme_type exists. Returns false if it doesn't exist. Use set_constant() to define it.

bool has_default_base_scale() const

Returns true if default_base_scale has a valid value. Returns false if it doesn't. The value must be greater than 0.0 to be considered valid.

bool has_default_font() const

Returns true if default_font has a valid value. Returns false if it doesn't.

bool has_default_font_size() const

Returns true if default_font_size has a valid value. Returns false if it doesn't. The value must be greater than 0 to be considered valid.

bool has_icon(StringName name, StringName theme_type) const

Returns true if the icon property defined by name and theme_type exists. Returns false if it doesn't exist. Use set_icon() to define it.

bool has_theme_item(int data_type, StringName name, StringName theme_type) const

Returns true if the theme property of data_type defined by name and theme_type exists. Returns false if it doesn't exist. Use set_theme_item() to define it. Note: This method is analogous to calling the corresponding data type specific method, but can be used for more generalized logic.

bool is_type_variation(StringName theme_type, StringName base_type) const

Returns true if theme_type is marked as a variation of base_type.

void merge_with(Theme other)

Adds missing and overrides existing definitions with values from the other theme resource. Note: This modifies the current theme. If you want to merge two themes together without modifying either one, create a new empty theme and merge the other two into it one after another.

void remove_type(StringName theme_type)

Removes the theme type, gracefully discarding defined theme items. If the type is a variation, this information is also erased. If the type is a base for type variations, those variations lose their base.

void rename_color(StringName old_name, StringName name, StringName theme_type)

Renames the Color property defined by old_name and theme_type to name, if it exists. Fails if it doesn't exist, or if a similar property with the new name already exists. Use has_color() to check for existence, and clear_color() to remove the existing property.

void rename_constant(StringName old_name, StringName name, StringName theme_type)

Renames the constant property defined by old_name and theme_type to name, if it exists. Fails if it doesn't exist, or if a similar property with the new name already exists. Use has_constant() to check for existence, and clear_constant() to remove the existing property.

void rename_font(StringName old_name, StringName name, StringName theme_type)

Renames the Font property defined by old_name and theme_type to name, if it exists. Fails if it doesn't exist, or if a similar property with the new name already exists. Use has_font() to check for existence, and clear_font() to remove the existing property.

void rename_font_size(StringName old_name, StringName name, StringName theme_type)

Renames the font size property defined by old_name and theme_type to name, if it exists. Fails if it doesn't exist, or if a similar property with the new name already exists. Use has_font_size() to check for existence, and clear_font_size() to remove the existing property.

void rename_icon(StringName old_name, StringName name, StringName theme_type)

Renames the icon property defined by old_name and theme_type to name, if it exists. Fails if it doesn't exist, or if a similar property with the new name already exists. Use has_icon() to check for existence, and clear_icon() to remove the existing property.

void rename_stylebox(StringName old_name, StringName name, StringName theme_type)

Renames the StyleBox property defined by old_name and theme_type to name, if it exists. Fails if it doesn't exist, or if a similar property with the new name already exists. Use has_stylebox() to check for existence, and clear_stylebox() to remove the existing property.

void rename_theme_item(int data_type, StringName old_name, StringName name, StringName theme_type)

Renames the theme property of data_type defined by old_name and theme_type to name, if it exists. Fails if it doesn't exist, or if a similar property with the new name already exists. Use has_theme_item() to check for existence, and clear_theme_item() to remove the existing property. Note: This method is analogous to calling the corresponding data type specific method, but can be used for more generalized logic.

void rename_type(StringName old_theme_type, StringName theme_type)

Renames the theme type old_theme_type to theme_type, if the old type exists and the new one doesn't exist. Note: Renaming a theme type to an empty name or a variation to a type associated with a built-in class removes type variation connections in a way that cannot be undone by reversing the rename alone.

void set_constant(StringName name, StringName theme_type, int constant)

Creates or changes the value of the constant property defined by name and theme_type. Use clear_constant() to remove the property.

void set_font_size(StringName name, StringName theme_type, int font_size)

Creates or changes the value of the font size property defined by name and theme_type. Use clear_font_size() to remove the property.

void set_theme_item(int data_type, StringName name, StringName theme_type, Variant value)

Creates or changes the value of the theme property of data_type defined by name and theme_type. Use clear_theme_item() to remove the property. Fails if the value type is not accepted by data_type. Note: This method is analogous to calling the corresponding data type specific method, but can be used for more generalized logic.

void set_type_variation(StringName theme_type, StringName base_type)

Marks theme_type as a variation of base_type. This adds theme_type as a suggested option for Control.theme_type_variation on a Control that is of the base_type class. Variations can also be nested, i.e. base_type can be another variation. If a chain of variations ends with a base_type matching the class of the Control, the whole chain is going to be suggested as options. Note: Suggestions only show up if this theme resource is set as the project default theme. See ProjectSettings.gui/theme/custom.

Constants

DATA_TYPE_COLOR = 0

Enum: DataType

Theme's Color item type.

DATA_TYPE_CONSTANT = 1

Enum: DataType

Theme's constant item type.

DATA_TYPE_FONT = 2

Enum: DataType

Theme's Font item type.

DATA_TYPE_FONT_SIZE = 3

Enum: DataType

Theme's font size item type.

DATA_TYPE_ICON = 4

Enum: DataType

Theme's icon Texture2D item type.

DATA_TYPE_STYLEBOX = 5

Enum: DataType

Theme's StyleBox item type.

DATA_TYPE_MAX = 6

Enum: DataType

Maximum value for the DataType enum.

Tutorials

Source revision 5592dc3a7a61
Connection interrupted. Reload×

Rejoining the server...

Rejoin failed... trying again in seconds.

Failed to rejoin.
Please retry or reload the page.

The session has been paused by the server.

Failed to resume the session.
Please retry or reload the page.