gtk4/auto/
custom_sorter.rs

1// This file was generated by gir (https://github.com/gtk-rs/gir)
2// from gir-files (https://github.com/gtk-rs/gir-files)
3// DO NOT EDIT
4
5use crate::{ffi, Sorter};
6
7glib::wrapper! {
8    /// Sorts items via a callback function.
9    ///
10    /// # Implements
11    ///
12    /// [`SorterExt`][trait@crate::prelude::SorterExt], [`trait@glib::ObjectExt`]
13    #[doc(alias = "GtkCustomSorter")]
14    pub struct CustomSorter(Object<ffi::GtkCustomSorter, ffi::GtkCustomSorterClass>) @extends Sorter;
15
16    match fn {
17        type_ => || ffi::gtk_custom_sorter_get_type(),
18    }
19}
20
21impl CustomSorter {}