Re: Taskbar API from JavaFX Window?

2020-11-02 Thread Will Iverson
The bug reports are great, thank you. Aside from philosophically voting up the issue not sure what else I can add. Here is the (somewhat amusing) workaround thread from StackOverflow: https://stackoverflow.com/questions/64616443/how-to-get-awt-window-for-javafx-stage/64651359#64651359 Cheers,

Re: Taskbar API from JavaFX Window?

2020-11-02 Thread Scott Palmer
For that API, you might consider using an AWT root Window with a JFXPanel rather than a JavaFX Window to hold your JavaFX UI. But discussion of how to code the application side is not relevant for this list. For the record here are the relevant JavaFX issues:

Re: Taskbar API from JavaFX Window?

2020-11-02 Thread Will Iverson
What Window should I pass in for the setWindowProgressState window argument? It requires a java.awt.Window? On Sun, Nov 1, 2020 at 5:48 PM Scott Palmer wrote: > They work fine. Just remember to use the Swing/AWT event thread to call > them. > > Scott > > > On Nov 1, 2020, at 8:39 PM, Will

Re: Taskbar API from JavaFX Window?

2020-11-01 Thread Scott Palmer
They work fine. Just remember to use the Swing/AWT event thread to call them. Scott > On Nov 1, 2020, at 8:39 PM, Will Iverson wrote: > > Looking at native desktop integration with JavaFX. As I was exploring, I > noticed that the java.awt.Taskbar API does not appear to be available for >

Taskbar API from JavaFX Window?

2020-11-01 Thread Will Iverson
Looking at native desktop integration with JavaFX. As I was exploring, I noticed that the java.awt.Taskbar API does not appear to be available for JavaFX Windows. https://docs.oracle.com/javase/10/docs/api/java/awt/Taskbar.html#setWindowProgressState(java.awt.Window,java.awt.Taskbar.State) Many