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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files.git)
// from webkit2gtk-gir-files
// DO NOT EDIT

use crate::DOMElement;
use crate::DOMEventTarget;
use crate::DOMHTMLElement;
use crate::DOMNode;
use crate::DOMObject;
use glib::object::IsA;
use glib::translate::*;
use std::fmt;

glib::wrapper! {
    ///
    ///
    /// # Implements
    ///
    /// [`DOMHTMLBaseFontElementExt`][trait@crate::prelude::DOMHTMLBaseFontElementExt], [`DOMHTMLElementExt`][trait@crate::prelude::DOMHTMLElementExt], [`DOMElementExt`][trait@crate::prelude::DOMElementExt], [`DOMNodeExt`][trait@crate::prelude::DOMNodeExt], [`DOMObjectExt`][trait@crate::prelude::DOMObjectExt], [`DOMEventTargetExt`][trait@crate::prelude::DOMEventTargetExt]
    #[doc(alias = "WebKitDOMHTMLBaseFontElement")]
    pub struct DOMHTMLBaseFontElement(Object<ffi::WebKitDOMHTMLBaseFontElement, ffi::WebKitDOMHTMLBaseFontElementClass>) @extends DOMHTMLElement, DOMElement, DOMNode, DOMObject, @implements DOMEventTarget;

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

impl DOMHTMLBaseFontElement {
    pub const NONE: Option<&'static DOMHTMLBaseFontElement> = None;
}

/// Trait containing all [`struct@DOMHTMLBaseFontElement`] methods.
///
/// # Implementors
///
/// [`DOMHTMLBaseFontElement`][struct@crate::DOMHTMLBaseFontElement]
pub trait DOMHTMLBaseFontElementExt: 'static {
    /// This function has been removed from the DOM spec and it just returns [`None`].
    ///
    /// # Deprecated since 2.12
    ///
    ///
    /// # Returns
    ///
    /// A `gchar`
    #[cfg_attr(feature = "v2_12", deprecated = "Since 2.12")]
    #[doc(alias = "webkit_dom_html_base_font_element_get_color")]
    #[doc(alias = "get_color")]
    fn color(&self) -> Option<glib::GString>;

    /// This function has been removed from the DOM spec and it just returns [`None`].
    ///
    /// # Deprecated since 2.12
    ///
    ///
    /// # Returns
    ///
    /// A `gchar`
    #[cfg_attr(feature = "v2_12", deprecated = "Since 2.12")]
    #[doc(alias = "webkit_dom_html_base_font_element_get_face")]
    #[doc(alias = "get_face")]
    fn face(&self) -> Option<glib::GString>;

    /// This function has been removed from the DOM spec and it just returns 0.
    ///
    /// # Deprecated since 2.12
    ///
    ///
    /// # Returns
    ///
    /// A `glong`
    #[cfg_attr(feature = "v2_12", deprecated = "Since 2.12")]
    #[doc(alias = "webkit_dom_html_base_font_element_get_size")]
    #[doc(alias = "get_size")]
    fn size(&self) -> libc::c_long;

    /// This function has been removed from the DOM spec and it does nothing.
    ///
    /// # Deprecated since 2.12
    ///
    /// ## `value`
    /// A `gchar`
    #[cfg_attr(feature = "v2_12", deprecated = "Since 2.12")]
    #[doc(alias = "webkit_dom_html_base_font_element_set_color")]
    fn set_color(&self, value: &str);

    /// This function has been removed from the DOM spec and it does nothing.
    ///
    /// # Deprecated since 2.12
    ///
    /// ## `value`
    /// A `gchar`
    #[cfg_attr(feature = "v2_12", deprecated = "Since 2.12")]
    #[doc(alias = "webkit_dom_html_base_font_element_set_face")]
    fn set_face(&self, value: &str);

    /// This function has been removed from the DOM spec and it does nothing.
    ///
    /// # Deprecated since 2.12
    ///
    /// ## `value`
    /// A `glong`
    #[cfg_attr(feature = "v2_12", deprecated = "Since 2.12")]
    #[doc(alias = "webkit_dom_html_base_font_element_set_size")]
    fn set_size(&self, value: libc::c_long);
}

impl<O: IsA<DOMHTMLBaseFontElement>> DOMHTMLBaseFontElementExt for O {
    fn color(&self) -> Option<glib::GString> {
        unsafe {
            from_glib_full(ffi::webkit_dom_html_base_font_element_get_color(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn face(&self) -> Option<glib::GString> {
        unsafe {
            from_glib_full(ffi::webkit_dom_html_base_font_element_get_face(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn size(&self) -> libc::c_long {
        unsafe { ffi::webkit_dom_html_base_font_element_get_size(self.as_ref().to_glib_none().0) }
    }

    fn set_color(&self, value: &str) {
        unsafe {
            ffi::webkit_dom_html_base_font_element_set_color(
                self.as_ref().to_glib_none().0,
                value.to_glib_none().0,
            );
        }
    }

    fn set_face(&self, value: &str) {
        unsafe {
            ffi::webkit_dom_html_base_font_element_set_face(
                self.as_ref().to_glib_none().0,
                value.to_glib_none().0,
            );
        }
    }

    fn set_size(&self, value: libc::c_long) {
        unsafe {
            ffi::webkit_dom_html_base_font_element_set_size(self.as_ref().to_glib_none().0, value);
        }
    }
}

impl fmt::Display for DOMHTMLBaseFontElement {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.write_str("DOMHTMLBaseFontElement")
    }
}