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
use crate::{ListBox, ListBoxRow, Ordering};
use glib::translate::*;
use std::boxed::Box as Box_;
use std::ptr;
impl ListBox {
#[doc(alias = "gtk_list_box_bind_model")]
#[doc(alias = "bind_model")]
pub fn unbind_model(&self) {
unsafe {
ffi::gtk_list_box_bind_model(
self.to_glib_none().0,
ptr::null_mut(),
None,
ptr::null_mut(),
None,
)
}
}
#[doc(alias = "gtk_list_box_set_filter_func")]
#[doc(alias = "set_filter_func")]
pub fn unset_filter_func(&self) {
unsafe {
ffi::gtk_list_box_set_filter_func(self.to_glib_none().0, None, ptr::null_mut(), None)
}
}
#[doc(alias = "gtk_list_box_set_header_func")]
#[doc(alias = "set_header_func")]
pub fn unset_header_func(&self) {
unsafe {
ffi::gtk_list_box_set_header_func(self.to_glib_none().0, None, ptr::null_mut(), None)
}
}
#[doc(alias = "gtk_list_box_set_sort_func")]
pub fn set_sort_func<P: Fn(&ListBoxRow, &ListBoxRow) -> Ordering + 'static>(
&self,
sort_func: P,
) {
let sort_func_data: Box_<P> = Box_::new(sort_func);
unsafe extern "C" fn sort_func_func<
P: Fn(&ListBoxRow, &ListBoxRow) -> Ordering + 'static,
>(
row1: *mut ffi::GtkListBoxRow,
row2: *mut ffi::GtkListBoxRow,
user_data: glib::ffi::gpointer,
) -> libc::c_int {
let row1 = from_glib_borrow(row1);
let row2 = from_glib_borrow(row2);
let callback: &P = &*(user_data as *mut _);
let res = (*callback)(&row1, &row2);
res.into_glib()
}
let sort_func = Some(sort_func_func::<P> as _);
unsafe extern "C" fn destroy_func<P: Fn(&ListBoxRow, &ListBoxRow) -> Ordering + 'static>(
data: glib::ffi::gpointer,
) {
let _callback: Box_<P> = Box_::from_raw(data as *mut _);
}
let destroy_call3 = Some(destroy_func::<P> as _);
let super_callback0: Box_<P> = sort_func_data;
unsafe {
ffi::gtk_list_box_set_sort_func(
self.to_glib_none().0,
sort_func,
Box_::into_raw(super_callback0) as *mut _,
destroy_call3,
);
}
}
#[doc(alias = "gtk_list_box_set_sort_func")]
#[doc(alias = "set_sort_func")]
pub fn unset_sort_func(&self) {
unsafe {
ffi::gtk_list_box_set_sort_func(self.to_glib_none().0, None, ptr::null_mut(), None)
}
}
}