Re: CFV: New OpenJFX Committer: Johan Vos

2015-12-22 Thread Jasper Potts
Vote: yes Sent from my iPhone > On Dec 22, 2015, at 5:03 PM, Alexander Kouznetsov > wrote: > > Vote: yes > > Best regards, > Alexander Kouznetsov > (408) 276-0387 > >> On 21 дек 2015 11:45, David Hill wrote: >> >> I hereby nominate Johan Vos to OpenJFX Committer. >> >> Johan Vos (jvos) has

Re: iMX6Q graphics performance

2015-01-28 Thread Jasper Potts
We were getting good performance with 1080p for JavaOne keynote Car demo last year. Though not as good as Odroid U3 Jasper Sent from my iPhone > On Jan 28, 2015, at 8:47 AM, David Hill wrote: > >> On 1/28/15, 2:09 AM, Prasant Jalan wrote: >> Few more questions about your Boundary Devices iMX6

Re: License for DukePad and some of the demo apps

2015-01-25 Thread Jasper Potts
Hi, All samples should have been BSD, expect it was a automated script. Maybe Kevin can help sort it out. Jasper > On Jan 25, 2015, at 4:49 AM, Sven Reimers wrote: > > Hi, > > any special reason the demo code for the duke pad and the according apps is > GPL with CPE and not BSD like SceneBui

Re: Embedding Mac native widgets into a Scene

2014-10-31 Thread Jasper Potts
The iOS implementation worked well. Used CALayers to draw over the top of Fx. It synced font and colors etc. made native background transparent. Jasper > On Oct 31, 2014, at 7:52 AM, Stephen F Northover > wrote: > > Hi Mike, > > Embedding native controls in FX runs afoul of the whole > l

hg: openjfx/8u-dev/rt: Modena Test App - Fixed reloading of Caspian Stylesheet

2014-07-25 Thread jasper . potts
Changeset: d154a28970c5 Author:"Jasper Potts" Date: 2014-07-25 10:24 -0700 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/d154a28970c5 Modena Test App - Fixed reloading of Caspian Stylesheet ! apps/samples/Modena/src/main/java/modena/Modena.java

hg: openjfx/8u-dev/rt: Modena Test App - Made sections drop down menu alphabetically sorted

2014-07-23 Thread jasper . potts
Changeset: e8ef717f8654 Author:"Jasper Potts" Date: 2014-07-23 16:49 -0700 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/e8ef717f8654 Modena Test App - Made sections drop down menu alphabetically sorted ! apps/samples/Modena/src/main/java/modena/SamplePageNavigation.java

hg: openjfx/8u-dev/rt: Many improvements to Modena CSS for Spinner.

2014-07-17 Thread jasper . potts
Changeset: 1de821d7599b Author:"Jasper Potts" Date: 2014-07-17 13:55 -0700 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/1de821d7599b Many improvements to Modena CSS for Spinner. Added Spinners to Modena sample application ! apps/samples/Modena/src/main/j

Re: Dynamic position/size change and built-in layouts

2014-04-03 Thread Jasper Potts
VBox preferred size will grow if one of its children's preferred sizes grows. It will be down the the parent node of the VBox to react to that and make the VBox bigger if there is space available. The change is not immediate it will happen one pulse later. Jasper > On Apr 3, 2014, at 7:01 AM,

Re: macosx fullscreen and window manager

2014-03-31 Thread Jasper Potts
Hot corners and screen saver could just be turned off in system preferences. Then the cursor set to empty. If you need dynamic then you might be able to use something like JNA or JNIWrapper to make native call need to disable those things. Jasper > On Mar 29, 2014, at 2:08 AM, Erik Colson wr

Re: Opacity in Image.getPixelReader.getColor()

2014-03-17 Thread Jasper Potts
My understanding is alpha and opacity are same just different range. Opacity is 0.0 to 1.0 Alpha is 0 to 255 Jim or Kevin will be authority on this. Jasper > On Mar 16, 2014, at 5:55 AM, Tom Schindl wrote: > > Hi, > > Maybe I'm completely wrong but to me it looks like the opacity I get > f

Re: Performance-limiting characteristics of Nodes

2013-12-30 Thread Jasper Potts
is resulted in a lot of nodes and he says the Pi has a maximum of >>>> about 120 nodes. Now, these background nodes (and all others that make up >>>> the dial) are static nodes, they do not easily go dirty. So I'm not sure >>>> that that is the problem Gerrit experienced

