Trait gtk::prelude::StatusbarExt

source ·
pub trait StatusbarExt: IsA<Statusbar> + Sealed + 'static {
    // Provided methods
    fn context_id(&self, context_description: &str) -> u32 { ... }
    fn message_area(&self) -> Option<Box> { ... }
    fn pop(&self, context_id: u32) { ... }
    fn push(&self, context_id: u32, text: &str) -> u32 { ... }
    fn remove(&self, context_id: u32, message_id: u32) { ... }
    fn remove_all(&self, context_id: u32) { ... }
    fn connect_text_popped<F: Fn(&Self, u32, &str) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
    fn connect_text_pushed<F: Fn(&Self, u32, &str) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}

Provided Methods§

source

fn context_id(&self, context_description: &str) -> u32

source

fn message_area(&self) -> Option<Box>

source

fn pop(&self, context_id: u32)

source

fn push(&self, context_id: u32, text: &str) -> u32

source

fn remove(&self, context_id: u32, message_id: u32)

source

fn remove_all(&self, context_id: u32)

source

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

source

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

Implementors§