Skip to main content

gdkwayland/
lib.rs

1// Take a look at the license at the top of the repository in the LICENSE file.
2
3#![cfg_attr(docsrs, feature(doc_cfg))]
4#![doc = include_str!("../README.md")]
5
6pub use gdk;
7pub use gdk_wayland_sys as ffi;
8
9mod wayland_device;
10pub use wayland_device::WaylandDevice;
11
12mod wayland_display;
13pub use wayland_display::WaylandDisplay;
14
15mod wayland_gl_context;
16pub use wayland_gl_context::WaylandGLContext;
17
18mod wayland_monitor;
19pub use wayland_monitor::WaylandMonitor;
20
21mod wayland_seat;
22pub use wayland_seat::WaylandSeat;
23
24mod wayland_window;
25pub use wayland_window::WaylandWindow;