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
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT

use glib::{prelude::*, translate::*};
use std::fmt;

glib::wrapper! {
    ///
    ///
    /// ## Properties
    ///
    ///
    /// #### `destroyable`
    ///  Readable | Writeable | Construct Only
    ///
    ///
    /// #### `display`
    ///  Readable | Writeable | Construct Only
    ///
    ///
    /// #### `handle`
    ///  Readable | Writeable | Construct Only
    #[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")
    }
}