gdk4_win32/auto/win32_hcursor.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
// 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 crate::ffi;
use glib::{prelude::*, translate::*};
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 {
ObjectExt::property(self, "destroyable")
}
pub fn display(&self) -> Option<gdk::Display> {
ObjectExt::property(self, "display")
}
}