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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
use crate::Accessible;
use crate::Buildable;
use crate::ConstraintTarget;
use crate::Widget;
use glib::object::IsA;
use glib::translate::*;
use std::fmt;
use std::mem;
glib::wrapper! {
#[doc(alias = "GtkNative")]
pub struct Native(Interface<ffi::GtkNative, ffi::GtkNativeInterface>) @requires Widget, Accessible, Buildable, ConstraintTarget;
match fn {
type_ => || ffi::gtk_native_get_type(),
}
}
impl Native {
pub const NONE: Option<&'static Native> = None;
#[doc(alias = "gtk_native_get_for_surface")]
#[doc(alias = "get_for_surface")]
pub fn for_surface(surface: &impl IsA<gdk::Surface>) -> Option<Native> {
assert_initialized_main_thread!();
unsafe {
from_glib_none(ffi::gtk_native_get_for_surface(
surface.as_ref().to_glib_none().0,
))
}
}
}
pub trait NativeExt: 'static {
#[doc(alias = "gtk_native_get_renderer")]
#[doc(alias = "get_renderer")]
fn renderer(&self) -> gsk::Renderer;
#[doc(alias = "gtk_native_get_surface")]
#[doc(alias = "get_surface")]
fn surface(&self) -> gdk::Surface;
#[doc(alias = "gtk_native_get_surface_transform")]
#[doc(alias = "get_surface_transform")]
fn surface_transform(&self) -> (f64, f64);
#[doc(alias = "gtk_native_realize")]
fn realize(&self);
#[doc(alias = "gtk_native_unrealize")]
fn unrealize(&self);
}
impl<O: IsA<Native>> NativeExt for O {
fn renderer(&self) -> gsk::Renderer {
unsafe { from_glib_none(ffi::gtk_native_get_renderer(self.as_ref().to_glib_none().0)) }
}
fn surface(&self) -> gdk::Surface {
unsafe { from_glib_none(ffi::gtk_native_get_surface(self.as_ref().to_glib_none().0)) }
}
fn surface_transform(&self) -> (f64, f64) {
unsafe {
let mut x = mem::MaybeUninit::uninit();
let mut y = mem::MaybeUninit::uninit();
ffi::gtk_native_get_surface_transform(
self.as_ref().to_glib_none().0,
x.as_mut_ptr(),
y.as_mut_ptr(),
);
(x.assume_init(), y.assume_init())
}
}
fn realize(&self) {
unsafe {
ffi::gtk_native_realize(self.as_ref().to_glib_none().0);
}
}
fn unrealize(&self) {
unsafe {
ffi::gtk_native_unrealize(self.as_ref().to_glib_none().0);
}
}
}
impl fmt::Display for Native {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("Native")
}
}