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
#![cfg_attr(feature = "dox", feature(doc_cfg))]
#![doc = include_str!("../README.md")]
pub use ffi;
pub use gdk;
mod wayland_device;
pub use wayland_device::WaylandDevice;
mod wayland_display;
pub use wayland_display::WaylandDisplay;
mod wayland_gl_context;
pub use wayland_gl_context::WaylandGLContext;
#[cfg(any(feature = "v3_22", feature = "dox"))]
mod wayland_monitor;
#[cfg(any(feature = "v3_22", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v3_22")))]
pub use wayland_monitor::WaylandMonitor;
#[cfg(any(feature = "v3_20", feature = "dox"))]
mod wayland_seat;
#[cfg(any(feature = "v3_20", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v3_20")))]
pub use wayland_seat::WaylandSeat;
mod wayland_window;
pub use wayland_window::WaylandWindow;