[][src]Trait gtk::prelude::StatusbarExt

pub trait StatusbarExt: 'static {
    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
    ) -> SignalHandlerId;
fn connect_text_pushed<F: Fn(&Self, u32, &str) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

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
) -> SignalHandlerId

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

Loading content...

Implementors

impl<O: IsA<Statusbar>> StatusbarExt for O[src]

Loading content...