Re: How to apply skin?

2015-02-09 Thread Werner Lehmann
Hi Tomas, I think the expected way of doing this is to defer the code which requires the control width until normal layout passes come across it. Or maybe not only defer that code but actually move it to layouting methods. Werner On 09.02.2015 00:51, Tomas Mikula wrote: Actually, I want

Re: Event Filtering

2015-02-09 Thread Werner Lehmann
Hi Scott, at least in Java 8 you can override TextInputControl#replaceText and/or TextInputControl#replaceSelection to convert lowercase into uppercase. I have used it for exactly this purpose. Werner On 07.02.2015 01:33, Scott Palmer wrote: But let's say that I want to allow the user to

Re: How to apply skin?

2015-02-09 Thread Tomas Mikula
Hi Werner, the problem is that I am already doing it in layout: only in the layout process of the parent node do I determine that I need to add some more child nodes. So after adding them, I would like to have them properly laid out in the current layout pass. Tomas On Mon, Feb 9, 2015 at 4:43

[8u-dev] Code Review Request: RT-39855: StageStyle.UNIFIED not working on OSX 10.9.5

2015-02-09 Thread Morris Meyer
Kevin, David and Chien, Could you review my fix for this regression? I have tested this on Mac OSX 10.10.3 (pre-release). Thanks much. --morris JIRA - https://javafx-jira.kenai.com/browse/RT-39855 WEBREV - http://cr.openjdk.java.net/~morris/RT-39855

8u-dev unlocked following this week's sanity testing eom

2015-02-09 Thread Kevin Rushforth

Re: Event Filtering

2015-02-09 Thread Werner Lehmann
I see. Looks as if the textfield in a combobox cannot be subclassed because of final restrictions. As a last resort, you could use your own textfield as a buttoncell - which would of course skip over all special handling for editable comboboxes in the skin... Werner On 09.02.2015 12:44,

Re: Event Filtering

2015-02-09 Thread Scott Palmer
When the actual control is an editable combobox it gets more complicated. That is the case that prompted my original message. Scott On Feb 9, 2015, at 4:47 AM, Werner Lehmann lehm...@media-interactive.de wrote: Hi Scott, at least in Java 8 you can override TextInputControl#replaceText

Warning message when shuting down JavaFX app on OS-X

2015-02-09 Thread Tom Schindl
Hi, If I remember correctly the bug leading to Java has been detached already, but someone is still trying to use it at -[GlassRunnable run]:/HUDSON/workspace/8u40/label/macosx-universal-30/rt/modules/graphics/src/main/native-glass/mac/GlassApplication.m:93 Java has been detached already,

Re: Warning message when shuting down JavaFX app on OS-X

2015-02-09 Thread Kevin Rushforth
There was a similar bug fixed in 8u40, but you are right that this still happens some of the time. It is tracked by: https://javafx-jira.kenai.com/browse/RT-39797 -- Kevin Tom Schindl wrote: Hi, If I remember correctly the bug leading to Java has been detached already, but someone is