use AccelGroup;
use Application;
use Bin;
use Buildable;
use Container;
use Error;
use Widget;
use WindowGroup;
use WindowPosition;
use WindowType;
use ffi;
use gdk;
use gdk_pixbuf;
use glib;
use glib::GString;
use glib::StaticType;
use glib::Value;
use glib::object::Cast;
use glib::object::IsA;
use glib::object::ObjectExt;
use glib::signal::SignalHandlerId;
use glib::signal::connect_raw;
use glib::translate::*;
use glib_ffi;
use gobject_ffi;
use std;
use std::boxed::Box as Box_;
use std::fmt;
use std::mem;
use std::mem::transmute;
use std::ptr;
glib_wrapper! {
pub struct Window(Object<ffi::GtkWindow, ffi::GtkWindowClass, WindowClass>) @extends Bin, Container, Widget, @implements Buildable;
match fn {
get_type => || ffi::gtk_window_get_type(),
}
}
impl Window {
pub fn new(type_: WindowType) -> Window {
assert_initialized_main_thread!();
unsafe {
Widget::from_glib_none(ffi::gtk_window_new(type_.to_glib())).unsafe_cast()
}
}
pub fn get_default_icon_list() -> Vec<gdk_pixbuf::Pixbuf> {
assert_initialized_main_thread!();
unsafe {
FromGlibPtrContainer::from_glib_container(ffi::gtk_window_get_default_icon_list())
}
}
pub fn get_default_icon_name() -> Option<GString> {
assert_initialized_main_thread!();
unsafe {
from_glib_none(ffi::gtk_window_get_default_icon_name())
}
}
pub fn list_toplevels() -> Vec<Widget> {
assert_initialized_main_thread!();
unsafe {
FromGlibPtrContainer::from_glib_container(ffi::gtk_window_list_toplevels())
}
}
pub fn set_auto_startup_notification(setting: bool) {
assert_initialized_main_thread!();
unsafe {
ffi::gtk_window_set_auto_startup_notification(setting.to_glib());
}
}
pub fn set_default_icon(icon: &gdk_pixbuf::Pixbuf) {
assert_initialized_main_thread!();
unsafe {
ffi::gtk_window_set_default_icon(icon.to_glib_none().0);
}
}
pub fn set_default_icon_from_file<P: AsRef<std::path::Path>>(filename: P) -> Result<(), Error> {
assert_initialized_main_thread!();
unsafe {
let mut error = ptr::null_mut();
let _ = ffi::gtk_window_set_default_icon_from_file(filename.as_ref().to_glib_none().0, &mut error);
if error.is_null() { Ok(()) } else { Err(from_glib_full(error)) }
}
}
pub fn set_default_icon_list(list: &[gdk_pixbuf::Pixbuf]) {
assert_initialized_main_thread!();
unsafe {
ffi::gtk_window_set_default_icon_list(list.to_glib_container().0);
}
}
pub fn set_default_icon_name(name: &str) {
assert_initialized_main_thread!();
unsafe {
ffi::gtk_window_set_default_icon_name(name.to_glib_none().0);
}
}
pub fn set_interactive_debugging(enable: bool) {
assert_initialized_main_thread!();
unsafe {
ffi::gtk_window_set_interactive_debugging(enable.to_glib());
}
}
}
pub const NONE_WINDOW: Option<&Window> = None;
pub trait GtkWindowExt: 'static {
fn activate_default(&self) -> bool;
fn activate_focus(&self) -> bool;
fn activate_key(&self, event: &gdk::EventKey) -> bool;
fn add_accel_group<P: IsA<AccelGroup>>(&self, accel_group: &P);
fn add_mnemonic<P: IsA<Widget>>(&self, keyval: u32, target: &P);
fn begin_move_drag(&self, button: i32, root_x: i32, root_y: i32, timestamp: u32);
fn begin_resize_drag(&self, edge: gdk::WindowEdge, button: i32, root_x: i32, root_y: i32, timestamp: u32);
fn close(&self);
fn deiconify(&self);
fn fullscreen(&self);
#[cfg(any(feature = "v3_18", feature = "dox"))]
fn fullscreen_on_monitor(&self, screen: &gdk::Screen, monitor: i32);
fn get_accept_focus(&self) -> bool;
fn get_application(&self) -> Option<Application>;
fn get_attached_to(&self) -> Option<Widget>;
fn get_decorated(&self) -> bool;
fn get_default_size(&self) -> (i32, i32);
fn get_default_widget(&self) -> Option<Widget>;
fn get_deletable(&self) -> bool;
fn get_destroy_with_parent(&self) -> bool;
fn get_focus(&self) -> Option<Widget>;
fn get_focus_on_map(&self) -> bool;
fn get_focus_visible(&self) -> bool;
fn get_gravity(&self) -> gdk::Gravity;
fn get_group(&self) -> Option<WindowGroup>;
fn get_hide_titlebar_when_maximized(&self) -> bool;
fn get_icon(&self) -> Option<gdk_pixbuf::Pixbuf>;
fn get_icon_list(&self) -> Vec<gdk_pixbuf::Pixbuf>;
fn get_icon_name(&self) -> Option<GString>;
fn get_mnemonic_modifier(&self) -> gdk::ModifierType;
fn get_mnemonics_visible(&self) -> bool;
fn get_modal(&self) -> bool;
fn get_position(&self) -> (i32, i32);
fn get_resizable(&self) -> bool;
fn get_role(&self) -> Option<GString>;
fn get_size(&self) -> (i32, i32);
fn get_skip_pager_hint(&self) -> bool;
fn get_skip_taskbar_hint(&self) -> bool;
fn get_title(&self) -> Option<GString>;
#[cfg(any(feature = "v3_16", feature = "dox"))]
fn get_titlebar(&self) -> Option<Widget>;
fn get_transient_for(&self) -> Option<Window>;
fn get_type_hint(&self) -> gdk::WindowTypeHint;
fn get_urgency_hint(&self) -> bool;
fn get_window_type(&self) -> WindowType;
fn has_group(&self) -> bool;
fn has_toplevel_focus(&self) -> bool;
fn iconify(&self);
fn is_active(&self) -> bool;
fn is_maximized(&self) -> bool;
fn maximize(&self);
fn mnemonic_activate(&self, keyval: u32, modifier: gdk::ModifierType) -> bool;
fn move_(&self, x: i32, y: i32);
#[cfg_attr(feature = "v3_20", deprecated)]
fn parse_geometry(&self, geometry: &str) -> bool;
fn present_with_time(&self, timestamp: u32);
fn propagate_key_event(&self, event: &gdk::EventKey) -> bool;
fn remove_accel_group<P: IsA<AccelGroup>>(&self, accel_group: &P);
fn remove_mnemonic<P: IsA<Widget>>(&self, keyval: u32, target: &P);
fn resize(&self, width: i32, height: i32);
#[cfg_attr(feature = "v3_20", deprecated)]
fn resize_to_geometry(&self, width: i32, height: i32);
fn set_accept_focus(&self, setting: bool);
fn set_application<'a, P: IsA<Application> + 'a, Q: Into<Option<&'a P>>>(&self, application: Q);
fn set_attached_to<'a, P: IsA<Widget> + 'a, Q: Into<Option<&'a P>>>(&self, attach_widget: Q);
fn set_decorated(&self, setting: bool);
fn set_default<'a, P: IsA<Widget> + 'a, Q: Into<Option<&'a P>>>(&self, default_widget: Q);
#[cfg_attr(feature = "v3_20", deprecated)]
fn set_default_geometry(&self, width: i32, height: i32);
fn set_default_size(&self, width: i32, height: i32);
fn set_deletable(&self, setting: bool);
fn set_destroy_with_parent(&self, setting: bool);
fn set_focus<'a, P: IsA<Widget> + 'a, Q: Into<Option<&'a P>>>(&self, focus: Q);
fn set_focus_on_map(&self, setting: bool);
fn set_focus_visible(&self, setting: bool);
fn set_gravity(&self, gravity: gdk::Gravity);
fn set_has_user_ref_count(&self, setting: bool);
fn set_hide_titlebar_when_maximized(&self, setting: bool);
fn set_icon<'a, P: Into<Option<&'a gdk_pixbuf::Pixbuf>>>(&self, icon: P);
fn set_icon_from_file<P: AsRef<std::path::Path>>(&self, filename: P) -> Result<(), Error>;
fn set_icon_list(&self, list: &[gdk_pixbuf::Pixbuf]);
fn set_icon_name<'a, P: Into<Option<&'a str>>>(&self, name: P);
fn set_keep_above(&self, setting: bool);
fn set_keep_below(&self, setting: bool);
fn set_mnemonic_modifier(&self, modifier: gdk::ModifierType);
fn set_mnemonics_visible(&self, setting: bool);
fn set_modal(&self, modal: bool);
fn set_position(&self, position: WindowPosition);
fn set_resizable(&self, resizable: bool);
fn set_role(&self, role: &str);
fn set_screen(&self, screen: &gdk::Screen);
fn set_skip_pager_hint(&self, setting: bool);
fn set_skip_taskbar_hint(&self, setting: bool);
fn set_startup_id(&self, startup_id: &str);
fn set_title(&self, title: &str);
fn set_titlebar<'a, P: IsA<Widget> + 'a, Q: Into<Option<&'a P>>>(&self, titlebar: Q);
fn set_transient_for<'a, P: IsA<Window> + 'a, Q: Into<Option<&'a P>>>(&self, parent: Q);
fn set_type_hint(&self, hint: gdk::WindowTypeHint);
fn set_urgency_hint(&self, setting: bool);
#[cfg_attr(feature = "v3_22", deprecated)]
fn set_wmclass(&self, wmclass_name: &str, wmclass_class: &str);
fn stick(&self);
fn unfullscreen(&self);
fn unmaximize(&self);
fn unstick(&self);
fn get_property_default_height(&self) -> i32;
fn set_property_default_height(&self, default_height: i32);
fn get_property_default_width(&self) -> i32;
fn set_property_default_width(&self, default_width: i32);
fn get_property_has_toplevel_focus(&self) -> bool;
fn get_property_is_active(&self) -> bool;
fn get_property_is_maximized(&self) -> bool;
fn get_property_type(&self) -> WindowType;
fn get_property_window_position(&self) -> WindowPosition;
fn set_property_window_position(&self, window_position: WindowPosition);
fn connect_activate_default<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn emit_activate_default(&self);
fn connect_activate_focus<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn emit_activate_focus(&self);
fn connect_enable_debugging<F: Fn(&Self, bool) -> bool + 'static>(&self, f: F) -> SignalHandlerId;
fn emit_enable_debugging(&self, toggle: bool) -> bool;
fn connect_keys_changed<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_set_focus<F: Fn(&Self, &Widget) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_accept_focus_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_application_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_attached_to_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_decorated_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_default_height_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_default_width_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_deletable_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_destroy_with_parent_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_focus_on_map_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_focus_visible_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_gravity_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_has_toplevel_focus_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_hide_titlebar_when_maximized_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_icon_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_icon_name_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_is_active_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_is_maximized_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_mnemonics_visible_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_modal_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_resizable_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_role_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_screen_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_skip_pager_hint_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_skip_taskbar_hint_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_startup_id_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_title_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_transient_for_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_type_hint_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_urgency_hint_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_window_position_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
}
impl<O: IsA<Window>> GtkWindowExt for O {
fn activate_default(&self) -> bool {
unsafe {
from_glib(ffi::gtk_window_activate_default(self.as_ref().to_glib_none().0))
}
}
fn activate_focus(&self) -> bool {
unsafe {
from_glib(ffi::gtk_window_activate_focus(self.as_ref().to_glib_none().0))
}
}
fn activate_key(&self, event: &gdk::EventKey) -> bool {
unsafe {
from_glib(ffi::gtk_window_activate_key(self.as_ref().to_glib_none().0, mut_override(event.to_glib_none().0)))
}
}
fn add_accel_group<P: IsA<AccelGroup>>(&self, accel_group: &P) {
unsafe {
ffi::gtk_window_add_accel_group(self.as_ref().to_glib_none().0, accel_group.as_ref().to_glib_none().0);
}
}
fn add_mnemonic<P: IsA<Widget>>(&self, keyval: u32, target: &P) {
unsafe {
ffi::gtk_window_add_mnemonic(self.as_ref().to_glib_none().0, keyval, target.as_ref().to_glib_none().0);
}
}
fn begin_move_drag(&self, button: i32, root_x: i32, root_y: i32, timestamp: u32) {
unsafe {
ffi::gtk_window_begin_move_drag(self.as_ref().to_glib_none().0, button, root_x, root_y, timestamp);
}
}
fn begin_resize_drag(&self, edge: gdk::WindowEdge, button: i32, root_x: i32, root_y: i32, timestamp: u32) {
unsafe {
ffi::gtk_window_begin_resize_drag(self.as_ref().to_glib_none().0, edge.to_glib(), button, root_x, root_y, timestamp);
}
}
fn close(&self) {
unsafe {
ffi::gtk_window_close(self.as_ref().to_glib_none().0);
}
}
fn deiconify(&self) {
unsafe {
ffi::gtk_window_deiconify(self.as_ref().to_glib_none().0);
}
}
fn fullscreen(&self) {
unsafe {
ffi::gtk_window_fullscreen(self.as_ref().to_glib_none().0);
}
}
#[cfg(any(feature = "v3_18", feature = "dox"))]
fn fullscreen_on_monitor(&self, screen: &gdk::Screen, monitor: i32) {
unsafe {
ffi::gtk_window_fullscreen_on_monitor(self.as_ref().to_glib_none().0, screen.to_glib_none().0, monitor);
}
}
fn get_accept_focus(&self) -> bool {
unsafe {
from_glib(ffi::gtk_window_get_accept_focus(self.as_ref().to_glib_none().0))
}
}
fn get_application(&self) -> Option<Application> {
unsafe {
from_glib_none(ffi::gtk_window_get_application(self.as_ref().to_glib_none().0))
}
}
fn get_attached_to(&self) -> Option<Widget> {
unsafe {
from_glib_none(ffi::gtk_window_get_attached_to(self.as_ref().to_glib_none().0))
}
}
fn get_decorated(&self) -> bool {
unsafe {
from_glib(ffi::gtk_window_get_decorated(self.as_ref().to_glib_none().0))
}
}
fn get_default_size(&self) -> (i32, i32) {
unsafe {
let mut width = mem::uninitialized();
let mut height = mem::uninitialized();
ffi::gtk_window_get_default_size(self.as_ref().to_glib_none().0, &mut width, &mut height);
(width, height)
}
}
fn get_default_widget(&self) -> Option<Widget> {
unsafe {
from_glib_none(ffi::gtk_window_get_default_widget(self.as_ref().to_glib_none().0))
}
}
fn get_deletable(&self) -> bool {
unsafe {
from_glib(ffi::gtk_window_get_deletable(self.as_ref().to_glib_none().0))
}
}
fn get_destroy_with_parent(&self) -> bool {
unsafe {
from_glib(ffi::gtk_window_get_destroy_with_parent(self.as_ref().to_glib_none().0))
}
}
fn get_focus(&self) -> Option<Widget> {
unsafe {
from_glib_none(ffi::gtk_window_get_focus(self.as_ref().to_glib_none().0))
}
}
fn get_focus_on_map(&self) -> bool {
unsafe {
from_glib(ffi::gtk_window_get_focus_on_map(self.as_ref().to_glib_none().0))
}
}
fn get_focus_visible(&self) -> bool {
unsafe {
from_glib(ffi::gtk_window_get_focus_visible(self.as_ref().to_glib_none().0))
}
}
fn get_gravity(&self) -> gdk::Gravity {
unsafe {
from_glib(ffi::gtk_window_get_gravity(self.as_ref().to_glib_none().0))
}
}
fn get_group(&self) -> Option<WindowGroup> {
unsafe {
from_glib_none(ffi::gtk_window_get_group(self.as_ref().to_glib_none().0))
}
}
fn get_hide_titlebar_when_maximized(&self) -> bool {
unsafe {
from_glib(ffi::gtk_window_get_hide_titlebar_when_maximized(self.as_ref().to_glib_none().0))
}
}
fn get_icon(&self) -> Option<gdk_pixbuf::Pixbuf> {
unsafe {
from_glib_none(ffi::gtk_window_get_icon(self.as_ref().to_glib_none().0))
}
}
fn get_icon_list(&self) -> Vec<gdk_pixbuf::Pixbuf> {
unsafe {
FromGlibPtrContainer::from_glib_container(ffi::gtk_window_get_icon_list(self.as_ref().to_glib_none().0))
}
}
fn get_icon_name(&self) -> Option<GString> {
unsafe {
from_glib_none(ffi::gtk_window_get_icon_name(self.as_ref().to_glib_none().0))
}
}
fn get_mnemonic_modifier(&self) -> gdk::ModifierType {
unsafe {
from_glib(ffi::gtk_window_get_mnemonic_modifier(self.as_ref().to_glib_none().0))
}
}
fn get_mnemonics_visible(&self) -> bool {
unsafe {
from_glib(ffi::gtk_window_get_mnemonics_visible(self.as_ref().to_glib_none().0))
}
}
fn get_modal(&self) -> bool {
unsafe {
from_glib(ffi::gtk_window_get_modal(self.as_ref().to_glib_none().0))
}
}
fn get_position(&self) -> (i32, i32) {
unsafe {
let mut root_x = mem::uninitialized();
let mut root_y = mem::uninitialized();
ffi::gtk_window_get_position(self.as_ref().to_glib_none().0, &mut root_x, &mut root_y);
(root_x, root_y)
}
}
fn get_resizable(&self) -> bool {
unsafe {
from_glib(ffi::gtk_window_get_resizable(self.as_ref().to_glib_none().0))
}
}
fn get_role(&self) -> Option<GString> {
unsafe {
from_glib_none(ffi::gtk_window_get_role(self.as_ref().to_glib_none().0))
}
}
fn get_size(&self) -> (i32, i32) {
unsafe {
let mut width = mem::uninitialized();
let mut height = mem::uninitialized();
ffi::gtk_window_get_size(self.as_ref().to_glib_none().0, &mut width, &mut height);
(width, height)
}
}
fn get_skip_pager_hint(&self) -> bool {
unsafe {
from_glib(ffi::gtk_window_get_skip_pager_hint(self.as_ref().to_glib_none().0))
}
}
fn get_skip_taskbar_hint(&self) -> bool {
unsafe {
from_glib(ffi::gtk_window_get_skip_taskbar_hint(self.as_ref().to_glib_none().0))
}
}
fn get_title(&self) -> Option<GString> {
unsafe {
from_glib_none(ffi::gtk_window_get_title(self.as_ref().to_glib_none().0))
}
}
#[cfg(any(feature = "v3_16", feature = "dox"))]
fn get_titlebar(&self) -> Option<Widget> {
unsafe {
from_glib_none(ffi::gtk_window_get_titlebar(self.as_ref().to_glib_none().0))
}
}
fn get_transient_for(&self) -> Option<Window> {
unsafe {
from_glib_none(ffi::gtk_window_get_transient_for(self.as_ref().to_glib_none().0))
}
}
fn get_type_hint(&self) -> gdk::WindowTypeHint {
unsafe {
from_glib(ffi::gtk_window_get_type_hint(self.as_ref().to_glib_none().0))
}
}
fn get_urgency_hint(&self) -> bool {
unsafe {
from_glib(ffi::gtk_window_get_urgency_hint(self.as_ref().to_glib_none().0))
}
}
fn get_window_type(&self) -> WindowType {
unsafe {
from_glib(ffi::gtk_window_get_window_type(self.as_ref().to_glib_none().0))
}
}
fn has_group(&self) -> bool {
unsafe {
from_glib(ffi::gtk_window_has_group(self.as_ref().to_glib_none().0))
}
}
fn has_toplevel_focus(&self) -> bool {
unsafe {
from_glib(ffi::gtk_window_has_toplevel_focus(self.as_ref().to_glib_none().0))
}
}
fn iconify(&self) {
unsafe {
ffi::gtk_window_iconify(self.as_ref().to_glib_none().0);
}
}
fn is_active(&self) -> bool {
unsafe {
from_glib(ffi::gtk_window_is_active(self.as_ref().to_glib_none().0))
}
}
fn is_maximized(&self) -> bool {
unsafe {
from_glib(ffi::gtk_window_is_maximized(self.as_ref().to_glib_none().0))
}
}
fn maximize(&self) {
unsafe {
ffi::gtk_window_maximize(self.as_ref().to_glib_none().0);
}
}
fn mnemonic_activate(&self, keyval: u32, modifier: gdk::ModifierType) -> bool {
unsafe {
from_glib(ffi::gtk_window_mnemonic_activate(self.as_ref().to_glib_none().0, keyval, modifier.to_glib()))
}
}
fn move_(&self, x: i32, y: i32) {
unsafe {
ffi::gtk_window_move(self.as_ref().to_glib_none().0, x, y);
}
}
fn parse_geometry(&self, geometry: &str) -> bool {
unsafe {
from_glib(ffi::gtk_window_parse_geometry(self.as_ref().to_glib_none().0, geometry.to_glib_none().0))
}
}
fn present_with_time(&self, timestamp: u32) {
unsafe {
ffi::gtk_window_present_with_time(self.as_ref().to_glib_none().0, timestamp);
}
}
fn propagate_key_event(&self, event: &gdk::EventKey) -> bool {
unsafe {
from_glib(ffi::gtk_window_propagate_key_event(self.as_ref().to_glib_none().0, mut_override(event.to_glib_none().0)))
}
}
fn remove_accel_group<P: IsA<AccelGroup>>(&self, accel_group: &P) {
unsafe {
ffi::gtk_window_remove_accel_group(self.as_ref().to_glib_none().0, accel_group.as_ref().to_glib_none().0);
}
}
fn remove_mnemonic<P: IsA<Widget>>(&self, keyval: u32, target: &P) {
unsafe {
ffi::gtk_window_remove_mnemonic(self.as_ref().to_glib_none().0, keyval, target.as_ref().to_glib_none().0);
}
}
fn resize(&self, width: i32, height: i32) {
unsafe {
ffi::gtk_window_resize(self.as_ref().to_glib_none().0, width, height);
}
}
fn resize_to_geometry(&self, width: i32, height: i32) {
unsafe {
ffi::gtk_window_resize_to_geometry(self.as_ref().to_glib_none().0, width, height);
}
}
fn set_accept_focus(&self, setting: bool) {
unsafe {
ffi::gtk_window_set_accept_focus(self.as_ref().to_glib_none().0, setting.to_glib());
}
}
fn set_application<'a, P: IsA<Application> + 'a, Q: Into<Option<&'a P>>>(&self, application: Q) {
let application = application.into();
unsafe {
ffi::gtk_window_set_application(self.as_ref().to_glib_none().0, application.map(|p| p.as_ref()).to_glib_none().0);
}
}
fn set_attached_to<'a, P: IsA<Widget> + 'a, Q: Into<Option<&'a P>>>(&self, attach_widget: Q) {
let attach_widget = attach_widget.into();
unsafe {
ffi::gtk_window_set_attached_to(self.as_ref().to_glib_none().0, attach_widget.map(|p| p.as_ref()).to_glib_none().0);
}
}
fn set_decorated(&self, setting: bool) {
unsafe {
ffi::gtk_window_set_decorated(self.as_ref().to_glib_none().0, setting.to_glib());
}
}
fn set_default<'a, P: IsA<Widget> + 'a, Q: Into<Option<&'a P>>>(&self, default_widget: Q) {
let default_widget = default_widget.into();
unsafe {
ffi::gtk_window_set_default(self.as_ref().to_glib_none().0, default_widget.map(|p| p.as_ref()).to_glib_none().0);
}
}
fn set_default_geometry(&self, width: i32, height: i32) {
unsafe {
ffi::gtk_window_set_default_geometry(self.as_ref().to_glib_none().0, width, height);
}
}
fn set_default_size(&self, width: i32, height: i32) {
unsafe {
ffi::gtk_window_set_default_size(self.as_ref().to_glib_none().0, width, height);
}
}
fn set_deletable(&self, setting: bool) {
unsafe {
ffi::gtk_window_set_deletable(self.as_ref().to_glib_none().0, setting.to_glib());
}
}
fn set_destroy_with_parent(&self, setting: bool) {
unsafe {
ffi::gtk_window_set_destroy_with_parent(self.as_ref().to_glib_none().0, setting.to_glib());
}
}
fn set_focus<'a, P: IsA<Widget> + 'a, Q: Into<Option<&'a P>>>(&self, focus: Q) {
let focus = focus.into();
unsafe {
ffi::gtk_window_set_focus(self.as_ref().to_glib_none().0, focus.map(|p| p.as_ref()).to_glib_none().0);
}
}
fn set_focus_on_map(&self, setting: bool) {
unsafe {
ffi::gtk_window_set_focus_on_map(self.as_ref().to_glib_none().0, setting.to_glib());
}
}
fn set_focus_visible(&self, setting: bool) {
unsafe {
ffi::gtk_window_set_focus_visible(self.as_ref().to_glib_none().0, setting.to_glib());
}
}
fn set_gravity(&self, gravity: gdk::Gravity) {
unsafe {
ffi::gtk_window_set_gravity(self.as_ref().to_glib_none().0, gravity.to_glib());
}
}
fn set_has_user_ref_count(&self, setting: bool) {
unsafe {
ffi::gtk_window_set_has_user_ref_count(self.as_ref().to_glib_none().0, setting.to_glib());
}
}
fn set_hide_titlebar_when_maximized(&self, setting: bool) {
unsafe {
ffi::gtk_window_set_hide_titlebar_when_maximized(self.as_ref().to_glib_none().0, setting.to_glib());
}
}
fn set_icon<'a, P: Into<Option<&'a gdk_pixbuf::Pixbuf>>>(&self, icon: P) {
let icon = icon.into();
unsafe {
ffi::gtk_window_set_icon(self.as_ref().to_glib_none().0, icon.to_glib_none().0);
}
}
fn set_icon_from_file<P: AsRef<std::path::Path>>(&self, filename: P) -> Result<(), Error> {
unsafe {
let mut error = ptr::null_mut();
let _ = ffi::gtk_window_set_icon_from_file(self.as_ref().to_glib_none().0, filename.as_ref().to_glib_none().0, &mut error);
if error.is_null() { Ok(()) } else { Err(from_glib_full(error)) }
}
}
fn set_icon_list(&self, list: &[gdk_pixbuf::Pixbuf]) {
unsafe {
ffi::gtk_window_set_icon_list(self.as_ref().to_glib_none().0, list.to_glib_none().0);
}
}
fn set_icon_name<'a, P: Into<Option<&'a str>>>(&self, name: P) {
let name = name.into();
unsafe {
ffi::gtk_window_set_icon_name(self.as_ref().to_glib_none().0, name.to_glib_none().0);
}
}
fn set_keep_above(&self, setting: bool) {
unsafe {
ffi::gtk_window_set_keep_above(self.as_ref().to_glib_none().0, setting.to_glib());
}
}
fn set_keep_below(&self, setting: bool) {
unsafe {
ffi::gtk_window_set_keep_below(self.as_ref().to_glib_none().0, setting.to_glib());
}
}
fn set_mnemonic_modifier(&self, modifier: gdk::ModifierType) {
unsafe {
ffi::gtk_window_set_mnemonic_modifier(self.as_ref().to_glib_none().0, modifier.to_glib());
}
}
fn set_mnemonics_visible(&self, setting: bool) {
unsafe {
ffi::gtk_window_set_mnemonics_visible(self.as_ref().to_glib_none().0, setting.to_glib());
}
}
fn set_modal(&self, modal: bool) {
unsafe {
ffi::gtk_window_set_modal(self.as_ref().to_glib_none().0, modal.to_glib());
}
}
fn set_position(&self, position: WindowPosition) {
unsafe {
ffi::gtk_window_set_position(self.as_ref().to_glib_none().0, position.to_glib());
}
}
fn set_resizable(&self, resizable: bool) {
unsafe {
ffi::gtk_window_set_resizable(self.as_ref().to_glib_none().0, resizable.to_glib());
}
}
fn set_role(&self, role: &str) {
unsafe {
ffi::gtk_window_set_role(self.as_ref().to_glib_none().0, role.to_glib_none().0);
}
}
fn set_screen(&self, screen: &gdk::Screen) {
unsafe {
ffi::gtk_window_set_screen(self.as_ref().to_glib_none().0, screen.to_glib_none().0);
}
}
fn set_skip_pager_hint(&self, setting: bool) {
unsafe {
ffi::gtk_window_set_skip_pager_hint(self.as_ref().to_glib_none().0, setting.to_glib());
}
}
fn set_skip_taskbar_hint(&self, setting: bool) {
unsafe {
ffi::gtk_window_set_skip_taskbar_hint(self.as_ref().to_glib_none().0, setting.to_glib());
}
}
fn set_startup_id(&self, startup_id: &str) {
unsafe {
ffi::gtk_window_set_startup_id(self.as_ref().to_glib_none().0, startup_id.to_glib_none().0);
}
}
fn set_title(&self, title: &str) {
unsafe {
ffi::gtk_window_set_title(self.as_ref().to_glib_none().0, title.to_glib_none().0);
}
}
fn set_titlebar<'a, P: IsA<Widget> + 'a, Q: Into<Option<&'a P>>>(&self, titlebar: Q) {
let titlebar = titlebar.into();
unsafe {
ffi::gtk_window_set_titlebar(self.as_ref().to_glib_none().0, titlebar.map(|p| p.as_ref()).to_glib_none().0);
}
}
fn set_transient_for<'a, P: IsA<Window> + 'a, Q: Into<Option<&'a P>>>(&self, parent: Q) {
let parent = parent.into();
unsafe {
ffi::gtk_window_set_transient_for(self.as_ref().to_glib_none().0, parent.map(|p| p.as_ref()).to_glib_none().0);
}
}
fn set_type_hint(&self, hint: gdk::WindowTypeHint) {
unsafe {
ffi::gtk_window_set_type_hint(self.as_ref().to_glib_none().0, hint.to_glib());
}
}
fn set_urgency_hint(&self, setting: bool) {
unsafe {
ffi::gtk_window_set_urgency_hint(self.as_ref().to_glib_none().0, setting.to_glib());
}
}
fn set_wmclass(&self, wmclass_name: &str, wmclass_class: &str) {
unsafe {
ffi::gtk_window_set_wmclass(self.as_ref().to_glib_none().0, wmclass_name.to_glib_none().0, wmclass_class.to_glib_none().0);
}
}
fn stick(&self) {
unsafe {
ffi::gtk_window_stick(self.as_ref().to_glib_none().0);
}
}
fn unfullscreen(&self) {
unsafe {
ffi::gtk_window_unfullscreen(self.as_ref().to_glib_none().0);
}
}
fn unmaximize(&self) {
unsafe {
ffi::gtk_window_unmaximize(self.as_ref().to_glib_none().0);
}
}
fn unstick(&self) {
unsafe {
ffi::gtk_window_unstick(self.as_ref().to_glib_none().0);
}
}
fn get_property_default_height(&self) -> i32 {
unsafe {
let mut value = Value::from_type(<i32 as StaticType>::static_type());
gobject_ffi::g_object_get_property(self.to_glib_none().0 as *mut gobject_ffi::GObject, b"default-height\0".as_ptr() as *const _, value.to_glib_none_mut().0);
value.get().unwrap()
}
}
fn set_property_default_height(&self, default_height: i32) {
unsafe {
gobject_ffi::g_object_set_property(self.to_glib_none().0 as *mut gobject_ffi::GObject, b"default-height\0".as_ptr() as *const _, Value::from(&default_height).to_glib_none().0);
}
}
fn get_property_default_width(&self) -> i32 {
unsafe {
let mut value = Value::from_type(<i32 as StaticType>::static_type());
gobject_ffi::g_object_get_property(self.to_glib_none().0 as *mut gobject_ffi::GObject, b"default-width\0".as_ptr() as *const _, value.to_glib_none_mut().0);
value.get().unwrap()
}
}
fn set_property_default_width(&self, default_width: i32) {
unsafe {
gobject_ffi::g_object_set_property(self.to_glib_none().0 as *mut gobject_ffi::GObject, b"default-width\0".as_ptr() as *const _, Value::from(&default_width).to_glib_none().0);
}
}
fn get_property_has_toplevel_focus(&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"has-toplevel-focus\0".as_ptr() as *const _, value.to_glib_none_mut().0);
value.get().unwrap()
}
}
fn get_property_is_active(&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"is-active\0".as_ptr() as *const _, value.to_glib_none_mut().0);
value.get().unwrap()
}
}
fn get_property_is_maximized(&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"is-maximized\0".as_ptr() as *const _, value.to_glib_none_mut().0);
value.get().unwrap()
}
}
fn get_property_type(&self) -> WindowType {
unsafe {
let mut value = Value::from_type(<WindowType as StaticType>::static_type());
gobject_ffi::g_object_get_property(self.to_glib_none().0 as *mut gobject_ffi::GObject, b"type\0".as_ptr() as *const _, value.to_glib_none_mut().0);
value.get().unwrap()
}
}
fn get_property_window_position(&self) -> WindowPosition {
unsafe {
let mut value = Value::from_type(<WindowPosition as StaticType>::static_type());
gobject_ffi::g_object_get_property(self.to_glib_none().0 as *mut gobject_ffi::GObject, b"window-position\0".as_ptr() as *const _, value.to_glib_none_mut().0);
value.get().unwrap()
}
}
fn set_property_window_position(&self, window_position: WindowPosition) {
unsafe {
gobject_ffi::g_object_set_property(self.to_glib_none().0 as *mut gobject_ffi::GObject, b"window-position\0".as_ptr() as *const _, Value::from(&window_position).to_glib_none().0);
}
}
fn connect_activate_default<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"activate-default\0".as_ptr() as *const _,
Some(transmute(activate_default_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn emit_activate_default(&self) {
let _ = unsafe { glib::Object::from_glib_borrow(self.to_glib_none().0 as *mut gobject_ffi::GObject).emit("activate-default", &[]).unwrap() };
}
fn connect_activate_focus<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"activate-focus\0".as_ptr() as *const _,
Some(transmute(activate_focus_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn emit_activate_focus(&self) {
let _ = unsafe { glib::Object::from_glib_borrow(self.to_glib_none().0 as *mut gobject_ffi::GObject).emit("activate-focus", &[]).unwrap() };
}
fn connect_enable_debugging<F: Fn(&Self, bool) -> bool + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"enable-debugging\0".as_ptr() as *const _,
Some(transmute(enable_debugging_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn emit_enable_debugging(&self, toggle: bool) -> bool {
let res = unsafe { glib::Object::from_glib_borrow(self.to_glib_none().0 as *mut gobject_ffi::GObject).emit("enable-debugging", &[&toggle]).unwrap() };
res.unwrap().get().unwrap()
}
fn connect_keys_changed<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"keys-changed\0".as_ptr() as *const _,
Some(transmute(keys_changed_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_set_focus<F: Fn(&Self, &Widget) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"set-focus\0".as_ptr() as *const _,
Some(transmute(set_focus_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_accept_focus_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::accept-focus\0".as_ptr() as *const _,
Some(transmute(notify_accept_focus_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_application_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::application\0".as_ptr() as *const _,
Some(transmute(notify_application_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_attached_to_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::attached-to\0".as_ptr() as *const _,
Some(transmute(notify_attached_to_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_decorated_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::decorated\0".as_ptr() as *const _,
Some(transmute(notify_decorated_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_default_height_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::default-height\0".as_ptr() as *const _,
Some(transmute(notify_default_height_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_default_width_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::default-width\0".as_ptr() as *const _,
Some(transmute(notify_default_width_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_deletable_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::deletable\0".as_ptr() as *const _,
Some(transmute(notify_deletable_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_destroy_with_parent_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::destroy-with-parent\0".as_ptr() as *const _,
Some(transmute(notify_destroy_with_parent_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_focus_on_map_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::focus-on-map\0".as_ptr() as *const _,
Some(transmute(notify_focus_on_map_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_focus_visible_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::focus-visible\0".as_ptr() as *const _,
Some(transmute(notify_focus_visible_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_gravity_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::gravity\0".as_ptr() as *const _,
Some(transmute(notify_gravity_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_has_toplevel_focus_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::has-toplevel-focus\0".as_ptr() as *const _,
Some(transmute(notify_has_toplevel_focus_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_hide_titlebar_when_maximized_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::hide-titlebar-when-maximized\0".as_ptr() as *const _,
Some(transmute(notify_hide_titlebar_when_maximized_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_icon_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::icon\0".as_ptr() as *const _,
Some(transmute(notify_icon_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_icon_name_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::icon-name\0".as_ptr() as *const _,
Some(transmute(notify_icon_name_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_is_active_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::is-active\0".as_ptr() as *const _,
Some(transmute(notify_is_active_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_is_maximized_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::is-maximized\0".as_ptr() as *const _,
Some(transmute(notify_is_maximized_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_mnemonics_visible_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::mnemonics-visible\0".as_ptr() as *const _,
Some(transmute(notify_mnemonics_visible_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_modal_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::modal\0".as_ptr() as *const _,
Some(transmute(notify_modal_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_resizable_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::resizable\0".as_ptr() as *const _,
Some(transmute(notify_resizable_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_role_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::role\0".as_ptr() as *const _,
Some(transmute(notify_role_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_screen_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::screen\0".as_ptr() as *const _,
Some(transmute(notify_screen_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_skip_pager_hint_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::skip-pager-hint\0".as_ptr() as *const _,
Some(transmute(notify_skip_pager_hint_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_skip_taskbar_hint_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::skip-taskbar-hint\0".as_ptr() as *const _,
Some(transmute(notify_skip_taskbar_hint_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_startup_id_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::startup-id\0".as_ptr() as *const _,
Some(transmute(notify_startup_id_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_title_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::title\0".as_ptr() as *const _,
Some(transmute(notify_title_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_transient_for_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::transient-for\0".as_ptr() as *const _,
Some(transmute(notify_transient_for_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_type_hint_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::type-hint\0".as_ptr() as *const _,
Some(transmute(notify_type_hint_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_urgency_hint_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::urgency-hint\0".as_ptr() as *const _,
Some(transmute(notify_urgency_hint_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_window_position_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::window-position\0".as_ptr() as *const _,
Some(transmute(notify_window_position_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
}
unsafe extern "C" fn activate_default_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn activate_focus_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn enable_debugging_trampoline<P, F: Fn(&P, bool) -> bool + 'static>(this: *mut ffi::GtkWindow, toggle: glib_ffi::gboolean, f: glib_ffi::gpointer) -> glib_ffi::gboolean
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast(), from_glib(toggle)).to_glib()
}
unsafe extern "C" fn keys_changed_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn set_focus_trampoline<P, F: Fn(&P, &Widget) + 'static>(this: *mut ffi::GtkWindow, object: *mut ffi::GtkWidget, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast(), &from_glib_borrow(object))
}
unsafe extern "C" fn notify_accept_focus_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_application_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_attached_to_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_decorated_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_default_height_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_default_width_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_deletable_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_destroy_with_parent_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_focus_on_map_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_focus_visible_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_gravity_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_has_toplevel_focus_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_hide_titlebar_when_maximized_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_icon_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_icon_name_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_is_active_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_is_maximized_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_mnemonics_visible_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_modal_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_resizable_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_role_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_screen_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_skip_pager_hint_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_skip_taskbar_hint_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_startup_id_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_title_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_transient_for_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_type_hint_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_urgency_hint_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_window_position_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkWindow, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Window> {
let f: &F = transmute(f);
f(&Window::from_glib_borrow(this).unsafe_cast())
}
impl fmt::Display for Window {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Window")
}
}