kas_core/widgets/
mod.rs

1// Licensed under the Apache License, Version 2.0 (the "License");
2// you may not use this file except in compliance with the License.
3// You may obtain a copy of the License in the LICENSE-APACHE file or at:
4//     https://www.apache.org/licenses/LICENSE-2.0
5
6//! Kas core widgets
7//!
8//! This is a minimal widget library intended to cover the needs of windows and
9//! window decorations.
10
11pub mod adapt;
12mod decorations;
13mod label;
14mod mark;
15
16#[doc(inline)] pub use decorations::*;
17pub use label::Label;
18pub use mark::{Mark, MarkButton};