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
use crate::prelude::*;
use crate::ShortcutsSection;
use glib::object::ObjectType;
use glib::signal::{connect_raw, SignalHandlerId};
use glib::translate::*;
use std::mem::transmute;
impl ShortcutsSection {
pub fn connect_change_current_page<F: Fn(&ShortcutsSection, i32) -> bool + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe {
let f = Box::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"change-current-page\0".as_ptr() as *const _,
Some(transmute(change_current_page_trampoline::<F> as usize)),
Box::into_raw(f),
)
}
}
pub fn emit_change_current_page(&self, object: i32) -> bool {
let stash: Stash<*mut ffi::GtkShortcutsSection, _> = self.to_glib_none();
let gobject =
unsafe { glib::Object::from_glib_borrow(stash.0 as *mut glib::gobject_ffi::GObject) };
let res = gobject
.emit_by_name("change-current-page", &[&object])
.unwrap();
res.unwrap()
.get()
.expect("Return Value for `emit_change_current_page`")
}
}
unsafe extern "C" fn change_current_page_trampoline<
F: Fn(&ShortcutsSection, i32) -> bool + 'static,
>(
this: *mut ffi::GtkShortcutsSection,
object: libc::c_int,
f: glib::ffi::gpointer,
) -> glib::ffi::gboolean {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this), object).into_glib()
}