hg: openjfx/8u-dev/rt: RT-37303 Intermittent test failure in SimpleMouseTest

2014-05-28 Thread hang . vo
Changeset: 799e04084e72 Author:Daniel Blaukopf daniel.blauk...@oracle.com Date: 2014-05-28 11:31 +0300 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/799e04084e72 RT-37303 Intermittent test failure in SimpleMouseTest !

CSS vs API modifications in *View classes

2014-05-28 Thread Tom Schindl
Hi, All views in JavaFX are virtual and the Cell instances are reused but this brings with it the problem that if you once modified a CSS styleable value (e.g. the textfill, font, ...) you are unable to return to a state where a CSS could be applied. I think Cell needs to provide reset methods

Label prefHeight vs wrapText

2014-05-28 Thread Werner Lehmann
Hi, I am stumped. With a label and wrapText=true I am not getting wrapped text when I think I should. Consider this scene (code at bottom): VBox - Label, long text, wrapText=true - ListView, prefHeight=1000 (too big to fit) This will not wrap the label text. The VBox gives all room to

hg: openjfx/8u-dev/rt: Fix for RT-37085 [Monocle] FX crash on ODROID U3

2014-05-28 Thread hang . vo
Changeset: ff8eb4ea1dbd Author:lisa.se...@oracle.com Date: 2014-05-28 09:43 -0400 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/ff8eb4ea1dbd Fix for RT-37085 [Monocle] FX crash on ODROID U3 Reviewed by dblaukopf. Tested with HelloSanity. !

Re: Building WebKit natives with debug symbols on 32 bit Linux

2014-05-28 Thread Peter Levart
Hi Again, The idea that comes to my mind is the following: would it be possible to cross-compile the openjfx on the 64 bit Linux using 64 bit tools, but targeted at 32 bit Linux? What would have to be changed in build environment to accomplish that? I imagine the environment would have to

Re: Label prefHeight vs wrapText

2014-05-28 Thread Martin Sladecek
Hi Werner, the important min/pref/max height is the one with width parameter as Label is horizontally biased. So while minHeight(width) == 17, prefHeight(width) == 34. But in your case, with ListView's prefHeight == 1000, you'll overflow by over 400px. VBox does evenly subtract these overflow

Re: Building WebKit natives with debug symbols on 32 bit Linux

