[][src]Struct gdnative_bindings::Slider

pub struct Slider { /* fields omitted */ }

core class Slider inherits Range (unsafe).

Official documentation

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

Class hierarchy

Slider inherits methods from:

Methods

impl Slider[src]

pub unsafe fn _gui_input(&mut self, arg0: Option<InputEvent>)[src]

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

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

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

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

pub unsafe fn set_editable(&mut self, editable: bool)[src]

pub unsafe fn set_scrollable(&mut self, scrollable: bool)[src]

pub unsafe fn set_ticks(&mut self, count: i64)[src]

pub unsafe fn set_ticks_on_borders(&mut self, ticks_on_border: bool)[src]

pub unsafe fn to_range(&self) -> Range[src]

Up-cast.

pub unsafe fn to_control(&self) -> Control[src]

Up-cast.

pub unsafe fn to_canvas_item(&self) -> CanvasItem[src]

Up-cast.

pub unsafe fn to_node(&self) -> Node[src]

Up-cast.

pub unsafe fn to_object(&self) -> Object[src]

Up-cast.

pub unsafe fn cast<T: GodotObject>(&self) -> Option<T>[src]

Generic dynamic cast.

Methods from Deref<Target = Range>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pub unsafe fn share(&mut self, with: Option<Node>)[src]

pub unsafe fn unshare(&mut self)[src]

pub unsafe fn to_control(&self) -> Control[src]

Up-cast.

pub unsafe fn to_canvas_item(&self) -> CanvasItem[src]

Up-cast.

pub unsafe fn to_node(&self) -> Node[src]

Up-cast.

pub unsafe fn to_object(&self) -> Object[src]

Up-cast.

pub unsafe fn cast<T: GodotObject>(&self) -> Option<T>[src]

Generic dynamic cast.

Trait Implementations

impl Clone for Slider[src]

impl Copy for Slider[src]

impl Debug for Slider[src]

impl Deref for Slider[src]

type Target = Range

The resulting type after dereferencing.

impl DerefMut for Slider[src]

impl FromVariant for Slider[src]

impl GodotObject for Slider[src]

impl QueueFree for Slider[src]

impl ToVariant for Slider[src]

Auto Trait Implementations

impl RefUnwindSafe for Slider

impl !Send for Slider

impl !Sync for Slider

impl Unpin for Slider

impl UnwindSafe for Slider

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.