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
use glib::object::ObjectType as ObjectType_;
use glib::translate::*;
use glib::StaticType;
use std::fmt;
glib::wrapper! {
#[doc(alias = "GdkWin32HCursor")]
pub struct Win32HCursor(Object<ffi::GdkWin32HCursor, ffi::GdkWin32HCursorClass>);
match fn {
type_ => || ffi::gdk_win32_hcursor_get_type(),
}
}
impl Win32HCursor {
pub fn is_destroyable(&self) -> bool {
glib::ObjectExt::property(self, "destroyable")
}
pub fn display(&self) -> Option<gdk::Display> {
glib::ObjectExt::property(self, "display")
}
}
impl fmt::Display for Win32HCursor {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("Win32HCursor")
}
}