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
use crate::subclass::prelude::*;
use crate::ComboBox;
use glib::translate::*;
use glib::{Cast, GString};
#[cfg_attr(feature = "v4_10", deprecated = "Since 4.10")]
pub trait ComboBoxImpl: ComboBoxImplExt + WidgetImpl {
#[cfg(any(feature = "v4_6", feature = "dox"))]
fn activate(&self) {
self.parent_activate()
}
fn changed(&self) {
self.parent_changed()
}
fn format_entry_text(&self, path: &str) -> Option<GString> {
self.parent_format_entry_text(path)
}
}
#[cfg_attr(feature = "v4_10", deprecated = "Since 4.10")]
pub trait ComboBoxImplExt: ObjectSubclass {
#[cfg(any(feature = "v4_6", feature = "dox"))]
fn parent_activate(&self);
fn parent_changed(&self);
fn parent_format_entry_text(&self, path: &str) -> Option<GString>;
}
impl<T: ComboBoxImpl> ComboBoxImplExt for T {
#[cfg(any(feature = "v4_6", feature = "dox"))]
fn parent_activate(&self) {
unsafe {
let data = T::type_data();
let parent_class = data.as_ref().parent_class() as *mut ffi::GtkComboBoxClass;
if let Some(f) = (*parent_class).activate {
f(self.obj().unsafe_cast_ref::<ComboBox>().to_glib_none().0)
}
}
}
fn parent_changed(&self) {
unsafe {
let data = T::type_data();
let parent_class = data.as_ref().parent_class() as *mut ffi::GtkComboBoxClass;
if let Some(f) = (*parent_class).changed {
f(self.obj().unsafe_cast_ref::<ComboBox>().to_glib_none().0)
}
}
}
fn parent_format_entry_text(&self, path: &str) -> Option<GString> {
unsafe {
let data = T::type_data();
let parent_class = data.as_ref().parent_class() as *mut ffi::GtkComboBoxClass;
if let Some(f) = (*parent_class).format_entry_text {
return Some(from_glib_full(f(
self.obj().unsafe_cast_ref::<ComboBox>().to_glib_none().0,
path.to_glib_none().0,
)));
}
None
}
}
}
unsafe impl<T: ComboBoxImpl> IsSubclassable<T> for ComboBox {
fn class_init(class: &mut glib::Class<Self>) {
Self::parent_class_init::<T>(class);
let klass = class.as_mut();
klass.changed = Some(combo_box_changed::<T>);
klass.format_entry_text = Some(combo_box_format_entry_text::<T>);
#[cfg(any(feature = "v4_6", feature = "dox"))]
{
klass.activate = Some(combo_box_activate::<T>);
};
}
}
unsafe extern "C" fn combo_box_changed<T: ComboBoxImpl>(ptr: *mut ffi::GtkComboBox) {
let instance = &*(ptr as *mut T::Instance);
let imp = instance.imp();
imp.changed()
}
unsafe extern "C" fn combo_box_format_entry_text<T: ComboBoxImpl>(
ptr: *mut ffi::GtkComboBox,
pathptr: *const libc::c_char,
) -> *mut libc::c_char {
let instance = &*(ptr as *mut T::Instance);
let imp = instance.imp();
let path: Borrowed<GString> = from_glib_borrow(pathptr);
imp.format_entry_text(path.as_str()).to_glib_full()
}
#[cfg(any(feature = "v4_6", feature = "dox"))]
unsafe extern "C" fn combo_box_activate<T: ComboBoxImpl>(ptr: *mut ffi::GtkComboBox) {
let instance = &*(ptr as *mut T::Instance);
let imp = instance.imp();
imp.activate()
}