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
// 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 glib::translate::*;
use pango_sys;
use AttrClass;

#[cfg(any(feature = "v1_44", feature = "dox"))]
glib_wrapper! {
    #[derive(Debug, PartialOrd, Ord, Hash)]
    pub struct Attribute(Boxed<pango_sys::PangoAttribute>);

    match fn {
        copy => |ptr| pango_sys::pango_attribute_copy(mut_override(ptr)),
        free => |ptr| pango_sys::pango_attribute_destroy(ptr),
        get_type => || pango_sys::pango_attribute_get_type(),
    }
}

#[cfg(not(any(feature = "v1_44", feature = "dox")))]
glib_wrapper! {
    #[derive(Debug, PartialOrd, Ord, Hash)]
    pub struct Attribute(Boxed<pango_sys::PangoAttribute>);

    match fn {
        copy => |ptr| pango_sys::pango_attribute_copy(mut_override(ptr)),
        free => |ptr| pango_sys::pango_attribute_destroy(ptr),
    }
}

impl Attribute {
    fn equal(&self, attr2: &Attribute) -> bool {
        unsafe {
            from_glib(pango_sys::pango_attribute_equal(
                self.to_glib_none().0,
                attr2.to_glib_none().0,
            ))
        }
    }

    pub fn init(&mut self, klass: &AttrClass) {
        unsafe {
            pango_sys::pango_attribute_init(self.to_glib_none_mut().0, klass.to_glib_none().0);
        }
    }
}

impl PartialEq for Attribute {
    #[inline]
    fn eq(&self, other: &Self) -> bool {
        self.equal(other)
    }
}

impl Eq for Attribute {}