diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-03-19 17:57:31 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-03-19 17:57:31 +0100 |
| commit | 264a7dedd42e27cd9e604037640cf0594b2ec46b (patch) | |
| tree | d26feea399d54bb86bd44878f40293983bf5251d /src/layout/par.rs | |
| parent | ca3df70e2a5069832d7d2135967674c34a155442 (diff) | |
Scheduled maintenance 🔨
- New naming scheme
- TextNode instead of NodeText
- CallExpr instead of ExprCall
- ...
- Less glob imports
- Removes Value::Args variant
- Removes prelude
- Renames Layouted to Fragment
- Moves font into env
- Moves shaping into layout
- Moves frame into separate module
Diffstat (limited to 'src/layout/par.rs')
| -rw-r--r-- | src/layout/par.rs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/layout/par.rs b/src/layout/par.rs index 8e8f5aac..e9fda015 100644 --- a/src/layout/par.rs +++ b/src/layout/par.rs @@ -2,7 +2,7 @@ use super::*; /// A node that arranges its children into a paragraph. #[derive(Debug, Clone, PartialEq)] -pub struct NodePar { +pub struct ParNode { /// The `main` and `cross` directions of this paragraph. /// /// The children are placed in lines along the `cross` direction. The lines @@ -16,28 +16,28 @@ pub struct NodePar { pub children: Vec<Node>, } -impl Layout for NodePar { - fn layout(&self, ctx: &mut LayoutContext, areas: &Areas) -> Layouted { +impl Layout for ParNode { + fn layout(&self, ctx: &mut LayoutContext, areas: &Areas) -> Fragment { let mut layouter = ParLayouter::new(self, areas.clone()); for child in &self.children { match child.layout(ctx, &layouter.areas) { - Layouted::Spacing(spacing) => layouter.push_spacing(spacing), - Layouted::Frame(frame, aligns) => { + Fragment::Spacing(spacing) => layouter.push_spacing(spacing), + Fragment::Frame(frame, aligns) => { layouter.push_frame(frame, aligns.cross) } - Layouted::Frames(frames, aligns) => { + Fragment::Frames(frames, aligns) => { for frame in frames { layouter.push_frame(frame, aligns.cross); } } } } - Layouted::Frames(layouter.finish(), self.aligns) + Fragment::Frames(layouter.finish(), self.aligns) } } -impl From<NodePar> for NodeAny { - fn from(par: NodePar) -> Self { +impl From<ParNode> for AnyNode { + fn from(par: ParNode) -> Self { Self::new(par) } } @@ -57,7 +57,7 @@ struct ParLayouter { } impl ParLayouter { - fn new(par: &NodePar, areas: Areas) -> Self { + fn new(par: &ParNode, areas: Areas) -> Self { Self { main: par.dirs.main.axis(), cross: par.dirs.cross.axis(), |
