Trait gtk::prelude::MessageDialogExt[][src]

pub trait MessageDialogExt: 'static {
Show 18 methods fn message_area(&self) -> Widget;
fn set_markup(&self, str: &str);
fn message_type(&self) -> MessageType;
fn set_message_type(&self, message_type: MessageType);
fn secondary_text(&self) -> Option<GString>;
fn set_secondary_text(&self, secondary_text: Option<&str>);
fn is_secondary_use_markup(&self) -> bool;
fn set_secondary_use_markup(&self, secondary_use_markup: bool);
fn text(&self) -> Option<GString>;
fn set_text(&self, text: Option<&str>);
fn uses_markup(&self) -> bool;
fn set_use_markup(&self, use_markup: bool);
fn connect_message_area_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_message_type_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_secondary_text_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_secondary_use_markup_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_text_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_use_markup_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}

Required methods

Implementors