API Review: Missing UNSORTED Comparator constant in SortedList

2013-05-30 Thread Martin Sladecek
Hi, while discussing the SortedList, we were talking about how to return to the unsorted state and the proposed solution was to have special SortedList.UNSORTED constant for comparator. Unfortunately, I forgot to include it in the final proposal, so I'm proposing this now. Thanks David Qiao

hg: openjfx/8/master/rt: 95 new changesets

2013-05-30 Thread hang . vo
Changeset: 9134051bb8fb Author:dmasada Date: 2013-05-21 13:54 -0700 URL: http://hg.openjdk.java.net/openjfx/8/master/rt/rev/9134051bb8fb RT-30002 Ensemble8 - Search box layout is incorrectly enlarged ! apps/samples/Ensemble8/src/app/ensemble/control/SearchBox.java Changeset: ad014

Re: JavaFX graphics performance and suitability for advanced animations

2013-05-30 Thread Daniel Zwolenski
Here is pretty much the same animation in JavaScript of the animated box: http://www.zenjava.com/demo/animate1.html While it's not perfect, on my system (Google Chrome, Windows 7, Dell Latitude E6520) the visual appearance is noticeably better than the JavaFX one. For example there is no shimmerin

Re: JavaFX graphics performance and suitability for advanced animations

2013-05-30 Thread Richard Bair
Thanks for the issues! As mentioned in RT-30830 and RT-30827, the jittery text and fuzzy lines are two manifestations of the same thing. When animating, you have two choices. Do you draw everything on pixel boundaries, or do you draw "in the cracks" between the pixels? Of course the only way to

Re: Backwards compatibility issue?

2013-05-30 Thread Daniel Zwolenski
No stack trace, just this: C:\temp>c:\apps\java\jdk1.7.0_21-32bit\bin\java.exe -jar defender-jfx.jar Cannot add stylesheet. 512 If there's an easy way to turn on more debugging info let me know. On Fri, May 31, 2013 at 2:07 PM, Richard Bair wrote: > Possibly, what is the stack trace? > > On M

Re: Backwards compatibility issue?

2013-05-30 Thread Richard Bair
Possibly, what is the stack trace? On May 30, 2013, at 8:24 PM, Daniel Zwolenski wrote: > While trying to narrow down the rendering/performance/whatever issues with > the game, I just opened up the JAR that I'd previously built for it: > https://bytebucket.org/rbair/fx-games/wiki/release/defende

Backwards compatibility issue?

2013-05-30 Thread Daniel Zwolenski
While trying to narrow down the rendering/performance/whatever issues with the game, I just opened up the JAR that I'd previously built for it: https://bytebucket.org/rbair/fx-games/wiki/release/defender-jfx.jar If I run this with java version "1.7.0_13" it works fine. If I run this with java ver

Re: JavaFX graphics performance and suitability for advanced animations

2013-05-30 Thread Daniel Zwolenski
A little bit more esoteric, but some "not very nice looking" rendering when animating a very lightly styled Node: https://javafx-jira.kenai.com/browse/RT-30830 On Fri, May 31, 2013 at 12:07 PM, Daniel Zwolenski wrote: > Jittery text when scaling in an animation: > https://javafx-jira.kenai.com/

Re: Patches for packager tweaks

2013-05-30 Thread Danno Ferrin
I have an OCA signed and in force: http://www.oracle.com/technetwork/community/oca-486395.html#f If my statement seemed a little cynical with the subtext being a concern about whether or not OpenJFX is even interested interested in some of these patches, that's because it was. I have two bugs, fo

Re: Patches for packager tweaks

2013-05-30 Thread Kevin Rushforth
Right. I was answering the general question. For the specific question, I will defer to Mark Howe, who is working on the packager. -- Kevin Daniel Zwolenski wrote: I'm guessing Danno would like to know how long he should expect to wait for the patches he kindly contributed and linked to in

Re: JavaFX graphics performance and suitability for advanced animations

2013-05-30 Thread Daniel Zwolenski
Jittery text when scaling in an animation: https://javafx-jira.kenai.com/browse/RT-30827 On Fri, May 31, 2013 at 12:01 PM, Richard Bair wrote: > Wow. Thanks! > > On May 30, 2013, at 6:48 PM, Daniel Zwolenski wrote: > > I have replicated the z-order problem with the Tower Defender game and the >

Re: JavaFX graphics performance and suitability for advanced animations

2013-05-30 Thread Richard Bair
Wow. Thanks! On May 30, 2013, at 6:48 PM, Daniel Zwolenski wrote: > I have replicated the z-order problem with the Tower Defender game and the > Canvas: https://javafx-jira.kenai.com/browse/RT-30826 > > > On Fri, May 31, 2013 at 1:26 AM, Richard Bair wrote: > Note this is only for Mac. > >

Re: Patches for packager tweaks

