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
109
110
111
// Take a look at the license at the top of the repository in the LICENSE file.

// rustdoc-stripper-ignore-next
//! Traits intended for subclassing [`ComboBox`](crate::ComboBox).

use crate::subclass::prelude::*;
use crate::ComboBox;
use glib::translate::*;
use glib::{Cast, GString};

pub trait ComboBoxImpl: ComboBoxImplExt + WidgetImpl {
    #[cfg(any(feature = "v4_6", feature = "dox"))]
    fn activate(&self, combo_box: &Self::Type) {
        self.parent_activate(combo_box)
    }
    fn changed(&self, combo_box: &Self::Type) {
        self.parent_changed(combo_box)
    }
    fn format_entry_text(&self, combo_box: &Self::Type, path: &str) -> Option<GString> {
        self.parent_format_entry_text(combo_box, path)
    }
}

pub trait ComboBoxImplExt: ObjectSubclass {
    #[cfg(any(feature = "v4_6", feature = "dox"))]
    fn parent_activate(&self, combo_box: &Self::Type);

    fn parent_changed(&self, combo_box: &Self::Type);

    fn parent_format_entry_text(&self, combo_box: &Self::Type, path: &str) -> Option<GString>;
}

impl<T: ComboBoxImpl> ComboBoxImplExt for T {
    #[cfg(any(feature = "v4_6", feature = "dox"))]
    fn parent_activate(&self, combo_box: &Self::Type) {
        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(combo_box.unsafe_cast_ref::<ComboBox>().to_glib_none().0)
            }
        }
    }
    fn parent_changed(&self, combo_box: &Self::Type) {
        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(combo_box.unsafe_cast_ref::<ComboBox>().to_glib_none().0)
            }
        }
    }
    fn parent_format_entry_text(&self, combo_box: &Self::Type, 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(
                    combo_box.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();
    let wrap: Borrowed<ComboBox> = from_glib_borrow(ptr);

    imp.changed(wrap.unsafe_cast_ref())
}

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 wrap: Borrowed<ComboBox> = from_glib_borrow(ptr);

    let path: Borrowed<GString> = from_glib_borrow(pathptr);

    imp.format_entry_text(wrap.unsafe_cast_ref(), 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();
    let wrap: Borrowed<ComboBox> = from_glib_borrow(ptr);

    imp.activate(wrap.unsafe_cast_ref())
}