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
// Take a look at the license at the top of the repository in the LICENSE file.
use crate::CustomFilter;
use glib::translate::*;
use std::ptr;
impl CustomFilter {
    /// Creates a new filter using the given @match_func to filter
    /// items.
    ///
    /// If @match_func is [`None`], the filter matches all items.
    ///
    /// If the filter func changes its filtering behavior,
    /// gtk_filter_changed() needs to be called.
    /// ## `match_func`
    /// function to filter items
    ///
    /// # Returns
    ///
    /// a new [`CustomFilter`][crate::CustomFilter]
    #[doc(alias = "gtk_custom_filter_new")]
    pub fn new<F>(filter_func: F) -> Self
    where
        F: Fn(&glib::Object) -> bool + 'static,
    {
        assert_initialized_main_thread!();
        unsafe {
            from_glib_full(ffi::gtk_custom_filter_new(
                Some(trampoline::<F>),
                Box::into_raw(Box::new(filter_func)) as *mut _,
                Some(destroy_closure::<F>),
            ))
        }
    }
    /// Sets the function used for filtering items.
    ///
    /// If @match_func is [`None`], the filter matches all items.
    ///
    /// If the filter func changes its filtering behavior,
    /// gtk_filter_changed() needs to be called.
    ///
    /// If a previous function was set, its @user_destroy will be
    /// called now.
    /// ## `match_func`
    /// function to filter items
    #[doc(alias = "gtk_custom_filter_set_filter_func")]
    pub fn set_filter_func<F>(&self, filter_func: F)
    where
        F: Fn(&glib::Object) -> bool + 'static,
    {
        unsafe {
            ffi::gtk_custom_filter_set_filter_func(
                self.to_glib_none().0,
                Some(trampoline::<F>),
                Box::into_raw(Box::new(filter_func)) as *mut _,
                Some(destroy_closure::<F>),
            )
        }
    }
    #[doc(alias = "gtk_custom_filter_set_filter_func")]
    #[doc(alias = "set_filter_func")]
    pub fn unset_filter_func(&self) {
        unsafe {
            ffi::gtk_custom_filter_set_filter_func(
                self.to_glib_none().0,
                None,
                ptr::null_mut(),
                None,
            )
        }
    }
}
impl Default for CustomFilter {
    fn default() -> Self {
        assert_initialized_main_thread!();
        unsafe { from_glib_full(ffi::gtk_custom_filter_new(None, ptr::null_mut(), None)) }
    }
}
unsafe extern "C" fn destroy_closure<F: Fn(&glib::Object) -> bool + 'static>(
    ptr: glib::ffi::gpointer,
) {
    let _ = Box::<F>::from_raw(ptr as *mut _);
}
unsafe extern "C" fn trampoline<F: Fn(&glib::Object) -> bool + 'static>(
    item: *mut glib::gobject_ffi::GObject,
    f: glib::ffi::gpointer,
) -> glib::ffi::gboolean {
    let f: &F = &*(f as *const F);
    f(&from_glib_borrow(item)).into_glib()
}