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
use Bin;
use Container;
use Popover;
use Widget;
use ffi;
use glib;
use glib::Value;
use glib::object::Downcast;
use glib::object::IsA;
use glib::translate::*;
use gobject_ffi;
glib_wrapper! {
pub struct PopoverMenu(Object<ffi::GtkPopoverMenu>): Popover, Bin, Container, Widget;
match fn {
get_type => || ffi::gtk_popover_menu_get_type(),
}
}
impl PopoverMenu {
#[cfg(feature = "v3_16")]
pub fn new() -> PopoverMenu {
assert_initialized_main_thread!();
unsafe {
Widget::from_glib_none(ffi::gtk_popover_menu_new()).downcast_unchecked()
}
}
}
pub trait PopoverMenuExt {
#[cfg(feature = "v3_16")]
fn open_submenu(&self, name: &str);
fn get_property_visible_submenu(&self) -> Option<String>;
fn set_property_visible_submenu(&self, visible_submenu: Option<&str>);
fn get_child_position<T: IsA<Widget>>(&self, item: &T) -> i32;
fn set_child_position<T: IsA<Widget>>(&self, item: &T, position: i32);
fn get_child_submenu<T: IsA<Widget>>(&self, item: &T) -> Option<String>;
fn set_child_submenu<'a, P: Into<Option<&'a str>>, T: IsA<Widget>>(&self, item: &T, submenu: P);
}
impl<O: IsA<PopoverMenu> + IsA<Container> + IsA<glib::object::Object>> PopoverMenuExt for O {
#[cfg(feature = "v3_16")]
fn open_submenu(&self, name: &str) {
unsafe {
ffi::gtk_popover_menu_open_submenu(self.to_glib_none().0, name.to_glib_none().0);
}
}
fn get_property_visible_submenu(&self) -> Option<String> {
let mut value = Value::from(None::<&str>);
unsafe {
gobject_ffi::g_object_get_property(self.to_glib_none().0, "visible-submenu".to_glib_none().0, value.to_glib_none_mut().0);
}
value.get()
}
fn set_property_visible_submenu(&self, visible_submenu: Option<&str>) {
unsafe {
gobject_ffi::g_object_set_property(self.to_glib_none().0, "visible-submenu".to_glib_none().0, Value::from(visible_submenu).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);
}
}
fn get_child_submenu<T: IsA<Widget>>(&self, item: &T) -> Option<String> {
let mut value = Value::from(None::<&str>);
unsafe {
ffi::gtk_container_child_get_property(self.to_glib_none().0, item.to_glib_none().0, "submenu".to_glib_none().0, value.to_glib_none_mut().0);
}
value.get()
}
fn set_child_submenu<'a, P: Into<Option<&'a str>>, T: IsA<Widget>>(&self, item: &T, submenu: P) {
let submenu = submenu.into();
unsafe {
ffi::gtk_container_child_set_property(self.to_glib_none().0, item.to_glib_none().0, "submenu".to_glib_none().0, Value::from(submenu).to_glib_none().0);
}
}
}