All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tornadofx.controlsfx.FX.kt Maven / Gradle / Ivy

There is a newer version: 0.1.1
Show newest version
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