diff options
| author | Laurenz <laurmaedje@gmail.com> | 2019-10-22 21:40:37 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2019-10-22 21:40:37 +0200 |
| commit | cff325b520727ac0eec46a3757831afaa0916cc1 (patch) | |
| tree | 18cef7a7880fef41050678ab479818e0abb91f14 /src | |
| parent | 991e879e1d2ed53125dbff4edba80804ff28f2a9 (diff) | |
Add spacing functions 🔛
Diffstat (limited to 'src')
| -rw-r--r-- | src/func.rs | 1 | ||||
| -rw-r--r-- | src/layout/mod.rs | 9 | ||||
| -rw-r--r-- | src/layout/tree.rs | 2 | ||||
| -rw-r--r-- | src/library/mod.rs | 12 | ||||
| -rw-r--r-- | src/library/spacing.rs | 76 | ||||
| -rw-r--r-- | src/parsing/mod.rs | 4 |
6 files changed, 100 insertions, 4 deletions
diff --git a/src/func.rs b/src/func.rs index 7925af2d..05bbe83d 100644 --- a/src/func.rs +++ b/src/func.rs @@ -116,6 +116,7 @@ pub enum Command<'a> { Layout(&'a SyntaxTree), Add(Layout), AddMany(MultiLayout), + AddFlex(Layout), SetAlignment(Alignment), SetStyle(TextStyle), FinishLayout, diff --git a/src/layout/mod.rs b/src/layout/mod.rs index 470ac3ba..34c9b35a 100644 --- a/src/layout/mod.rs +++ b/src/layout/mod.rs @@ -40,6 +40,15 @@ pub struct Layout { } impl Layout { + /// Create an empty layout with the specified dimensions. + pub fn empty(width: Size, height: Size) -> Layout { + Layout { + dimensions: Size2D::new(width, height), + actions: vec![], + debug_render: true, + } + } + /// Serialize this layout into an output buffer. pub fn serialize<W: Write>(&self, f: &mut W) -> io::Result<()> { writeln!( diff --git a/src/layout/tree.rs b/src/layout/tree.rs index 3a58115f..a0cb1434 100644 --- a/src/layout/tree.rs +++ b/src/layout/tree.rs @@ -124,6 +124,8 @@ impl<'a, 'p> TreeLayouter<'a, 'p> { self.start_new_flex(); } + Command::AddFlex(layout) => self.flex.add(layout), + Command::SetAlignment(alignment) => { self.finish_flex()?; self.alignment = alignment; diff --git a/src/library/mod.rs b/src/library/mod.rs index d0c987a4..784ef204 100644 --- a/src/library/mod.rs +++ b/src/library/mod.rs @@ -5,6 +5,7 @@ use crate::func::Scope; mod align; mod boxed; mod breaks; +mod spacing; mod styles; /// Useful imports for creating your own functions. @@ -20,6 +21,7 @@ pub mod prelude { pub use align::AlignFunc; pub use boxed::BoxFunc; pub use breaks::{LinebreakFunc, PagebreakFunc}; +pub use spacing::{HorizontalSpaceFunc, VerticalSpaceFunc}; pub use styles::{BoldFunc, ItalicFunc, MonospaceFunc}; /// Create a scope with all standard functions. @@ -27,15 +29,21 @@ pub fn std() -> Scope { let mut std = Scope::new(); std.add::<AlignFunc>("align"); std.add::<BoxFunc>("box"); - std.add::<LinebreakFunc>("linebreak"); + + std.add::<LinebreakFunc>("line.break"); std.add::<LinebreakFunc>("n"); - std.add::<PagebreakFunc>("pagebreak"); + std.add::<PagebreakFunc>("page.break"); + + std.add::<HorizontalSpaceFunc>("h"); + std.add::<VerticalSpaceFunc>("v"); + std.add::<BoldFunc>("bold"); std.add::<ItalicFunc>("italic"); std.add::<MonospaceFunc>("mono"); std } +/// Helpers for writing custom functions. pub mod helpers { use super::prelude::*; diff --git a/src/library/spacing.rs b/src/library/spacing.rs new file mode 100644 index 00000000..91288edc --- /dev/null +++ b/src/library/spacing.rs @@ -0,0 +1,76 @@ +use std::marker::PhantomData; +use super::prelude::*; +use crate::size::Size; + +/// Adds vertical space. +pub type VerticalSpaceFunc = SpaceFunc<SpaceVertical>; + +/// Adds horizontal space. +pub type HorizontalSpaceFunc = SpaceFunc<SpaceHorizontal>; + +/// Adds generic space. +#[derive(Debug, PartialEq)] +pub struct SpaceFunc<F: SpaceFlow> { + spacing: Spacing, + _phantom: PhantomData<F>, +} + +/// Absolute or font-relative spacing. +#[derive(Debug, PartialEq)] +enum Spacing { + Absolute(Size), + Relative(f32), +} + +impl<F: SpaceFlow> Function for SpaceFunc<F> { + fn parse(header: &FuncHeader, body: Option<&str>, _: ParseContext) -> ParseResult<Self> + where Self: Sized { + if header.args.len() != 1 || !header.kwargs.is_empty() { + return err("align: expected exactly one positional argument"); + } + + let spacing = match header.args[0] { + Expression::Size(s) => Spacing::Absolute(s), + Expression::Number(f) => Spacing::Relative(f as f32), + _ => return err("space: expected size or number"), + }; + + if body.is_some() { + return err("space: expected no body"); + } + + Ok(SpaceFunc { + spacing, + _phantom: PhantomData, + }) + } + + fn layout(&self, ctx: LayoutContext) -> LayoutResult<CommandList> { + let space = match self.spacing { + Spacing::Absolute(s) => s, + Spacing::Relative(f) => Size::pt(f * ctx.style.font_size), + }; + + Ok(commands![F::cmd(space)]) + } +} + +pub trait SpaceFlow: std::fmt::Debug + PartialEq + 'static { + fn cmd(space: Size) -> Command<'static>; +} + +#[derive(Debug, PartialEq)] +pub struct SpaceVertical; +impl SpaceFlow for SpaceVertical { + fn cmd(space: Size) -> Command<'static> { + Command::Add(Layout::empty(Size::zero(), space)) + } +} + +#[derive(Debug, PartialEq)] +pub struct SpaceHorizontal; +impl SpaceFlow for SpaceHorizontal { + fn cmd(space: Size) -> Command<'static> { + Command::AddFlex(Layout::empty(space, Size::zero())) + } +} diff --git a/src/parsing/mod.rs b/src/parsing/mod.rs index cd886fb4..36920595 100644 --- a/src/parsing/mod.rs +++ b/src/parsing/mod.rs @@ -404,13 +404,13 @@ fn is_identifier(string: &str) -> bool { let mut chars = string.chars(); match chars.next() { - Some(c) if !UnicodeXID::is_xid_start(c) => return false, + Some(c) if c != '.' && !UnicodeXID::is_xid_start(c) => return false, None => return false, _ => (), } while let Some(c) = chars.next() { - if !UnicodeXID::is_xid_continue(c) { + if c != '.' && !UnicodeXID::is_xid_continue(c) { return false; } } |
