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;
|
|
|
|
|
2021-05-02 16:56:28 +00:00
|
|
|
/// Default size for a `\t` character.
|
2021-05-02 17:28:02 +00:00
|
|
|
pub const TAB_SIZE: f32 = 4.0;
|
2021-05-02 16:56:28 +00:00
|
|
|
|
2021-01-10 13:39:03 +00:00
|
|
|
pub use {
|
|
|
|
fonts::{FontDefinitions, FontFamily, Fonts, TextStyle},
|
|
|
|
galley::{Galley, Row},
|
|
|
|
};
|
2021-04-02 07:58:55 +00:00
|
|
|
|
|
|
|
/// Suggested character to use to replace those in password text fields.
|
|
|
|
pub const PASSWORD_REPLACEMENT_CHAR: char = '•';
|