Re: Unit testing recommendations for JavaFX

2015-03-30 Thread ngalarneau
TestFX is nice. Another option is QF-Test. Neil From: Benjamin Gudehus hasteb...@gmail.com To: Tom Eugelink t...@tbee.org, Cc: openjfx-dev@openjdk.java.net openjfx-dev@openjdk.java.net Date: 03/30/2015 08:29 AM Subject:Re: Unit testing recommendations for JavaFX Sent by:

Re: libjfxmedia.so on armv6hf?

2015-03-17 Thread ngalarneau
Thank you, David, for explaining all that is involved to us desktop-types. :-) Neil From: David Hill david.h...@oracle.com To: openjfx-dev@openjdk.java.net, Date: 03/17/2015 02:40 PM Subject:Re: libjfxmedia.so on armv6hf? Sent by:openjfx-dev

Re: QML vs. FXML

2015-03-05 Thread ngalarneau
Or GroovyFX From: Werner Lehmann lehm...@media-interactive.de To: openjfx-dev@openjdk.java.net, Date: 03/05/2015 10:56 AM Subject:Re: QML vs. FXML Sent by:openjfx-dev openjfx-dev-boun...@openjdk.java.net Like this? http://wiki.eclipse.org/Efxclipse/Tooling/FXGraph

QML vs. FXML

2015-03-05 Thread ngalarneau
Doug, You said: good declarative UI language, think QML not FXML. What do you see as the advantages of QML over FXML? Neil From: Doug Schaefer dschae...@qnx.com To: openjfx-dev@openjdk.java.net openjfx-dev@openjdk.java.net, Date: 03/05/2015 10:00 AM Subject:Re: 8u40 is

Re: 8u40 is released

2015-03-04 Thread ngalarneau
Hurray! Thank you all for the good work. Do you know when the corresponding Scene Builder release will be? It would be great to get support for the new widgets. Also, the Scene Builder download page warns against using 2.0 for security reasons. Neil From: Kevin Rushforth

Can a Button refuse focus?

2014-11-07 Thread ngalarneau
Can a control in JavaFX refuse focus? Often you don't want buttons in a toolbar to receive focus. Although the ToolBar javadoc states that focusTraversable is set to false, in Ensemble8, the buttons in the toolbar both are in the focus traversal cycle receive focus when clicked on. In this

Re: Can a Button refuse focus?

2014-11-07 Thread ngalarneau
To be clear, the blog writer did the best he could acknowledged that the approach he was forced to take was fragile incomplete. Neil From: ngalarn...@abinitio.com To: openjfx-dev@openjdk.java.net, Date: 11/07/2014 09:01 AM Subject:Can a Button refuse focus? Sent by:

Re: Questions about Platform.runLater() and Application.start()

2014-11-05 Thread ngalarneau
Steve, Thank you for that important addition. Is it true that this, also, is not a special case? In other words, is this how it works? - the input queue contains both Events and Runnables (from runLater() and the first one containing a call to Application.start()) - one item is processed

Re: Initial positioning of Dialog

2014-11-03 Thread ngalarneau
Scott, When you say it works for you, which java are you running? - Java 8 (1.8u25) with openjfx-dialogs-1.0.2 like Pete - Java 8 update 40 pre-release - something else? Using the released 8u25 with openjfx-dialogs-1.0.2 I, too, have seen the dialog pop on the wrong display. Neil

Questions about Platform.runLater() and Application.start()

2014-11-03 Thread ngalarneau
Hello, Is there documentation that describes somewhere how Platform.runLater() Application.start() interact? My impression is that (roughly speaking): - there is an EventQueue (to use the Swing terminology). - the EventQueue holds both UI events (like mouse click) as well as the Runnables

Latest Scene Builder release?

2014-10-23 Thread ngalarneau
What is the latest Scene Builder release? The latest I've seen is at: http://www.oracle.com/technetwork/java/javase/downloads/sb2download-216.html Unfortunately, that version is from March therefore doesn't have support for the new stuff from the August Java 8 Update 20 release. Is there

Re: 8u40 9 CSS issues

2014-10-10 Thread ngalarneau
If the FX bugs move to that JIRA, it sounds like it will be a lot harder to file comment on bugs. IIRC, only Authors (people who have signed the Oracle Contributor Agreement?) can get a JIRA account there. Neil From: Kevin Rushforth kevin.rushfo...@oracle.com To: Stephen F

JavaFX 8u20 fixes aren't in the bug fixes table

