Re: add calculating methods to bind

2014-05-23 Thread Martin Sladecek
That would be nice. Don't forget to add it to JIRA! -Martin On 23.5.2014 07:11, Tom Eugelink wrote: I feel the standard binding should offer an easy hook option heightProperty().multiply(3.4).calc( value - { snap(vallue); } ).add(5.0) On 2014-5-21 22:00, Tomas Mikula wrote: Just a side

Re: add calculating methods to bind

2014-05-23 Thread Tom Eugelink
https://javafx-jira.kenai.com/browse/RT-37255 On 2014-5-23 8:05, Martin Sladecek wrote: That would be nice. Don't forget to add it to JIRA! -Martin On 23.5.2014 07:11, Tom Eugelink wrote: I feel the standard binding should offer an easy hook option heightProperty().multiply(3.4).calc(

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,

[8u20] Review request for RT-37033: [SwingNode] JEditorPane in SwingNode inside TabPane does not get focus properly when clicked

2014-05-23 Thread Anthony Petrov
Steve, Anton, Please review the fix for: https://javafx-jira.kenai.com/browse/RT-37033 -- best regards, Anthony

[8u26] Review request: RT-37085 [Monocle] FX crash on ODROID U3

2014-05-23 Thread Lisa Selle
Daniel, David, Please review the proposed fix for https://javafx-jira.kenai.com/browse/RT-37085 at cr.openjdk.java.net/~kselle/webrev-20140523-1242-RT-37085/webrev/ Thanks, Lisa

Planning for M5: June 23, 2014 [RDP2]

2014-05-23 Thread Stephen F Northover
Hi all, The next milestone M5, June 23, 2014 [RDP2], is an important one. Essentially, we are shipping FX for 8u20 after this. There is a week before the final FX ZBB date which is July 1, 2014, but we should not be touching any code during this week. After July 1 ZBB, we are stopping all

review request: RT-36639 [RTL] PasswordField rendering issue when it's highlighted.

2014-05-23 Thread Felipe Heidrich
Hi Steve, Please review: https://javafx-jira.kenai.com/browse/RT-36639 http://cr.openjdk.java.net/~fheidric/RT36639-MAC/webrev/ http://cr.openjdk.java.net/~fheidric/RT36639-LINUX/webrev/ Thanks Felipe

Monday, May 26 is a US holiday + (in)sanity testing

2014-05-23 Thread Kevin Rushforth
As a reminder, Monday, May 26 is a US holiday. We will keep to this week's freeze / insanity testing schedule, but as there will be fewer people testing, please be extra careful not to introduce a regression between now and 1am PT Monday. Barring a DOA or other stopper, I will integrate

Re: Planning for M5: June 23, 2014 [RDP2]

2014-05-23 Thread Lisa Selle
Steve can you clarify the process for various stages for retargeting bugs to a later release? On 5/23/2014 1:15 PM, Stephen F Northover wrote: Hi all, The next milestone M5, June 23, 2014 [RDP2], is an important one. Essentially, we are shipping FX for 8u20 after this. There is a week

Re: Layout regression

2014-05-23 Thread Stephen F Northover
Application code only runs on the app thread. Setting the uncaught exception handler should work for you. Steve On 2014-05-23 8:33 AM, ngalarn...@abinitio.com wrote: How can we be notified of exceptions like these programmatically? When my code is on the call stack, I can catch the

Bad performance with Canvas and extensive clipping

2014-05-23 Thread Tom Schindl
Hi, Maybe as some of you might know I've been working since sometime on SWT on JavaFX and to implement direct drawing operations we use JavaFX-Canvas. I've today tried to run a heavy direct drawing grid implementation and it performed very bad because it makes heavy use of clipping. For a grid

hg: openjfx/8u-dev/rt: [TEST] Fix compile error in unit tests (follow-on to RT-32597)

2014-05-23 Thread hang . vo
Changeset: 419ff0dc23c8 Author:kcr Date: 2014-05-23 12:08 -0700 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/419ff0dc23c8 [TEST] Fix compile error in unit tests (follow-on to RT-32597) ! modules/graphics/src/test/java/com/sun/javafx/pgstub/StubStage.java !

hg: openjfx/8u-dev/rt: RT-36056 arm builds should fail if missing toolchain

2014-05-23 Thread hang . vo
Changeset: 55abe340d827 Author:ddhill Date: 2014-05-23 15:27 -0400 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/55abe340d827 RT-36056 arm builds should fail if missing toolchain Reviewed-by: kcr ! buildSrc/android.gradle ! buildSrc/armv5sf.gradle ! buildSrc/armv6hf.gradle

(In)Sanity Monday...

2014-05-23 Thread Lisa Selle
Reminder to check out the matrix at https://wiki.openjdk.java.net/display/OpenJFX/8u20 for your insanity testing assignment for this week. Testing should take 1 hour or less. If your assignment takes longer, stop after an hour and continue where you left off the following week. Also,

Re: Bad performance with Canvas and extensive clipping

2014-05-23 Thread Jim Graham
Are you clipping to an arbitrary path in all cases or just a rectangle? Unfortunately we only offer the arbitrary clip-to-current-path method that isn't optimized for basic rectangular clipping and it implements soft clipping. There is an outstanding tweak that we added faster clipping

Re: (In)Sanity Monday...

2014-05-23 Thread Kevin Rushforth
In lieu of Monday's testing, I did run a full build / test on all three platforms (dev-build-full) this afternoon and ran a couple samples. No new issues. -- Kevin Lisa Selle wrote: Reminder to check out the matrix at https://wiki.openjdk.java.net/display/OpenJFX/8u20 for your insanity

hg: openjfx/8u-dev/rt: [Accessibility] On Windows, when a combobox closes, the Narrator focus stays behind where the last selected list item was. The fix is to send focus changed event when the window

2014-05-23 Thread hang . vo
Changeset: 2eb6b8e042b3 Author:Felipe Heidrich felipe.heidr...@oracle.com Date: 2014-05-23 15:02 -0700 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/2eb6b8e042b3 [Accessibility] On Windows, when a combobox closes, the Narrator focus stays behind where the last selected

Re: Bad performance with Canvas and extensive clipping

2014-05-23 Thread Tom Schindl
Hi, As an experiment I've now written a SWT-GC implementation using a BufferedImage Graphics2D and transfering the pixels over to JavaFX and the performance is as it is with native SWT. I always thought Canvas works similar to Image and one only draws pixels - looks like that is not the case,