Skip to main content

SimpleLayouter

Struct SimpleLayouter 

Source
pub struct SimpleLayouter {
    pub flow_direction: FlowDirection,
}
Expand description

Simple layouter that supports both horizontal (LTR) and vertical flow.

For horizontal flow, advances a cursor left-to-right, emitting a PositionedGlyph for each input glyph and wrapping when the cursor exceeds max_width.

For vertical flow, advances the cursor top-to-bottom using each glyph’s y_advance (falling back to x_advance when y_advance is zero), and wraps into a new column when max_width (treated as max column height) is exceeded.

This is the M1 cursor-advance layouter. For word-aware wrapping with UAX #14 line breaking, alignment, and structured per-line metrics, use LayoutEngine instead (see its crate::engine module docs).

§Example

use oxitext_core::{LayoutConstraints, ShapedGlyph, ShapedRun};
use oxitext_layout::SimpleLayouter;
use std::sync::Arc;

// A run of 5 glyphs, each advancing the cursor by 10px (a real shaper
// would produce this from actual text + a font).
let glyphs: Vec<ShapedGlyph> = (0u32..5)
    .map(|i| ShapedGlyph {
        gid: (i + 1) as u16,
        x_advance: 10.0,
        cluster: i,
        ..Default::default()
    })
    .collect();
let run = ShapedRun {
    glyphs: glyphs.into(),
    font_data: Arc::from(&[][..]),
};

let constraints = LayoutConstraints {
    max_width: 800.0,
    font_size: 16.0,
};
let positioned = SimpleLayouter::new()
    .layout(&[run], &constraints)
    .expect("layout is currently infallible");

assert_eq!(positioned.len(), 5);
// Cursor advances left-to-right within the (wide) max_width.
for pair in positioned.windows(2) {
    assert!(pair[1].pos.0 > pair[0].pos.0);
}

Fields§

§flow_direction: FlowDirection

Text flow direction for this layouter instance.

Implementations§

Source§

impl SimpleLayouter

Source

pub fn new() -> Self

Creates a new layouter with horizontal flow (the default).

Source

pub fn with_flow_direction(self, dir: FlowDirection) -> Self

Returns a copy of this layouter with the given flow direction.

Source

pub fn layout( &self, runs: &[ShapedRun], constraints: &LayoutConstraints, ) -> Result<Vec<PositionedGlyph>, OxiTextError>

Positions glyphs from the shaped runs according to constraints.

Dispatches to Self::layout_horizontal or Self::layout_vertical based on Self::flow_direction.

§Errors

Currently infallible; returns Err only for forward compatibility.

Trait Implementations§

Source§

impl Default for SimpleLayouter

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.