-
Enhancement
-
Resolution: Unresolved
-
P4
-
fx2.0
-
win7 build32 32bits
JFXPanel is a great component for mixing both Swing and JFX. I'm currently working on a POC mixing my existing swing app and JFX component as "overlay" on top this app.
Everything works fine, except if I would like to receive events (mouse....) on the swing layer if the nodes in the JFXPanel do not consume them.
. Should be possible for the JFXPanel to be less opaque by retargetting events if not consumed by the nodes in the scene?
. Or, add a programmatic way by adding a method to the JFXPanel, in order to know if there is a node under a given coordinates?
-> boolean node = JFXPanel.hit(double mouseX, double mouseY)
Currently, I've overrided JFXPanel, added a mouseListener which retarget events to the swing layer. But all events are retargeted, even if "consumed" by a JFX node.
Thanks.
Everything works fine, except if I would like to receive events (mouse....) on the swing layer if the nodes in the JFXPanel do not consume them.
. Should be possible for the JFXPanel to be less opaque by retargetting events if not consumed by the nodes in the scene?
. Or, add a programmatic way by adding a method to the JFXPanel, in order to know if there is a node under a given coordinates?
-> boolean node = JFXPanel.hit(double mouseX, double mouseY)
Currently, I've overrided JFXPanel, added a mouseListener which retarget events to the swing layer. But all events are retargeted, even if "consumed" by a JFX node.
Thanks.