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
use glib::translate::*;
use std::fmt;
use x11::xlib;
glib::wrapper! {
#[doc(alias = "GdkX11Cursor")]
pub struct X11Cursor(Object<ffi::GdkX11Cursor, ffi::GdkX11CursorClass>) @extends gdk::Cursor;
match fn {
type_ => || ffi::gdk_x11_cursor_get_type(),
}
}
impl X11Cursor {
#[doc(alias = "gdk_x11_cursor_get_xcursor")]
#[doc(alias = "get_xcursor")]
pub fn xcursor(&self) -> xlib::Cursor {
unsafe { ffi::gdk_x11_cursor_get_xcursor(self.to_glib_none().0) }
}
}
impl fmt::Display for X11Cursor {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("X11Cursor")
}
}