:github_url: hide .. Generated automatically by doc/tools/makerst.py in Godot's source tree. .. DO NOT EDIT THIS FILE, but the StyleBoxFlat.xml source instead. .. The source is found in doc/classes or modules//doc_classes. .. _class_StyleBoxFlat: StyleBoxFlat ============ **Inherits:** :ref:`StyleBox` **<** :ref:`Resource` **<** :ref:`Reference` **<** :ref:`Object` **Category:** Core Brief Description ----------------- Customizable Stylebox with a given set of parameters. (no texture required) Properties ---------- +---------------------------+-------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`anti_aliasing` | +---------------------------+-------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`anti_aliasing_size` | +---------------------------+-------------------------------------------------------------------------------------------+ | :ref:`Color` | :ref:`bg_color` | +---------------------------+-------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`border_blend` | +---------------------------+-------------------------------------------------------------------------------------------+ | :ref:`Color` | :ref:`border_color` | +---------------------------+-------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`border_width_bottom` | +---------------------------+-------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`border_width_left` | +---------------------------+-------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`border_width_right` | +---------------------------+-------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`border_width_top` | +---------------------------+-------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`corner_detail` | +---------------------------+-------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`corner_radius_bottom_left` | +---------------------------+-------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`corner_radius_bottom_right` | +---------------------------+-------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`corner_radius_top_left` | +---------------------------+-------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`corner_radius_top_right` | +---------------------------+-------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`draw_center` | +---------------------------+-------------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`expand_margin_bottom` | +---------------------------+-------------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`expand_margin_left` | +---------------------------+-------------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`expand_margin_right` | +---------------------------+-------------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`expand_margin_top` | +---------------------------+-------------------------------------------------------------------------------------------+ | :ref:`Color` | :ref:`shadow_color` | +---------------------------+-------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`shadow_size` | +---------------------------+-------------------------------------------------------------------------------------------+ Methods ------- +-----------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`get_border_width_min` **(** **)** const | +-----------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_border_width_all` **(** :ref:`int` width **)** | +-----------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_corner_radius_all` **(** :ref:`int` radius **)** | +-----------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_corner_radius_individual` **(** :ref:`int` radius_top_left, :ref:`int` radius_top_right, :ref:`int` radius_bottom_right, :ref:`int` radius_bottom_left **)** | +-----------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_expand_margin_all` **(** :ref:`float` size **)** | +-----------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_expand_margin_individual` **(** :ref:`float` size_left, :ref:`float` size_top, :ref:`float` size_right, :ref:`float` size_bottom **)** | +-----------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ Description ----------- This stylebox can be used to achieve all kinds of looks without the need of a texture. Those properties are customizable: - Color - Border width (individual width for each border) - Rounded corners (individual radius for each corner) - Shadow Setting corner radius to high values is allowed. As soon as corners would overlap the stylebox will switch to a relative system. Example: :: height = 30 corner_radius_top_left = 50 corner_radius_bottom_left = 100 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 **never** be more than the height. Result: :: corner_radius_top_left: 10 corner_radius_bottom_left: 20 Property Descriptions --------------------- .. _class_StyleBoxFlat_property_anti_aliasing: - :ref:`bool` **anti_aliasing** +----------+-------------------------+ | *Setter* | set_anti_aliased(value) | +----------+-------------------------+ | *Getter* | is_anti_aliased() | +----------+-------------------------+ Anti Aliasing draws a small ring around edges. This ring fades to transparent. As a result edges look much smoother. This is only noticeable when using rounded corners. ---- .. _class_StyleBoxFlat_property_anti_aliasing_size: - :ref:`int` **anti_aliasing_size** +----------+--------------------+ | *Setter* | set_aa_size(value) | +----------+--------------------+ | *Getter* | get_aa_size() | +----------+--------------------+ This changes the size of the faded ring. Higher values can be used to achieve a "blurry" effect. ---- .. _class_StyleBoxFlat_property_bg_color: - :ref:`Color` **bg_color** +----------+---------------------+ | *Setter* | set_bg_color(value) | +----------+---------------------+ | *Getter* | get_bg_color() | +----------+---------------------+ The background color of the stylebox. ---- .. _class_StyleBoxFlat_property_border_blend: - :ref:`bool` **border_blend** +----------+-------------------------+ | *Setter* | set_border_blend(value) | +----------+-------------------------+ | *Getter* | get_border_blend() | +----------+-------------------------+ When set to ``true``, the border will fade into the background color. ---- .. _class_StyleBoxFlat_property_border_color: - :ref:`Color` **border_color** +----------+-------------------------+ | *Setter* | set_border_color(value) | +----------+-------------------------+ | *Getter* | get_border_color() | +----------+-------------------------+ Sets the color of the border. ---- .. _class_StyleBoxFlat_property_border_width_bottom: - :ref:`int` **border_width_bottom** +----------+-------------------------+ | *Setter* | set_border_width(value) | +----------+-------------------------+ | *Getter* | get_border_width() | +----------+-------------------------+ Border width for the bottom border. ---- .. _class_StyleBoxFlat_property_border_width_left: - :ref:`int` **border_width_left** +----------+-------------------------+ | *Setter* | set_border_width(value) | +----------+-------------------------+ | *Getter* | get_border_width() | +----------+-------------------------+ Border width for the left border. ---- .. _class_StyleBoxFlat_property_border_width_right: - :ref:`int` **border_width_right** +----------+-------------------------+ | *Setter* | set_border_width(value) | +----------+-------------------------+ | *Getter* | get_border_width() | +----------+-------------------------+ Border width for the right border. ---- .. _class_StyleBoxFlat_property_border_width_top: - :ref:`int` **border_width_top** +----------+-------------------------+ | *Setter* | set_border_width(value) | +----------+-------------------------+ | *Getter* | get_border_width() | +----------+-------------------------+ Border width for the top border. ---- .. _class_StyleBoxFlat_property_corner_detail: - :ref:`int` **corner_detail** +----------+--------------------------+ | *Setter* | set_corner_detail(value) | +----------+--------------------------+ | *Getter* | get_corner_detail() | +----------+--------------------------+ 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 (:ref:`set_corner_radius_all`) into account. For corner radius smaller than 10, 4-5 should be enough. For corner radius smaller than 30, 8-12 should be enough. ---- .. _class_StyleBoxFlat_property_corner_radius_bottom_left: - :ref:`int` **corner_radius_bottom_left** +----------+--------------------------+ | *Setter* | set_corner_radius(value) | +----------+--------------------------+ | *Getter* | get_corner_radius() | +----------+--------------------------+ The corner radius of the bottom left corner. When set to 0 the corner is not rounded. ---- .. _class_StyleBoxFlat_property_corner_radius_bottom_right: - :ref:`int` **corner_radius_bottom_right** +----------+--------------------------+ | *Setter* | set_corner_radius(value) | +----------+--------------------------+ | *Getter* | get_corner_radius() | +----------+--------------------------+ The corner radius of the bottom right corner. When set to 0 the corner is not rounded. ---- .. _class_StyleBoxFlat_property_corner_radius_top_left: - :ref:`int` **corner_radius_top_left** +----------+--------------------------+ | *Setter* | set_corner_radius(value) | +----------+--------------------------+ | *Getter* | get_corner_radius() | +----------+--------------------------+ The corner radius of the top left corner. When set to 0 the corner is not rounded. ---- .. _class_StyleBoxFlat_property_corner_radius_top_right: - :ref:`int` **corner_radius_top_right** +----------+--------------------------+ | *Setter* | set_corner_radius(value) | +----------+--------------------------+ | *Getter* | get_corner_radius() | +----------+--------------------------+ The corner radius of the top right corner. When set to 0 the corner is not rounded. ---- .. _class_StyleBoxFlat_property_draw_center: - :ref:`bool` **draw_center** +----------+--------------------------+ | *Setter* | set_draw_center(value) | +----------+--------------------------+ | *Getter* | is_draw_center_enabled() | +----------+--------------------------+ Toggels drawing of the inner part of the stylebox. ---- .. _class_StyleBoxFlat_property_expand_margin_bottom: - :ref:`float` **expand_margin_bottom** +----------+--------------------------+ | *Setter* | set_expand_margin(value) | +----------+--------------------------+ | *Getter* | get_expand_margin() | +----------+--------------------------+ Expands the stylebox outside of the control rect on the bottom edge. Useful in combination with border_width_bottom. To draw a border outside the control rect. ---- .. _class_StyleBoxFlat_property_expand_margin_left: - :ref:`float` **expand_margin_left** +----------+--------------------------+ | *Setter* | set_expand_margin(value) | +----------+--------------------------+ | *Getter* | get_expand_margin() | +----------+--------------------------+ Expands the stylebox outside of the control rect on the left edge. Useful in combination with border_width_left. To draw a border outside the control rect. ---- .. _class_StyleBoxFlat_property_expand_margin_right: - :ref:`float` **expand_margin_right** +----------+--------------------------+ | *Setter* | set_expand_margin(value) | +----------+--------------------------+ | *Getter* | get_expand_margin() | +----------+--------------------------+ Expands the stylebox outside of the control rect on the right edge. Useful in combination with border_width_right. To draw a border outside the control rect. ---- .. _class_StyleBoxFlat_property_expand_margin_top: - :ref:`float` **expand_margin_top** +----------+--------------------------+ | *Setter* | set_expand_margin(value) | +----------+--------------------------+ | *Getter* | get_expand_margin() | +----------+--------------------------+ Expands the stylebox outside of the control rect on the top edge. Useful in combination with border_width_top. To draw a border outside the control rect. ---- .. _class_StyleBoxFlat_property_shadow_color: - :ref:`Color` **shadow_color** +----------+-------------------------+ | *Setter* | set_shadow_color(value) | +----------+-------------------------+ | *Getter* | get_shadow_color() | +----------+-------------------------+ The color of the shadow. (This has no effect when shadow_size < 1) ---- .. _class_StyleBoxFlat_property_shadow_size: - :ref:`int` **shadow_size** +----------+------------------------+ | *Setter* | set_shadow_size(value) | +----------+------------------------+ | *Getter* | get_shadow_size() | +----------+------------------------+ The shadow size in pixels. Method Descriptions ------------------- .. _class_StyleBoxFlat_method_get_border_width_min: - :ref:`int` **get_border_width_min** **(** **)** const ---- .. _class_StyleBoxFlat_method_set_border_width_all: - void **set_border_width_all** **(** :ref:`int` width **)** ---- .. _class_StyleBoxFlat_method_set_corner_radius_all: - void **set_corner_radius_all** **(** :ref:`int` radius **)** ---- .. _class_StyleBoxFlat_method_set_corner_radius_individual: - void **set_corner_radius_individual** **(** :ref:`int` radius_top_left, :ref:`int` radius_top_right, :ref:`int` radius_bottom_right, :ref:`int` radius_bottom_left **)** ---- .. _class_StyleBoxFlat_method_set_expand_margin_all: - void **set_expand_margin_all** **(** :ref:`float` size **)** ---- .. _class_StyleBoxFlat_method_set_expand_margin_individual: - void **set_expand_margin_individual** **(** :ref:`float` size_left, :ref:`float` size_top, :ref:`float` size_right, :ref:`float` size_bottom **)**