egui/text_selection/mod.rs
1//! Helpers regarding text selection for labels and text edit.
2
3#[cfg(feature = "accesskit")]
4pub mod accesskit_text;
5
6mod cursor_range;
7mod label_text_selection;
8pub mod text_cursor_state;
9pub mod visuals;
10
11pub use cursor_range::{CCursorRange, CursorRange, PCursorRange};
12pub use label_text_selection::LabelSelectionState;
13pub use text_cursor_state::TextCursorState;