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
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT

use crate::{Buildable, Filter, MultiFilter};
use glib::translate::*;

glib::wrapper! {
    /// [`AnyFilter`][crate::AnyFilter] matches an item when at least one of its filters matches.
    ///
    /// To add filters to a [`AnyFilter`][crate::AnyFilter], use [`MultiFilterExt::append()`][crate::prelude::MultiFilterExt::append()].
    ///
    /// # Implements
    ///
    /// [`MultiFilterExt`][trait@crate::prelude::MultiFilterExt], [`FilterExt`][trait@crate::prelude::FilterExt], [`trait@glib::ObjectExt`], [`trait@gio::prelude::ListModelExt`], [`BuildableExt`][trait@crate::prelude::BuildableExt]
    #[doc(alias = "GtkAnyFilter")]
    pub struct AnyFilter(Object<ffi::GtkAnyFilter, ffi::GtkAnyFilterClass>) @extends MultiFilter, Filter, @implements gio::ListModel, Buildable;

    match fn {
        type_ => || ffi::gtk_any_filter_get_type(),
    }
}

impl AnyFilter {
    /// Creates a new empty "any" filter.
    ///
    /// Use [`MultiFilterExt::append()`][crate::prelude::MultiFilterExt::append()] to add filters to it.
    ///
    /// This filter matches an item if any of the filters added to it
    /// matches the item. In particular, this means that if no filter
    /// has been added to it, the filter matches no item.
    ///
    /// # Returns
    ///
    /// a new [`AnyFilter`][crate::AnyFilter]
    #[doc(alias = "gtk_any_filter_new")]
    pub fn new() -> AnyFilter {
        assert_initialized_main_thread!();
        unsafe { from_glib_full(ffi::gtk_any_filter_new()) }
    }
}

impl Default for AnyFilter {
    fn default() -> Self {
        Self::new()
    }
}