23 lines
565 B
Rust
23 lines
565 B
Rust
//! Everything related to text, fonts, text layout, cursors etc.
|
|
|
|
pub mod cursor;
|
|
mod font;
|
|
mod fonts;
|
|
mod text_layout;
|
|
mod text_layout_types;
|
|
|
|
/// One `\t` character is this many spaces wide.
|
|
pub const TAB_SIZE: usize = 4;
|
|
|
|
pub use {
|
|
fonts::{
|
|
FontData, FontDefinitions, FontFamily, FontId, FontInsert, FontPriority, FontTweak, Fonts,
|
|
FontsImpl, InsertFontFamily,
|
|
},
|
|
text_layout::*,
|
|
text_layout_types::*,
|
|
};
|
|
|
|
/// Suggested character to use to replace those in password text fields.
|
|
pub const PASSWORD_REPLACEMENT_CHAR: char = '•';
|