Initial support for tablet input

This commit is contained in:
Ian Douglas Scott 2023-12-28 13:36:59 -08:00 committed by Victoria Brekenfeld
parent b41a5c74af
commit cf9ae91e96
4 changed files with 218 additions and 58 deletions

View file

@ -25,6 +25,7 @@ pub mod security_context;
pub mod selection;
pub mod session_lock;
pub mod shm;
pub mod tablet_manager;
pub mod text_input;
pub mod toplevel_info;
pub mod toplevel_management;

View file

@ -0,0 +1,6 @@
// SPDX-License-Identifier: GPL-3.0-only
use crate::state::State;
use smithay::delegate_tablet_manager;
delegate_tablet_manager!(State);