hg: openjfx/8/graphics/rt: RT-25059 ListView scroll bar thumb resizes wildly (additional fix for TreeTableView)

2013-10-30 Thread hang . vo
Changeset: 29bc314ef771 Author:Martin Sladecek martin.slade...@oracle.com Date: 2013-10-30 08:41 +0100 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/29bc314ef771 RT-25059 ListView scroll bar thumb resizes wildly (additional fix for TreeTableView) Reviewed-by: jgiles

hg: openjfx/8/graphics/rt: RT-32531: Scene Width and Height, if not specified, result in no window being shown

2013-10-30 Thread hang . vo
Changeset: 82c5dba3721a Author:Anthony Petrov anthony.pet...@oracle.com Date: 2013-10-30 12:15 +0400 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/82c5dba3721a RT-32531: Scene Width and Height, if not specified, result in no window being shown Reviewed-by: Alexander

hg: openjfx/8/graphics/rt: RT-33266 Gtk: stage.setIconified(true) crashes compiz in Ubuntu 13.04 (Unity)

2013-10-30 Thread hang . vo
Changeset: fbf244020834 Author:Alexander Zvegintsev Date: 2013-10-30 12:51 +0400 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/fbf244020834 RT-33266 Gtk: stage.setIconified(true) crashes compiz in Ubuntu 13.04 (Unity) !

Re: iOS Default font is wrong

2013-10-30 Thread Oldrich Maticka
I have tried simple app with several controls. Fonts in Interface Builder - UIButton - System 15.0 UILabel - System 17.0 UITextField - System 14.0 UITextView - System 14.0 Same fontsize - 15.0 has UIButton's label created at runtime. UIFont class methods for getting system font information

hg: openjfx/8/graphics/rt: RT-33944: ImageView with attached bounds listener doesn't report bounds correctly

2013-10-30 Thread hang . vo
Changeset: 0e86f96331d5 Author:Eva Krejcirova eva.krejcir...@oracle.com Date: 2013-10-30 14:02 +0100 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/0e86f96331d5 RT-33944: ImageView with attached bounds listener doesn't report bounds correctly Reviewed-by: lnerad !

hg: openjfx/8/graphics/rt: RT-33909: Need a way to cancel input method composing

2013-10-30 Thread hang . vo
Changeset: aea82d3547f2 Author:Petr Pchelko petr.pche...@oracle.com Date: 2013-10-30 17:52 +0400 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/aea82d3547f2 RT-33909: Need a way to cancel input method composing Reviewed-by: anthony, psafrata !

Re: iOS Default font is wrong

2013-10-30 Thread Richard Bair
And then eventually some iOS style sheet needs to be created that will give the right defaults for the other controls. I'm hoping to convince Hendrick and Claudette to take on that task :-) On Oct 30, 2013, at 6:38 AM, Stephen F Northover steve.x.northo...@oracle.com wrote: Let's use

hg: openjfx/8/graphics/rt: [RT-33913] Lens:multi touch shouldn't be enabled by default

2013-10-30 Thread hang . vo
Changeset: 4b2e1c5831e9 Author:Assaf Yavani Date: 2013-10-30 16:43 +0200 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/4b2e1c5831e9 [RT-33913] Lens:multi touch shouldn't be enabled by default Summary: Made multi touch support experimental feature. - added

Re: iOS Default font is wrong

2013-10-30 Thread Felipe Heidrich
Hi, Correct me if I'm wrong, to use UIWhatever or NSWhatever we will need Objective-C (or use the ugly objc_msgSend). That is more work as we don't have Objective-C in native font code. Besides, creating a Button requires, usually, a lot more boilerplate code. We will also have to link to

JavaFX on rPi iOS with RoboVM

2013-10-30 Thread Tom Schindl
Hi, I've been working on some samples for my presentation at EclipseCon Europe and wanted share my findings. 1. rpi (opendjk b113) - As a demo i used Gerrit Grunwalds imagerollover [1] which in principle works great but at a certain point crashes with an exception so

CFV: New OpenJFX Committer: Assaf Yavani

2013-10-30 Thread David Hill
I hereby nominate Assaf Yavnai to OpenJFX Committer. Assaf is a member of JavaFX Embedded team at Oracle. Most of Assaf's changes are in Glass/Lens support code: hg log -u Assaf Yavani An incomplete list of Assaf's commits and reviews is also available by the following link:

Re: JavaFX on rPi iOS with RoboVM

2013-10-30 Thread Tom Schindl
[...] x/y translate animations: animation them e.g. by sliding them in from is lags a lot. I know that charts are not the easiest components but anyways I think sliding a chart in and out must be smooth. In real english - Animating the charts by e.g. sliding them in from right to left

Re: iOS Default font is wrong

2013-10-30 Thread Oldrich Maticka
Hi, CTFontCreateUIFontForLanguage() returns fonts with same sizes for both iOS and Mac OS X. See table below. Unfortunately I made a mistake when I wrote 15.0 for CTFontCreateUIFontForLanguage(kCTFontPushButtonFontType) font size, unfortunately it is 13.0. Other sizes reported were correct

