Tooltip

interface Tooltip

When the mouse remains still for a short period of time over a Node with a tooltip, the tooltip is displayed as a POPUP.

Unlike JavaFX, Tooltip is not a GUI element, it holds a description of the tooltip, and must build the POPUP when required.

TextTooltip is a simple implementation (and currently the only implementation). However, you are free to create your own implementation(s).

Inheritors

Functions

Link copied to clipboard
abstract fun show(node: Node, mouseX: Float, mouseY: Float): Stage?