Trait gtk::prelude::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); }
Required Methods
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)
Implementors
impl<O: IsA<MessageDialog> + IsA<Object>> MessageDialogExt for O