SceneBuilder 2.0 import custom components from Jar

2014-06-08 Thread Christian
Hi, I was trying to import controlsfx-5.0.6 and controlsfx-5.0.6_20 into scenebuilder. However only some or few controls could be imported. When using these controls strange effects happen. I was looking into the user guide in order to determine the requirements that have to be met by the compo

Node lookup with TabPane

2014-06-08 Thread Christian
Hi, I'm not sure if this is a bug because it looks like it is designed this way. I just tried to do a TabPane.lookupAll("#myId") which does not return any result. This is because the TabPane doesn't add the Tabs(which are no nodes) to its children. If it would add the content of each pane to the

Re: Node lookup with TabPane

2014-06-08 Thread Jonathan Giles
Christian, There is no reason why this shouldn't work - please file a bug report in our Jira bug tracker and we can take a look at resolving this. Thanks, -- Jonathan On 8/06/2014 8:31 p.m., Christian wrote: Hi, I'm not sure if this is a bug because it looks like it is designed this way. I

Re: SceneBuilder 2.0 import custom components from Jar

2014-06-08 Thread Jonathan Giles
Christian, With my OpenJFX hat on: === ControlsFX-related issues are best discussed on the controlsfx-dev mailing list, which can be accessed (and signed up to) here: http://groups.controlsfx.org Scene Builder is open source - you can access it by cloning the OpenJFX rt r

monitor mouse events but not capture them

2014-06-08 Thread Tom Eugelink
Hi all, Maybe someone has solved this already, so I thought I pop the question. Currently I'm working on CirclePopupMenu; a menu that is supposed to pop up on any place in a scene when a certain (usually the middle or right) mouse button is pressed. Right now CirclePopupMenu requires a stackp

Re: monitor mouse events but not capture them

2014-06-08 Thread Martin Sladecek
Hi Tom, have you tried .addEventFilter() method? It receives the Event before the controls underneath the canvas, in the capturing phase. If you don't consume the Event, it should pass down to the controls. For more on the topic, see http://docs.oracle.com/javafx/2/events/processing.htm or htt

Re: monitor mouse events but not capture them

2014-06-08 Thread Tom Eugelink
Ye. It does not work on the canvas pane, I suspect because of the pickOnBounds, but it does work on the stackpane. Plus, I can register to the stack pane without claiming the onMouseClick/Press hook. Many thanks! Tom On 2014-6-9 8:29, Martin Sladecek wrote: Hi Tom, have you tried .add