Trait gtk::prelude::LevelBarExt
source · [−]pub trait LevelBarExt: 'static {
Show 19 methods
fn add_offset_value(&self, name: &str, value: f64);
fn get_inverted(&self) -> bool;
fn get_max_value(&self) -> f64;
fn get_min_value(&self) -> f64;
fn get_mode(&self) -> LevelBarMode;
fn get_offset_value(&self, name: Option<&str>) -> Option<f64>;
fn get_value(&self) -> f64;
fn remove_offset_value(&self, name: Option<&str>);
fn set_inverted(&self, inverted: bool);
fn set_max_value(&self, value: f64);
fn set_min_value(&self, value: f64);
fn set_mode(&self, mode: LevelBarMode);
fn set_value(&self, value: f64);
fn connect_offset_changed<F: Fn(&Self, &str) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_property_inverted_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_property_max_value_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_property_min_value_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_property_mode_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_property_value_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
}Required Methods
source
fn add_offset_value(&self, name: &str, value: f64)
source
fn get_inverted(&self) -> bool
source
fn get_max_value(&self) -> f64
source
fn get_min_value(&self) -> f64
source
fn get_mode(&self) -> LevelBarMode
source
fn remove_offset_value(&self, name: Option<&str>)
source
fn set_inverted(&self, inverted: bool)
source
fn set_max_value(&self, value: f64)
source
fn set_min_value(&self, value: f64)
source
fn set_mode(&self, mode: LevelBarMode)
sourcefn connect_offset_changed<F: Fn(&Self, &str) + 'static>(
fn connect_offset_changed<F: Fn(&Self, &str) + 'static>(
&self,
f: F
) -> SignalHandlerId
sourcefn connect_property_inverted_notify<F: Fn(&Self) + 'static>(
fn connect_property_inverted_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
sourcefn connect_property_max_value_notify<F: Fn(&Self) + 'static>(
fn connect_property_max_value_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
sourcefn connect_property_min_value_notify<F: Fn(&Self) + 'static>(
fn connect_property_min_value_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
sourcefn connect_property_mode_notify<F: Fn(&Self) + 'static>(
fn connect_property_mode_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
sourcefn connect_property_value_notify<F: Fn(&Self) + 'static>(