Re: Is it possible to have a SwingNode inside a JFXPanel

2015-01-28 Thread Werner Lehmann
We have had both scenarios and encountered issues in these areas: - dragdrop inside the component/node and between swing/fx - repaint issues, sometimes the jfxpanel would appear all black - resize issues, changes to the content of either swingnode or jfxpanel would not be passed to the

Re: TableView API, no lazy retrieval of visible cell content possible?

2015-01-28 Thread Robert Krüger
Hi, On Wed, Jan 28, 2015 at 1:59 PM, Werner Lehmann lehm...@media-interactive.de wrote: Robert, I think Tomas is right, load your thumbnails on demand when updateItem is called for an item with missing thumbnail. You say that the cell of a visible item gets reused for another item. If that

Re: How to use scaleX/Y to change layout bounds?

2015-01-28 Thread Werner Lehmann
Hi Tobi, wrap the button into a group. Werner On 28.01.2015 07:51, Tobias Bley wrote: Hi, when I call button.setScaleX(.5) and button.setScaleY(.5) the button changes it’s size only visually - the layout bounds does not change… How can I change this behaviour? Best regards, Tobi

RE: javafx.embed.singleThread flag questions

2015-01-28 Thread Cirujano Cuesta, Diego
Hi Kevin, I think that you mean since 8u40, isn´t? Because there is a ticket about it fixed by 8u40: https://javafx-jira.kenai.com/browse/RT-38921 @Pedro Duque Vieira, as you are talking about using swing and javaFX, do you have any experience with the javafx.embed.singleThread flag?

Re: TableView API, no lazy retrieval of visible cell content possible?

2015-01-28 Thread Robert Krüger
Doesn't help. The patterns of this property being changed are just as unusable for my purposes as with the other approaches (e.g. I can clearly see that item is set to a different value for a cell that is still visible, so this would falsely cancel the loading of that cell's image). And since none

Re: TableView API, no lazy retrieval of visible cell content possible?

2015-01-28 Thread Werner Lehmann
Robert, I think Tomas is right, load your thumbnails on demand when updateItem is called for an item with missing thumbnail. You say that the cell of a visible item gets reused for another item. If that is the case I guess that the item is moved to another cell. Wouldn't it be possible to

Fwd: TableView API, no lazy retrieval of visible cell content possible?

2015-01-28 Thread Robert Krüger
forgot again to reply to all. If anyone ever considers changing the default settings of the list server, +1 from me. -- Forwarded message -- From: Robert Krüger krue...@lesspain.de Date: Wed, Jan 28, 2015 at 3:47 PM Subject: Re: TableView API, no lazy retrieval of visible cell

Re: javafx.embed.singleThread flag questions

2015-01-28 Thread Kevin Rushforth
Yes, I mean since 8u40. -- Kevin Cirujano Cuesta, Diego wrote: Hi Kevin, I think that you mean since 8u40, isn´t? Because there is a ticket about it fixed by 8u40: https://javafx-jira.kenai.com/browse/RT-38921 @Pedro Duque Vieira, as you are talking about using swing and javaFX, do you

Re: TableView API, no lazy retrieval of visible cell content possible?

2015-01-28 Thread Robert Krüger
On Wed, Jan 28, 2015 at 5:55 PM, Robert Krüger krue...@lesspain.de wrote: OK, I investigated some more. What is weird is that the same table cell instance (I checked the Object hashcode) is set to different model values while it is still visible, i.e. I get sequences like this in the log,

Re: iMX6Q graphics performance

2015-01-28 Thread Mike
What is your Favorite Embedded board if you got something right now? Odroid U3? or something else. I guess the Odroid U3 is availabe in Early Feb again at 179.00 US. http://www.hardkernel.com/main/products/prdt_info.php?g_code=G140448267127 On Wed, Jan 28, 2015 at 11:56 AM, Jasper Potts

Re: TableView API, no lazy retrieval of visible cell content possible?

2015-01-28 Thread Robert Krüger
OK, hang on. I may have found a mistake and what I described may not actually have been happening. On Wed, Jan 28, 2015 at 3:13 PM, Robert Krüger krue...@lesspain.de wrote: Hi, On Wed, Jan 28, 2015 at 1:59 PM, Werner Lehmann lehm...@media-interactive.de wrote: Robert, I think Tomas is

Re: iMX6Q graphics performance