2013-05-30 Thread Daniel Zwolenski
I'm guessing Danno would like to know how long he should expect to wait for the patches he kindly contributed and linked to in that email to get included. Seems like a fair and reasonable question and one I'd also like to know the answer to. Perhaps a linked question that I'd also like to know: is

Re: JavaFX graphics performance and suitability for advanced animations

2013-05-30 Thread Daniel Zwolenski
I have replicated the z-order problem with the Tower Defender game and the Canvas: https://javafx-jira.kenai.com/browse/RT-30826 On Fri, May 31, 2013 at 1:26 AM, Richard Bair wrote: > Note this is only for Mac. > > On May 30, 2013, at 7:54 AM, Richard Bair wrote: > > > Anybody interested in jit

Re: Patches for packager tweaks

2013-05-30 Thread Kevin Rushforth
How long is it taking for community patches to get into a build these days? Hi Danno, There are two parts to the answer: 1) How long does it take for a proposed fix (patch) to be reviewed and accepted? 2) Once your patch is accepted and the changeset is pushed to the repo, how long befor

hg: openjfx/8/controls/rt: 3 new changesets

2013-05-30 Thread hang . vo
Changeset: a92e5afc944b Author:jgiles Date: 2013-05-31 10:57 +1200 URL: http://hg.openjdk.java.net/openjfx/8/controls/rt/rev/a92e5afc944b RT-30825: Can't Reorder Columns in Table ! javafx-ui-controls/src/javafx/scene/control/TableColumnBase.java ! javafx-ui-controls/test/javafx/sce

Re: [API Review] RT-15314

2013-05-30 Thread Daniel Zwolenski
+1 on system property only at this stage. +1 on John's comment about escape key. On Fri, May 31, 2013 at 4:23 AM, John Hendrikx wrote: > Does "fullScreenWarning=false" imply also that the escape key would be > free for normal use? Removing the overlay is definitely good, but for apps > that al

hg: openjfx/8/graphics/rt: RT-30823: Improve subpixel support for CoreText

2013-05-30 Thread hang . vo
Changeset: 18da8c32f363 Author:Felipe Heidrich Date: 2013-05-30 14:54 -0700 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/18da8c32f363 RT-30823: Improve subpixel support for CoreText ! prism-common/src/com/sun/prism/impl/GlyphCache.java ! prism-ps/src/com/sun/prism/imp

hg: openjfx/8/graphics/rt: RT-28953 - JSException should conserve the original exception

2013-05-30 Thread hang . vo
Changeset: 9b21f61edda7 Author:Per Bothner Date: 2013-05-30 13:03 -0700 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/9b21f61edda7 RT-28953 - JSException should conserve the original exception ! javafx-ui-common/src/com/sun/webkit/dom/JSObject.java ! webview/native/Sou

Re: [API REVIEW] RT-30576 Parent : add new public layout method, optimized to only layout this parent and it's children.

2013-05-30 Thread Richard Bair
Should this instead be a protected method rather than a public method? On May 22, 2013, at 7:18 AM, mick.fleming wrote: > > Hi All, > > this request is to add a method to javafx.scene.Parent > which only requests a re-layout on the parent and it's > children. > > The current requestLayout met

Re: [API Review] RT-15314

2013-05-30 Thread John Hendrikx
Does "fullScreenWarning=false" imply also that the escape key would be free for normal use? Removing the overlay is definitely good, but for apps that always run full-screen they shouldn't react to escape either. --John On 29/05/2013 23:51, David Hill wrote: We have a request

hg: openjfx/8/controls/rt: RT-30547: DatePicker doesn't allow to omit leading zero

2013-05-30 Thread hang . vo
Changeset: e0145393ceaa Author:leifs Date: 2013-05-30 10:52 -0700 URL: http://hg.openjdk.java.net/openjfx/8/controls/rt/rev/e0145393ceaa RT-30547: DatePicker doesn't allow to omit leading zero ! javafx-ui-controls/src/javafx/scene/control/DatePicker.java

Re: JavaFX graphics performance and suitability for advanced animations

2013-05-30 Thread Richard Bair
Note this is only for Mac. On May 30, 2013, at 7:54 AM, Richard Bair wrote: > Anybody interested in jitter ought to look at > https://javafx-jira.kenai.com/browse/RT-26702 > > Richard

Re: JavaFX graphics performance and suitability for advanced animations

2013-05-30 Thread Richard Bair
Hi John, > Graphics? Yes, to a point. But my post was really about graphics and the > issues related to performance. Again, unless those issues are resolved then > it's not appropriate to state that JavaFX is suitable for "graphics". You asked what the "full range of applications for which Jav

hg: openjfx/8/graphics/rt: iOS: Checking available JNI_VERSION @ runtime to be able to run with various JDK8 mobile promotions

