RE: Poor quality font rendering

2013-08-29 Thread Robert Fisher
Ok so apparently I can't send .bmp attachments to this list. Here's an imgur link: http://imgur.com/d5AiHFk It looks identical to the .bmp, as far as I can tell. Cheers, Rob -Ursprüngliche Nachricht- Von: openjfx-dev-boun...@openjdk.java.net

hg: openjfx/8/graphics/rt: RT-27065 Win: [GlassRobot] GlassRobot can't press some keyboard buttons in one time

2013-08-29 Thread hang . vo
Changeset: e1d138d550e9 Author:Petr Pchelko petr.pche...@oracle.com Date: 2013-08-29 11:06 +0400 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/e1d138d550e9 RT-27065 Win: [GlassRobot] GlassRobot can't press some keyboard buttons in one time Reviewed-by: anthony, art !

RE: Poor quality font rendering

2013-08-29 Thread Robert Fisher
Hi all, I've done a few tests to compare font rendering between JavaFX and something native on my 64bit Windows 7 machine. I used Firefox to test native font rendering, and JavaFX 8 b100 (my apologies if something's been fixed since then), using the code Phil just posted to create a Label,

hg: openjfx/8/graphics/rt: Graphics NetBeans project: fixed debugging tests.

2013-08-29 Thread hang . vo
Changeset: f219f9bc5347 Author:Pavel Safrata pavel.safr...@oracle.com Date: 2013-08-29 14:25 +0100 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/f219f9bc5347 Graphics NetBeans project: fixed debugging tests. ! netbeans/graphics/build.xml

[API Review] RT-31256: Zero point

2013-08-29 Thread Pavel Safrata
Hello, Jira: https://javafx-jira.kenai.com/browse/RT-31256 I just want to add Point3D: /** * Point or vector with all three coordinates set to 0. */ public static final Point3D ZERO = new Point3D(0.0, 0.0, 0.0); Point2D: /** * Point or vector with both coordinates

Re: Poor quality font rendering

2013-08-29 Thread Felipe Heidrich
Hi Robert, Please add this information to https://javafx-jira.kenai.com/browse/RT-14187 See my previous message, it is possible the difference is due to the shader we use to produce subpixel glyphs. I would have used IE as a representative of a native Windows Microsoft app, but I get the

Re: Poor quality font rendering

2013-08-29 Thread Felipe Heidrich
I need to know what is been tested (the code snippet that created the JFX sample) and native app that produced the other sample. I think what is going on there is that in JFX we are producing our own subpixel glyphs in the shader (instead using DW to produce subpixel glyph images). Note the

RE: Poor quality font rendering

2013-08-29 Thread Robert Fisher
Hi Felipe, thanks for the response. I added a comment to the JIRA issue. I don't have IE installed on my system, but I just made a similar comparison with text in Outlook, and it was indistinguishable from the text in Firefox. Cheers, Rob Von: Felipe Heidrich

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

2013-08-29 Thread hang . vo
Changeset: bde440f8dad6 Author:mv157916 Date: 2013-08-22 21:51 -0700 URL: http://hg.openjdk.java.net/openjfx/8/master/rt/rev/bde440f8dad6 RT-32499: Update the JDK build number to b104 in rt/build.properties file in the JavaFX 8 Master forest. ! build.properties Changeset:

hg: openjfx/8/graphics/rt: RT-31367 [SWT] Custom data types cannot be transfered with DnD

2013-08-29 Thread hang . vo
Changeset: 40312b689a50 Author:snorthov Date: 2013-08-29 14:48 -0400 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/40312b689a50 RT-31367 [SWT] Custom data types cannot be transfered with DnD reviewed by anton ! modules/swt/src/main/java/javafx/embed/swt/FXCanvas.java

Re: The rise and fall of Builders

2013-08-29 Thread Jonathan Giles
You can catch up on the back story here: http://mail.openjdk.java.net/pipermail/openjfx-dev/2013-March/006725.html -- Jonathan On 30/08/2013 7:06 a.m., Felix Bembrick wrote: I was not privy to the original discussion but I am lead to believe that Builders are no longer considered fashionable

Re: The rise and fall of Builders

2013-08-29 Thread Richard Bair
Actually you are privy to the original discussion -- it is all in the mailing list history :-) http://mail.openjdk.java.net/pipermail/openjfx-dev/2013-March/006725.html The long and the short of it -- getting the generics right in a way that allowed for API evolution turned out to be a

Re: The rise and fall of Builders

2013-08-29 Thread Felix Bembrick
Thanks Jonathan, So what is Oracle's current position on this? Are Builders in or out? If out, when will they be removed and how? On 30 August 2013 05:31, Jonathan Giles jonathan.gi...@oracle.com wrote: You can catch up on the back story here:

hg: openjfx/8/controls/rt: RT-24920: [CheckBox, RadioButton] Layout regression (was: Text Overrun incorrect work in CheckBox and RadioButton)

2013-08-29 Thread hang . vo
Changeset: c52ac94b9d02 Author:leifs Date: 2013-08-29 12:48 -0700 URL: http://hg.openjdk.java.net/openjfx/8/controls/rt/rev/c52ac94b9d02 RT-24920: [CheckBox, RadioButton] Layout regression (was: Text Overrun incorrect work in CheckBox and RadioButton) !

Re: The rise and fall of Builders

2013-08-29 Thread Richard Bair
Deprecated in 8 and removed from the JavaDoc, gone in 9 (will be available as a separately downloadable Jar so you can keep using them, but they won't be updated). We're removing them from samples. Best to cycle off the builders. Richard On Aug 29, 2013, at 12:42 PM, Felix Bembrick

hg: openjfx/8/graphics/rt: Fixed bug I introduced where reset always set the pointer to -1, whereas the assumption before was that reset would put the pointer on the first item.

2013-08-29 Thread hang . vo
Changeset: 056f995f83e4 Author:rbair Date: 2013-08-29 16:58 -0700 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/056f995f83e4 Fixed bug I introduced where reset always set the pointer to -1, whereas the assumption before was that reset would put the pointer on the first

Re: The rise and fall of Builders

2013-08-29 Thread Tom Eugelink
This week I ran into the problem that I needed to provide a date format (attribute in FXML) to one of my controls. So I needed a way to convert a string to DateFormat, or even a comma separated list to a list of DateFormats. This I solved with a builder for that control. How would one solved

Re: The rise and fall of Builders

2013-08-29 Thread Richard Bair
You can still use your own Builders and plug them into FXML. Its just that the built in set won't be there. But the Builder base class and all the FXML support is still there. All mentioned in that long thread :-D Richard On Aug 29, 2013, at 9:50 PM, Tom Eugelink t...@tbee.org wrote: This

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

2013-08-29 Thread hang . vo
Changeset: c661253e25cf Author:jgiles Date: 2013-08-30 13:56 +1200 URL: http://hg.openjdk.java.net/openjfx/8/controls/rt/rev/c661253e25cf RT-32559: TableView: replaced columns disappear !