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
use Bin;
use Container;
use ToolItem;
use Widget;
use ffi;
use glib::object::Downcast;
use glib::object::IsA;
use glib::translate::*;
use gobject_ffi;
glib_wrapper! {
pub struct SeparatorToolItem(Object<ffi::GtkSeparatorToolItem>): ToolItem, Bin, Container, Widget;
match fn {
get_type => || ffi::gtk_separator_tool_item_get_type(),
}
}
impl SeparatorToolItem {
pub fn new() -> SeparatorToolItem {
assert_initialized_main_thread!();
unsafe {
ToolItem::from_glib_none(ffi::gtk_separator_tool_item_new()).downcast_unchecked()
}
}
}
pub trait SeparatorToolItemExt {
fn get_draw(&self) -> bool;
fn set_draw(&self, draw: bool);
}
impl<O: IsA<SeparatorToolItem>> SeparatorToolItemExt for O {
fn get_draw(&self) -> bool {
unsafe {
from_glib(ffi::gtk_separator_tool_item_get_draw(self.to_glib_none().0))
}
}
fn set_draw(&self, draw: bool) {
unsafe {
ffi::gtk_separator_tool_item_set_draw(self.to_glib_none().0, draw.to_glib());
}
}
}