pub trait CellRendererProgressExt: IsA<CellRendererProgress> + Sealed + 'static {
Show 18 methods // Provided methods fn is_inverted(&self) -> bool { ... } fn set_inverted(&self, inverted: bool) { ... } fn pulse(&self) -> i32 { ... } fn set_pulse(&self, pulse: i32) { ... } fn text(&self) -> Option<GString> { ... } fn set_text(&self, text: Option<&str>) { ... } fn text_xalign(&self) -> f32 { ... } fn set_text_xalign(&self, text_xalign: f32) { ... } fn text_yalign(&self) -> f32 { ... } fn set_text_yalign(&self, text_yalign: f32) { ... } fn value(&self) -> i32 { ... } fn set_value(&self, value: i32) { ... } fn connect_inverted_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_pulse_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_text_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_text_xalign_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_text_yalign_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_value_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... }
}

Provided Methods§

source

fn is_inverted(&self) -> bool

source

fn set_inverted(&self, inverted: bool)

source

fn pulse(&self) -> i32

source

fn set_pulse(&self, pulse: i32)

source

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

source

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

source

fn text_xalign(&self) -> f32

source

fn set_text_xalign(&self, text_xalign: f32)

source

fn text_yalign(&self) -> f32

source

fn set_text_yalign(&self, text_yalign: f32)

source

fn value(&self) -> i32

source

fn set_value(&self, value: i32)

source

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

source

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

source

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

source

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

source

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

source

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

Implementors§