123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <class name="Theme" inherits="Resource" version="3.4">
- <brief_description>
- Theme for controls.
- </brief_description>
- <description>
- 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.
- </description>
- <tutorials>
- <link>https://docs.godotengine.org/en/3.3/tutorials/gui/gui_skinning.html</link>
- </tutorials>
- <methods>
- <method name="clear">
- <return type="void">
- </return>
- <description>
- Clears all values on the theme.
- </description>
- </method>
- <method name="clear_color">
- <return type="void">
- </return>
- <argument index="0" name="name" type="String">
- </argument>
- <argument index="1" name="node_type" type="String">
- </argument>
- <description>
- Clears the [Color] at [code]name[/code] if the theme has [code]node_type[/code].
- </description>
- </method>
- <method name="clear_constant">
- <return type="void">
- </return>
- <argument index="0" name="name" type="String">
- </argument>
- <argument index="1" name="node_type" type="String">
- </argument>
- <description>
- Clears the constant at [code]name[/code] if the theme has [code]node_type[/code].
- </description>
- </method>
- <method name="clear_font">
- <return type="void">
- </return>
- <argument index="0" name="name" type="String">
- </argument>
- <argument index="1" name="node_type" type="String">
- </argument>
- <description>
- Clears the [Font] at [code]name[/code] if the theme has [code]node_type[/code].
- </description>
- </method>
- <method name="clear_icon">
- <return type="void">
- </return>
- <argument index="0" name="name" type="String">
- </argument>
- <argument index="1" name="node_type" type="String">
- </argument>
- <description>
- Clears the icon at [code]name[/code] if the theme has [code]node_type[/code].
- </description>
- </method>
- <method name="clear_stylebox">
- <return type="void">
- </return>
- <argument index="0" name="name" type="String">
- </argument>
- <argument index="1" name="node_type" type="String">
- </argument>
- <description>
- Clears [StyleBox] at [code]name[/code] if the theme has [code]node_type[/code].
- </description>
- </method>
- <method name="copy_default_theme">
- <return type="void">
- </return>
- <description>
- Sets the theme's values to a copy of the default theme values.
- </description>
- </method>
- <method name="copy_theme">
- <return type="void">
- </return>
- <argument index="0" name="other" type="Theme">
- </argument>
- <description>
- Sets the theme's values to a copy of a given theme.
- </description>
- </method>
- <method name="get_color" qualifiers="const">
- <return type="Color">
- </return>
- <argument index="0" name="name" type="String">
- </argument>
- <argument index="1" name="node_type" type="String">
- </argument>
- <description>
- Returns the [Color] at [code]name[/code] if the theme has [code]node_type[/code].
- </description>
- </method>
- <method name="get_color_list" qualifiers="const">
- <return type="PoolStringArray">
- </return>
- <argument index="0" name="node_type" type="String">
- </argument>
- <description>
- 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].
- </description>
- </method>
- <method name="get_constant" qualifiers="const">
- <return type="int">
- </return>
- <argument index="0" name="name" type="String">
- </argument>
- <argument index="1" name="node_type" type="String">
- </argument>
- <description>
- Returns the constant at [code]name[/code] if the theme has [code]node_type[/code].
- </description>
- </method>
- <method name="get_constant_list" qualifiers="const">
- <return type="PoolStringArray">
- </return>
- <argument index="0" name="node_type" type="String">
- </argument>
- <description>
- 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].
- </description>
- </method>
- <method name="get_font" qualifiers="const">
- <return type="Font">
- </return>
- <argument index="0" name="name" type="String">
- </argument>
- <argument index="1" name="node_type" type="String">
- </argument>
- <description>
- Returns the [Font] at [code]name[/code] if the theme has [code]node_type[/code].
- </description>
- </method>
- <method name="get_font_list" qualifiers="const">
- <return type="PoolStringArray">
- </return>
- <argument index="0" name="node_type" type="String">
- </argument>
- <description>
- 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].
- </description>
- </method>
- <method name="get_icon" qualifiers="const">
- <return type="Texture">
- </return>
- <argument index="0" name="name" type="String">
- </argument>
- <argument index="1" name="node_type" type="String">
- </argument>
- <description>
- Returns the icon [Texture] at [code]name[/code] if the theme has [code]node_type[/code].
- </description>
- </method>
- <method name="get_icon_list" qualifiers="const">
- <return type="PoolStringArray">
- </return>
- <argument index="0" name="node_type" type="String">
- </argument>
- <description>
- 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].
- </description>
- </method>
- <method name="get_stylebox" qualifiers="const">
- <return type="StyleBox">
- </return>
- <argument index="0" name="name" type="String">
- </argument>
- <argument index="1" name="node_type" type="String">
- </argument>
- <description>
- 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].
- </description>
- </method>
- <method name="get_stylebox_list" qualifiers="const">
- <return type="PoolStringArray">
- </return>
- <argument index="0" name="node_type" type="String">
- </argument>
- <description>
- 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].
- Valid [code]node_type[/code]s may be found using [method get_stylebox_types].
- </description>
- </method>
- <method name="get_stylebox_types" qualifiers="const">
- <return type="PoolStringArray">
- </return>
- <description>
- Returns all the [StyleBox] types as a [PoolStringArray] filled with each [StyleBox]'s type, for use in [method get_stylebox] and/or [method get_stylebox_list], if the theme has [code]node_type[/code].
- </description>
- </method>
- <method name="get_type_list" qualifiers="const">
- <return type="PoolStringArray">
- </return>
- <argument index="0" name="node_type" type="String">
- </argument>
- <description>
- Returns all the types in [code]node_type[/code] as a [PoolStringArray] for use in any of the [code]get_*[/code] functions, if the theme has [code]node_type[/code].
- </description>
- </method>
- <method name="has_color" qualifiers="const">
- <return type="bool">
- </return>
- <argument index="0" name="name" type="String">
- </argument>
- <argument index="1" name="node_type" type="String">
- </argument>
- <description>
- 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].
- </description>
- </method>
- <method name="has_constant" qualifiers="const">
- <return type="bool">
- </return>
- <argument index="0" name="name" type="String">
- </argument>
- <argument index="1" name="node_type" type="String">
- </argument>
- <description>
- 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].
- </description>
- </method>
- <method name="has_font" qualifiers="const">
- <return type="bool">
- </return>
- <argument index="0" name="name" type="String">
- </argument>
- <argument index="1" name="node_type" type="String">
- </argument>
- <description>
- 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].
- </description>
- </method>
- <method name="has_icon" qualifiers="const">
- <return type="bool">
- </return>
- <argument index="0" name="name" type="String">
- </argument>
- <argument index="1" name="node_type" type="String">
- </argument>
- <description>
- 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].
- </description>
- </method>
- <method name="has_stylebox" qualifiers="const">
- <return type="bool">
- </return>
- <argument index="0" name="name" type="String">
- </argument>
- <argument index="1" name="node_type" type="String">
- </argument>
- <description>
- 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].
- </description>
- </method>
- <method name="set_color">
- <return type="void">
- </return>
- <argument index="0" name="name" type="String">
- </argument>
- <argument index="1" name="node_type" type="String">
- </argument>
- <argument index="2" name="color" type="Color">
- </argument>
- <description>
- Sets the theme's [Color] to [code]color[/code] at [code]name[/code] in [code]node_type[/code].
- Does nothing if the theme does not have [code]node_type[/code].
- </description>
- </method>
- <method name="set_constant">
- <return type="void">
- </return>
- <argument index="0" name="name" type="String">
- </argument>
- <argument index="1" name="node_type" type="String">
- </argument>
- <argument index="2" name="constant" type="int">
- </argument>
- <description>
- Sets the theme's constant to [code]constant[/code] at [code]name[/code] in [code]node_type[/code].
- Does nothing if the theme does not have [code]node_type[/code].
- </description>
- </method>
- <method name="set_font">
- <return type="void">
- </return>
- <argument index="0" name="name" type="String">
- </argument>
- <argument index="1" name="node_type" type="String">
- </argument>
- <argument index="2" name="font" type="Font">
- </argument>
- <description>
- Sets the theme's [Font] to [code]font[/code] at [code]name[/code] in [code]node_type[/code].
- Does nothing if the theme does not have [code]node_type[/code].
- </description>
- </method>
- <method name="set_icon">
- <return type="void">
- </return>
- <argument index="0" name="name" type="String">
- </argument>
- <argument index="1" name="node_type" type="String">
- </argument>
- <argument index="2" name="texture" type="Texture">
- </argument>
- <description>
- Sets the theme's icon [Texture] to [code]texture[/code] at [code]name[/code] in [code]node_type[/code].
- Does nothing if the theme does not have [code]node_type[/code].
- </description>
- </method>
- <method name="set_stylebox">
- <return type="void">
- </return>
- <argument index="0" name="name" type="String">
- </argument>
- <argument index="1" name="node_type" type="String">
- </argument>
- <argument index="2" name="texture" type="StyleBox">
- </argument>
- <description>
- Sets theme's [StyleBox] to [code]stylebox[/code] at [code]name[/code] in [code]node_type[/code].
- Does nothing if the theme does not have [code]node_type[/code].
- </description>
- </method>
- </methods>
- <members>
- <member name="default_font" type="Font" setter="set_default_font" getter="get_default_font">
- The theme's default font.
- </member>
- </members>
- <constants>
- </constants>
- </class>
|