azul_layout/text3/mod.rs
1//! Text layout and shaping system.
2//!
3//! This module provides text shaping, inline layout, editing, selection,
4//! and font caching. Submodules:
5//!
6//! - `cache`: unified text layout cache (`UnifiedLayout`)
7//! - `default`: default text shaping and line-breaking
8//! - `edit`: text editing operations
9//! - `glyphs`: glyph positioning and cluster mapping
10//! - `knuth_plass`: Knuth-Plass line-breaking algorithm
11//! - `mock_fonts`: built-in test fonts with exactly known metrics
12//! - `script`: Unicode script detection
13//! - `selection`: text selection and cursor utilities
14
15pub mod cache;
16pub mod default;
17pub mod edit;
18pub mod glyphs;
19pub mod knuth_plass;
20pub mod mock_fonts;
21pub mod script;
22pub mod selection;