spell_framework/wayland_adapter.rs
1//! It provides various widget types for implementing properties
2//! across various functionalities for your shell. The most common widget (or
3//! window as called by many) is [SpellWin]. You can also implement a lock screen
4//! with [`SpellLock`].
5
6mod common;
7mod fractional_scaling;
8mod lock;
9mod viewporter;
10mod window;
11
12pub use window::SpellWin;
13pub use window::SpellXDGPopup;
14pub use window::WinHandle;
15
16pub use lock::LockHandle;
17pub use lock::SpellLock;
18
19/// Furture virtual keyboard implementation will be on this type. Currently, it is redundent.
20pub struct SpellBoard;