pub trait SliderExt: IsA<Slider> + Sealed + 'static {
// Provided methods
fn add_mark(&self, value: f64, text: Option<&str>) { ... }
fn left_icon(&self) -> GString { ... }
fn set_left_icon(&self, value: &str) { ... }
fn right_icon(&self) -> GString { ... }
fn set_right_icon(&self, value: &str) { ... }
fn is_stop_indicator_visibility(&self) -> bool { ... }
fn set_stop_indicator_visibility(&self, value: bool) { ... }
fn connect_left_icon_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_right_icon_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_stop_indicator_visibility_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
}
Provided Methods§
sourcefn add_mark(&self, value: f64, text: Option<&str>)
fn add_mark(&self, value: f64, text: Option<&str>)
fn left_icon(&self) -> GString
fn set_left_icon(&self, value: &str)
fn right_icon(&self) -> GString
fn set_right_icon(&self, value: &str)
fn is_stop_indicator_visibility(&self) -> bool
fn set_stop_indicator_visibility(&self, value: bool)
fn connect_left_icon_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_right_icon_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_stop_indicator_visibility_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
Object Safety§
This trait is not object safe.