cosmic-comp/src/wayland/handlers/mod.rs

27 lines
570 B
Rust
Raw Normal View History

// SPDX-License-Identifier: GPL-3.0-only
pub mod buffer;
pub mod compositor;
pub mod data_device;
pub mod decoration;
pub mod dmabuf;
2023-06-14 14:44:36 +02:00
pub mod fractional_scale;
pub mod keyboard_shortcuts_inhibit;
pub mod layer_shell;
pub mod output;
pub mod output_configuration;
2023-09-05 13:41:21 -07:00
pub mod pointer_gestures;
2022-11-17 20:32:54 +01:00
pub mod presentation;
2022-07-15 14:22:02 +02:00
pub mod primary_selection;
pub mod relative_pointer;
2022-11-03 18:51:27 +01:00
pub mod screencopy;
pub mod seat;
pub mod shm;
pub mod toplevel_info;
2022-07-18 21:26:02 +02:00
pub mod toplevel_management;
pub mod viewporter;
pub mod wl_drm;
pub mod workspace;
pub mod xdg_shell;
2023-08-07 16:15:19 -07:00
pub mod xwayland_keyboard_grab;