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
18#[allow(clippy::let_and_return)]
19mod auto;
20
21pub mod prelude;
22pub use auto::*;
23
24mod wayland_device;
25mod wayland_display;
26mod wayland_monitor;
27mod wayland_seat;
28mod wayland_surface;
29mod wayland_toplevel;