mirror of
https://codeberg.org/waydeer/layer-shika.git
synced 2025-11-03 19:04:23 +00:00
22 lines
582 B
Rust
22 lines
582 B
Rust
#![allow(clippy::pub_use)]
|
|
|
|
pub mod errors;
|
|
pub mod rendering;
|
|
pub mod wayland;
|
|
|
|
pub use rendering::femtovg::popup_window::PopupWindow;
|
|
pub use rendering::slint_integration::platform::{
|
|
clear_popup_config, close_current_popup, get_popup_config, set_popup_config,
|
|
};
|
|
|
|
pub mod platform {
|
|
pub use slint;
|
|
pub use slint_interpreter;
|
|
|
|
pub mod calloop {
|
|
pub use smithay_client_toolkit::reexports::calloop::channel;
|
|
pub use smithay_client_toolkit::reexports::calloop::{
|
|
EventSource, InsertError, PostAction, RegistrationToken,
|
|
};
|
|
}
|
|
}
|