forked from gtk-rs/gtk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu_tool_button.rs
79 lines (68 loc) · 2.47 KB
/
menu_tool_button.rs
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
// This file was generated by gir (b7f5189) from gir-files (71d73f0)
// DO NOT EDIT
use Actionable;
use Bin;
use Container;
use ToolButton;
use ToolItem;
use Widget;
use ffi;
use glib::object::Downcast;
use glib::object::IsA;
use glib::signal::connect;
use glib::translate::*;
use glib_ffi;
use std::boxed::Box as Box_;
use std::mem::transmute;
glib_wrapper! {
pub struct MenuToolButton(Object<ffi::GtkMenuToolButton>): ToolButton, ToolItem, Bin, Container, Widget, Actionable;
match fn {
get_type => || ffi::gtk_menu_tool_button_get_type(),
}
}
impl MenuToolButton {
pub fn new<'a, T: IsA<Widget>, U: Into<Option<&'a str>>>(icon_widget: Option<&T>, label: U) -> MenuToolButton {
assert_initialized_main_thread!();
unsafe {
ToolItem::from_glib_none(ffi::gtk_menu_tool_button_new(icon_widget.to_glib_none().0, label.into().to_glib_none().0)).downcast_unchecked()
}
}
pub fn new_from_stock(stock_id: &str) -> MenuToolButton {
assert_initialized_main_thread!();
unsafe {
ToolItem::from_glib_none(ffi::gtk_menu_tool_button_new_from_stock(stock_id.to_glib_none().0)).downcast_unchecked()
}
}
pub fn get_menu(&self) -> Option<Widget> {
unsafe {
from_glib_none(ffi::gtk_menu_tool_button_get_menu(self.to_glib_none().0))
}
}
pub fn set_arrow_tooltip_markup(&self, markup: &str) {
unsafe {
ffi::gtk_menu_tool_button_set_arrow_tooltip_markup(self.to_glib_none().0, markup.to_glib_none().0);
}
}
pub fn set_arrow_tooltip_text(&self, text: &str) {
unsafe {
ffi::gtk_menu_tool_button_set_arrow_tooltip_text(self.to_glib_none().0, text.to_glib_none().0);
}
}
pub fn set_menu<T: IsA<Widget>>(&self, menu: &T) {
unsafe {
ffi::gtk_menu_tool_button_set_menu(self.to_glib_none().0, menu.to_glib_none().0);
}
}
pub fn connect_show_menu<F: Fn(&MenuToolButton) + 'static>(&self, f: F) -> u64 {
unsafe {
let f: Box_<Box_<Fn(&MenuToolButton) + 'static>> = Box_::new(Box_::new(f));
connect(self.to_glib_none().0, "show-menu",
transmute(show_menu_trampoline as usize), Box_::into_raw(f) as *mut _)
}
}
}
unsafe extern "C" fn show_menu_trampoline(this: *mut ffi::GtkMenuToolButton, f: glib_ffi::gpointer) {
callback_guard!();
let f: &Box_<Fn(&MenuToolButton) + 'static> = transmute(f);
f(&from_glib_none(this))
}