kas_widgets/adapt/
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//! Adapter widgets (wrappers)
7
8mod adapt;
9mod adapt_cx;
10mod adapt_events;
11mod adapt_widget;
12mod reserve;
13mod with_label;
14
15pub use adapt::{Adapt, Map};
16pub use adapt_cx::{AdaptConfigCx, AdaptEventCx};
17pub use adapt_events::AdaptEvents;
18pub use adapt_widget::*;
19#[doc(inline)] pub use kas::widgets::adapt::*;
20pub use reserve::{Margins, Reserve};
21pub use with_label::{WithHiddenLabel, WithLabel};