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
use ffi;
use glib_ffi;
use glib::IsA;
use glib::object::Downcast;
use glib::translate::*;
use libc::c_char;
use std::boxed::Box as Box_;
use std::mem::transmute;
use std::cell::RefCell;
use EntryCompletion;
use TreeIter;
pub trait EntryCompletionExtManual {
fn set_match_func<F: FnMut(&Self, &str, &TreeIter) -> bool>(&self, f: F);
}
impl<O: IsA<EntryCompletion>> EntryCompletionExtManual for O {
fn set_match_func<F: FnMut(&Self, &str, &TreeIter) -> bool>(&self, f: F) {
unsafe {
let f: Box_<RefCell<Box_<FnMut(&Self, &str, &TreeIter) -> bool>>> =
Box_::new(RefCell::new(Box_::new(f)));
let callback = transmute(set_match_func_trampoline::<Self> as usize);
let destroy_callback = transmute(set_match_func_destroy::<Self> as usize);
ffi::gtk_entry_completion_set_match_func(self.to_glib_none().0,
callback,
Box_::into_raw(f) as *mut _,
destroy_callback);
}
}
}
unsafe extern "C" fn set_match_func_trampoline<P>(this: *mut ffi::GtkEntryCompletion,
key: *const c_char,
iter: *mut ffi::GtkTreeIter,
f: glib_ffi::gpointer)
-> glib_ffi::gboolean
where P: IsA<EntryCompletion> {
let func: &RefCell<Box<FnMut(&P, &str, &TreeIter) -> bool>> = transmute(f);
(&mut *func.borrow_mut())(
&EntryCompletion::from_glib_borrow(this).downcast_unchecked(),
&String::from_glib_none(key),
&TreeIter::from_glib_borrow(iter)
).to_glib()
}
unsafe extern "C" fn set_match_func_destroy<P>(f: glib_ffi::gpointer)
where P: IsA<EntryCompletion> {
Box::<RefCell<Box<FnMut(&P, &str, &TreeIter) -> bool>>>::from_raw(
f as *mut _
);
}