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

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

use glib::{translate::*, Object};

use crate::{prelude::*, subclass::prelude::*, Ordering, Sorter, SorterOrder};

pub trait SorterImpl: SorterImplExt + ObjectImpl {
    fn compare(&self, item1: &Object, item2: &Object) -> Ordering {
        self.parent_compare(item1, item2)
    }
    /// Gets the order that @self conforms to.
    ///
    /// See [`SorterOrder`][crate::SorterOrder] for details
    /// of the possible return values.
    ///
    /// This function is intended to allow optimizations.
    ///
    /// # Returns
    ///
    /// The order
    #[doc(alias = "get_order")]
    fn order(&self) -> SorterOrder {
        self.parent_order()
    }
}

mod sealed {
    pub trait Sealed {}
    impl<T: super::SorterImplExt> Sealed for T {}
}

pub trait SorterImplExt: sealed::Sealed + ObjectSubclass {
    fn parent_compare(&self, item1: &Object, item2: &Object) -> Ordering {
        unsafe {
            let data = Self::type_data();
            let parent_class = data.as_ref().parent_class() as *mut ffi::GtkSorterClass;
            let f = (*parent_class)
                .compare
                .expect("No parent class impl for \"compare\"");
            from_glib(f(
                self.obj().unsafe_cast_ref::<Sorter>().to_glib_none().0,
                item1.to_glib_none().0,
                item2.to_glib_none().0,
            ))
        }
    }

    fn parent_order(&self) -> SorterOrder {
        unsafe {
            let data = Self::type_data();
            let parent_class = data.as_ref().parent_class() as *mut ffi::GtkSorterClass;
            let f = (*parent_class)
                .get_order
                .expect("No parent class impl for \"get_order\"");
            from_glib(f(self.obj().unsafe_cast_ref::<Sorter>().to_glib_none().0))
        }
    }
}

impl<T: SorterImpl> SorterImplExt for T {}

unsafe impl<T: SorterImpl> IsSubclassable<T> for Sorter {
    fn class_init(class: &mut glib::Class<Self>) {
        Self::parent_class_init::<T>(class);

        assert_initialized_main_thread!();

        let klass = class.as_mut();
        klass.compare = Some(sorter_compare::<T>);
        klass.get_order = Some(sorter_get_order::<T>);
    }
}

unsafe extern "C" fn sorter_compare<T: SorterImpl>(
    ptr: *mut ffi::GtkSorter,
    item1ptr: *mut glib::gobject_ffi::GObject,
    item2ptr: *mut glib::gobject_ffi::GObject,
) -> ffi::GtkOrdering {
    let instance = &*(ptr as *mut T::Instance);
    let imp = instance.imp();

    imp.compare(&from_glib_borrow(item1ptr), &from_glib_borrow(item2ptr))
        .into_glib()
}

unsafe extern "C" fn sorter_get_order<T: SorterImpl>(
    ptr: *mut ffi::GtkSorter,
) -> ffi::GtkSorterOrder {
    let instance = &*(ptr as *mut T::Instance);
    let imp = instance.imp();

    imp.order().into_glib()
}