2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2019-04-01 12:33:56 +02:00
<class name= "StyleBoxFlat" inherits= "StyleBox" category= "Core" version= "3.2" >
2017-09-12 22:42:36 +02:00
<brief_description >
Customizable Stylebox with a given set of parameters. (no texture required)
</brief_description>
<description >
This stylebox can be used to achieve all kinds of looks without the need of a texture. Those properties are customizable:
2018-11-20 10:18:11 +01:00
- Color
- Border width (individual width for each border)
- Rounded corners (individual radius for each corner)
- Shadow
2019-06-22 01:04:47 +02:00
Setting corner radius to high values is allowed. As soon as corners would overlap, the stylebox will switch to a relative system. Example:
2018-11-20 10:18:11 +01:00
[codeblock]
height = 30
corner_radius_top_left = 50
corner_radius_bottom_left = 100
[/codeblock]
The relative system now would take the 1:2 ratio of the two left corners to calculate the actual corner width. Both corners added will [b]never[/b] be more than the height. Result:
[codeblock]
corner_radius_top_left: 10
corner_radius_bottom_left: 20
[/codeblock]
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
</tutorials>
<methods >
2019-06-27 16:10:09 +02:00
<method name= "get_border_width" qualifiers= "const" >
<return type= "int" >
</return>
<argument index= "0" name= "margin" type= "int" enum= "Margin" >
</argument>
<description >
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_border_width_min" qualifiers= "const" >
<return type= "int" >
</return>
<description >
</description>
</method>
2019-06-27 16:10:09 +02:00
<method name= "get_corner_radius" qualifiers= "const" >
<return type= "int" >
</return>
<argument index= "0" name= "corner" type= "int" enum= "Corner" >
</argument>
<description >
</description>
</method>
<method name= "get_expand_margin" qualifiers= "const" >
<return type= "float" >
</return>
<argument index= "0" name= "margin" type= "int" enum= "Margin" >
</argument>
<description >
</description>
</method>
<method name= "set_border_width" >
<return type= "void" >
</return>
<argument index= "0" name= "margin" type= "int" enum= "Margin" >
</argument>
<argument index= "1" name= "width" type= "int" >
</argument>
<description >
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "set_border_width_all" >
<return type= "void" >
</return>
<argument index= "0" name= "width" type= "int" >
</argument>
<description >
</description>
</method>
2019-06-27 16:10:09 +02:00
<method name= "set_corner_radius" >
<return type= "void" >
</return>
<argument index= "0" name= "corner" type= "int" enum= "Corner" >
</argument>
<argument index= "1" name= "radius" type= "int" >
</argument>
<description >
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "set_corner_radius_all" >
<return type= "void" >
</return>
<argument index= "0" name= "radius" type= "int" >
</argument>
<description >
</description>
</method>
<method name= "set_corner_radius_individual" >
<return type= "void" >
</return>
<argument index= "0" name= "radius_top_left" type= "int" >
</argument>
<argument index= "1" name= "radius_top_right" type= "int" >
</argument>
2017-10-21 12:02:08 +02:00
<argument index= "2" name= "radius_bottom_right" type= "int" >
2017-09-12 22:42:36 +02:00
</argument>
<argument index= "3" name= "radius_bottom_left" type= "int" >
</argument>
<description >
</description>
</method>
2019-06-27 16:10:09 +02:00
<method name= "set_expand_margin" >
<return type= "void" >
</return>
<argument index= "0" name= "margin" type= "int" enum= "Margin" >
</argument>
<argument index= "1" name= "size" type= "float" >
</argument>
<description >
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "set_expand_margin_all" >
<return type= "void" >
</return>
<argument index= "0" name= "size" type= "float" >
</argument>
<description >
</description>
</method>
<method name= "set_expand_margin_individual" >
<return type= "void" >
</return>
<argument index= "0" name= "size_left" type= "float" >
</argument>
<argument index= "1" name= "size_top" type= "float" >
</argument>
<argument index= "2" name= "size_right" type= "float" >
</argument>
<argument index= "3" name= "size_bottom" type= "float" >
</argument>
<description >
</description>
</method>
</methods>
<members >
2019-06-29 12:38:01 +02:00
<member name= "anti_aliasing" type= "bool" setter= "set_anti_aliased" getter= "is_anti_aliased" default= "true" >
2019-06-22 01:04:47 +02:00
Antialiasing draws a small ring around the edges, which fades to transparency. As a result, edges look much smoother. This is only noticeable when using rounded corners.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "anti_aliasing_size" type= "int" setter= "set_aa_size" getter= "get_aa_size" default= "1" >
2017-09-12 22:42:36 +02:00
This changes the size of the faded ring. Higher values can be used to achieve a "blurry" effect.
</member>
2019-06-29 12:38:01 +02:00
<member name= "bg_color" type= "Color" setter= "set_bg_color" getter= "get_bg_color" default= "Color( 0.6, 0.6, 0.6, 1 )" >
2017-09-12 22:42:36 +02:00
The background color of the stylebox.
</member>
2019-06-29 12:38:01 +02:00
<member name= "border_blend" type= "bool" setter= "set_border_blend" getter= "get_border_blend" default= "false" >
2019-06-22 01:04:47 +02:00
If [code]true[/code], the border will fade into the background color.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "border_color" type= "Color" setter= "set_border_color" getter= "get_border_color" default= "Color( 0.8, 0.8, 0.8, 1 )" >
2017-09-12 22:42:36 +02:00
Sets the color of the border.
</member>
2019-06-29 12:38:01 +02:00
<member name= "border_width_bottom" type= "int" setter= "set_border_width" getter= "get_border_width" default= "0" >
2017-09-12 22:42:36 +02:00
Border width for the bottom border.
</member>
2019-06-29 12:38:01 +02:00
<member name= "border_width_left" type= "int" setter= "set_border_width" getter= "get_border_width" default= "0" >
2017-09-12 22:42:36 +02:00
Border width for the left border.
</member>
2019-06-29 12:38:01 +02:00
<member name= "border_width_right" type= "int" setter= "set_border_width" getter= "get_border_width" default= "0" >
2017-09-12 22:42:36 +02:00
Border width for the right border.
</member>
2019-06-29 12:38:01 +02:00
<member name= "border_width_top" type= "int" setter= "set_border_width" getter= "get_border_width" default= "0" >
2017-09-12 22:42:36 +02:00
Border width for the top border.
</member>
2019-06-29 12:38:01 +02:00
<member name= "corner_detail" type= "int" setter= "set_corner_detail" getter= "get_corner_detail" default= "8" >
2019-06-22 01:04:47 +02:00
This sets the amount of vertices used for each corner. Higher values result in rounder corners but take more processing power to compute. When choosing a value, you should take the corner radius ([method set_corner_radius_all]) into account.
For corner radii smaller than 10, 4-5 should be enough. For corner radii smaller than 30, 8-12 should be enough.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "corner_radius_bottom_left" type= "int" setter= "set_corner_radius" getter= "get_corner_radius" default= "0" >
2019-06-22 01:04:47 +02:00
The bottom-left corner's radius. If [code]0[/code], the corner is not rounded.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "corner_radius_bottom_right" type= "int" setter= "set_corner_radius" getter= "get_corner_radius" default= "0" >
2019-06-22 01:04:47 +02:00
The bottom-right corner's radius. If [code]0[/code], the corner is not rounded.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "corner_radius_top_left" type= "int" setter= "set_corner_radius" getter= "get_corner_radius" default= "0" >
2019-06-22 01:04:47 +02:00
The top-left corner's radius. If [code]0[/code], the corner is not rounded.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "corner_radius_top_right" type= "int" setter= "set_corner_radius" getter= "get_corner_radius" default= "0" >
2019-06-22 01:04:47 +02:00
The top-right corner's radius. If [code]0[/code], the corner is not rounded.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "draw_center" type= "bool" setter= "set_draw_center" getter= "is_draw_center_enabled" default= "true" >
2019-06-22 01:04:47 +02:00
Toggles drawing of the inner part of the stylebox.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "expand_margin_bottom" type= "float" setter= "set_expand_margin" getter= "get_expand_margin" default= "0.0" >
2019-06-22 01:04:47 +02:00
Expands the stylebox outside of the control rect on the bottom edge. Useful in combination with [member border_width_bottom] to draw a border outside the control rect.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "expand_margin_left" type= "float" setter= "set_expand_margin" getter= "get_expand_margin" default= "0.0" >
2019-06-22 01:04:47 +02:00
Expands the stylebox outside of the control rect on the left edge. Useful in combination with [member border_width_left] to draw a border outside the control rect.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "expand_margin_right" type= "float" setter= "set_expand_margin" getter= "get_expand_margin" default= "0.0" >
2019-06-22 01:04:47 +02:00
Expands the stylebox outside of the control rect on the right edge. Useful in combination with [member border_width_right] to draw a border outside the control rect.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "expand_margin_top" type= "float" setter= "set_expand_margin" getter= "get_expand_margin" default= "0.0" >
2019-06-22 01:04:47 +02:00
Expands the stylebox outside of the control rect on the top edge. Useful in combination with [member border_width_top] to draw a border outside the control rect.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "shadow_color" type= "Color" setter= "set_shadow_color" getter= "get_shadow_color" default= "Color( 0, 0, 0, 0.6 )" >
2019-06-22 01:04:47 +02:00
The color of the shadow. This has no effect if [member shadow_size] is lower than 1.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "shadow_offset" type= "Vector2" setter= "set_shadow_offset" getter= "get_shadow_offset" default= "Vector2( 0, 0 )" >
2019-04-03 15:25:44 +02:00
The shadow offset in pixels. Adjusts the position of the shadow relatively to the stylebox.
</member>
2019-06-29 12:38:01 +02:00
<member name= "shadow_size" type= "int" setter= "set_shadow_size" getter= "get_shadow_size" default= "0" >
2019-04-15 14:49:41 +02:00
The shadow size in pixels.
</member>
2017-09-12 22:42:36 +02:00
</members>
<constants >
</constants>
</class>