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

use glib::translate::*;

glib::wrapper! {
    /// A [`gio::ListModel`][crate::gio::ListModel] representing values of a given enum.
    ///
    /// [`EnumListModel`][crate::EnumListModel] contains objects of type [`EnumListItem`][crate::EnumListItem].
    ///
    /// ## Properties
    ///
    ///
    /// #### `enum-type`
    ///  The type of the enum represented by the model.
    ///
    /// Readable | Writeable | Construct Only
    ///
    /// # Implements
    ///
    /// [`trait@glib::ObjectExt`], [`trait@gio::prelude::ListModelExt`]
    #[doc(alias = "AdwEnumListModel")]
    pub struct EnumListModel(Object<ffi::AdwEnumListModel, ffi::AdwEnumListModelClass>) @implements gio::ListModel;

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

impl EnumListModel {
    /// Creates a new [`EnumListModel`][crate::EnumListModel] for @enum_type.
    /// ## `enum_type`
    /// the type of the enum to construct the model from
    ///
    /// # Returns
    ///
    /// the newly created [`EnumListModel`][crate::EnumListModel]
    #[doc(alias = "adw_enum_list_model_new")]
    pub fn new(enum_type: glib::types::Type) -> EnumListModel {
        assert_initialized_main_thread!();
        unsafe { from_glib_full(ffi::adw_enum_list_model_new(enum_type.into_glib())) }
    }

    /// Finds the position of a given enum value in @self.
    ///
    /// If the value is not found, `GTK_INVALID_LIST_POSITION` is returned.
    /// ## `value`
    /// an enum value
    #[doc(alias = "adw_enum_list_model_find_position")]
    pub fn find_position(&self, value: i32) -> u32 {
        unsafe { ffi::adw_enum_list_model_find_position(self.to_glib_none().0, value) }
    }

    /// Gets the type of the enum represented by @self.
    ///
    /// # Returns
    ///
    /// the enum type
    #[doc(alias = "adw_enum_list_model_get_enum_type")]
    #[doc(alias = "get_enum_type")]
    pub fn enum_type(&self) -> glib::types::Type {
        unsafe {
            from_glib(ffi::adw_enum_list_model_get_enum_type(
                self.to_glib_none().0,
            ))
        }
    }
}