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
// 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 crate::{HeaderBar, HeaderGroup, HeaderGroupChildType};
use glib::translate::*;
use std::fmt;
glib::wrapper! {
/// A child object for [`HeaderGroup`][crate::HeaderGroup].
///
/// # Implements
///
/// [`trait@glib::ObjectExt`]
#[doc(alias = "HdyHeaderGroupChild")]
pub struct HeaderGroupChild(Object<ffi::HdyHeaderGroupChild, ffi::HdyHeaderGroupChildClass>);
match fn {
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")]
#[doc(alias = "get_child_type")]
pub fn 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`][crate::gtk::HeaderBar].
///
/// Use [`child_type()`][Self::child_type()] to check the child type.
///
/// # Returns
///
/// the child header bar
#[doc(alias = "hdy_header_group_child_get_gtk_header_bar")]
#[doc(alias = "get_gtk_header_bar")]
pub fn 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`][crate::HeaderBar].
///
/// Use [`child_type()`][Self::child_type()] to check the child type.
///
/// # Returns
///
/// the child headerbar
#[doc(alias = "hdy_header_group_child_get_header_bar")]
#[doc(alias = "get_header_bar")]
pub fn 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`][crate::HeaderGroup].
///
/// Use [`child_type()`][Self::child_type()] to check the child type.
///
/// # Returns
///
/// the child header bar
#[doc(alias = "hdy_header_group_child_get_header_group")]
#[doc(alias = "get_header_group")]
pub fn 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")
}
}