[][src]Struct gdnative::api::StyleBoxTexture

pub struct StyleBoxTexture { /* fields omitted */ }

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

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

Constants

impl StyleBoxTexture[src]

pub fn new() -> Ref<StyleBoxTexture, 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 expand_margin_size(&self, margin: i64) -> f64[src]

Expands the top margin of this style box when drawing, causing it to be drawn larger than requested.

pub fn h_axis_stretch_mode(&self) -> AxisStretchMode[src]

Controls how the stylebox's texture will be stretched or tiled horizontally. See [enum AxisStretchMode] for possible values.

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

Increases the top margin of the 3×3 texture box.
			A higher value means more of the source texture is considered to be part of the top border of the 3×3 box.
			This is also the value used as fallback for [member StyleBox.content_margin_top] if it is negative.

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

Modulates the color of the texture when this style box is drawn.

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

The normal map to use when drawing this style box.
			[b]Note:[/b] Godot expects the normal map to use X+, Y-, and Z+ coordinates. See [url=http://wiki.polycount.com/wiki/Normal_Map_Technical_Details#Common_Swizzle_Coordinates]this page[/url] for a comparison of normal map coordinates expected by popular engines.

pub fn region_rect(&self) -> Rect<f32, UnknownUnit>[src]

Species a sub-region of the texture to use.
			This is equivalent to first wrapping the texture in an [AtlasTexture] with the same region.

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

The texture to use when drawing this style box.

pub fn v_axis_stretch_mode(&self) -> AxisStretchMode[src]

Controls how the stylebox's texture will be stretched or tiled vertically. See [enum AxisStretchMode] for possible values.

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

If [code]true[/code], the nine-patch texture's center tile will be drawn.

pub fn set_draw_center(&self, enable: bool)[src]

If [code]true[/code], the nine-patch texture's center tile will be drawn.

pub fn set_expand_margin_all(&self, size: f64)[src]

Sets the expand margin to [code]size[/code] pixels for all margins.

pub fn set_expand_margin_individual(
    &self,
    size_left: f64,
    size_top: f64,
    size_right: f64,
    size_bottom: f64
)
[src]

Sets the expand margin for each margin to [code]size_left[/code], [code]size_top[/code], [code]size_right[/code], and [code]size_bottom[/code] pixels.

pub fn set_expand_margin_size(&self, margin: i64, size: f64)[src]

Expands the top margin of this style box when drawing, causing it to be drawn larger than requested.

pub fn set_h_axis_stretch_mode(&self, mode: i64)[src]

Controls how the stylebox's texture will be stretched or tiled horizontally. See [enum AxisStretchMode] for possible values.

pub fn set_margin_size(&self, margin: i64, size: f64)[src]

Increases the top margin of the 3×3 texture box.
			A higher value means more of the source texture is considered to be part of the top border of the 3×3 box.
			This is also the value used as fallback for [member StyleBox.content_margin_top] if it is negative.

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

Modulates the color of the texture when this style box is drawn.

pub fn set_normal_map(&self, normal_map: impl AsArg<Texture>)[src]

The normal map to use when drawing this style box.
			[b]Note:[/b] Godot expects the normal map to use X+, Y-, and Z+ coordinates. See [url=http://wiki.polycount.com/wiki/Normal_Map_Technical_Details#Common_Swizzle_Coordinates]this page[/url] for a comparison of normal map coordinates expected by popular engines.

pub fn set_region_rect(&self, region: Rect<f32, UnknownUnit>)[src]

Species a sub-region of the texture to use.
			This is equivalent to first wrapping the texture in an [AtlasTexture] with the same region.

pub fn set_texture(&self, texture: impl AsArg<Texture>)[src]

The texture to use when drawing this style box.

pub fn set_v_axis_stretch_mode(&self, mode: i64)[src]

Controls how the stylebox's texture will be stretched or tiled vertically. See [enum AxisStretchMode] for possible values.

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

impl Deref for StyleBoxTexture[src]

type Target = StyleBox

The resulting type after dereferencing.

impl DerefMut for StyleBoxTexture[src]

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

impl SubClass<Object> for StyleBoxTexture[src]

impl SubClass<Reference> for StyleBoxTexture[src]

impl SubClass<Resource> for StyleBoxTexture[src]

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