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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
use crate::WaylandDisplay;
#[cfg(any(feature = "wayland_crate", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "wayland_crate")))]
use glib::{once_cell::sync::Lazy, translate::ToGlibPtr, ObjectExt, Quark};
#[cfg(any(all(feature = "v4_4", feature = "egl"), feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(all(feature = "v4_4", feature = "egl"))))]
use khronos_egl as egl;
#[cfg(any(feature = "wayland_crate", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "wayland_crate")))]
use wayland_client::{
backend::ObjectId,
protocol::{wl_compositor::WlCompositor, wl_display::WlDisplay},
Proxy,
};
#[cfg(any(feature = "wayland_crate", feature = "dox"))]
static WAYLAND_DISPLAY_CONNECTION_QUARK: Lazy<Quark> =
Lazy::new(|| Quark::from_str("gtk-rs-wayland-display-connection-quark"));
impl WaylandDisplay {
#[cfg(any(all(feature = "v4_4", feature = "egl"), feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(all(feature = "v4_4", feature = "egl"))))]
#[doc(alias = "gdk_wayland_display_get_egl_display")]
#[doc(alias = "get_egl_display")]
pub fn egl_display(&self) -> Option<egl::Display> {
unsafe {
let ptr = ffi::gdk_wayland_display_get_egl_display(self.to_glib_none().0);
if ptr.is_null() {
None
} else {
Some(egl::Display::from_ptr(ptr))
}
}
}
#[doc(alias = "gdk_wayland_display_get_wl_compositor")]
#[doc(alias = "get_wl_compositor")]
#[cfg(any(feature = "wayland_crate", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "wayland_crate")))]
pub fn wl_compositor(&self) -> Option<WlCompositor> {
unsafe {
let compositor_ptr = ffi::gdk_wayland_display_get_wl_compositor(self.to_glib_none().0);
if compositor_ptr.is_null() {
None
} else {
let cnx = self.connection();
let id = ObjectId::from_ptr(WlCompositor::interface(), compositor_ptr as *mut _)
.unwrap();
WlCompositor::from_id(&cnx, id).ok()
}
}
}
#[doc(alias = "gdk_wayland_display_get_wl_display")]
#[doc(alias = "get_wl_display")]
#[cfg(any(feature = "wayland_crate", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "wayland_crate")))]
pub fn wl_display(&self) -> Option<WlDisplay> {
unsafe {
let display_ptr = ffi::gdk_wayland_display_get_wl_display(self.to_glib_none().0);
if display_ptr.is_null() {
None
} else {
let cnx = self.connection();
let id = ObjectId::from_ptr(WlDisplay::interface(), display_ptr as *mut _).unwrap();
WlDisplay::from_id(&cnx, id).ok()
}
}
}
#[cfg(any(feature = "wayland_crate", feature = "dox"))]
pub(crate) fn connection(&self) -> wayland_client::Connection {
unsafe {
match self
.qdata::<Option<wayland_client::Connection>>(*WAYLAND_DISPLAY_CONNECTION_QUARK)
{
Some(conn) => conn.as_ref().clone().unwrap(),
None => {
let display_ptr =
ffi::gdk_wayland_display_get_wl_display(self.to_glib_none().0);
let backend = wayland_backend::sys::client::Backend::from_foreign_display(
display_ptr as *mut _,
);
let conn = wayland_client::Connection::from_backend(backend);
self.set_qdata(*WAYLAND_DISPLAY_CONNECTION_QUARK, conn.clone());
conn
}
}
}
}
}