2014-08-20 Thread ngalarneau
Hello, The list of bug fixes in 8u20 ( http://www.oracle.com/technetwork/java/javase/2col/8u20-bugfixes-2257730.html ) doesn't list the JavaFX fixes. What does that mean? Did those fixes actually get released? Neil NOTICE from Ab Initio: This email (including any attachments) may contain

Re: Only 1 GUI thread dialogs (was Re: 2 JavaFX applets in the same JVM)

2014-07-09 Thread ngalarneau
Curiously the redirect happens to me in Chrome Firefox, but not in IE. Using Chrome's debugger I can see that it reaches the real site, gets an http 200 (not a redirect) from it then goes to the xmission site. Unfortunately chrome doesn't show me why it does so. Oh well, at least I can read

2 JavaFX applets in the same JVM

2014-07-08 Thread ngalarneau
Hello, What is the status of running 2 JavaFX applets in the same JVM (separate_jvm = false)? When we try to load 2 applets into the same JVM we get a runtime error (I think it was class loader related). When I searched in jira I found RT-29969 (the 2 applet test it refers to may or may not

Re: 2 JavaFX applets in the same JVM

2014-07-08 Thread ngalarneau
Gentlemen, Thank you for the informative replies. My understanding with plugin2 and Swing back in Java 6 was that as long as the jvm parameters for each applet were the same, 2 applets on the same html page could share the jvm. I can see, however, that JavaFX running in the native GUI thread

Only 1 GUI thread dialogs (was Re: 2 JavaFX applets in the same JVM)

2014-07-08 Thread ngalarneau
Hi Steve, My understanding of Swing was that when in a modal dialog, which blocked the EDT, a second EDT was fired up for the duration of the dialog to keep the events flowing. When you say, below, that only 1 GUI thread is supported (and that thread is the native GUI thread), how are (will?)

Re: All-Permissions not working properly with sun.plugin2.applet.FXAppletSecurityManager

2014-06-16 Thread ngalarneau
Also, because I can't login, I can't add a comment to the bug report. I am also getting a security exception even though my applet is signed has all permissions. In this case it is happening on a call to getClassLoader() on the JavaFX thread (not a daemon thread): Exception in thread JavaFX

Re: All-Permissions not working properly with sun.plugin2.applet.FXAppletSecurityManager

2014-06-16 Thread ngalarneau
I will see if I can get permission to send you the program. I believe all of my jars are signed with the same certificate. What is the best way to verify that? Thanks Kevin, Neil From: Kevin Rushforth kevin.rushfo...@oracle.com To: ngalarn...@abinitio.com, Cc: Scott Palmer

Re: All-Permissions not working properly with sun.plugin2.applet.FXAppletSecurityManager

2014-06-16 Thread ngalarneau
Thank you David. Interesting. Output from my gradle build (which uses the shemnon javafx-plugin) looks like this: ... :classes :jar :jfxJar :jfxSignJar Signing (BLOB) C:\Users\ngalarneau\.gradle\caches\3rdpartylibrary.jar Signed as C:\directory\to\3rdpartylibrary.jar Signing (BLOB) C:\our\test

Re: Layout regression

2014-05-23 Thread ngalarneau
How can we be notified of exceptions like these programmatically? When my code is on the call stack, I can catch the exception programmatically. In this stack trace, only JavaFX code is there, but I still want to know that something bad happened. For the case of the JavaFX Application Thread,

Re: How to force pixels to hit the screen?

2014-05-20 Thread ngalarneau
Kevin, What if the splash screen was drawn in the start() method and then the rest of the start up code (including the FXML Loader stuff) was run from Platform.runLater()? Would that runLater() code always run after the splash image was finished being rendered? How does the code in

Re: Fractional Metrics

2014-04-04 Thread ngalarneau
I'm sorry if this is redundant, but does this mean there is no way to find out the size (length height) of a String as it will appear on the screen? What about the size of a String as it will be printed? Neil From: Phil Race philip.r...@oracle.com To: Jeff Martin

Re: Congratulations

2014-03-19 Thread ngalarneau
Congratulations and Thank You to all of the JavaFX folks! Richard, in one of your Java One talks you spoke about opening up the OpenJFX project further. Will there be discussions on the list as to what is coming next? Thanks, Neil From: Richard Bair richard.b...@oracle.com To:

What behavior differences should I expect in an Application versus an Applet with 'All Permissions'?

2014-02-04 Thread ngalarneau
Hello, I have a JavaFX Application that runs fine. When I package it as an Applet (three cheers for javafxpackager!), and give that Applet All Permissions, the Applet throws exceptions and fails to start. One difference is in fields initialized by FXMLLoader. When those fields have default

Re: Scene Builder support for read-only Map Properties

2014-01-29 Thread ngalarneau
Hi Yves, Thank you for filing that issue. I have updated it. Here is a suggestion for #2: Editing of these properties could be done in a way similar to the editing of Styles. Styles (in the JavaFX CSS section of the Properties accordion on the right side of Scene Builder) are edited with (I

Scene Builder support for read-only Map Properties

2014-01-28 Thread ngalarneau
Hello, When I use the read-only Map Property FXML syntax (described here: http://docs.oracle.com/javafx/2/api/javafx/fxml/doc-files/introduction_to_fxml.html#read_only_map_property_elements ), it seems to work, but causes the latest Scene Builder (2.0-b11) to not start. 2 questions: 1) Will

Re: Reloading stylesheets

2013-12-11 Thread ngalarneau
Hi David, I have stylesheet SWITCHING working fine. I can switch between 2 different stylesheets on disk without tearing down rebuilding my Scene. To do this I simply do: scene.stylesheets.clear() scene.stylesheets.add(differentStylesheet) and the changes show up immediately

How to report RT-30362 regressing on b114?

2013-11-20 Thread ngalarneau
Hello, How do I report a regression? It looks to me like RT-32636/RT-30362 has regressed on b114. On Win7, my JavaFX app ScenicView DP4, both running Java8 b114 have mostly black screens when coming out of Screen Lock. SceneBuilder, which reports it is running b113, looks fine. What is the

Re: How to report RT-30362 regressing on b114?

2013-11-20 Thread ngalarneau
I have filed https://javafx-jira.kenai.com/browse/RT-34410 Kevin, In the Description, I listed RT-32636 RT-303632 as in my email below. JIRA has turned those into links to those issues. Is that the kind of link you mean? If not, how do I add the links? Thanks, Neil From: Kevin

Re: How to report RT-30362 regressing on b114?

2013-11-20 Thread ngalarneau
Kevin, I checked under More Actions. The only options there are Create Sub-Task, Convert to Sub-Task, Clone, and Labels. I don't see a Link action. Neil From: Kevin Rushforth kevin.rushfo...@oracle.com To: ngalarn...@abinitio.com Cc: openjfx-dev@openjdk.java.net Date: