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
// 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::HeaderBar;
use crate::HeaderGroup;
use crate::HeaderGroupChildType;
use glib::translate::*;
use std::fmt;

glib::wrapper! {
    pub struct HeaderGroupChild(Object<ffi::HdyHeaderGroupChild, ffi::HdyHeaderGroupChildClass>);

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

impl HeaderGroupChild {
    /// Gets the child type.
    ///
    /// # Returns
    ///
    /// the child type.
    #[doc(alias = "hdy_header_group_child_get_child_type")]
    pub fn get_child_type(&self) -> HeaderGroupChildType {
        unsafe {
            from_glib(ffi::hdy_header_group_child_get_child_type(
                self.to_glib_none().0,
            ))
        }
    }

    /// Gets the child `gtk::HeaderBar`.
    /// Use `HeaderGroupChild::get_child_type` to check the child type.
    ///
    /// # Returns
    ///
    /// the child `gtk::HeaderBar`, or `None` in case of error.
    #[doc(alias = "hdy_header_group_child_get_gtk_header_bar")]
    pub fn get_gtk_header_bar(&self) -> Option<gtk::HeaderBar> {
        unsafe {
            from_glib_none(ffi::hdy_header_group_child_get_gtk_header_bar(
                self.to_glib_none().0,
            ))
        }
    }

    /// Gets the child `HeaderBar`.
    /// Use `HeaderGroupChild::get_child_type` to check the child type.
    ///
    /// # Returns
    ///
    /// the child `HeaderBar`, or `None` in case of error.
    #[doc(alias = "hdy_header_group_child_get_header_bar")]
    pub fn get_header_bar(&self) -> Option<HeaderBar> {
        unsafe {
            from_glib_none(ffi::hdy_header_group_child_get_header_bar(
                self.to_glib_none().0,
            ))
        }
    }

    /// Gets the child `HeaderGroup`.
    /// Use `HeaderGroupChild::get_child_type` to check the child type.
    ///
    /// # Returns
    ///
    /// the child `HeaderGroup`, or `None` in case of error.
    #[doc(alias = "hdy_header_group_child_get_header_group")]
    pub fn get_header_group(&self) -> Option<HeaderGroup> {
        unsafe {
            from_glib_none(ffi::hdy_header_group_child_get_header_group(
                self.to_glib_none().0,
            ))
        }
    }
}

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