2015-01-28 Thread David Hill
On 1/28/15, 3:44 PM, Mike wrote: What is your Favorite Embedded board if you got something right now? Odroid U3? or something else. I guess the Odroid U3 is availabe in Early Feb again at 179.00 US. http://www.hardkernel.com/main/products/prdt_info.php?g_code=G140448267127 My current favorite

Re: iMX6Q graphics performance

2015-01-28 Thread Mike
Thanks so much guys! Last Question is Which boards from BoundaryDevices have you tried with Javafx? I see they have a new board too. This is very helpful information and will save us a lot of time. We are after Top Graphics Performance in Embedded. Mike On Wed, Jan 28, 2015 at 2:03 PM, David

Re: iMX6Q graphics performance

2015-01-28 Thread Mike
OH sorry David, I think you answered this already -- reading above. On Wed, Jan 28, 2015 at 2:03 PM, David Hill david.h...@oracle.com wrote: On 1/28/15, 3:44 PM, Mike wrote: What is your Favorite Embedded board if you got something right now? Odroid U3? or something else. I guess the

Re: iMX6Q graphics performance

2015-01-28 Thread David Hill
On 1/28/15, 5:32 PM, Mike wrote: Thanks so much guys! Last Question is Which boards from BoundaryDevices have you tried with Javafx? I see they have a new board too. This is very helpful information and will save us a lot of time. We are after Top Graphics Performance in Embedded. From

JavaFX and JDK for ARM

2015-01-28 Thread Kevin Rushforth
Many of you have been asking about the status of JavaFX in Linux/ARM embedded platforms. Starting with 8u33, JavaFX has been removed from both Oracle JDK for ARM and Oracle Java SE Embedded. [1] This is a resource trade off within Oracle. Included in that difficult trade off decision was the

Re: custom controls: printing

2015-01-28 Thread Phil Race
That example is not great as it picked the one node type that knows how to do something special with printing and completely overlooks it. The print(Node) method it provides can print any node type but it is scaling it to fit on a single side of paper. That's not ideal for a huge

Re: custom controls: printing

2015-01-28 Thread Tom Eugelink
Ok, I see my question is not quite clear: I'm not looking for how to print, I am trying to figure out how to properly implement printing on a custom control, more specifically JFxtras' Agenda. Agenda has the same problem as the more recognizable usecase of a spreadsheet: it uses a scrollpane

Re: custom controls: printing

2015-01-28 Thread Phil Race
On 1/28/15 10:23 PM, Tom Eugelink wrote: Ok, I see my question is not quite clear: I'm not looking for how to print, I am trying to figure out how to properly implement printing on a custom control, more specifically JFxtras' Agenda. Agenda has the same problem as the more recognizable usecase

Re: custom controls: printing

2015-01-28 Thread Tom Eugelink
On 29-1-2015 08:01, Phil Race wrote: If you create an Agenda that is never displayed but has the same data and set its size so that it can display all the data, I expect it should be possible to scale it so that it fits on one page like the example you referenced but once you have 500 items in

Re: TableView API, no lazy retrieval of visible cell content possible?

2015-01-28 Thread Robert Krüger
Yes, and I think there was a mistake in my code. I have it almost working and have to analyse now, why it does not work for all cells, which may again be my mistake. I will investigate and post an update and if I don't find it, I will build a simple test program to illustrate this. On Wed, Jan

Re: iMX6Q graphics performance

2015-01-28 Thread David Hill
On 1/28/15, 2:09 AM, Prasant Jalan wrote: Few more questions about your Boundary Devices iMX6 Quad: - Amount of RAM/memory in your iMX6 system? - iMX6 Single Core Clock speed (0.8 GHz, 1 GHz or 1.2 GHz) - Which javaFX version did you use to get the above measurements (if you recollect)? I am

Re: javafx.embed.singleThread flag questions

2015-01-28 Thread Pedro Duque Vieira
Hi Diego, No sorry, I have no experience with that flag. I just use Platform.runLater and such.. Thanks, best regards, On Wed, Jan 28, 2015 at 8:15 AM, Cirujano Cuesta, Diego diego.cirujano-cue...@zeiss.com wrote: Hi Kevin, I think that you mean since 8u40, isn´t? Because there is a

Re: AcceleratedScreen

2015-01-28 Thread David Hill
On 1/28/15, 6:04 AM, Johan Vos wrote: Hi, Unless I'm missing something, at this moment an AcceleratedScreen is not able to be reconfigured. Once initialized, the eglSurface is not changed. This leads to the following issue on Android: when the device is rotated, a new surface is created. The