Re: Performance-limiting characteristics of Nodes

2013-12-29 Thread Jasper Potts
My experience was it is not the number of Nodes. It's the number of Nodes that are changed/dirty in a single frame. So having a scene with 500 nodes may take a couple of seconds to render first time but then you can animate a couple of those nodes at 60fps if you done make too big a area dirty.

Re: To Be Or Not To Be (Native), was:Look and feel mechanism?

2013-12-11 Thread Jasper Potts
I feel it's possible to emulate native well enough that vast majority of users would not notice. But I don't think it's commercially viable as the cost to create and maintain is just too high. I worked for years with apps using Swing native LAF and later on worked on Swing team on LAFs including

Re: Look and feel mechanism?

2013-12-08 Thread Jasper Potts
You can set skin classes from CSS so should be able to do everything you could with Swing and more. With just a CSS file and skins as and when needed. Jasper > On Dec 8, 2013, at 3:00 PM, Jonathan Giles wrote: > > At present there are no plans to introduce any further API or > functionality i

Re: Proportional paint object behavior inconsistent and needs to change

2013-11-18 Thread Jasper Potts
I agree with Scott, it seems bad if gradient doesn't match stroke bounds when applied to stroke. Jasper > On Nov 18, 2013, at 9:36 PM, Scott Palmer wrote: > > It wasn't clear from your original message that the stroke bounds were much > more expensive. Given that additional info I don't thin

Re: CFV: New OpenJFX Committer: Joseph Andresen

2013-09-25 Thread Jasper Potts
Vote: yes On Sep 25, 2013, at 8:17 AM, Artem Ananiev wrote: > > I hereby nominate Joe Andresen to OpenJFX Committer. > > Joe is a member of JavaFX Graphics team at Oracle. His first changeset in > Prism is dated by 2009, and total number of commits is close to one hundred. > Full list of Joe

Re: Checkboxes in a combobox popup

2013-09-16 Thread Jasper Potts
You could try http://docs.oracle.com/javafx/2/api/javafx/scene/control/ScrollPane.html#setFitToWidth(boolean) Or what about using MenuButton with check box menu items? Jasper On Sep 16, 2013, at 5:44 AM, Werner Lehmann wrote: > Never mind. I tried to cut some corners reusing a combobox for a

Re: Default Font in JavaFX 2.2 and JavaFX 8

2013-08-24 Thread Jasper Potts
Windows XP = Tahoma 8pt Windows Vista or newer = Segoe UI 12,15 or 18 depending on user large font setting Mac = Lucida Grande 13 Linux = I am not 100% sure think Lucida Sans 12 Jasper On Aug 24, 2013, at 7:55 AM, Richard Bair wrote: > It depends on the platform. We choose as the default whate

Re: CFV: New OpenJFX Committer:Daniel Blaukopf

2013-08-06 Thread Jasper Potts
Vote: yes. Jasper On Aug 6, 2013, at 8:15 AM, David Hill wrote: > I hereby nominate Daniel Blaukopf to OpenJFX Committer. > Daniel is a member of the Embedded Device team, which means he works across > various aspects of the platform. He is also the architect for the "embedded > device" space

Re: FBX Importer for OpenJFX

2013-07-25 Thread Jasper Potts
We at Oracle don't have plans for a FBX importer. We have a importer for Maya ASCII which supports animation. Other than that simple mesh importers for Obj, Max and Collada. We are working on a more fully featured Collada importer that will support animation etc. You may be able to get away wi

Re: CFV: New OpenJFX Committer: Debra Masada

2013-07-10 Thread Jasper Potts
Vote: yes On Jul 10, 2013, at 3:30 AM, David Grieve wrote: > Vote: yes > > On Jul 9, 2013, at 6:07 PM, Richard Bair wrote: > >> I hereby nominate Debbie Masada to OpenJFX Committer. >> >> Debbie is a member of the samples team and works on Ensemble and other >> sample applications, adding f

Re: CFV: New OpenJFX Committer: Oleg Mazurov

2013-07-10 Thread Jasper Potts
Vote: YES On Jul 10, 2013, at 1:05 AM, Anthony Petrov wrote: > Vote: YES

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

2013-05-28 Thread Jasper Potts
Hi All, Seems like we have 3 use cases: requestLayout() - my layout and/or my size has changed - action relayout myself and all parents requestParentLayout() - my size has changed only - layout my parents requestLocalLayout() - something requiring my children to be rela