Package-level declarations

Types

Link copied to clipboard

Provides a text frame that is constrained by character limit.

Link copied to clipboard
data class CharacterPosition(val character: Char, val column: Int, val row: Int)

Defines the position of a Char in 2D space, with a specified column and row.

Link copied to clipboard

Provides a text frame that is constrained by size, in pixels.

Link copied to clipboard
fun interface TextFrame

Defines an interface for frames of text.

Link copied to clipboard
data class TextFrameParameters(val widthConstraint: Int, val availableLines: Int, val font: Font = DEFAULT_FONT)

Defines parameters for a text frames.