Re: CFV: New OpenJFX Committer: Assaf Yavani

2013-10-30 Thread Anthony Petrov
Vote: YES -- best regards, Anthony On 10/30/2013 07:53 PM, David Hill wrote: I hereby nominate Assaf Yavnai to OpenJFX Committer. Assaf is a member of JavaFX Embedded team at Oracle. Most of Assaf's changes are in Glass/Lens support code: hg log -u Assaf Yavani An incomplete list of

Re: CFV: New OpenJFX Committer: Assaf Yavani

2013-10-30 Thread Kevin Rushforth
Vote: YES David Hill wrote: I hereby nominate Assaf Yavnai to OpenJFX Committer. Assaf is a member of JavaFX Embedded team at Oracle. Most of Assaf's changes are in Glass/Lens support code: hg log -u Assaf Yavani An incomplete list of Assaf's commits and reviews is also available by

Re: iOS Default font is wrong

2013-10-30 Thread Felipe Heidrich
Could we call UIFont using Objective-C Runtime Something like: id class_UIFont = objc_getClass(UIFont); SEL sel_labelFontSize = sel_registerName(labelFontSize); float size = objc_msgSend_fpret(class_UIFont, sel_labelFontSize); ? Anyway, we are back to the original question: What font to

Re: iOS Default font is wrong

2013-10-30 Thread Oldrich Maticka
At least on iOS 7.0 - recommended (default) font for UIButton is not bold. It is System 15.0 (family: Helvetica Neue, style: Regular, size: 15.0) in Interface Builder. Oldrich On 10/30/13 8:41 PM, Felipe Heidrich wrote: Could we call UIFont using Objective-C Runtime Something like: id

Re: JMX is now open source

2013-10-30 Thread Mario Torre
This is awesome! Cheers, Mario Il 30/ott/2013 23:06 Kevin Rushforth kevin.rushfo...@oracle.com ha scritto: The JMX tooling code is now open-source in modules/jmx. This means that we really are down to just the following optional pieces that will remain closed: VP6, T2K, and deploy. -- Kevin

Re: iOS Default font is wrong

2013-10-30 Thread Stephen F Northover
Eh? Just create a bogus native control, query the font and throw the control away. No text node necessary. Stege On 2013-10-30 4:27 PM, Richard Bair wrote: The only problem is that the CSS requires a UI control, so just putting a Text node up gets the wrong size. Also the API we have to

Re: JavaFX on rPi iOS with RoboVM

2013-10-30 Thread Stephen F Northover
Hi Tom, I bet if you entered a JIRA for some of these items (with [iOS] in the title), someone ... cough, cough ... might be able to take a look at them. My RoboVM setup has been broken for a few weeks and I have been unable to get to it. Steve On 2013-10-30 11:47 AM, Tom Schindl wrote:

Re: Reenable webkit on jfx78?

2013-10-30 Thread Stephen F Northover
My vote: enable it. Steve On 2013-10-30 6:07 PM, Stefan Fuchs wrote: Hi, Currently the web-module (aka webkit) is not included in the jfx78 backport. I have done some tests after enabling it in jfx78. At least on linux it works fine. However it increases the compile time and memory usage

hg: openjfx/8/graphics/rt: RT-33914: Composite glyphs broken [again]

2013-10-30 Thread hang . vo
Changeset: 6cedb133f7c8 Author:Felipe Heidrich felipe.heidr...@oracle.com Date: 2013-10-30 15:32 -0700 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/6cedb133f7c8 RT-33914: Composite glyphs broken [again] Reviewed-by: Steve Northover !

Re: Reenable webkit on jfx78?

2013-10-30 Thread Danno Ferrin
For a historical perspective my principal reason for disabling was that it wasn't compiling. So if it is now compiling, I have no problem with it. On Wed, Oct 30, 2013 at 4:29 PM, Stephen F Northover steve.x.northo...@oracle.com wrote: My vote: enable it. Steve On 2013-10-30 6:07 PM,

Re: Reenable webkit on jfx78?

2013-10-30 Thread Danno Ferrin
Also, if anyone wants on this list wants commit access to jfx78 to commit patches, just ask. On Wed, Oct 30, 2013 at 7:56 PM, Danno Ferrin danno.fer...@shemnon.comwrote: For a historical perspective my principal reason for disabling was that it wasn't compiling. So if it is now compiling, I

hg: openjfx/8/graphics/rt: RT-33704: parse url( as a token, not as a function.

2013-10-30 Thread hang . vo
Changeset: ee2deaadbc15 Author:David Grievedavid.gri...@oracle.com Date: 2013-10-30 21:47 -0400 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/ee2deaadbc15 RT-33704: parse url( as a token, not as a function. !

hg: openjfx/8/graphics/rt: Ensemble8: Fix for RT-33966 Timeline Events sample affects BendingPages effect due to animated bounds

2013-10-30 Thread hang . vo
Changeset: fb3a8f1fc155 Author:Alexander Kouznetsov Date: 2013-10-30 20:25 -0700 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/fb3a8f1fc155 Ensemble8: Fix for RT-33966 Timeline Events sample affects BendingPages effect due to animated bounds !