gdk4_wayland/
lib.rs

1// Take a look at the license at the top of the repository in the LICENSE file.
2
3#![doc = include_str!("../README.md")]
4#![allow(deprecated)]
5#![cfg_attr(docsrs, feature(doc_cfg))]
6
7pub use gdk;
8pub use gdk4_wayland_sys as ffi;
9pub use gio;
10pub use glib;
11#[cfg(all(feature = "v4_4", feature = "egl"))]
12#[cfg_attr(docsrs, doc(cfg(all(feature = "v4_4", feature = "egl"))))]
13pub use khronos_egl;
14#[cfg(feature = "wayland_crate")]
15#[cfg_attr(docsrs, doc(cfg(feature = "wayland_crate")))]
16pub use wayland_client;
17
18mod auto;
19
20pub mod prelude;
21pub use auto::*;
22
23mod wayland_device;
24mod wayland_display;
25mod wayland_monitor;
26mod wayland_seat;
27mod wayland_surface;
28mod wayland_toplevel;