Trait ScaleExt

Source
pub trait ScaleExt: 'static {
Show 17 methods // Required methods fn add_mark(&self, value: f64, position: PositionType, markup: Option<&str>); fn clear_marks(&self); fn get_digits(&self) -> i32; fn get_draw_value(&self) -> bool; fn get_has_origin(&self) -> bool; fn get_layout(&self) -> Option<Layout>; fn get_layout_offsets(&self) -> (i32, i32); fn get_value_pos(&self) -> PositionType; fn set_digits(&self, digits: i32); fn set_draw_value(&self, draw_value: bool); fn set_has_origin(&self, has_origin: bool); fn set_value_pos(&self, pos: PositionType); fn connect_format_value<F: Fn(&Self, f64) -> String + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_digits_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_draw_value_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_has_origin_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_value_pos_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId;
}

Required Methods§

Source

fn add_mark(&self, value: f64, position: PositionType, markup: Option<&str>)

Source

fn clear_marks(&self)

Source

fn get_digits(&self) -> i32

Source

fn get_draw_value(&self) -> bool

Source

fn get_has_origin(&self) -> bool

Source

fn get_layout(&self) -> Option<Layout>

Source

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

Source

fn get_value_pos(&self) -> PositionType

Source

fn set_digits(&self, digits: i32)

Source

fn set_draw_value(&self, draw_value: bool)

Source

fn set_has_origin(&self, has_origin: bool)

Source

fn set_value_pos(&self, pos: PositionType)

Source

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

Source

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

Source

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

Source

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

Source

fn connect_property_value_pos_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§

Source§

impl<O: IsA<Scale>> ScaleExt for O