[][src]Struct split_controller::SplitController

pub struct SplitController {
    pub value: f64,
    pub min_value: f64,
    pub border: f64,
    pub orientation: SplitOrientation,
    // some fields omitted
}

Stores information about an UI split.

Fields

value: f64

The value of split.

min_value: f64

The minimum value of split.

border: f64

The border width.

orientation: SplitOrientation

The orientation of split.

Implementations

impl SplitController[src]

pub fn new(
    value: f64,
    min_value: f64,
    border: f64,
    orientation: SplitOrientation
) -> SplitController
[src]

Creates a new SplitController.

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

Gets whether the split is currently being dragged by the user.

pub fn event<E: GenericEvent>(
    &mut self,
    layout: SplitLayout,
    max_value: f64,
    rect: [f64; 4],
    transform: Matrix2x3<f64>,
    e: &E
)
[src]

Handles event.

pub fn state(&self) -> SplitState[src]

Gets the current state of split.

pub fn line_rect(&self, layout: SplitLayout, rect: [f64; 4]) -> [f64; 4][src]

Gets line rectangle [x, y, w, h] from rectangle [x, y, w, h] of parent panel.

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, 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.