[][src]Struct gdnative::api::StyleBoxEmpty

pub struct StyleBoxEmpty { /* fields omitted */ }

core class StyleBoxEmpty inherits StyleBox (reference counted).

Official documentation

See the documentation of this class in the Godot engine's official documentation.

Memory management

The lifetime of this object is automatically managed through reference counting.

Class hierarchy

StyleBoxEmpty inherits methods from:

Safety

All types in the Godot API have "interior mutability" in Rust parlance. To enforce that the official thread-safety guidelines are followed, the typestate pattern is used in the Ref and TRef smart pointers, and the Instance API. The typestate Access in these types tracks whether the access is unique, shared, or exclusive to the current thread. For more information, see the type-level documentation on Ref.

Implementations

impl StyleBoxEmpty[src]

pub fn new() -> Ref<StyleBoxEmpty, Unique>[src]

Creates a new instance of this object.

This is a reference-counted type. The returned object is automatically managed by Ref.

Methods from Deref<Target = StyleBox>

pub fn draw(&self, canvas_item: Rid, rect: Rect<f32, UnknownUnit>)[src]

Draws this stylebox using a [CanvasItem] with given [RID].
				You can get a [RID] value using [method Object.get_instance_id] on a [CanvasItem]-derived node.

pub fn get_center_size(&self) -> Vector2D<f32, UnknownUnit>[src]

Returns the size of this [StyleBox] without the margins.

pub fn get_current_item_drawn(&self) -> Option<Ref<CanvasItem, Shared>>[src]

Returns the [CanvasItem] that handles its [constant CanvasItem.NOTIFICATION_DRAW] or [method CanvasItem._draw] callback at this moment.

pub fn default_margin(&self, margin: i64) -> f64[src]

The top margin for the contents of this style box. Increasing this value reduces the space available to the contents from the top.
			Refer to [member content_margin_bottom] for extra considerations.

pub fn get_margin(&self, margin: i64) -> f64[src]

Returns the content margin offset for the specified [enum Margin].
				Positive values reduce size inwards, unlike [Control]'s margin values.

pub fn get_minimum_size(&self) -> Vector2D<f32, UnknownUnit>[src]

Returns the minimum size that this stylebox can be shrunk to.

pub fn get_offset(&self) -> Vector2D<f32, UnknownUnit>[src]

Returns the "offset" of a stylebox. This helper function returns a value equivalent to [code]Vector2(style.get_margin(MARGIN_LEFT), style.get_margin(MARGIN_TOP))[/code].

pub fn set_default_margin(&self, margin: i64, offset: f64)[src]

The top margin for the contents of this style box. Increasing this value reduces the space available to the contents from the top.
			Refer to [member content_margin_bottom] for extra considerations.

pub fn test_mask(
    &self,
    point: Vector2D<f32, UnknownUnit>,
    rect: Rect<f32, UnknownUnit>
) -> bool
[src]

Test a position in a rectangle, return whether it passes the mask test.

Trait Implementations

impl Debug for StyleBoxEmpty[src]

impl Deref for StyleBoxEmpty[src]

type Target = StyleBox

The resulting type after dereferencing.

impl DerefMut for StyleBoxEmpty[src]

impl GodotObject for StyleBoxEmpty[src]

type RefKind = RefCounted

The memory management kind of this type. This modifies the behavior of the Ref smart pointer. See its type-level documentation for more information. Read more

impl Instanciable for StyleBoxEmpty[src]

impl SubClass<Object> for StyleBoxEmpty[src]

impl SubClass<Reference> for StyleBoxEmpty[src]

impl SubClass<Resource> for StyleBoxEmpty[src]

impl SubClass<StyleBox> for StyleBoxEmpty[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> SubClass<T> for T where
    T: GodotObject
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.