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
// 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 Buildable;
use IconSet;
use ffi;
use glib::object::IsA;
use glib::translate::*;
use glib_ffi;
use gobject_ffi;
use std::mem;
use std::ptr;

glib_wrapper! {
    pub struct IconFactory(Object<ffi::GtkIconFactory, ffi::GtkIconFactoryClass>): Buildable;

    match fn {
        get_type => || ffi::gtk_icon_factory_get_type(),
    }
}

impl IconFactory {
    #[cfg_attr(feature = "v3_10", deprecated)]
    pub fn new() -> IconFactory {
        assert_initialized_main_thread!();
        unsafe {
            from_glib_full(ffi::gtk_icon_factory_new())
        }
    }

    #[cfg_attr(feature = "v3_10", deprecated)]
    pub fn lookup_default(stock_id: &str) -> Option<IconSet> {
        assert_initialized_main_thread!();
        unsafe {
            from_glib_none(ffi::gtk_icon_factory_lookup_default(stock_id.to_glib_none().0))
        }
    }
}

#[cfg_attr(feature = "v3_10", deprecated)]
impl Default for IconFactory {
    fn default() -> Self {
        Self::new()
    }
}

pub trait IconFactoryExt {
    #[cfg_attr(feature = "v3_10", deprecated)]
    fn add(&self, stock_id: &str, icon_set: &IconSet);

    #[cfg_attr(feature = "v3_10", deprecated)]
    fn add_default(&self);

    #[cfg_attr(feature = "v3_10", deprecated)]
    fn lookup(&self, stock_id: &str) -> Option<IconSet>;

    #[cfg_attr(feature = "v3_10", deprecated)]
    fn remove_default(&self);
}

impl<O: IsA<IconFactory>> IconFactoryExt for O {
    fn add(&self, stock_id: &str, icon_set: &IconSet) {
        unsafe {
            ffi::gtk_icon_factory_add(self.to_glib_none().0, stock_id.to_glib_none().0, icon_set.to_glib_none().0);
        }
    }

    fn add_default(&self) {
        unsafe {
            ffi::gtk_icon_factory_add_default(self.to_glib_none().0);
        }
    }

    fn lookup(&self, stock_id: &str) -> Option<IconSet> {
        unsafe {
            from_glib_none(ffi::gtk_icon_factory_lookup(self.to_glib_none().0, stock_id.to_glib_none().0))
        }
    }

    fn remove_default(&self) {
        unsafe {
            ffi::gtk_icon_factory_remove_default(self.to_glib_none().0);
        }
    }
}