2013-05-30 Thread hang . vo
Changeset: b17e961ecd38 Author:Oldrich Maticka Date: 2013-05-30 16:54 +0200 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/b17e961ecd38 iOS: Checking available JNI_VERSION @ runtime to be able to run with various JDK8 mobile promotions ! glass/glass-lib-ios/src/GlassAp

Re: JavaFX graphics performance and suitability for advanced animations

2013-05-30 Thread Richard Bair
Anybody interested in jitter ought to look at https://javafx-jira.kenai.com/browse/RT-26702 Richard On May 29, 2013, at 5:18 PM, Richard Bair wrote: > >> As ever, just a suggestion. I'll leave it at that so we can get back to the >> real issues. > > > So, back to the real issues :-). Here

hg: openjfx/8/graphics/rt: Gradle: fix native font build

2013-05-30 Thread hang . vo
Changeset: c48aba5f8936 Author:kcr Date: 2013-05-30 07:00 -0700 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/c48aba5f8936 Gradle: fix native font build ! gradleBuildSrc/win.gradle

Re: hg: openjfx/8/graphics/rt: Replaced lambdas in FilteredList and TransformationList with anonymous classes.

2013-05-30 Thread Richard Bair
A little love for you JDK 7 back-porters :-) On May 29, 2013, at 11:34 PM, hang...@oracle.com wrote: > Changeset: c200cd542665 > Author:Martin Sladecek > Date: 2013-05-30 08:19 +0200 > URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/c200cd542665 > > Replaced lambdas in

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

2013-05-30 Thread hang . vo
Changeset: f2583a30a508 Author:Martin Sladecek Date: 2013-05-30 15:42 +0200 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/f2583a30a508 Fixed infinte loop in HBox. ! javafx-ui-common/src/javafx/scene/layout/HBox.java Changeset: 804a55322e91 Author:Martin Sladecek

Re: [API Review] RT-15314

2013-05-30 Thread Kevin Rushforth
That's my preference as well. -- Kevin Tom Schindl wrote: I'd go for option 3 at this Tom Von meinem iPhone gesendet Am 29.05.2013 um 23:51 schrieb David Hill : We have a request to allow non-sandboxed applications to disable the "ESC to

Re: JavaFX graphics performance and suitability for advanced animations

2013-05-30 Thread Hervé Girod
Hmm, there's no point to talk politics about platforms here I think. And I don't think that we will go anywhere if we only say that Oracle does not do enough, or that the performance is not enough, without being more specific. Again we use swing (yes swing...) for complex graphic cockpit soft r

RE: JavaFX graphics performance and suitability for advanced animations

2013-05-30 Thread John C. Turnbull
Hi Richard, Thanks for the comprehensive reply. Responses inline. >> 1. Can someone from Oracle please outline the full range of >> applications for which JavaFX is or will be suitable for? > > That's a pretty broad question. Lots of stuff? At a minimum everything Swing and SWT were used f

hg: openjfx/8/graphics/rt: RT-30802: Quantum Cleanup: Make pipeline initialization happen in run()

2013-05-30 Thread hang . vo
Changeset: b29ce522d568 Author:snorthov Date: 2013-05-30 07:39 -0400 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/b29ce522d568 RT-30802: Quantum Cleanup: Make pipeline initialization happen in run() ! javafx-ui-quantum/src/com/sun/javafx/tk/quantum/EmbeddedPainter.java

hg: openjfx/8/graphics/rt: iOS: Native library loading fixed for iOS. Adding missing JNI_OnLoad_*() functions, etc.

2013-05-30 Thread hang . vo
Changeset: 0da32bf95d30 Author:Oldrich Maticka Date: 2013-05-30 11:56 +0200 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/0da32bf95d30 iOS: Native library loading fixed for iOS. Adding missing JNI_OnLoad_*() functions, etc. Reviewed by David Pulkrabek. ! glass/glass-

hg: openjfx/8/graphics/rt: Method marked public by accident removed form public API

2013-05-30 Thread hang . vo
Changeset: 55c9c3a55f58 Author:Eva Krejcirova Date: 2013-05-30 10:35 +0100 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/55c9c3a55f58 Method marked public by accident removed form public API ! javafx-ui-common/src/javafx/scene/shape/Arc.java

Using RoboVM+JavaFX8+Bro to develop apps for iOS and Android? - Google Groups

2013-05-30 Thread Tobi
https://groups.google.com/forum/m/?fromgroups#!topic/robovm/Iii-ARUp3W0 Von meinem iPhone gesendet

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

2013-05-30 Thread hang . vo
Changeset: a99a0da62147 Author:Pavel Safrata Date: 2013-05-30 08:26 +0100 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/a99a0da62147 [DOC-ONLY]: added the second asterisk for the comments to become visible for Javadoc. ! javafx-ui-common/src/javafx/application/Conditio