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 glib::object::Cast;
use glib::object::IsA;
use glib::translate::*;
use std::fmt;

glib::wrapper! {
    pub struct ApplicationWindow(Object<ffi::HdyApplicationWindow, ffi::HdyApplicationWindowClass>) @extends gtk::ApplicationWindow, gtk::Window, gtk::Widget, @implements gtk::Accessible, gtk::Buildable, gtk::ConstraintTarget, gtk::Native, gtk::Root, gtk::ShortcutManager, gio::ActionGroup, gio::ActionMap;

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

impl ApplicationWindow {
    /// Creates a new `ApplicationWindow` for `app`.
    /// ## `app`
    /// a `gtk::Application`
    ///
    /// # Returns
    ///
    /// a newly created `ApplicationWindow`
    #[doc(alias = "hdy_application_window_new")]
    pub fn new<P: IsA<gtk::Application>>(app: &P) -> ApplicationWindow {
        assert_initialized_main_thread!();
        unsafe {
            gtk::Widget::from_glib_full(ffi::hdy_application_window_new(
                app.as_ref().to_glib_none().0,
            ))
            .unsafe_cast()
        }
    }
}

pub const NONE_APPLICATION_WINDOW: Option<&ApplicationWindow> = None;

/// Trait containing all `ApplicationWindow` methods.
///
/// # Implementors
///
/// [`ApplicationWindow`](struct.ApplicationWindow.html)
pub trait ApplicationWindowExt: 'static {
    /// Gets the child widget of `self`.
    ///
    /// # Returns
    ///
    /// the child widget of `self`
    #[doc(alias = "hdy_application_window_get_child")]
    fn get_child(&self) -> Option<gtk::Widget>;

    /// Sets the child widget of `self`.
    /// ## `child`
    /// the child widget
    #[doc(alias = "hdy_application_window_set_child")]
    fn set_child<P: IsA<gtk::Widget>>(&self, child: Option<&P>);
}

impl<O: IsA<ApplicationWindow>> ApplicationWindowExt for O {
    fn get_child(&self) -> Option<gtk::Widget> {
        unsafe {
            from_glib_none(ffi::hdy_application_window_get_child(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn set_child<P: IsA<gtk::Widget>>(&self, child: Option<&P>) {
        unsafe {
            ffi::hdy_application_window_set_child(
                self.as_ref().to_glib_none().0,
                child.map(|p| p.as_ref()).to_glib_none().0,
            );
        }
    }
}

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