egui/epaint/src/text/mod.rs

18 lines
412 B
Rust
Raw Normal View History

2021-01-17 09:52:01 +00:00
//! Everything related to text, fonts, text layout, cursors etc.
2021-01-10 13:39:03 +00:00
pub mod cursor;
mod font;
mod fonts;
mod galley;
/// Default size for a `\t` character.
2021-05-02 17:28:02 +00:00
pub const TAB_SIZE: f32 = 4.0;
2021-01-10 13:39:03 +00:00
pub use {
fonts::{FontDefinitions, FontFamily, Fonts, TextStyle},
galley::{Galley, Row},
};
/// Suggested character to use to replace those in password text fields.
pub const PASSWORD_REPLACEMENT_CHAR: char = '•';