egui/text_selection/mod.rs
1//! Helpers regarding text selection for labels and text edit.
2
3pub mod accesskit_text;
4
5mod cursor_range;
6mod label_text_selection;
7pub mod text_cursor_state;
8pub mod visuals;
9
10pub use cursor_range::CCursorRange;
11pub use label_text_selection::LabelSelectionState;
12pub use text_cursor_state::TextCursorState;