-
Notifications
You must be signed in to change notification settings - Fork 237
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding components to Node created by GraphicFactory #274
Comments
It does seem odd that it's not updating your graphic automatically.. Which object's Pane pane = // the root pane of your graphic factory;
Parent paragraphBox = pane.getParent();
paragraphBox.layout(); // or one of the other layout methods... |
The "paragraph graphic" node is (re-)created (i.e. the factory's
I wonder how you do this. Where do you get the reference to the mentioned The above are the only cases when the factory is invoked to create a new graphic node. If you need to update existing graphic node in circumstances other than above, the created node will have to register a listener to an appropriate event. It is also its responsibility to unregister such a listener once it is removed from the scene. An example of such case, including taking care of clean-up, can be found here. |
@JordanMartinez: I was calling requestLayout() and layout() on the @TomasMikula: Ok so I'll describe how I add a
Now inside the
When I hope I've clarified my issue. Please let me know if you can reproduce it or at least provide some sort of guidance. Thank you. |
That indeed sounds like the node you are trying to force layout on is indeed not part of the scene. What is the Also, if you don't take care of removing that listener, you will get a memory/cpu leak. (The |
@TomasMikula Sorry for the late reply. Been away for a week.
Hmm but the
Understood, it's an issue I want to deal with once I've dealt with this rendering issue. Do you have any suggestions? |
It is hard to tell from this description. Can you provide a simple self-contained example? |
@TomasMikula I created a sample application for you to see the issue, however, it didn't produce the same issues, and the labels were being added correctly. So it was definitely something that I was doing. The observable I was passing was being garbage collected and hence the listener wasn't even firing in the first place. Sorry to bother you and thanks for your time in trying to help me resolve it. |
Hi Tomas,
I'm creating a custom graphic factory much more complicated than your LineNumberFactory example, in that rather than just create a Label, it creates a Pane which contains Labels and HBoxes etc.
Throughout the life of the application, the user can perform certain actions on each line, and one of these actions requires the addition of new components into the Pane aforementioned above.
The scenario is: the user right clicks on a line and chooses an action from the displayed context menu. The action attempts to add a Label to the HBox within the Pane, however 50% of the time (possibly even less) the Label does not get rendered. What I found was that I needed to resize the height of the codearea so that it was compressed small enough so that the Pane in question was being hidden, and it was only when I then expanded it back out (making the Pane visible again) that the apply() method within the graphic factory was fired, and hence the Label was then properly rendered.
I must note that the action in question did not involve removing or adding new lines. I've tried calling requestLayout() and layout()/layoutChildren() after adding the Label but that doesn't seem to implicitly call the apply() method.
Could you please help me in this matter? I don't understand why most of the time the Label isn't displayed immediately. Any help would be greatly appreciated. Thanks.
The text was updated successfully, but these errors were encountered: