pub trait MessageDialogExt: IsA<MessageDialog> + Sealed + 'static {
Show 18 methods // Provided 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 { ... }
}

Provided Methods§

source

fn message_area(&self) -> Widget

source

fn set_markup(&self, str: &str)

source

fn message_type(&self) -> MessageType

source

fn set_message_type(&self, message_type: MessageType)

source

fn secondary_text(&self) -> Option<GString>

source

fn set_secondary_text(&self, secondary_text: Option<&str>)

source

fn is_secondary_use_markup(&self) -> bool

source

fn set_secondary_use_markup(&self, secondary_use_markup: bool)

source

fn text(&self) -> Option<GString>

source

fn set_text(&self, text: Option<&str>)

source

fn uses_markup(&self) -> bool

source

fn set_use_markup(&self, use_markup: bool)

source

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

source

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

source

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

source

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

source

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

source

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

Implementors§