Trait gtk::prelude::StatusbarExt
[−]
[src]
pub trait StatusbarExt { fn get_context_id(&self, context_description: &str) -> u32; fn get_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
) -> u64; fn connect_text_pushed<F: Fn(&Self, u32, &str) + 'static>(
&self,
f: F
) -> u64; }