Trait BehaviourEllipseExt

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

Required Methods§

Source

fn get_angle_end(&self) -> f64

Source

fn get_angle_start(&self) -> f64

Source

fn get_angle_tilt(&self, axis: RotateAxis) -> f64

Source

fn get_center(&self) -> (i32, i32)

Source

fn get_direction(&self) -> RotateDirection

Source

fn get_height(&self) -> i32

Source

fn get_tilt(&self) -> (f64, f64, f64)

Source

fn get_width(&self) -> i32

Source

fn set_angle_end(&self, angle_end: f64)

Source

fn set_angle_start(&self, angle_start: f64)

Source

fn set_angle_tilt(&self, axis: RotateAxis, angle_tilt: f64)

Source

fn set_center(&self, x: i32, y: i32)

Source

fn set_direction(&self, direction: RotateDirection)

Source

fn set_height(&self, height: i32)

Source

fn set_tilt(&self, angle_tilt_x: f64, angle_tilt_y: f64, angle_tilt_z: f64)

Source

fn set_width(&self, width: i32)

Source

fn get_property_angle_tilt_x(&self) -> f64

Source

fn set_property_angle_tilt_x(&self, angle_tilt_x: f64)

Source

fn get_property_angle_tilt_y(&self) -> f64

Source

fn set_property_angle_tilt_y(&self, angle_tilt_y: f64)

Source

fn get_property_angle_tilt_z(&self) -> f64

Source

fn set_property_angle_tilt_z(&self, angle_tilt_z: f64)

Source

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

Source

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

Source

fn connect_property_angle_tilt_x_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

Source

fn connect_property_angle_tilt_y_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

Source

fn connect_property_angle_tilt_z_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

Source

fn connect_property_center_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

Source

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

Source

fn connect_property_height_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

Source

fn connect_property_width_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§