How can i determine the stage/window insets in JavaFX? In Swing i could simple write:
JFrame frame = new JFrame();
Insets insets = frame.getInsets();
What would be the equivalent in JavaFX to get the size of the border and the titlebar of the window?
You can determine these by looking at the bounds of the scene relative to the width and height of the window.
Given a
Scene scene;
,scene.getX()
andscene.getY()
give the x and y coordinates of theScene
within the window. These are equivalent to the left and top insets, respectively.The right and bottom are slightly trickier, but
gives the right insets, and similarly
gives the bottom insets.
These values will of course only make sense once the scene is placed in a window and the window is visible on the screen.
If you really want an
Insets
object you can do something like the following (which would even stay valid if the border or title bar changed size after the window was displayed):