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
use crate::CustomSorter;
use crate::Ordering;
use glib::translate::*;
use std::ptr;
impl CustomSorter {
#[doc(alias = "gtk_custom_sorter_new")]
pub fn new<F>(sort_func: F) -> Self
where
F: Fn(&glib::Object, &glib::Object) -> Ordering + 'static,
{
assert_initialized_main_thread!();
unsafe {
from_glib_full(ffi::gtk_custom_sorter_new(
Some(trampoline::<F>),
Box::into_raw(Box::new(sort_func)) as *mut _,
Some(destroy_closure::<F>),
))
}
}
#[doc(alias = "gtk_custom_sorter_set_sort_func")]
pub fn set_sort_func<F>(&self, sort_func: F)
where
F: Fn(&glib::Object, &glib::Object) -> Ordering + 'static,
{
unsafe {
ffi::gtk_custom_sorter_set_sort_func(
self.to_glib_none().0,
Some(trampoline::<F>),
Box::into_raw(Box::new(sort_func)) as *mut _,
Some(destroy_closure::<F>),
)
}
}
#[doc(alias = "gtk_custom_sorter_set_sort_func")]
#[doc(alias = "set_sort_func")]
pub fn unset_sort_func(&self) {
unsafe {
ffi::gtk_custom_sorter_set_sort_func(self.to_glib_none().0, None, ptr::null_mut(), None)
}
}
}
impl Default for CustomSorter {
fn default() -> Self {
assert_initialized_main_thread!();
unsafe { from_glib_full(ffi::gtk_custom_sorter_new(None, ptr::null_mut(), None)) }
}
}
unsafe extern "C" fn destroy_closure<F: Fn(&glib::Object, &glib::Object) -> Ordering + 'static>(
ptr: glib::ffi::gpointer,
) {
Box::<F>::from_raw(ptr as *mut _);
}
unsafe extern "C" fn trampoline<F: Fn(&glib::Object, &glib::Object) -> Ordering + 'static>(
a: glib::ffi::gconstpointer,
b: glib::ffi::gconstpointer,
f: glib::ffi::gpointer,
) -> i32 {
let f: &F = &*(f as *const F);
f(
&from_glib_borrow(a as *mut glib::gobject_ffi::GObject),
&from_glib_borrow(b as *mut glib::gobject_ffi::GObject),
)
.into_glib()
}