[][src]Struct gdnative::api::StyleBoxLine

pub struct StyleBoxLine { /* fields omitted */ }

core class StyleBoxLine 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

StyleBoxLine 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 StyleBoxLine[src]

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

Creates a new instance of this object.

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

pub fn color(&self) -> Color[src]

The line's color.

pub fn grow_begin(&self) -> f64[src]

The number of pixels the line will extend before the [StyleBoxLine]'s bounds. If set to a negative value, the line will begin inside the [StyleBoxLine]'s bounds.

pub fn grow_end(&self) -> f64[src]

The number of pixels the line will extend past the [StyleBoxLine]'s bounds. If set to a negative value, the line will end inside the [StyleBoxLine]'s bounds.

pub fn thickness(&self) -> i64[src]

The line's thickness in pixels.

pub fn is_vertical(&self) -> bool[src]

If [code]true[/code], the line will be vertical. If [code]false[/code], the line will be horizontal.

pub fn set_color(&self, color: Color)[src]

The line's color.

pub fn set_grow_begin(&self, offset: f64)[src]

The number of pixels the line will extend before the [StyleBoxLine]'s bounds. If set to a negative value, the line will begin inside the [StyleBoxLine]'s bounds.

pub fn set_grow_end(&self, offset: f64)[src]

The number of pixels the line will extend past the [StyleBoxLine]'s bounds. If set to a negative value, the line will end inside the [StyleBoxLine]'s bounds.

pub fn set_thickness(&self, thickness: i64)[src]

The line's thickness in pixels.

pub fn set_vertical(&self, vertical: bool)[src]

If [code]true[/code], the line will be vertical. If [code]false[/code], the line will be horizontal.

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 StyleBoxLine[src]

impl Deref for StyleBoxLine[src]

type Target = StyleBox

The resulting type after dereferencing.

impl DerefMut for StyleBoxLine[src]

impl GodotObject for StyleBoxLine[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 StyleBoxLine[src]

impl SubClass<Object> for StyleBoxLine[src]

impl SubClass<Reference> for StyleBoxLine[src]

impl SubClass<Resource> for StyleBoxLine[src]

impl SubClass<StyleBox> for StyleBoxLine[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.