2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2021-04-26 13:14:51 +02:00
<class name= "Theme" inherits= "Resource" version= "3.4" >
2017-09-12 22:42:36 +02:00
<brief_description >
Theme for controls.
</brief_description>
<description >
2019-06-22 01:04:47 +02:00
A theme for skinning controls. Controls can be skinned individually, but for complex applications, it's more practical to just create a global theme that defines everything. This theme can be applied to any [Control]; the Control and its children will automatically use it.
Theme resources can alternatively be loaded by writing them in a [code].theme[/code] file, see the documentation for more information.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
2021-03-26 10:43:43 +01:00
<link > https://docs.godotengine.org/en/3.3/tutorials/gui/gui_skinning.html</link>
2017-09-12 22:42:36 +02:00
</tutorials>
<methods >
2018-12-04 21:57:07 +01:00
<method name= "clear" >
<return type= "void" >
</return>
<description >
2019-10-31 07:04:58 +01:00
Clears all values on the theme.
2018-12-04 21:57:07 +01:00
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "clear_color" >
<return type= "void" >
</return>
<argument index= "0" name= "name" type= "String" >
</argument>
2020-09-12 18:30:40 +02:00
<argument index= "1" name= "node_type" type= "String" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-09-12 18:30:40 +02:00
Clears the [Color] at [code]name[/code] if the theme has [code]node_type[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "clear_constant" >
<return type= "void" >
</return>
<argument index= "0" name= "name" type= "String" >
</argument>
2020-09-12 18:30:40 +02:00
<argument index= "1" name= "node_type" type= "String" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-09-12 18:30:40 +02:00
Clears the constant at [code]name[/code] if the theme has [code]node_type[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "clear_font" >
<return type= "void" >
</return>
<argument index= "0" name= "name" type= "String" >
</argument>
2020-09-12 18:30:40 +02:00
<argument index= "1" name= "node_type" type= "String" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-09-12 18:30:40 +02:00
Clears the [Font] at [code]name[/code] if the theme has [code]node_type[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "clear_icon" >
<return type= "void" >
</return>
<argument index= "0" name= "name" type= "String" >
</argument>
2020-09-12 18:30:40 +02:00
<argument index= "1" name= "node_type" type= "String" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-09-12 18:30:40 +02:00
Clears the icon at [code]name[/code] if the theme has [code]node_type[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "clear_stylebox" >
<return type= "void" >
</return>
<argument index= "0" name= "name" type= "String" >
</argument>
2020-09-12 18:30:40 +02:00
<argument index= "1" name= "node_type" type= "String" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-09-12 18:30:40 +02:00
Clears [StyleBox] at [code]name[/code] if the theme has [code]node_type[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
2021-06-10 15:23:00 +02:00
<method name= "clear_theme_item" >
<return type= "void" >
</return>
<argument index= "0" name= "data_type" type= "int" enum= "Theme.DataType" >
</argument>
<argument index= "1" name= "name" type= "String" >
</argument>
<argument index= "2" name= "node_type" type= "String" >
</argument>
<description >
Clears the theme item of [code]data_type[/code] at [code]name[/code] if the theme has [code]node_type[/code].
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "copy_default_theme" >
<return type= "void" >
</return>
<description >
2019-12-06 23:09:20 +01:00
Sets the theme's values to a copy of the default theme values.
2017-09-12 22:42:36 +02:00
</description>
</method>
2019-01-26 22:21:53 +01:00
<method name= "copy_theme" >
<return type= "void" >
</return>
<argument index= "0" name= "other" type= "Theme" >
</argument>
<description >
2019-12-06 23:09:20 +01:00
Sets the theme's values to a copy of a given theme.
2019-01-26 22:21:53 +01:00
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_color" qualifiers= "const" >
<return type= "Color" >
</return>
<argument index= "0" name= "name" type= "String" >
</argument>
2020-09-12 18:30:40 +02:00
<argument index= "1" name= "node_type" type= "String" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-09-12 18:30:40 +02:00
Returns the [Color] at [code]name[/code] if the theme has [code]node_type[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_color_list" qualifiers= "const" >
<return type= "PoolStringArray" >
</return>
2020-09-12 18:30:40 +02:00
<argument index= "0" name= "node_type" type= "String" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-09-12 18:30:40 +02:00
Returns all the [Color]s as a [PoolStringArray] filled with each [Color]'s name, for use in [method get_color], if the theme has [code]node_type[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
2021-06-10 14:28:47 +02:00
<method name= "get_color_types" qualifiers= "const" >
<return type= "PoolStringArray" >
</return>
<description >
Returns all the [Color] types as a [PoolStringArray] filled with unique type names, for use in [method get_color] and/or [method get_color_list].
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_constant" qualifiers= "const" >
<return type= "int" >
</return>
<argument index= "0" name= "name" type= "String" >
</argument>
2020-09-12 18:30:40 +02:00
<argument index= "1" name= "node_type" type= "String" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-09-12 18:30:40 +02:00
Returns the constant at [code]name[/code] if the theme has [code]node_type[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_constant_list" qualifiers= "const" >
<return type= "PoolStringArray" >
</return>
2020-09-12 18:30:40 +02:00
<argument index= "0" name= "node_type" type= "String" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-09-12 18:30:40 +02:00
Returns all the constants as a [PoolStringArray] filled with each constant's name, for use in [method get_constant], if the theme has [code]node_type[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
2021-06-10 14:28:47 +02:00
<method name= "get_constant_types" qualifiers= "const" >
<return type= "PoolStringArray" >
</return>
<description >
Returns all the constant types as a [PoolStringArray] filled with unique type names, for use in [method get_constant] and/or [method get_constant_list].
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_font" qualifiers= "const" >
<return type= "Font" >
</return>
<argument index= "0" name= "name" type= "String" >
</argument>
2020-09-12 18:30:40 +02:00
<argument index= "1" name= "node_type" type= "String" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-09-12 18:30:40 +02:00
Returns the [Font] at [code]name[/code] if the theme has [code]node_type[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_font_list" qualifiers= "const" >
<return type= "PoolStringArray" >
</return>
2020-09-12 18:30:40 +02:00
<argument index= "0" name= "node_type" type= "String" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-09-12 18:30:40 +02:00
Returns all the [Font]s as a [PoolStringArray] filled with each [Font]'s name, for use in [method get_font], if the theme has [code]node_type[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
2021-06-10 14:28:47 +02:00
<method name= "get_font_types" qualifiers= "const" >
<return type= "PoolStringArray" >
</return>
<description >
Returns all the [Font] types as a [PoolStringArray] filled with unique type names, for use in [method get_font] and/or [method get_font_list].
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_icon" qualifiers= "const" >
<return type= "Texture" >
</return>
<argument index= "0" name= "name" type= "String" >
</argument>
2020-09-12 18:30:40 +02:00
<argument index= "1" name= "node_type" type= "String" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-09-12 18:30:40 +02:00
Returns the icon [Texture] at [code]name[/code] if the theme has [code]node_type[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_icon_list" qualifiers= "const" >
<return type= "PoolStringArray" >
</return>
2020-09-12 18:30:40 +02:00
<argument index= "0" name= "node_type" type= "String" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-09-12 18:30:40 +02:00
Returns all the icons as a [PoolStringArray] filled with each [Texture]'s name, for use in [method get_icon], if the theme has [code]node_type[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
2021-06-10 14:28:47 +02:00
<method name= "get_icon_types" qualifiers= "const" >
<return type= "PoolStringArray" >
</return>
<description >
Returns all the icon types as a [PoolStringArray] filled with unique type names, for use in [method get_icon] and/or [method get_icon_list].
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_stylebox" qualifiers= "const" >
<return type= "StyleBox" >
</return>
<argument index= "0" name= "name" type= "String" >
</argument>
2020-09-12 18:30:40 +02:00
<argument index= "1" name= "node_type" type= "String" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2021-02-20 16:10:28 +01:00
Returns the [StyleBox] at [code]name[/code] if the theme has [code]node_type[/code].
Valid [code]name[/code]s may be found using [method get_stylebox_list]. Valid [code]node_type[/code]s may be found using [method get_stylebox_types].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_stylebox_list" qualifiers= "const" >
<return type= "PoolStringArray" >
</return>
2020-09-12 18:30:40 +02:00
<argument index= "0" name= "node_type" type= "String" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-09-12 18:30:40 +02:00
Returns all the [StyleBox]s as a [PoolStringArray] filled with each [StyleBox]'s name, for use in [method get_stylebox], if the theme has [code]node_type[/code].
2021-02-20 16:10:28 +01:00
Valid [code]node_type[/code]s may be found using [method get_stylebox_types].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_stylebox_types" qualifiers= "const" >
<return type= "PoolStringArray" >
</return>
<description >
2021-06-10 14:28:47 +02:00
Returns all the [StyleBox] types as a [PoolStringArray] filled with unique type names, for use in [method get_stylebox] and/or [method get_stylebox_list].
2017-09-12 22:42:36 +02:00
</description>
</method>
2021-06-10 15:23:00 +02:00
<method name= "get_theme_item" qualifiers= "const" >
<return type= "Variant" >
</return>
<argument index= "0" name= "data_type" type= "int" enum= "Theme.DataType" >
</argument>
<argument index= "1" name= "name" type= "String" >
</argument>
<argument index= "2" name= "node_type" type= "String" >
</argument>
<description >
Returns the theme item of [code]data_type[/code] at [code]name[/code] if the theme has [code]node_type[/code].
Valid [code]name[/code]s may be found using [method get_theme_item_list] or a data type specific method. Valid [code]node_type[/code]s may be found using [method get_theme_item_types] or a data type specific method.
</description>
</method>
<method name= "get_theme_item_list" qualifiers= "const" >
<return type= "PoolStringArray" >
</return>
<argument index= "0" name= "data_type" type= "int" enum= "Theme.DataType" >
</argument>
<argument index= "1" name= "node_type" type= "String" >
</argument>
<description >
Returns all the theme items of [code]data_type[/code] as a [PoolStringArray] filled with each theme items's name, for use in [method get_theme_item] or a data type specific method, if the theme has [code]node_type[/code].
Valid [code]node_type[/code]s may be found using [method get_theme_item_types] or a data type specific method.
</description>
</method>
<method name= "get_theme_item_types" qualifiers= "const" >
<return type= "PoolStringArray" >
</return>
<argument index= "0" name= "data_type" type= "int" enum= "Theme.DataType" >
</argument>
<description >
Returns all the theme items of [code]data_type[/code] types as a [PoolStringArray] filled with unique type names, for use in [method get_theme_item], [method get_theme_item_list] or data type specific methods.
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_type_list" qualifiers= "const" >
<return type= "PoolStringArray" >
</return>
2020-09-12 18:30:40 +02:00
<argument index= "0" name= "node_type" type= "String" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2021-06-10 14:28:47 +02:00
Returns all the theme types as a [PoolStringArray] filled with unique type names, for use in other [code]get_*[/code] functions of this theme.
[b]Note:[/b] [code]node_type[/code] has no effect and will be removed in future version.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "has_color" qualifiers= "const" >
<return type= "bool" >
</return>
<argument index= "0" name= "name" type= "String" >
</argument>
2020-09-12 18:30:40 +02:00
<argument index= "1" name= "node_type" type= "String" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-09-12 18:30:40 +02:00
Returns [code]true[/code] if [Color] with [code]name[/code] is in [code]node_type[/code].
Returns [code]false[/code] if the theme does not have [code]node_type[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "has_constant" qualifiers= "const" >
<return type= "bool" >
</return>
<argument index= "0" name= "name" type= "String" >
</argument>
2020-09-12 18:30:40 +02:00
<argument index= "1" name= "node_type" type= "String" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-09-12 18:30:40 +02:00
Returns [code]true[/code] if constant with [code]name[/code] is in [code]node_type[/code].
Returns [code]false[/code] if the theme does not have [code]node_type[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "has_font" qualifiers= "const" >
<return type= "bool" >
</return>
<argument index= "0" name= "name" type= "String" >
</argument>
2020-09-12 18:30:40 +02:00
<argument index= "1" name= "node_type" type= "String" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-09-12 18:30:40 +02:00
Returns [code]true[/code] if [Font] with [code]name[/code] is in [code]node_type[/code].
Returns [code]false[/code] if the theme does not have [code]node_type[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "has_icon" qualifiers= "const" >
<return type= "bool" >
</return>
<argument index= "0" name= "name" type= "String" >
</argument>
2020-09-12 18:30:40 +02:00
<argument index= "1" name= "node_type" type= "String" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-09-12 18:30:40 +02:00
Returns [code]true[/code] if icon [Texture] with [code]name[/code] is in [code]node_type[/code].
Returns [code]false[/code] if the theme does not have [code]node_type[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "has_stylebox" qualifiers= "const" >
<return type= "bool" >
</return>
<argument index= "0" name= "name" type= "String" >
</argument>
2020-09-12 18:30:40 +02:00
<argument index= "1" name= "node_type" type= "String" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-09-12 18:30:40 +02:00
Returns [code]true[/code] if [StyleBox] with [code]name[/code] is in [code]node_type[/code].
Returns [code]false[/code] if the theme does not have [code]node_type[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
2021-06-10 15:23:00 +02:00
<method name= "has_theme_item" qualifiers= "const" >
<return type= "bool" >
</return>
<argument index= "0" name= "data_type" type= "int" enum= "Theme.DataType" >
</argument>
<argument index= "1" name= "name" type= "String" >
</argument>
<argument index= "2" name= "node_type" type= "String" >
</argument>
<description >
Returns [code]true[/code] if a theme item of [code]data_type[/code] with [code]name[/code] is in [code]node_type[/code].
Returns [code]false[/code] if the theme does not have [code]node_type[/code].
</description>
</method>
<method name= "rename_color" >
<return type= "void" >
</return>
<argument index= "0" name= "old_name" type= "String" >
</argument>
<argument index= "1" name= "name" type= "String" >
</argument>
<argument index= "2" name= "node_type" type= "String" >
</argument>
<description >
Renames the [Color] at [code]old_name[/code] to [code]name[/code] if the theme has [code]node_type[/code]. If [code]name[/code] is already taken, this method fails.
</description>
</method>
<method name= "rename_constant" >
<return type= "void" >
</return>
<argument index= "0" name= "old_name" type= "String" >
</argument>
<argument index= "1" name= "name" type= "String" >
</argument>
<argument index= "2" name= "node_type" type= "String" >
</argument>
<description >
Renames the constant at [code]old_name[/code] to [code]name[/code] if the theme has [code]node_type[/code]. If [code]name[/code] is already taken, this method fails.
</description>
</method>
<method name= "rename_font" >
<return type= "void" >
</return>
<argument index= "0" name= "old_name" type= "String" >
</argument>
<argument index= "1" name= "name" type= "String" >
</argument>
<argument index= "2" name= "node_type" type= "String" >
</argument>
<description >
Renames the [Font] at [code]old_name[/code] to [code]name[/code] if the theme has [code]node_type[/code]. If [code]name[/code] is already taken, this method fails.
</description>
</method>
<method name= "rename_icon" >
<return type= "void" >
</return>
<argument index= "0" name= "old_name" type= "String" >
</argument>
<argument index= "1" name= "name" type= "String" >
</argument>
<argument index= "2" name= "node_type" type= "String" >
</argument>
<description >
Renames the icon at [code]old_name[/code] to [code]name[/code] if the theme has [code]node_type[/code]. If [code]name[/code] is already taken, this method fails.
</description>
</method>
<method name= "rename_stylebox" >
<return type= "void" >
</return>
<argument index= "0" name= "old_name" type= "String" >
</argument>
<argument index= "1" name= "name" type= "String" >
</argument>
<argument index= "2" name= "node_type" type= "String" >
</argument>
<description >
Renames [StyleBox] at [code]old_name[/code] to [code]name[/code] if the theme has [code]node_type[/code]. If [code]name[/code] is already taken, this method fails.
</description>
</method>
<method name= "rename_theme_item" >
<return type= "void" >
</return>
<argument index= "0" name= "data_type" type= "int" enum= "Theme.DataType" >
</argument>
<argument index= "1" name= "old_name" type= "String" >
</argument>
<argument index= "2" name= "name" type= "String" >
</argument>
<argument index= "3" name= "node_type" type= "String" >
</argument>
<description >
Renames the theme item of [code]data_type[/code] at [code]old_name[/code] to [code]name[/code] if the theme has [code]node_type[/code]. If [code]name[/code] is already taken, this method fails.
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "set_color" >
<return type= "void" >
</return>
<argument index= "0" name= "name" type= "String" >
</argument>
2020-09-12 18:30:40 +02:00
<argument index= "1" name= "node_type" type= "String" >
2017-09-12 22:42:36 +02:00
</argument>
<argument index= "2" name= "color" type= "Color" >
</argument>
<description >
2020-09-12 18:30:40 +02:00
Sets the theme's [Color] to [code]color[/code] at [code]name[/code] in [code]node_type[/code].
2021-06-10 15:23:00 +02:00
Creates [code]node_type[/code] if the theme does not have it.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "set_constant" >
<return type= "void" >
</return>
<argument index= "0" name= "name" type= "String" >
</argument>
2020-09-12 18:30:40 +02:00
<argument index= "1" name= "node_type" type= "String" >
2017-09-12 22:42:36 +02:00
</argument>
<argument index= "2" name= "constant" type= "int" >
</argument>
<description >
2020-09-12 18:30:40 +02:00
Sets the theme's constant to [code]constant[/code] at [code]name[/code] in [code]node_type[/code].
2021-06-10 15:23:00 +02:00
Creates [code]node_type[/code] if the theme does not have it.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "set_font" >
<return type= "void" >
</return>
<argument index= "0" name= "name" type= "String" >
</argument>
2020-09-12 18:30:40 +02:00
<argument index= "1" name= "node_type" type= "String" >
2017-09-12 22:42:36 +02:00
</argument>
<argument index= "2" name= "font" type= "Font" >
</argument>
<description >
2020-09-12 18:30:40 +02:00
Sets the theme's [Font] to [code]font[/code] at [code]name[/code] in [code]node_type[/code].
2021-06-10 15:23:00 +02:00
Creates [code]node_type[/code] if the theme does not have it.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "set_icon" >
<return type= "void" >
</return>
<argument index= "0" name= "name" type= "String" >
</argument>
2020-09-12 18:30:40 +02:00
<argument index= "1" name= "node_type" type= "String" >
2017-09-12 22:42:36 +02:00
</argument>
<argument index= "2" name= "texture" type= "Texture" >
</argument>
<description >
2020-09-12 18:30:40 +02:00
Sets the theme's icon [Texture] to [code]texture[/code] at [code]name[/code] in [code]node_type[/code].
2021-06-10 15:23:00 +02:00
Creates [code]node_type[/code] if the theme does not have it.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "set_stylebox" >
<return type= "void" >
</return>
<argument index= "0" name= "name" type= "String" >
</argument>
2020-09-12 18:30:40 +02:00
<argument index= "1" name= "node_type" type= "String" >
2017-09-12 22:42:36 +02:00
</argument>
<argument index= "2" name= "texture" type= "StyleBox" >
</argument>
<description >
2020-09-12 18:30:40 +02:00
Sets theme's [StyleBox] to [code]stylebox[/code] at [code]name[/code] in [code]node_type[/code].
2021-06-10 15:23:00 +02:00
Creates [code]node_type[/code] if the theme does not have it.
</description>
</method>
<method name= "set_theme_item" >
<return type= "void" >
</return>
<argument index= "0" name= "data_type" type= "int" enum= "Theme.DataType" >
</argument>
<argument index= "1" name= "name" type= "String" >
</argument>
<argument index= "2" name= "node_type" type= "String" >
</argument>
<argument index= "3" name= "value" type= "Variant" >
</argument>
<description >
Sets the theme item of [code]data_type[/code] to [code]value[/code] at [code]name[/code] in [code]node_type[/code].
Does nothing if the [code]value[/code] type does not match [code]data_type[/code].
Creates [code]node_type[/code] if the theme does not have it.
2017-09-12 22:42:36 +02:00
</description>
</method>
</methods>
<members >
2019-07-15 20:42:47 +02:00
<member name= "default_font" type= "Font" setter= "set_default_font" getter= "get_default_font" >
2017-11-26 20:58:38 +01:00
The theme's default font.
2017-09-12 22:42:36 +02:00
</member>
</members>
<constants >
2021-06-10 15:23:00 +02:00
<constant name= "DATA_TYPE_COLOR" value= "0" enum= "DataType" >
Theme's [Color] item type.
</constant>
<constant name= "DATA_TYPE_CONSTANT" value= "1" enum= "DataType" >
Theme's constant item type.
</constant>
<constant name= "DATA_TYPE_FONT" value= "2" enum= "DataType" >
Theme's [Font] item type.
</constant>
<constant name= "DATA_TYPE_ICON" value= "3" enum= "DataType" >
Theme's icon [Texture] item type.
</constant>
<constant name= "DATA_TYPE_STYLEBOX" value= "4" enum= "DataType" >
Theme's [StyleBox] item type.
</constant>
<constant name= "DATA_TYPE_MAX" value= "5" enum= "DataType" >
Maximum value for the DataType enum.
</constant>
2017-09-12 22:42:36 +02:00
</constants>
</class>