use Bin;
use Buildable;
use Container;
use ShadowType;
use Widget;
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;
use std::mem::transmute;
glib_wrapper! {
pub struct Frame(Object<ffi::GtkFrame, ffi::GtkFrameClass, FrameClass>) @extends Bin, Container, Widget, @implements Buildable;
match fn {
get_type => || ffi::gtk_frame_get_type(),
}
}
impl Frame {
pub fn new<'a, P: Into<Option<&'a str>>>(label: P) -> Frame {
assert_initialized_main_thread!();
let label = label.into();
unsafe {
Widget::from_glib_none(ffi::gtk_frame_new(label.to_glib_none().0)).unsafe_cast()
}
}
}
pub const NONE_FRAME: Option<&Frame> = None;
pub trait FrameExt: 'static {
fn get_label(&self) -> Option<GString>;
fn get_label_align(&self) -> (f32, f32);
fn get_label_widget(&self) -> Option<Widget>;
fn get_shadow_type(&self) -> ShadowType;
fn set_label<'a, P: Into<Option<&'a str>>>(&self, label: P);
fn set_label_align(&self, xalign: f32, yalign: f32);
fn set_label_widget<'a, P: IsA<Widget> + 'a, Q: Into<Option<&'a P>>>(&self, label_widget: Q);
fn set_shadow_type(&self, type_: ShadowType);
fn get_property_label_xalign(&self) -> f32;
fn set_property_label_xalign(&self, label_xalign: f32);
fn get_property_label_yalign(&self) -> f32;
fn set_property_label_yalign(&self, label_yalign: f32);
fn connect_property_label_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_label_widget_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_label_xalign_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_label_yalign_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_shadow_type_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
}
impl<O: IsA<Frame>> FrameExt for O {
fn get_label(&self) -> Option<GString> {
unsafe {
from_glib_none(ffi::gtk_frame_get_label(self.as_ref().to_glib_none().0))
}
}
fn get_label_align(&self) -> (f32, f32) {
unsafe {
let mut xalign = mem::uninitialized();
let mut yalign = mem::uninitialized();
ffi::gtk_frame_get_label_align(self.as_ref().to_glib_none().0, &mut xalign, &mut yalign);
(xalign, yalign)
}
}
fn get_label_widget(&self) -> Option<Widget> {
unsafe {
from_glib_none(ffi::gtk_frame_get_label_widget(self.as_ref().to_glib_none().0))
}
}
fn get_shadow_type(&self) -> ShadowType {
unsafe {
from_glib(ffi::gtk_frame_get_shadow_type(self.as_ref().to_glib_none().0))
}
}
fn set_label<'a, P: Into<Option<&'a str>>>(&self, label: P) {
let label = label.into();
unsafe {
ffi::gtk_frame_set_label(self.as_ref().to_glib_none().0, label.to_glib_none().0);
}
}
fn set_label_align(&self, xalign: f32, yalign: f32) {
unsafe {
ffi::gtk_frame_set_label_align(self.as_ref().to_glib_none().0, xalign, yalign);
}
}
fn set_label_widget<'a, P: IsA<Widget> + 'a, Q: Into<Option<&'a P>>>(&self, label_widget: Q) {
let label_widget = label_widget.into();
unsafe {
ffi::gtk_frame_set_label_widget(self.as_ref().to_glib_none().0, label_widget.map(|p| p.as_ref()).to_glib_none().0);
}
}
fn set_shadow_type(&self, type_: ShadowType) {
unsafe {
ffi::gtk_frame_set_shadow_type(self.as_ref().to_glib_none().0, type_.to_glib());
}
}
fn get_property_label_xalign(&self) -> f32 {
unsafe {
let mut value = Value::from_type(<f32 as StaticType>::static_type());
gobject_ffi::g_object_get_property(self.to_glib_none().0 as *mut gobject_ffi::GObject, b"label-xalign\0".as_ptr() as *const _, value.to_glib_none_mut().0);
value.get().unwrap()
}
}
fn set_property_label_xalign(&self, label_xalign: f32) {
unsafe {
gobject_ffi::g_object_set_property(self.to_glib_none().0 as *mut gobject_ffi::GObject, b"label-xalign\0".as_ptr() as *const _, Value::from(&label_xalign).to_glib_none().0);
}
}
fn get_property_label_yalign(&self) -> f32 {
unsafe {
let mut value = Value::from_type(<f32 as StaticType>::static_type());
gobject_ffi::g_object_get_property(self.to_glib_none().0 as *mut gobject_ffi::GObject, b"label-yalign\0".as_ptr() as *const _, value.to_glib_none_mut().0);
value.get().unwrap()
}
}
fn set_property_label_yalign(&self, label_yalign: f32) {
unsafe {
gobject_ffi::g_object_set_property(self.to_glib_none().0 as *mut gobject_ffi::GObject, b"label-yalign\0".as_ptr() as *const _, Value::from(&label_yalign).to_glib_none().0);
}
}
fn connect_property_label_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::label\0".as_ptr() as *const _,
Some(transmute(notify_label_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_label_widget_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::label-widget\0".as_ptr() as *const _,
Some(transmute(notify_label_widget_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_label_xalign_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::label-xalign\0".as_ptr() as *const _,
Some(transmute(notify_label_xalign_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_label_yalign_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::label-yalign\0".as_ptr() as *const _,
Some(transmute(notify_label_yalign_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_shadow_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::shadow-type\0".as_ptr() as *const _,
Some(transmute(notify_shadow_type_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
}
unsafe extern "C" fn notify_label_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkFrame, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Frame> {
let f: &F = transmute(f);
f(&Frame::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_label_widget_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkFrame, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Frame> {
let f: &F = transmute(f);
f(&Frame::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_label_xalign_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkFrame, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Frame> {
let f: &F = transmute(f);
f(&Frame::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_label_yalign_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkFrame, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Frame> {
let f: &F = transmute(f);
f(&Frame::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_shadow_type_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkFrame, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Frame> {
let f: &F = transmute(f);
f(&Frame::from_glib_borrow(this).unsafe_cast())
}
impl fmt::Display for Frame {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Frame")
}
}