Re: JavaFX8: Multittouch support under Linux

2014-04-04 Thread Stefan Schwandter
Hi, thanks! I’ve tried to compile on a current Ubuntu 13.10. A default build (gradle 1.8 without parameters) works fine. With gradle -PCOMPILE_TARGETS=x86egl sdk however, I get the following build error: stefan@stefan-OptiPlex-GX620:~/src/openjfx/rt$ gradle -PCOMPILE_TARGETS=x86egl sdk

hg: openjfx/8u-dev/rt: RT-36391: Accessibility support for MenuBar

2014-04-04 Thread hang . vo
Changeset: 932776525610 Author:Anthony Petrov anthony.pet...@oracle.com Date: 2014-04-04 14:58 +0400 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/932776525610 RT-36391: Accessibility support for MenuBar Reviewed-by: fheidric !

Re: Fractional Metrics

2014-04-04 Thread ngalarneau
I'm sorry if this is redundant, but does this mean there is no way to find out the size (length height) of a String as it will appear on the screen? What about the size of a String as it will be printed? Neil From: Phil Race philip.r...@oracle.com To: Jeff Martin

Re: Fractional Metrics

2014-04-04 Thread Jeff Martin
I have a couple of solutions for this right now, but neither are optimal: 1. GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice(),getDefaultConfiguration() .createCompatibleImage(1, 1).createGraphics().getFontMetrics(font).stringWidth(string)

hg: openjfx/8u-dev/rt: Follow-up for RT-36391: Accessibility support for MenuBar

2014-04-04 Thread hang . vo
Changeset: 3ad008a21577 Author:Anthony Petrov anthony.pet...@oracle.com Date: 2014-04-04 17:53 +0400 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/3ad008a21577 Follow-up for RT-36391: Accessibility support for MenuBar Sumamry: Add the MENU_ITEM_TYPE attribute for menu

Mali-400, looking for some help

2014-04-04 Thread David Hill
Hi community, I have 3 different community boards with Mali-400 on them, and have yet to get the satisfaction of a simple GLESv2 app rendering without X11 in the way. Perhaps this is because I am a library guy (not a kernel guy), perhaps it is due to the emphasis on X11 in the distros,

[8u20] Review Request: RT-36293 [TouchEvent, PopupControl] Using a ListView in PopupControl generates a lot of TouchEvent NPE

2014-04-04 Thread Petr Pchelko
Hello, Please review the fix for the issue: https://javafx-jira.kenai.com/browse/RT-36293 Webrev: http://cr.openjdk.java.net/~pchelko/fx/36293/webrev/ With best regards. Petr.

hg: openjfx/8u-dev/rt: RT-36530: applications won't run after 85-th build

2014-04-04 Thread hang . vo
Changeset: f97cff1a860b Author:shemnon Date: 2014-04-04 09:53 -0600 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/f97cff1a860b RT-36530: applications won't run after 85-th build Summary: fxpackaging was mistakenly turned on all the time. !

hg: openjfx/8u-dev/rt: [Toys] improve HelloPopupMenu

2014-04-04 Thread hang . vo
Changeset: e4f7229fd8e8 Author:Felipe Heidrich felipe.heidr...@oracle.com Date: 2014-04-04 09:28 -0700 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/e4f7229fd8e8 [Toys] improve HelloPopupMenu ! apps/toys/Hello/src/main/java/hello/HelloPopupMenu.java

Re: Fractional Metrics

2014-04-04 Thread Phil Race
On 4/4/2014 6:41 AM, ngalarn...@abinitio.com wrote: I'm sorry if this is redundant, but does this mean there is no way to find out the size (length height) of a String as it will appear on the screen? What about the size of a String as it will be printed? No it does not mean that. The way

Re: Fractional Metrics

2014-04-04 Thread Tom Schindl
If you don't mind using internal APIs then: TextLayoutFactory factory = Toolkit.getToolkit().getTextLayoutFactory(); TextLayout layout = factory.createLayout(); layout.setContent(BlaBla, Font.getDefault().impl_getNativeFont()); BaseBounds b = layout.getBounds(); I find it strange the canvas

hg: openjfx/8u-dev/rt: [Accessibility] RT-36268: Disable, Radio, Check, and Accelerators support for MenuItem

2014-04-04 Thread hang . vo
Changeset: 978e5c042214 Author:Felipe Heidrich felipe.heidr...@oracle.com Date: 2014-04-04 11:42 -0700 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/978e5c042214 [Accessibility] RT-36268: Disable, Radio, Check, and Accelerators support for MenuItem !

(In)sanity Monday...

2014-04-04 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,

[8u20] Review request: RT-35197: Use Lambda in FX runtime and samples

