[][src]Struct gdnative::api::EditorSpinSlider

pub struct EditorSpinSlider { /* fields omitted */ }

tools class EditorSpinSlider inherits Range (unsafe).

Official documentation

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

Class hierarchy

EditorSpinSlider inherits methods from:

Tool

This class is used to interact with Godot's editor.

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

pub fn label(&self) -> GodotString[src]

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

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

pub fn set_flat(&self, flat: bool)[src]

pub fn set_label(&self, label: impl Into<GodotString>)[src]

pub fn set_read_only(&self, read_only: bool)[src]

Methods from Deref<Target = Range>

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

The value mapped between 0 and 1.

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

Maximum value. Range is clamped if [code]value[/code] is greater than [code]max_value[/code].

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

Minimum value. Range is clamped if [code]value[/code] is less than [code]min_value[/code].

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

Page size. Used mainly for [ScrollBar]. ScrollBar's length is its size multiplied by [code]page[/code] over the difference between [code]min_value[/code] and [code]max_value[/code].

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

If greater than 0, [code]value[/code] will always be rounded to a multiple of [code]step[/code]. If [code]rounded[/code] is also [code]true[/code], [code]value[/code] will first be rounded to a multiple of [code]step[/code] then rounded to the nearest integer.

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

Range's current value.

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

If [code]true[/code], [member value] may be greater than [member max_value].

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

If [code]true[/code], [member value] may be less than [member min_value].

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

If [code]true[/code], and [code]min_value[/code] is greater than 0, [code]value[/code] will be represented exponentially rather than linearly.

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

If [code]true[/code], [code]value[/code] will always be rounded to the nearest integer.

pub fn set_allow_greater(&self, allow: bool)[src]

If [code]true[/code], [member value] may be greater than [member max_value].

pub fn set_allow_lesser(&self, allow: bool)[src]

If [code]true[/code], [member value] may be less than [member min_value].

pub fn set_as_ratio(&self, value: f64)[src]

The value mapped between 0 and 1.

pub fn set_exp_ratio(&self, enabled: bool)[src]

If [code]true[/code], and [code]min_value[/code] is greater than 0, [code]value[/code] will be represented exponentially rather than linearly.

pub fn set_max(&self, maximum: f64)[src]

Maximum value. Range is clamped if [code]value[/code] is greater than [code]max_value[/code].

pub fn set_min(&self, minimum: f64)[src]

Minimum value. Range is clamped if [code]value[/code] is less than [code]min_value[/code].

pub fn set_page(&self, pagesize: f64)[src]

Page size. Used mainly for [ScrollBar]. ScrollBar's length is its size multiplied by [code]page[/code] over the difference between [code]min_value[/code] and [code]max_value[/code].

pub fn set_step(&self, step: f64)[src]

If greater than 0, [code]value[/code] will always be rounded to a multiple of [code]step[/code]. If [code]rounded[/code] is also [code]true[/code], [code]value[/code] will first be rounded to a multiple of [code]step[/code] then rounded to the nearest integer.

pub fn set_use_rounded_values(&self, enabled: bool)[src]

If [code]true[/code], [code]value[/code] will always be rounded to the nearest integer.

pub fn set_value(&self, value: f64)[src]

Range's current value.

pub fn share(&self, with: impl AsArg<Node>)[src]

Binds two ranges together along with any ranges previously grouped with either of them. When any of range's member variables change, it will share the new value with all other ranges in its group.

pub fn unshare(&self)[src]

Stops range from sharing its member variables with any other.

Trait Implementations

impl Debug for EditorSpinSlider[src]

impl Deref for EditorSpinSlider[src]

type Target = Range

The resulting type after dereferencing.

impl DerefMut for EditorSpinSlider[src]

impl GodotObject for EditorSpinSlider[src]

type RefKind = ManuallyManaged

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 QueueFree for EditorSpinSlider[src]

impl SubClass<CanvasItem> for EditorSpinSlider[src]

impl SubClass<Control> for EditorSpinSlider[src]

impl SubClass<Node> for EditorSpinSlider[src]

impl SubClass<Object> for EditorSpinSlider[src]

impl SubClass<Range> for EditorSpinSlider[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.