17 lines
412 B
Rust
17 lines
412 B
Rust
//! Everything related to text, fonts, text layout, cursors etc.
|
|
|
|
pub mod cursor;
|
|
mod font;
|
|
mod fonts;
|
|
mod galley;
|
|
|
|
/// Default size for a `\t` character.
|
|
pub const TAB_SIZE: f32 = 4.0;
|
|
|
|
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 = '•';
|