2014-04-04 Thread Stephen F Northover
Hi Kevin, Please review the lambdification of the graphics component. You are welcome to apply the patch, but there are numerous changes and they are all automatic. If you or any of the team have outstanding changes, please coordinate with me in the JIRA and I will re-lambdify after you have

Re: Expected frame rates for a full-screen blur

2014-04-04 Thread Mike Hearn
OK, now I'm really puzzled - I watched the JavaFX performance talk from 2011 and learned about PeformanceTracker. It's too bad that's not public API, but it works. I used it like so: PerformanceTracker tracker = PerformanceTracker.getSceneTracker(scene); tracker.setOnRenderedFrameTask(new

Re: Expected frame rates for a full-screen blur

2014-04-04 Thread Stephen F Northover
Hi Mike, I'm sorry that I've been unable to get to this until now. I can recreate the problem you are seeing on my Mac by running ColorfulCirclesApp. Please enter a JIRA for the problem. Thanks. Also try this: Try this: PerformanceTracker tracker =

Re: Expected frame rates for a full-screen blur

2014-04-04 Thread Richard Bair
You might also want to try using the PulseLogger (which was recently refactored to be usable from Java Flight Recorder). See http://hg.openjdk.java.net/openjfx/8u-dev/rt/file/978e5c042214/modules/base/src/main/java/com/sun/javafx/logging/PrintLogger.java. Basically a few system properties are

Building OpenJFX on Mac OS X 10.9.2 / XCode 5.1 / XCode 4.3.3

2014-04-04 Thread Philipp Dörfler
Hi, just out of curiousity I wanted to build OpenJFX, but although I followed the instructions at https://wiki.openjdk.java.net/display/OpenJFX/Building+OpenJFX I can’t get it to work. gradle 1.8 fails when building :fxpackage:compileLauncher as follows: :fxpackager:compileLauncher clang:

Re: Building OpenJFX on Mac OS X 10.9.2 / XCode 5.1 / XCode 4.3.3

2014-04-04 Thread Petr Pchelko
Hello, Philipp. As a quick workaround you can run: sudo ln -s /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk FX does-not use any new API’s

Re: Building OpenJFX on Mac OS X 10.9.2 / XCode 5.1 / XCode 4.3.3

2014-04-04 Thread Danno Ferrin
I use XCodeLegacy http://devernay.free.fr/hacks/xcodelegacy/ The problem is that Xcode 5 doesn’t include the tools to build for 10.7 Lion anymore, and if you are like me and rebuilt a dev env on a clean 10.9 Mavericks mac, you don’t have those old SDKs. The script will install them for you

Re: Building OpenJFX on Mac OS X 10.9.2 / XCode 5.1 / XCode 4.3.3

2014-04-04 Thread Stephen F Northover
Put this in your gradle.properties file: MACOSX_SDK_PATH = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk We need to document this on the wiki. Will do that Monday. Gotta go now. Steve On 2014-04-04 5:31 PM, Philipp Dörfler wrote: Hi,

hg: openjfx/8u-dev/rt: [Accessibility] RT-36268: KeyCodeCombination Accelerators support for MenuItem

2014-04-04 Thread hang . vo
Changeset: 982ba496a413 Author:Felipe Heidrich felipe.heidr...@oracle.com Date: 2014-04-04 15:20 -0700 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/982ba496a413 [Accessibility] RT-36268: KeyCodeCombination Accelerators support for MenuItem !

Re: Building OpenJFX on Mac OS X 10.9.2 / XCode 5.1 / XCode 4.3.3

2014-04-04 Thread Philipp Dörfler
Thanks so much for all these valuable suggestions :) XCodeLegacy looks interesting, I thought of the symbolic link too but assumed there was a reason and good to know that you can change that behaviour in the build itself. Looking forward to see that in the wiki! Cheers and have a great

hg: openjfx/8u-dev/rt: [Accessibility] Removing TOGGLE_STATE from API

2014-04-04 Thread hang . vo
Changeset: d0fe73b4335a Author:Felipe Heidrich felipe.heidr...@oracle.com Date: 2014-04-04 16:19 -0700 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/d0fe73b4335a [Accessibility] Removing TOGGLE_STATE from API !

hg: openjfx/8u-dev/rt: [Accessibility] Fix TOGGLE_BUTTON (got the wrong role name in the transition to remove TOGGLE_STATE)

2014-04-04 Thread hang . vo
Changeset: 4e6e6ad7ad1d Author:Felipe Heidrich felipe.heidr...@oracle.com Date: 2014-04-04 16:56 -0700 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/4e6e6ad7ad1d [Accessibility] Fix TOGGLE_BUTTON (got the wrong role name in the transition to remove TOGGLE_STATE) !