pub trait ProgressBarExt: IsA<ProgressBar> + Sealed + 'static {
Show 19 methods // Provided methods fn ellipsize(&self) -> EllipsizeMode { ... } fn fraction(&self) -> f64 { ... } fn is_inverted(&self) -> bool { ... } fn pulse_step(&self) -> f64 { ... } fn shows_text(&self) -> bool { ... } fn text(&self) -> Option<GString> { ... } fn pulse(&self) { ... } fn set_ellipsize(&self, mode: EllipsizeMode) { ... } fn set_fraction(&self, fraction: f64) { ... } fn set_inverted(&self, inverted: bool) { ... } fn set_pulse_step(&self, fraction: f64) { ... } fn set_show_text(&self, show_text: bool) { ... } fn set_text(&self, text: Option<&str>) { ... } fn connect_ellipsize_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_fraction_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_inverted_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_pulse_step_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_show_text_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_text_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... }
}

Provided Methods§

source

fn ellipsize(&self) -> EllipsizeMode

source

fn fraction(&self) -> f64

source

fn is_inverted(&self) -> bool

source

fn pulse_step(&self) -> f64

source

fn shows_text(&self) -> bool

source

fn text(&self) -> Option<GString>

source

fn pulse(&self)

source

fn set_ellipsize(&self, mode: EllipsizeMode)

source

fn set_fraction(&self, fraction: f64)

source

fn set_inverted(&self, inverted: bool)

source

fn set_pulse_step(&self, fraction: f64)

source

fn set_show_text(&self, show_text: bool)

source

fn set_text(&self, text: Option<&str>)

source

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

source

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

source

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

source

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

source

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

source

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

Implementors§