Trait gtk::MessageDialogExt [] [src]

pub trait MessageDialogExt {
    fn get_image(&self) -> Option<Widget>;
fn get_message_area(&self) -> Option<Widget>;
fn set_image<P: IsA<Widget>>(&self, image: &P);
fn set_markup(&self, str: &str);
fn get_property_message_type(&self) -> MessageType;
fn set_property_message_type(&self, message_type: MessageType);
fn get_property_secondary_text(&self) -> Option<String>;
fn set_property_secondary_text(&self, secondary_text: Option<&str>);
fn get_property_secondary_use_markup(&self) -> bool;
fn set_property_secondary_use_markup(&self, secondary_use_markup: bool);
fn get_property_text(&self) -> Option<String>;
fn set_property_text(&self, text: Option<&str>);
fn get_property_use_markup(&self) -> bool;
fn set_property_use_markup(&self, use_markup: bool);
fn connect_property_buttons_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> u64;
fn connect_property_image_notify<F: Fn(&Self) + 'static>(&self, f: F) -> u64;
fn connect_property_message_area_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> u64;
fn connect_property_message_type_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> u64;
fn connect_property_secondary_text_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> u64;
fn connect_property_secondary_use_markup_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> u64;
fn connect_property_text_notify<F: Fn(&Self) + 'static>(&self, f: F) -> u64;
fn connect_property_use_markup_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> u64; }

Required Methods

Implementors