ClassResizableTextField
Functions
Link copied to clipboard
Link copied to clipboard
open fun <T : Any> foldChildren(initial: T, @NotNull visitor: @NotNull BiFunction<@NotNull GuiComponent, T, T>): T
Walk over the direct children of this element. A gui element that composites other gui elements should override this method. By default, the initial element is returned without change.
Link copied to clipboard
fun <T : Any> foldRecursive(initial: T, @NotNull visitor: @NotNull BiFunction<@NotNull GuiComponent, T, T>): T
Walk the scene tree of this gui element, including children of children. By default, the visitor is called with only this element.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
This method is called by the gui context when an element gains focus. This does only get called if this element specifically is being focused.
Link copied to clipboard
This method is called by the gui context when an element loses focus. This does only get called if this element specifically was focused.
Link copied to clipboard
Link copied to clipboard
Call this method to request focus in the current gui context.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard