Trait ux::ViewportExt[][src]

pub trait ViewportExt: 'static {
Show methods pub fn get_origin(&self) -> (f32, f32, f32);
pub fn get_sync_adjustments(&self) -> bool;
pub fn set_origin(&self, x: f32, y: f32, z: f32);
pub fn set_sync_adjustments(&self, sync_adjustments: bool);
pub fn get_property_x_origin(&self) -> f32;
pub fn set_property_x_origin(&self, x_origin: f32);
pub fn get_property_y_origin(&self) -> f32;
pub fn set_property_y_origin(&self, y_origin: f32);
pub fn get_property_z_origin(&self) -> f32;
pub fn set_property_z_origin(&self, z_origin: f32);
pub fn connect_property_sync_adjustments_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_x_origin_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_y_origin_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_z_origin_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
}

Required methods

pub fn get_origin(&self) -> (f32, f32, f32)[src]

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

pub fn set_origin(&self, x: f32, y: f32, z: f32)[src]

pub fn set_sync_adjustments(&self, sync_adjustments: bool)[src]

pub fn get_property_x_origin(&self) -> f32[src]

pub fn set_property_x_origin(&self, x_origin: f32)[src]

pub fn get_property_y_origin(&self) -> f32[src]

pub fn set_property_y_origin(&self, y_origin: f32)[src]

pub fn get_property_z_origin(&self) -> f32[src]

pub fn set_property_z_origin(&self, z_origin: f32)[src]

pub fn connect_property_sync_adjustments_notify<F>(
    &self,
    f: F
) -> SignalHandlerId where
    F: 'static + Fn(&Self), 
[src]

pub fn connect_property_x_origin_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self), 
[src]

pub fn connect_property_y_origin_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self), 
[src]

pub fn connect_property_z_origin_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self), 
[src]

Loading content...

Implementors

impl<O> ViewportExt for O where
    O: Is<Viewport>, 
[src]

Loading content...