hg: openjfx/8/graphics/rt: RT-34162: [macosx] Regression in Input Method panel positioning

2013-11-13 Thread hang . vo
Changeset: 84f914be6ad1 Author:Petr Pchelko petr.pche...@oracle.com Date: 2013-11-13 12:06 +0400 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/84f914be6ad1 RT-34162: [macosx] Regression in Input Method panel positioning Reviewed-by: anthony, leif !

Re: enterNestedEventLoop as public API?

2013-11-13 Thread Tom Schindl
What bothers me with the API as it is today is that I have call enter/exit, I would find it more easy to work with an API like: ---8--- WaitCondition c = new WaitCondition(); Dialog d = new Dialog() { public void onClose() { c.release(); } } Platform.spinNestedEventLoop(c);

RE: discussion about touch events

2013-11-13 Thread Seeon Birger
Hi Pavel, Your example of 'child over child' is an interesting case which raises some design aspects of the desired picking algorithm: 1. Which node to pick when one node has a 'strict containership' over the touch center and the other node only has a fuzzy containership (the position falls in

[8] Review request for RT-32436 Gtk: OpenGL with JavaFX causes Gthread error and halts

2013-11-13 Thread Alexander Zvegintsev
Hello, Please review fix for https://javafx-jira.kenai.com/browse/RT-32436 -- Thanks, Alexander.

hg: openjfx/8/graphics/rt: 2 new changesets

2013-11-13 Thread hang . vo
Changeset: be453268f7f8 Author:peterz Date: 2013-11-13 18:59 +0400 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/be453268f7f8 iRT-34119 WebView: twkGetInsertPositionOffset could be changed ! modules/web/src/main/native/Source/WebCore/platform/java/WebPage.cpp

Re: Build fail: unresolved external symbol mainCRTStartup

2013-11-13 Thread Stephen F Northover
Ok, you can't say that and not tell us what the problem was! Steve On 2013-11-13 9:55 AM, Leonid Popov wrote: Finally managed to build it with JDK 1.8-ea build 114 64 bit. On 11/12/2013 6:00 PM, Leonid Popov wrote: Thanks Kevin, but unfortunately it didn't help. Even having it cleaned

Re: enterNestedEventLoop as public API?

2013-11-13 Thread Tom Schindl
Currently the API requires to pass the same object to enter and exit how would your code work with multiple nested event loops? Tom Von meinem iPhone gesendet Am 13.11.2013 um 16:35 schrieb Stephen F Northover steve.x.northo...@oracle.com: What is the difference? Dialog d = new

Re: enterNestedEventLoop as public API?

2013-11-13 Thread Anthony Petrov
Hi John, Please file an RFE to introduce this public API. -- best regards, Anthony On 11/13/2013 08:35 PM, John Hendrikx wrote: On 13/11/2013 16:35, Stephen F Northover wrote: What is the difference? Dialog d = new Dialog() { public void onClose() { Platform.exitNestedEventLoop();

Re: enterNestedEventLoop as public API?

2013-11-13 Thread John Hendrikx
On 13/11/2013 17:27, Tom Schindl wrote: Currently the API requires to pass the same object to enter and exit how would your code work with multiple nested event loops? Tom Dialog d = new Dialog() { public void onClose() { Platform.exitNestedEventLoop(d, null); } }

Re: enterNestedEventLoop as public API?

2013-11-13 Thread John Hendrikx
On 13/11/2013 16:35, Stephen F Northover wrote: What is the difference? Dialog d = new Dialog() { public void onClose() { Platform.exitNestedEventLoop(); } } Platform.enterNestedEventLoop(); I find the current API to work well, it is just in the wrong package tree :) Considering I

Re: enterNestedEventLoop as public API?

2013-11-13 Thread Anthony Petrov
Thanks. -- best regards, Anthony On 11/13/2013 08:51 PM, John Hendrikx wrote: Hi Anthony, I just filed https://javafx-jira.kenai.com/browse/RT-34268 for this. --John On 13/11/2013 17:42, Anthony Petrov wrote: Hi John, Please file an RFE to introduce this public API. -- best regards,

hg: openjfx/8/graphics/rt: RT-34231: FX3D doesn't work with DirectX debug runtime

2013-11-13 Thread hang . vo
Changeset: 51df0f4050ad Author:vadim Date: 2013-11-13 20:52 +0400 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/51df0f4050ad RT-34231: FX3D doesn't work with DirectX debug runtime Reviewed-by: kcr, ckyang ! modules/graphics/src/main/native-prism-d3d/D3DMesh.cc

Re: discussion about touch events

2013-11-13 Thread Daniel Blaukopf
Hi Seeon, Summarizing our face to face talk today: I see that the case described by Pavel is indeed a problem and agree with you that not every node needs to be a participant in the competition for which grabs touch input. However I’m not keen on the idea of changing behavior based on which