hg: openjfx/8u20/rt: Added tag 8u20-b25 for changeset d02f4bddeed4

2014-07-24 Thread hang . vo
Changeset: e56a8bbcba20 Author:hudson Date: 2014-07-24 21:23 -0700 URL: http://hg.openjdk.java.net/openjfx/8u20/rt/rev/e56a8bbcba20 Added tag 8u20-b25 for changeset d02f4bddeed4 ! .hgtags

8u40 review request: RT-38005 problems with blend effect clipping

2014-07-24 Thread Jim Graham
webrev: http://cr.openjdk.java.net/~flar/RT-38005/webrev.00/ Jira: https://javafx-jira.kenai.com/browse/RT-38005 ...jim

hg: openjfx/8u-dev/rt: [Accessible] Fix labeled-by for textfield and textarea on Windows. Tested with Narrator on Win8 and Win7, and JAWS on win8. (note: previous comment in the code was not correct).

2014-07-24 Thread felipe . heidrich
Changeset: 4b8d06211312 Author:Felipe Heidrich Date: 2014-07-24 10:59 -0700 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/4b8d06211312 [Accessible] Fix labeled-by for textfield and textarea on Windows. Tested with Narrator on Win8 and Win7, and JAWS on win8. (note: previou

hg: openjfx/8u-dev/rt: [Accessible] differentiated between editable and read-only text on Mac.

2014-07-24 Thread felipe . heidrich
Changeset: 1b8a19fc48f1 Author:Felipe Heidrich Date: 2014-07-24 10:21 -0700 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/1b8a19fc48f1 [Accessible] differentiated between editable and read-only text on Mac. ! modules/graphics/src/main/java/com/sun/glass/ui/mac/MacAccessibl

Double.MAX_VALUE in CSS -fx-max-width?

2014-07-24 Thread Werner Lehmann
Hi, since FX8 we have a styleable property -fx-max-width on Region. I'd like to use this to replace the FXML attribute with CSS -fx-max-width: Infinity; This is actually a notation to achieve the equivalent of this code: node.setMaxWidth(Double.MAX_VALUE); Unfortunately it does not wor

hg: openjfx/8u-dev/rt: [TOYS] Add labels to HelloText

2014-07-24 Thread felipe . heidrich
Changeset: 31062bef761a Author:Felipe Heidrich Date: 2014-07-24 09:54 -0700 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/31062bef761a [TOYS] Add labels to HelloText ! apps/toys/Hello/src/main/java/a11y/HelloText.java

Re: [8u40] Review request for RT-3791: [Linux] JavaFX Media does not run on Ubuntu 14.04

2014-07-24 Thread Kevin Rushforth
Hi Kirill, Did you mean https://javafx-jira.kenai.com/browse/RT-37914 ? -- Kevin Kirill Kirichenko wrote: https://javafx-jira.kenai.com/browse/RT-3791

[8u40] Review request for RT-3791: [Linux] JavaFX Media does not run on Ubuntu 14.04

2014-07-24 Thread Kirill Kirichenko
https://javafx-jira.kenai.com/browse/RT-3791

hg: openjfx/8u-dev/rt: Fix for RT-37583 [Monocle] Change X.java and EGL.java to use instance methods

2014-07-24 Thread lisa . selle
Changeset: 843602254276 Author:lisa.se...@oracle.com Date: 2014-07-24 11:09 -0400 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/843602254276 Fix for RT-37583 [Monocle] Change X.java and EGL.java to use instance methods Reviewed by dblaukopf Tested with HelloSanity ! modul

hg: openjfx/8u20/rt: Added tag 8u20-b24 for changeset fb2c6cb178c1

2014-07-24 Thread hang . vo
Changeset: d02f4bddeed4 Author:hudson Date: 2014-07-24 07:54 -0700 URL: http://hg.openjdk.java.net/openjfx/8u20/rt/rev/d02f4bddeed4 Added tag 8u20-b24 for changeset fb2c6cb178c1 ! .hgtags

Re: 8u40 review (and test) request for RT-37945: NPEs for Canvas apps on SW pipeline

2014-07-24 Thread David Hill
On 7/23/14, 7:12 PM, Jim Graham wrote: webrev: http://cr.openjdk.java.net/~flar/RT-37945/webrev.00/ Jira: https://javafx-jira.kenai.com/browse/RT-37945 I tested with toys/CanvasTest/run-bitmap and run-vector modifying the build.xml to run them with the SW pipeline. I also ran "gradle test" and

Skin layoutChildren: when to get bounds of child nodes?

2014-07-24 Thread Werner Lehmann
Hi, inside a control skin I have the following code pattern: protected void layoutChildren(...) { super.layoutChildren(...); Node child1 = ... Bounds bip = child1.getBoundsInParent(); if (!animating) { Node child2 = ... child2.setTranslateX(bip.getMinX();

Re: Mirrored observable collections

2014-07-24 Thread Werner Lehmann
Hi Mike, well seems as if you can create such a method using StringBinding with 4-5 lines of code. Personally I wished that StringConverter was a SAM interface so that I can just provide a lambda for it. In many cases - like yours - it is sufficient to implement the toString method... Werner