[−][src]Struct split_controller::SplitController
Stores information about an UI split.
Fields
value: f64The value of split.
min_value: f64The minimum value of split.
border: f64The border width.
orientation: SplitOrientationThe orientation of split.
Methods
impl SplitController[src]
pub fn new(
value: f64,
min_value: f64,
border: f64,
orientation: SplitOrientation
) -> SplitController[src]
value: f64,
min_value: f64,
border: f64,
orientation: SplitOrientation
) -> SplitController
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]
&mut self,
layout: SplitLayout,
max_value: f64,
rect: [f64; 4],
transform: Matrix2x3<f64>,
e: &E
)
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
impl Send for SplitController
impl Sync for SplitController
Blanket Implementations
impl<T> From for T[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,