Package-level declarations
Types
Link copied to clipboard
class BitmapFont(val identifier: FontIdentifier, val texture: Texture, val glyphDataMap: Map<Char, BitmapGlyphData?>, val height: Float, val ascent: Float, val descent: Float, val top: Float, val bottom: Float, val italicInverseSlope: Float) : Font
Link copied to clipboard
interface BitmapFontBuilder
Link copied to clipboard
data class BitmapGlyphData(val left: Float, val baseline: Float, val width: Float, val advance: Float)
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
class FindAndReplace
Performs find/replace on a StyledTextArea.
Link copied to clipboard
Actions used by FindAndReplace
Link copied to clipboard
Link copied to clipboard
data class FontIdentifier(val family: String, val size: Float, val style: FontStyle = FontStyle.PLAIN)
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
interface Highlight
Highlights a piece of Text within a StyledTextDocument.
Link copied to clipboard
open class HighlightRange(val from: TextPosition, val to: TextPosition, val highlight: Highlight, val owner: Any? = null)
Link copied to clipboard
interface Indentation
Determines how TextArea and StyledTextArea should display leading tab and space characters, and the behaviour when the tab key is pressed.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
class PairedHighlightRange(start: TextPosition, end: TextPosition, highlight: Highlight, owner: Any? = null, other: PairedHighlightRange?) : HighlightRange
A HighlightRange, which is part of a matched pair, for example, an opening and closing bracket.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
A Change for the HistoryDocuments (used by TextFields).
Link copied to clipboard
The HistoryDocument used by TextField.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
A Change for TextDocuments (used by TextAreas and StyledTextAreas).
Link copied to clipboard
The HistoryDocument used by TextArea. The document is stored as a List of String, where each String must NOT include new line character.
Link copied to clipboard
Link copied to clipboard
Applies a Theme rule (using Node.styles) to the highlighted Text.