.. Generated automatically by doc/tools/makerst.py in Godot's source tree. .. DO NOT EDIT THIS FILE, but the doc/base/classes.xml source instead. .. _class_StyleBox: StyleBox ======== **Inherits:** :ref:`Resource` **<** :ref:`Reference` **<** :ref:`Object` **Inherited By:** :ref:`StyleBoxFlat`, :ref:`StyleBoxTexture`, :ref:`StyleBoxEmpty` **Category:** Core Brief Description ----------------- Base class for drawing stylized boxes for the UI. Member Functions ---------------- +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`draw` **(** :ref:`RID` canvas_item, :ref:`Rect2` rect **)** const | +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Vector2` | :ref:`get_center_size` **(** **)** const | +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`get_default_margin` **(** :ref:`int` margin **)** const | +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`get_margin` **(** :ref:`int` margin **)** const | +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Vector2` | :ref:`get_minimum_size` **(** **)** const | +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Vector2` | :ref:`get_offset` **(** **)** const | +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_default_margin` **(** :ref:`int` margin, :ref:`float` offset **)** | +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`test_mask` **(** :ref:`Vector2` point, :ref:`Rect2` rect **)** const | +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+ Member Variables ---------------- - :ref:`float` **content_margin_bottom** - :ref:`float` **content_margin_left** - :ref:`float` **content_margin_right** - :ref:`float` **content_margin_top** Description ----------- StyleBox is :ref:`Resource` that provides an abstract base class for drawing stylized boxes for the UI. StyleBoxes are used for drawing the styles of buttons, line edit backgrounds, tree backgrounds, etc. and also for testing a transparency mask for pointer signals. If mask test fails on a StyleBox assigned as mask to a control, clicks and motion signals will go through it to the one below. Member Function Description --------------------------- .. _class_StyleBox_draw: - void **draw** **(** :ref:`RID` canvas_item, :ref:`Rect2` rect **)** const .. _class_StyleBox_get_center_size: - :ref:`Vector2` **get_center_size** **(** **)** const .. _class_StyleBox_get_default_margin: - :ref:`float` **get_default_margin** **(** :ref:`int` margin **)** const Return the default offset of the margin "margin" (see MARGIN\_\* enum) of a StyleBox, Controls that draw styleboxes with context inside need to know the margin, so the border of the stylebox is not occluded. .. _class_StyleBox_get_margin: - :ref:`float` **get_margin** **(** :ref:`int` margin **)** const Return the offset of margin "margin" (see MARGIN\_\* enum). .. _class_StyleBox_get_minimum_size: - :ref:`Vector2` **get_minimum_size** **(** **)** const Return the minimum size that this stylebox can be shrunk to. .. _class_StyleBox_get_offset: - :ref:`Vector2` **get_offset** **(** **)** const Return the "offset" of a stylebox, this is a helper function, like writing ``Vector2(style.get_margin(MARGIN_LEFT), style.get_margin(MARGIN_TOP))``. .. _class_StyleBox_set_default_margin: - void **set_default_margin** **(** :ref:`int` margin, :ref:`float` offset **)** Set the default offset "offset" of the margin "margin" (see MARGIN\_\* enum) for a StyleBox, Controls that draw styleboxes with context inside need to know the margin, so the border of the stylebox is not occluded. .. _class_StyleBox_test_mask: - :ref:`bool` **test_mask** **(** :ref:`Vector2` point, :ref:`Rect2` rect **)** const Test a position in a rectangle, return whether it passes the mask test.