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
50
51
52
53
54
55
56
57
58
59
60
61
use glib::object::IsA;
use glib::translate::*;
use std::fmt;
glib::wrapper! {
#[doc(alias = "GdkWin32Surface")]
pub struct Win32Surface(Object<ffi::GdkWin32Surface, ffi::GdkWin32SurfaceClass>) @extends gdk::Surface;
match fn {
type_ => || ffi::gdk_win32_surface_get_type(),
}
}
impl Win32Surface {
#[doc(alias = "gdk_win32_surface_set_urgency_hint")]
pub fn set_urgency_hint(&self, urgent: bool) {
unsafe {
ffi::gdk_win32_surface_set_urgency_hint(self.to_glib_none().0, urgent.into_glib());
}
}
#[cfg_attr(feature = "v4_8", deprecated = "Since 4.8")]
#[doc(alias = "gdk_win32_surface_is_win32")]
pub fn is_win32(surface: &impl IsA<gdk::Surface>) -> bool {
assert_initialized_main_thread!();
unsafe {
from_glib(ffi::gdk_win32_surface_is_win32(
surface.as_ref().to_glib_none().0,
))
}
}
}
impl fmt::Display for Win32Surface {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("Win32Surface")
}
}