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
use Bin;
use Container;
use PackType;
use Widget;
use ffi;
use glib::Value;
use glib::object::Downcast;
use glib::object::IsA;
use glib::translate::*;
use gobject_ffi;
use std::mem::transmute;
glib_wrapper! {
pub struct ActionBar(Object<ffi::GtkActionBar>): Bin, Container, Widget;
match fn {
get_type => || ffi::gtk_action_bar_get_type(),
}
}
impl ActionBar {
#[cfg(feature = "v3_12")]
pub fn new() -> ActionBar {
assert_initialized_main_thread!();
unsafe {
Widget::from_glib_none(ffi::gtk_action_bar_new()).downcast_unchecked()
}
}
}
pub trait ActionBarExt {
#[cfg(feature = "v3_12")]
fn get_center_widget(&self) -> Option<Widget>;
#[cfg(feature = "v3_12")]
fn pack_end<P: IsA<Widget>>(&self, child: &P);
#[cfg(feature = "v3_12")]
fn pack_start<P: IsA<Widget>>(&self, child: &P);
#[cfg(feature = "v3_12")]
fn set_center_widget<'a, P: IsA<Widget> + 'a, Q: Into<Option<&'a P>>>(&self, center_widget: Q);
fn get_child_pack_type<T: IsA<Widget>>(&self, item: &T) -> PackType;
fn set_child_pack_type<T: IsA<Widget>>(&self, item: &T, pack_type: PackType);
fn get_child_position<T: IsA<Widget>>(&self, item: &T) -> i32;
fn set_child_position<T: IsA<Widget>>(&self, item: &T, position: i32);
}
impl<O: IsA<ActionBar> + IsA<Container>> ActionBarExt for O {
#[cfg(feature = "v3_12")]
fn get_center_widget(&self) -> Option<Widget> {
unsafe {
from_glib_none(ffi::gtk_action_bar_get_center_widget(self.to_glib_none().0))
}
}
#[cfg(feature = "v3_12")]
fn pack_end<P: IsA<Widget>>(&self, child: &P) {
unsafe {
ffi::gtk_action_bar_pack_end(self.to_glib_none().0, child.to_glib_none().0);
}
}
#[cfg(feature = "v3_12")]
fn pack_start<P: IsA<Widget>>(&self, child: &P) {
unsafe {
ffi::gtk_action_bar_pack_start(self.to_glib_none().0, child.to_glib_none().0);
}
}
#[cfg(feature = "v3_12")]
fn set_center_widget<'a, P: IsA<Widget> + 'a, Q: Into<Option<&'a P>>>(&self, center_widget: Q) {
let center_widget = center_widget.into();
let center_widget = center_widget.to_glib_none();
unsafe {
ffi::gtk_action_bar_set_center_widget(self.to_glib_none().0, center_widget.0);
}
}
fn get_child_pack_type<T: IsA<Widget>>(&self, item: &T) -> PackType {
let mut value = Value::from(&0);
unsafe {
ffi::gtk_container_child_get_property(self.to_glib_none().0, item.to_glib_none().0, "pack-type".to_glib_none().0, value.to_glib_none_mut().0);
from_glib(transmute(value.get::<i32>().unwrap()))
}
}
fn set_child_pack_type<T: IsA<Widget>>(&self, item: &T, pack_type: PackType) {
let pack_type = pack_type.to_glib() as i32;
unsafe {
ffi::gtk_container_child_set_property(self.to_glib_none().0, item.to_glib_none().0, "pack-type".to_glib_none().0, Value::from(&pack_type).to_glib_none().0);
}
}
fn get_child_position<T: IsA<Widget>>(&self, item: &T) -> i32 {
let mut value = Value::from(&0);
unsafe {
ffi::gtk_container_child_get_property(self.to_glib_none().0, item.to_glib_none().0, "position".to_glib_none().0, value.to_glib_none_mut().0);
}
value.get().unwrap()
}
fn set_child_position<T: IsA<Widget>>(&self, item: &T, position: i32) {
unsafe {
ffi::gtk_container_child_set_property(self.to_glib_none().0, item.to_glib_none().0, "position".to_glib_none().0, Value::from(&position).to_glib_none().0);
}
}
}