Trait sourceview5::prelude::ScaleButtonExt
source · pub trait ScaleButtonExt: IsA<ScaleButton> + Sealed + 'static {
Show 19 methods
// Provided methods
fn is_active(&self) -> bool { ... }
fn adjustment(&self) -> Adjustment { ... }
fn minus_button(&self) -> Button { ... }
fn plus_button(&self) -> Button { ... }
fn popup(&self) -> Widget { ... }
fn value(&self) -> f64 { ... }
fn set_adjustment(&self, adjustment: &impl IsA<Adjustment>) { ... }
fn set_icons(&self, icons: &[&str]) { ... }
fn set_value(&self, value: f64) { ... }
fn icons(&self) -> Vec<GString> { ... }
fn connect_popdown<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn emit_popdown(&self) { ... }
fn connect_popup<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn emit_popup(&self) { ... }
fn connect_value_changed<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, f64) + 'static { ... }
fn connect_active_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_adjustment_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_icons_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_value_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
}
Provided Methods§
fn is_active(&self) -> bool
fn adjustment(&self) -> Adjustment
fn popup(&self) -> Widget
fn value(&self) -> f64
fn set_adjustment(&self, adjustment: &impl IsA<Adjustment>)
fn set_icons(&self, icons: &[&str])
fn set_value(&self, value: f64)
fn icons(&self) -> Vec<GString>
fn connect_popdown<F>(&self, f: F) -> SignalHandlerId
fn emit_popdown(&self)
fn connect_popup<F>(&self, f: F) -> SignalHandlerId
fn emit_popup(&self)
fn connect_value_changed<F>(&self, f: F) -> SignalHandlerId
fn connect_active_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_adjustment_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_icons_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_value_notify<F>(&self, f: F) -> SignalHandlerId
Object Safety§
This trait is not object safe.