1mod builder;
7pub mod compiler;
9pub mod diff;
11mod error;
12mod focus;
13mod layout;
14mod macros;
15mod node;
16mod panel;
17mod preset;
18mod rect;
19mod resize;
20pub mod resolver;
22pub mod runtime;
24mod sequence;
26mod snapshot;
28mod strategy;
30#[cfg(feature = "toml")]
31mod toml_parse;
32mod tree;
33mod validate;
34mod viewport;
35
36pub use builder::{ContainerCtx, LayoutBuilder};
37pub use error::{ConstraintError, MutationError, PaneError, TreeError, ViewportError};
38pub use focus::FocusDirection;
39pub use layout::Layout;
40pub use node::{Node, NodeId, PanelId};
41pub use panel::{Constraints, PanelIdGenerator, fixed, grow};
42pub use preset::{
43 CenteredMaster, Columns, Dashboard, Deck, Dwindle, Grid, HolyGrail, MasterStack, Monocle,
44 PanelInputKind, PresetInfo, Scrollable, Sidebar, Spiral, Split, Stacked, Tabbed,
45};
46pub use rect::Rect;
47pub use resolver::{PanelEntry, ResolvedLayout};
48pub use runtime::Placement;
49pub use sequence::PanelSequence;
50pub use snapshot::{LayoutSnapshot, SnapshotNode, SnapshotSlotDef, SnapshotSource, StrategyConfig};
51pub use strategy::{ActivePanelVariant, Direction, SlotDef, StrategyKind};
52#[cfg(feature = "toml")]
53pub use toml_parse::TomlError;
54pub use tree::{LayoutTree, Position};
55pub use viewport::ViewportState;