use Bin;
use Buildable;
use Container;
use Dialog;
use MessageType;
use Widget;
use Window;
use ffi;
use glib::GString;
use glib::StaticType;
use glib::Value;
use glib::object::Cast;
use glib::object::IsA;
use glib::signal::SignalHandlerId;
use glib::signal::connect_raw;
use glib::translate::*;
use glib_ffi;
use gobject_ffi;
use std::boxed::Box as Box_;
use std::fmt;
use std::mem::transmute;
glib_wrapper! {
pub struct MessageDialog(Object<ffi::GtkMessageDialog, ffi::GtkMessageDialogClass, MessageDialogClass>) @extends Dialog, Window, Bin, Container, Widget, @implements Buildable;
match fn {
get_type => || ffi::gtk_message_dialog_get_type(),
}
}
impl MessageDialog {
}
pub const NONE_MESSAGE_DIALOG: Option<&MessageDialog> = None;
pub trait MessageDialogExt: 'static {
fn get_message_area(&self) -> Option<Widget>;
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<GString>;
fn set_property_secondary_text<'a, P: Into<Option<&'a str>>>(&self, secondary_text: P);
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<GString>;
fn set_property_text<'a, P: Into<Option<&'a str>>>(&self, text: P);
fn get_property_use_markup(&self) -> bool;
fn set_property_use_markup(&self, use_markup: bool);
fn connect_property_message_area_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_message_type_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_secondary_text_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_secondary_use_markup_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_text_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_use_markup_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
}
impl<O: IsA<MessageDialog>> MessageDialogExt for O {
fn get_message_area(&self) -> Option<Widget> {
unsafe {
from_glib_none(ffi::gtk_message_dialog_get_message_area(self.as_ref().to_glib_none().0))
}
}
fn set_markup(&self, str: &str) {
unsafe {
ffi::gtk_message_dialog_set_markup(self.as_ref().to_glib_none().0, str.to_glib_none().0);
}
}
fn get_property_message_type(&self) -> MessageType {
unsafe {
let mut value = Value::from_type(<MessageType as StaticType>::static_type());
gobject_ffi::g_object_get_property(self.to_glib_none().0 as *mut gobject_ffi::GObject, b"message-type\0".as_ptr() as *const _, value.to_glib_none_mut().0);
value.get().unwrap()
}
}
fn set_property_message_type(&self, message_type: MessageType) {
unsafe {
gobject_ffi::g_object_set_property(self.to_glib_none().0 as *mut gobject_ffi::GObject, b"message-type\0".as_ptr() as *const _, Value::from(&message_type).to_glib_none().0);
}
}
fn get_property_secondary_text(&self) -> Option<GString> {
unsafe {
let mut value = Value::from_type(<GString as StaticType>::static_type());
gobject_ffi::g_object_get_property(self.to_glib_none().0 as *mut gobject_ffi::GObject, b"secondary-text\0".as_ptr() as *const _, value.to_glib_none_mut().0);
value.get()
}
}
fn set_property_secondary_text<'a, P: Into<Option<&'a str>>>(&self, secondary_text: P) {
let secondary_text = secondary_text.into();
unsafe {
gobject_ffi::g_object_set_property(self.to_glib_none().0 as *mut gobject_ffi::GObject, b"secondary-text\0".as_ptr() as *const _, Value::from(secondary_text).to_glib_none().0);
}
}
fn get_property_secondary_use_markup(&self) -> bool {
unsafe {
let mut value = Value::from_type(<bool as StaticType>::static_type());
gobject_ffi::g_object_get_property(self.to_glib_none().0 as *mut gobject_ffi::GObject, b"secondary-use-markup\0".as_ptr() as *const _, value.to_glib_none_mut().0);
value.get().unwrap()
}
}
fn set_property_secondary_use_markup(&self, secondary_use_markup: bool) {
unsafe {
gobject_ffi::g_object_set_property(self.to_glib_none().0 as *mut gobject_ffi::GObject, b"secondary-use-markup\0".as_ptr() as *const _, Value::from(&secondary_use_markup).to_glib_none().0);
}
}
fn get_property_text(&self) -> Option<GString> {
unsafe {
let mut value = Value::from_type(<GString as StaticType>::static_type());
gobject_ffi::g_object_get_property(self.to_glib_none().0 as *mut gobject_ffi::GObject, b"text\0".as_ptr() as *const _, value.to_glib_none_mut().0);
value.get()
}
}
fn set_property_text<'a, P: Into<Option<&'a str>>>(&self, text: P) {
let text = text.into();
unsafe {
gobject_ffi::g_object_set_property(self.to_glib_none().0 as *mut gobject_ffi::GObject, b"text\0".as_ptr() as *const _, Value::from(text).to_glib_none().0);
}
}
fn get_property_use_markup(&self) -> bool {
unsafe {
let mut value = Value::from_type(<bool as StaticType>::static_type());
gobject_ffi::g_object_get_property(self.to_glib_none().0 as *mut gobject_ffi::GObject, b"use-markup\0".as_ptr() as *const _, value.to_glib_none_mut().0);
value.get().unwrap()
}
}
fn set_property_use_markup(&self, use_markup: bool) {
unsafe {
gobject_ffi::g_object_set_property(self.to_glib_none().0 as *mut gobject_ffi::GObject, b"use-markup\0".as_ptr() as *const _, Value::from(&use_markup).to_glib_none().0);
}
}
fn connect_property_message_area_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"notify::message-area\0".as_ptr() as *const _,
Some(transmute(notify_message_area_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_message_type_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"notify::message-type\0".as_ptr() as *const _,
Some(transmute(notify_message_type_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_secondary_text_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"notify::secondary-text\0".as_ptr() as *const _,
Some(transmute(notify_secondary_text_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_secondary_use_markup_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"notify::secondary-use-markup\0".as_ptr() as *const _,
Some(transmute(notify_secondary_use_markup_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_text_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"notify::text\0".as_ptr() as *const _,
Some(transmute(notify_text_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_use_markup_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"notify::use-markup\0".as_ptr() as *const _,
Some(transmute(notify_use_markup_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
}
unsafe extern "C" fn notify_message_area_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkMessageDialog, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<MessageDialog> {
let f: &F = transmute(f);
f(&MessageDialog::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_message_type_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkMessageDialog, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<MessageDialog> {
let f: &F = transmute(f);
f(&MessageDialog::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_secondary_text_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkMessageDialog, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<MessageDialog> {
let f: &F = transmute(f);
f(&MessageDialog::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_secondary_use_markup_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkMessageDialog, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<MessageDialog> {
let f: &F = transmute(f);
f(&MessageDialog::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_text_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkMessageDialog, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<MessageDialog> {
let f: &F = transmute(f);
f(&MessageDialog::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_use_markup_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkMessageDialog, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<MessageDialog> {
let f: &F = transmute(f);
f(&MessageDialog::from_glib_borrow(this).unsafe_cast())
}
impl fmt::Display for MessageDialog {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "MessageDialog")
}
}