![JAR search and dependency download from the Maven repository](/logo.png)
tornadofx.controlsfx.FX.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tornadofx-controlsfx Show documentation
Show all versions of tornadofx-controlsfx Show documentation
TornadoFX integration library for ControlsFX
package tornadofx.controlsfx
import javafx.event.EventTarget
import javafx.scene.Node
import org.controlsfx.control.InfoOverlay
import org.controlsfx.control.SnapshotView
val DEFAULT_CONTROLFX_CHILD_INTERCEPTOR = { parent: EventTarget, node: Node, index: Int? ->
when (parent) {
is SnapshotView -> {
parent.node = node
true
}
is InfoOverlay -> {
parent.run {
this.content = node
this.text
}
true
}
else -> false
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy