JDeps should recognize JavaFX internal API

2015-05-15 Thread Nicolai Parlog
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi! After the great news on JEP253 I wanted to play around with JDeps to identify the dependencies on internal API in, e.g., ControlsFX. Turns out JDeps does not recognize these yet: https://bugs.openjdk.java.net/browse/JDK-8077349 I

Re: slightly ot: java9 runtime images

2015-05-15 Thread Werner Lehmann
Hi Tom, could you do this with File.deleteOnExit? Question is, can it delete jars on its own classpath... Werner On 14.05.2015 08:22, Tom Eugelink wrote: Unfortunately you cannot have the spawned JVM cleanup after itself, otherwise I could stop the initial JVM after it spawned the other.

[8u60, 9] Review request for RT-40778: BMP image fails to load when a specific size is requested

2015-05-15 Thread Vadim Pakhnushev
Jim, Could you please review the fix: https://javafx-jira.kenai.com/browse/RT-40778 http://cr.openjdk.java.net/~vadim/RT-40778/webrev.00/ Thanks, Vadim

Re: Maximum size of a canvas?

2015-05-15 Thread Jeff Hain
Hi. The report can be zoomed in which basically means that I recreate the canvas with a bigger size (the canvas is inside a scrollpane). Instead of creating an eventually (and quadratically) huge canvas, you could try using Canvas.getGraphicsContext().scale(2 double)/translate(2 double), and

In(Sanity) Testing Mondays

2015-05-15 Thread Vadim Pakhnushev
Reminder, Monday is our weekly sanity testing. You can find your testing assignment at: https://wiki.openjdk.java.net/display/OpenJFX/Sanity+Testing Also please remember that the repo will be locked from 1am PDT until 1pm PDT. Happy testing! Thanks, Vadim

Re: Maximum size of a canvas?

2015-05-15 Thread Werner Lehmann
Hi Jeff, interesting idea although I am not sure in which way this improves things. I am already scaling the canvas node if it is bigger than necessary (due to previous zoom, works like supersampling then) or smaller than necessary (if the maximum size is reached but I need to present the

Re: Maximum size of a canvas?

2015-05-15 Thread Jim Graham
The Canvas is simply a texture of the specified dimensions. (We do scale that size by any pixel scale applied to the entire scene, as in Mac retina's 2x scale, but it's size is interpreted in the same coordinate space as the Stage, Scene and the root Node coordinates.) Transform properties

Re: slightly ot: java9 runtime images

2015-05-15 Thread Tom Eugelink
It tried every angle, including tempfile. Problem is that that the initial JVM creates the file, so it can consider it a temp file, for the spawned JVM it is an existing file. Tom On 15-5-2015 12:28, Werner Lehmann wrote: Hi Tom, could you do this with File.deleteOnExit? Question is, can

[8u60,9] review request: RT-39689: Better docs and error checking if Printing or Dialogs called from Animation

2015-05-15 Thread Kevin Rushforth
Phil, Please review the following: https://javafx-jira.kenai.com/browse/RT-39689 http://cr.openjdk.java.net/~kcr/RT-39689/webrev.00/ -- Kevin