summaryrefslogtreecommitdiff
path: root/src/layout/tree.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2019-10-17 09:28:06 +0200
committerLaurenz <laurmaedje@gmail.com>2019-10-17 09:28:06 +0200
commit9a1d57a11a510b8e6af024b4338ee58d791f3088 (patch)
tree5f28224b68b69c3db1365f75613b85798da0b1f7 /src/layout/tree.rs
parente87a34a4d0bf967427e2443f9f48026d09ccd5db (diff)
Implement context-modifying align 🧩
Diffstat (limited to 'src/layout/tree.rs')
-rw-r--r--src/layout/tree.rs112
1 files changed, 69 insertions, 43 deletions
diff --git a/src/layout/tree.rs b/src/layout/tree.rs
index a1918ded..d125bc84 100644
--- a/src/layout/tree.rs
+++ b/src/layout/tree.rs
@@ -12,6 +12,8 @@ struct TreeLayouter<'a, 'p> {
stack: StackLayouter,
flex: FlexLayouter,
style: Cow<'a, TextStyle>,
+ alignment: Alignment,
+ set_newline: bool,
}
impl<'a, 'p> TreeLayouter<'a, 'p> {
@@ -27,6 +29,8 @@ impl<'a, 'p> TreeLayouter<'a, 'p> {
.. FlexContext::from_layout_ctx(ctx, flex_spacing(&ctx.style))
}),
style: Cow::Borrowed(ctx.style),
+ alignment: ctx.alignment,
+ set_newline: false,
}
}
@@ -34,22 +38,28 @@ impl<'a, 'p> TreeLayouter<'a, 'p> {
fn layout(&mut self, tree: &SyntaxTree) -> LayoutResult<()> {
for node in &tree.nodes {
match node {
- Node::Text(text) => self.layout_text(text, false)?,
+ Node::Text(text) => {
+ let layout = self.layout_text(text)?;
+ self.flex.add(layout);
+ self.set_newline = true;
+ }
Node::Space => {
// Only add a space if there was any content before.
if !self.flex.is_empty() {
- self.layout_text(" ", true)?;
+ let layout = self.layout_text(" ")?;
+ self.flex.add_glue(layout.dimensions);
}
}
// Finish the current flex layouting process.
Node::Newline => {
- self.layout_flex()?;
+ self.finish_flex()?;
- if !self.stack.current_space_is_empty() {
+ if self.set_newline {
let space = paragraph_spacing(&self.style);
self.stack.add_space(space)?;
+ self.set_newline = false;
}
self.start_new_flex();
@@ -69,31 +79,73 @@ impl<'a, 'p> TreeLayouter<'a, 'p> {
/// Finish the layout.
fn finish(mut self) -> LayoutResult<MultiLayout> {
- self.layout_flex()?;
+ self.finish_flex()?;
self.stack.finish()
}
+ /// Layout a function.
+ fn layout_func(&mut self, func: &FuncCall) -> LayoutResult<()> {
+ let mut ctx = self.ctx;
+ ctx.style = &self.style;
+ ctx.shrink_to_fit = true;
+
+ ctx.space.dimensions = self.stack.remaining();
+ ctx.space.padding = SizeBox::zero();
+
+ if let Some(space) = ctx.followup_spaces.as_mut() {
+ *space = space.usable_space();
+ }
+
+ let commands = func.body.layout(ctx)?;
+
+ for command in commands {
+ match command {
+ Command::Layout(tree) => {
+ self.layout(tree)?;
+ }
+
+ Command::Add(layout) => {
+ self.finish_flex()?;
+ self.stack.add(layout)?;
+ self.set_newline = true;
+ self.start_new_flex();
+ }
+
+ Command::AddMany(layouts) => {
+ self.finish_flex()?;
+ self.stack.add_many(layouts)?;
+ self.set_newline = true;
+ self.start_new_flex();
+ }
+
+ Command::SetAlignment(alignment) => {
+ self.finish_flex()?;
+ self.alignment = alignment;
+ self.start_new_flex();
+ }
+
+ Command::SetStyle(style) => {
+ *self.style.to_mut() = style;
+ }
+ }
+ }
+
+ Ok(())
+ }
+
/// Add text to the flex layout. If `glue` is true, the text will be a glue
/// part in the flex layouter. For details, see [`FlexLayouter`].
- fn layout_text(&mut self, text: &str, glue: bool) -> LayoutResult<()> {
+ fn layout_text(&mut self, text: &str) -> LayoutResult<Layout> {
let ctx = TextContext {
loader: &self.ctx.loader,
style: &self.style,
};
- let layout = layout_text(text, ctx)?;
-
- if glue {
- self.flex.add_glue(layout);
- } else {
- self.flex.add(layout);
- }
-
- Ok(())
+ layout_text(text, ctx)
}
/// Finish the current flex layout and add it the stack.
- fn layout_flex(&mut self) -> LayoutResult<()> {
+ fn finish_flex(&mut self) -> LayoutResult<()> {
if self.flex.is_empty() {
return Ok(());
}
@@ -108,37 +160,11 @@ impl<'a, 'p> TreeLayouter<'a, 'p> {
fn start_new_flex(&mut self) {
let mut ctx = self.flex.ctx();
ctx.space.dimensions = self.stack.remaining();
+ ctx.alignment = self.alignment;
ctx.flex_spacing = flex_spacing(&self.style);
self.flex = FlexLayouter::new(ctx);
}
-
- /// Layout a function.
- fn layout_func(&mut self, func: &FuncCall) -> LayoutResult<()> {
- let mut ctx = self.ctx;
- ctx.style = &self.style;
- ctx.shrink_to_fit = true;
-
- ctx.space.dimensions = self.stack.remaining();
- ctx.space.padding = SizeBox::zero();
-
- if let Some(space) = ctx.followup_spaces.as_mut() {
- *space = space.usable_space();
- }
-
- let commands = func.body.layout(ctx)?;
-
- for command in commands {
- match command {
- Command::Layout(tree) => self.layout(tree)?,
- Command::Add(layout) => self.stack.add(layout)?,
- Command::AddMany(layouts) => self.stack.add_many(layouts)?,
- Command::ToggleStyleClass(class) => self.style.to_mut().toggle_class(class),
- }
- }
-
- Ok(())
- }
}
fn flex_spacing(style: &TextStyle) -> Size {