Trait libhelium::prelude::ProgressBarExt

source ·
pub trait ProgressBarExt: IsA<ProgressBar> + Sealed + 'static {
    // Provided methods
    fn is_stop_indicator_visibility(&self) -> bool { ... }
    fn set_stop_indicator_visibility(&self, value: bool) { ... }
    fn is_osd(&self) -> bool { ... }
    fn set_is_osd(&self, value: bool) { ... }
    fn connect_stop_indicator_visibility_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
    fn connect_is_osd_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
}
Expand description

Trait containing all ProgressBar methods.

§Implementors

ProgressBar

Provided Methods§

source

fn is_stop_indicator_visibility(&self) -> bool

source

fn set_stop_indicator_visibility(&self, value: bool)

source

fn is_osd(&self) -> bool

source

fn set_is_osd(&self, value: bool)

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§