forked from gtk-rs/gtk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
accel_group.rs
176 lines (139 loc) · 6.46 KB
/
accel_group.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
// This file was generated by gir (9bd51ed) from gir-files (db49619)
// DO NOT EDIT
use ffi;
use gdk;
use gdk_ffi;
use glib;
use glib::object::Downcast;
use glib::object::IsA;
use glib::signal::connect;
use glib::translate::*;
use glib_ffi;
use gobject_ffi;
use libc;
use std::boxed::Box as Box_;
use std::mem;
use std::mem::transmute;
use std::ptr;
glib_wrapper! {
pub struct AccelGroup(Object<ffi::GtkAccelGroup>);
match fn {
get_type => || ffi::gtk_accel_group_get_type(),
}
}
impl AccelGroup {
pub fn new() -> AccelGroup {
assert_initialized_main_thread!();
unsafe {
from_glib_full(ffi::gtk_accel_group_new())
}
}
//pub fn from_accel_closure(closure: /*Ignored*/&glib::Closure) -> Option<AccelGroup> {
// unsafe { TODO: call ffi::gtk_accel_group_from_accel_closure() }
//}
}
impl Default for AccelGroup {
fn default() -> Self {
Self::new()
}
}
pub trait AccelGroupExt {
//fn activate<P: IsA<glib::Object>>(&self, accel_quark: /*Ignored*/glib::Quark, acceleratable: &P, accel_key: u32, accel_mods: gdk::ModifierType) -> bool;
//fn connect(&self, accel_key: u32, accel_mods: gdk::ModifierType, accel_flags: AccelFlags, closure: /*Ignored*/&glib::Closure);
//fn connect_by_path(&self, accel_path: &str, closure: /*Ignored*/&glib::Closure);
//fn disconnect<'a, P: Into<Option<&'a /*Ignored*/glib::Closure>>>(&self, closure: P) -> bool;
fn disconnect_key(&self, accel_key: u32, accel_mods: gdk::ModifierType) -> bool;
//fn find<P: Into<Option</*Unimplemented*/Fundamental: Pointer>>>(&self, find_func: /*Unknown conversion*//*Unimplemented*/AccelGroupFindFunc, data: P) -> /*Ignored*/Option<AccelKey>;
fn get_is_locked(&self) -> bool;
fn get_modifier_mask(&self) -> gdk::ModifierType;
fn lock(&self);
fn unlock(&self);
fn connect_accel_activate<F: Fn(&Self, &glib::Object, u32, gdk::ModifierType) -> bool + 'static>(&self, f: F) -> u64;
//fn connect_accel_changed<Unsupported or ignored types>(&self, f: F) -> u64;
fn connect_property_is_locked_notify<F: Fn(&Self) + 'static>(&self, f: F) -> u64;
fn connect_property_modifier_mask_notify<F: Fn(&Self) + 'static>(&self, f: F) -> u64;
}
impl<O: IsA<AccelGroup> + IsA<glib::object::Object>> AccelGroupExt for O {
//fn activate<P: IsA<glib::Object>>(&self, accel_quark: /*Ignored*/glib::Quark, acceleratable: &P, accel_key: u32, accel_mods: gdk::ModifierType) -> bool {
// unsafe { TODO: call ffi::gtk_accel_group_activate() }
//}
//fn connect(&self, accel_key: u32, accel_mods: gdk::ModifierType, accel_flags: AccelFlags, closure: /*Ignored*/&glib::Closure) {
// unsafe { TODO: call ffi::gtk_accel_group_connect() }
//}
//fn connect_by_path(&self, accel_path: &str, closure: /*Ignored*/&glib::Closure) {
// unsafe { TODO: call ffi::gtk_accel_group_connect_by_path() }
//}
//fn disconnect<'a, P: Into<Option<&'a /*Ignored*/glib::Closure>>>(&self, closure: P) -> bool {
// unsafe { TODO: call ffi::gtk_accel_group_disconnect() }
//}
fn disconnect_key(&self, accel_key: u32, accel_mods: gdk::ModifierType) -> bool {
unsafe {
from_glib(ffi::gtk_accel_group_disconnect_key(self.to_glib_none().0, accel_key, accel_mods.to_glib()))
}
}
//fn find<P: Into<Option</*Unimplemented*/Fundamental: Pointer>>>(&self, find_func: /*Unknown conversion*//*Unimplemented*/AccelGroupFindFunc, data: P) -> /*Ignored*/Option<AccelKey> {
// unsafe { TODO: call ffi::gtk_accel_group_find() }
//}
fn get_is_locked(&self) -> bool {
unsafe {
from_glib(ffi::gtk_accel_group_get_is_locked(self.to_glib_none().0))
}
}
fn get_modifier_mask(&self) -> gdk::ModifierType {
unsafe {
from_glib(ffi::gtk_accel_group_get_modifier_mask(self.to_glib_none().0))
}
}
fn lock(&self) {
unsafe {
ffi::gtk_accel_group_lock(self.to_glib_none().0);
}
}
fn unlock(&self) {
unsafe {
ffi::gtk_accel_group_unlock(self.to_glib_none().0);
}
}
fn connect_accel_activate<F: Fn(&Self, &glib::Object, u32, gdk::ModifierType) -> bool + 'static>(&self, f: F) -> u64 {
unsafe {
let f: Box_<Box_<Fn(&Self, &glib::Object, u32, gdk::ModifierType) -> bool + 'static>> = Box_::new(Box_::new(f));
connect(self.to_glib_none().0, "accel-activate",
transmute(accel_activate_trampoline::<Self> as usize), Box_::into_raw(f) as *mut _)
}
}
//fn connect_accel_changed<Unsupported or ignored types>(&self, f: F) -> u64 {
// Ignored accel_closure: GObject.Closure
//}
fn connect_property_is_locked_notify<F: Fn(&Self) + 'static>(&self, f: F) -> u64 {
unsafe {
let f: Box_<Box_<Fn(&Self) + 'static>> = Box_::new(Box_::new(f));
connect(self.to_glib_none().0, "notify::is-locked",
transmute(notify_is_locked_trampoline::<Self> as usize), Box_::into_raw(f) as *mut _)
}
}
fn connect_property_modifier_mask_notify<F: Fn(&Self) + 'static>(&self, f: F) -> u64 {
unsafe {
let f: Box_<Box_<Fn(&Self) + 'static>> = Box_::new(Box_::new(f));
connect(self.to_glib_none().0, "notify::modifier-mask",
transmute(notify_modifier_mask_trampoline::<Self> as usize), Box_::into_raw(f) as *mut _)
}
}
}
unsafe extern "C" fn accel_activate_trampoline<P>(this: *mut ffi::GtkAccelGroup, acceleratable: *mut gobject_ffi::GObject, keyval: libc::c_uint, modifier: gdk_ffi::GdkModifierType, f: glib_ffi::gpointer) -> glib_ffi::gboolean
where P: IsA<AccelGroup> {
callback_guard!();
let f: &&(Fn(&P, &glib::Object, u32, gdk::ModifierType) -> bool + 'static) = transmute(f);
f(&AccelGroup::from_glib_none(this).downcast_unchecked(), &from_glib_none(acceleratable), keyval, from_glib(modifier)).to_glib()
}
unsafe extern "C" fn notify_is_locked_trampoline<P>(this: *mut ffi::GtkAccelGroup, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<AccelGroup> {
callback_guard!();
let f: &&(Fn(&P) + 'static) = transmute(f);
f(&AccelGroup::from_glib_none(this).downcast_unchecked())
}
unsafe extern "C" fn notify_modifier_mask_trampoline<P>(this: *mut ffi::GtkAccelGroup, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<AccelGroup> {
callback_guard!();
let f: &&(Fn(&P) + 'static) = transmute(f);
f(&AccelGroup::from_glib_none(this).downcast_unchecked())
}