2014-05-28 Thread Richard Bair
My question to the list is: How do you guys produce 32 bit libjfxwebkit.so with debugging symbols? Have you been able to? Do you have any special tricks in your sleeves? Oh man, you’re in unchartered waters. Building webkit is a royal pain in the neck :-(. You’ve already ventured farther

[8u20] Review request for RT-37026: Menubar menu item accelerators work only upon second pressing

2014-05-28 Thread Anthony Petrov
Hi Steve, Please review the fix: https://javafx-jira.kenai.com/browse/RT-37026 -- best regards, Anthony

[8u26] RT-37250 [Monocle] Improve error handling in EGL native code

2014-05-28 Thread Lisa Selle
Daniel, Please review proposed changes in: https://javafx-jira.kenai.com/browse/RT-37250 Thanks, Lisa

Re: Building WebKit natives with debug symbols on 32 bit Linux

2014-05-28 Thread David Hill
On 5/28/14, May 28, 9:47 AM, Peter Levart wrote: Hi Again, The idea that comes to my mind is the following: would it be possible to cross-compile the openjfx on the 64 bit Linux using 64 bit tools, but targeted at 32 bit Linux? What would have to be changed in build environment to accomplish

hg: openjfx/8u-dev/rt: 2 new changesets

2014-05-28 Thread hang . vo
Changeset: 18272f18897a Author:lisa.se...@oracle.com Date: 2014-05-28 11:57 -0400 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/18272f18897a Fix for RT-37250 [Monocle] Improve error handling in EGL native code Reviewed by dblaukopf Tested with HelloSanity !

Re: Label prefHeight vs wrapText

2014-05-28 Thread Werner Lehmann
Martin, thanks for the explanation. Feels good to finally understand this ;-) And while I created a ticket as per your suggestion... [#RT-37309] VBox: vshrink layout hint similar to vgrow ...it seems I can use this as a workaround:

Re: Building WebKit natives with debug symbols on 32 bit Linux

2014-05-28 Thread Kevin Rushforth
Note that there is a bug filed on building webkit with debug symbols on Windows/32 and Linux/32: https://javafx-jira.kenai.com/browse/RT-36147 If you have a 64-bit Linux system, then it should work. -- Kevin David Hill wrote: On 5/28/14, May 28, 9:47 AM, Peter Levart wrote: Hi Again, The

hg: openjfx/8u-dev/rt: RT-37026: Menubar menu item accelerators work only upon second pressing

2014-05-28 Thread hang . vo
Changeset: d9866f861d4e Author:Anthony Petrov anthony.pet...@oracle.com Date: 2014-05-28 20:38 +0400 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/d9866f861d4e RT-37026: Menubar menu item accelerators work only upon second pressing Summary: Register key events from

Re: Label prefHeight vs wrapText

2014-05-28 Thread Martin Sladecek
On 28.5.2014 18:10, Werner Lehmann wrote: Martin, thanks for the explanation. Feels good to finally understand this ;-) And while I created a ticket as per your suggestion... [#RT-37309] VBox: vshrink layout hint similar to vgrow Thanks! ...it seems I can use this as a workaround:

hg: openjfx/8u-dev/rt: DOC ONLY: missing 'Type:' comments in some of the enum constants

2014-05-28 Thread hang . vo
Changeset: 5fa1ecad2ed5 Author:snorthov Date: 2014-05-28 13:05 -0400 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/5fa1ecad2ed5 DOC ONLY: missing 'Type:' comments in some of the enum constants ! modules/graphics/src/main/java/javafx/scene/accessibility/Attribute.java

hg: openjfx/8u-dev/rt: RT-35628: Application Bundlers

2014-05-28 Thread hang . vo
Changeset: a2eb56fb706e Author:shemnon Date: 2014-05-28 11:49 -0600 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/a2eb56fb706e RT-35628: Application Bundlers Summary: Cleanup map plist generation !

Re: CSS vs API modifications in *View classes

2014-05-28 Thread David Grieve
Using styles is preferable to setting the property value. If styles are used, then you don't have the problem you describe. An alternative, if styles are not used, is to cast the property to StyleableProperty and use applyStyle(null, value) instead of set. CSS then thinks that the value has

[8u] review request: RT-37314: Need to specify -DNDEBUG for production builds

2014-05-28 Thread Kevin Rushforth
Phil David, Please review the following: https://javafx-jira.kenai.com/browse/RT-37314 I've done a test build on all three desktop platforms, but not on linux-arm. -- Kevin

[8u] review request: RT-30622: jfxrt.jar has a duplicate JSObject class without getWindow(Applet)

2014-05-28 Thread Kevin Rushforth
Dave (and Peter if you have time), Please review the fix for: JIRA: https://javafx-jira.kenai.com/browse/RT-30622 Webrev: http://cr.openjdk.java.net/~kcr/RT-30622/webrev.00/ Details are in the JIRA. Thanks. -- Kevin

hg: openjfx/8u-dev/rt: RT-36985: [Accessibility, Windows] Combobox won't take accessibility focus when clicked with mouse (but tabbing works)

2014-05-28 Thread hang . vo
Changeset: cb9eaf4855fa Author:Felipe Heidrich felipe.heidr...@oracle.com Date: 2014-05-28 15:59 -0700 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/cb9eaf4855fa RT-36985: [Accessibility, Windows] Combobox won't take accessibility focus when clicked with mouse (but tabbing

hg: openjfx/8u-dev/rt: 2 new changesets

2014-05-28 Thread hang . vo
Changeset: 1105e433cee8 Author:Felipe Heidrich felipe.heidr...@oracle.com Date: 2014-05-28 16:20 -0700 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/1105e433cee8 [Accessibility, Code Format] fix tab indentation !