Trait clutter::BehaviourRotateExt[][src]

pub trait BehaviourRotateExt: 'static {
Show methods fn get_axis(&self) -> RotateAxis;
fn get_bounds(&self) -> (f64, f64);
fn get_center(&self) -> (i32, i32, i32);
fn get_direction(&self) -> RotateDirection;
fn set_axis(&self, axis: RotateAxis);
fn set_bounds(&self, angle_start: f64, angle_end: f64);
fn set_center(&self, x: i32, y: i32, z: i32);
fn set_direction(&self, direction: RotateDirection);
fn get_property_angle_end(&self) -> f64;
fn set_property_angle_end(&self, angle_end: f64);
fn get_property_angle_start(&self) -> f64;
fn set_property_angle_start(&self, angle_start: f64);
fn get_property_center_x(&self) -> i32;
fn set_property_center_x(&self, center_x: i32);
fn get_property_center_y(&self) -> i32;
fn set_property_center_y(&self, center_y: i32);
fn get_property_center_z(&self) -> i32;
fn set_property_center_z(&self, center_z: i32);
fn connect_property_angle_end_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_angle_start_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_axis_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_center_x_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_center_y_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_center_z_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_direction_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}

Required methods

fn get_axis(&self) -> RotateAxis[src]

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

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

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

fn set_axis(&self, axis: RotateAxis)[src]

fn set_bounds(&self, angle_start: f64, angle_end: f64)[src]

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

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

fn get_property_angle_end(&self) -> f64[src]

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

fn get_property_angle_start(&self) -> f64[src]

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

fn get_property_center_x(&self) -> i32[src]

fn set_property_center_x(&self, center_x: i32)[src]

fn get_property_center_y(&self) -> i32[src]

fn set_property_center_y(&self, center_y: i32)[src]

fn get_property_center_z(&self) -> i32[src]

fn set_property_center_z(&self, center_z: i32)[src]

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

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

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

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

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

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

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

Loading content...

Implementors

impl<O: IsA<BehaviourRotate>> BehaviourRotateExt for O[src]

Loading content...