layout (cellium v0.1.0)
View SourceThe layout module is responsible for calculating the positions and dimensions of all widgets in the tree.
It supports:
- Absolute Positioning: Widgets can be placed at specific coordinates.
- Relative Positioning: Widgets are laid out according to their container's orientation (vertical/horizontal).
- Centered Positioning: Widgets can be automatically centered on the screen.
- Flexible Sizing: Widgets can have a fixed size or expand to fill available space.
- Padding: Containers can define internal padding that affects child placement.
Summary
Functions
Recursively calculates the layout of a widget and its children.
This function is called internally by calculate_layout/3 and during
the recursive traversal of the tree.
Calculates the layout for a widget tree starting from the root, given specific target dimensions.
Functions
Recursively calculates the layout of a widget and its children.
This function is called internally by calculate_layout/3 and during
the recursive traversal of the tree.
Calculates the layout for a widget tree starting from the root, given specific target dimensions.
Parameters:
Widget: The root widget of the tree to lay out.Width: The total available width for the layout.Height: The total available height for the layout.