Trait ux::BehaviourEllipseExt[][src]

pub trait BehaviourEllipseExt: 'static {
Show methods pub fn get_angle_end(&self) -> f64;
pub fn get_angle_start(&self) -> f64;
pub fn get_angle_tilt(&self, axis: RotateAxis) -> f64;
pub fn get_center(&self) -> (i32, i32);
pub fn get_direction(&self) -> RotateDirection;
pub fn get_height(&self) -> i32;
pub fn get_tilt(&self) -> (f64, f64, f64);
pub fn get_width(&self) -> i32;
pub fn set_angle_end(&self, angle_end: f64);
pub fn set_angle_start(&self, angle_start: f64);
pub fn set_angle_tilt(&self, axis: RotateAxis, angle_tilt: f64);
pub fn set_center(&self, x: i32, y: i32);
pub fn set_direction(&self, direction: RotateDirection);
pub fn set_height(&self, height: i32);
pub fn set_tilt(
        &self,
        angle_tilt_x: f64,
        angle_tilt_y: f64,
        angle_tilt_z: f64
    );
pub fn set_width(&self, width: i32);
pub fn get_property_angle_tilt_x(&self) -> f64;
pub fn set_property_angle_tilt_x(&self, angle_tilt_x: f64);
pub fn get_property_angle_tilt_y(&self) -> f64;
pub fn set_property_angle_tilt_y(&self, angle_tilt_y: f64);
pub fn get_property_angle_tilt_z(&self) -> f64;
pub fn set_property_angle_tilt_z(&self, angle_tilt_z: f64);
pub fn connect_property_angle_end_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_angle_start_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_angle_tilt_x_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_angle_tilt_y_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_angle_tilt_z_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_center_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_direction_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_height_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_width_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
}

Required methods

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

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

pub fn get_angle_tilt(&self, axis: RotateAxis) -> f64[src]

pub fn get_center(&self) -> (i32, i32)[src]

pub fn get_direction(&self) -> RotateDirection[src]

pub fn get_height(&self) -> i32[src]

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

pub fn get_width(&self) -> i32[src]

pub fn set_angle_end(&self, angle_end: f64)[src]

pub fn set_angle_start(&self, angle_start: f64)[src]

pub fn set_angle_tilt(&self, axis: RotateAxis, angle_tilt: f64)[src]

pub fn set_center(&self, x: i32, y: i32)[src]

pub fn set_direction(&self, direction: RotateDirection)[src]

pub fn set_height(&self, height: i32)[src]

pub fn set_tilt(&self, angle_tilt_x: f64, angle_tilt_y: f64, angle_tilt_z: f64)[src]

pub fn set_width(&self, width: i32)[src]

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

pub fn set_property_angle_tilt_x(&self, angle_tilt_x: f64)[src]

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

pub fn set_property_angle_tilt_y(&self, angle_tilt_y: f64)[src]

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

pub fn set_property_angle_tilt_z(&self, angle_tilt_z: f64)[src]

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

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

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

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

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

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

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

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

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

Loading content...

Implementors

impl<O> BehaviourEllipseExt for O where
    O: IsA<BehaviourEllipse>, 
[src]

Loading content...