Re: Public way to monitor JavaFX Windows

2014-11-25 Thread Matthieu BROUILLARD
Thanks for the info Kevin, I commented the ticket and up-voted it. Meanwhile we'll have to keep the polling on Window.impl_getWindows() Matthieu On Tue, Nov 25, 2014 at 4:50 PM, Kevin Rushforth wrote: > There is a JIRA already filed to track this request: > > https://javafx-jira.kenai.com/brow

Re: Public way to monitor JavaFX Windows

2014-11-25 Thread Kevin Rushforth
There is a JIRA already filed to track this request: https://javafx-jira.kenai.com/browse/RT-36196 -- Kevin Matthieu BROUILLARD wrote: Hi all, I'd like to know if there is a public way to monitor all "root" window JavaFX objects (Window, Stage, PopupWindow). All what I have found until now

Re: Public way to monitor JavaFX Windows

2014-11-25 Thread Benjamin Gudehus
Hi! TestFX uses `javafx.stage.Window.impl_getWindows()` to search nodes for user input simulation and state verification. I haven't spotted a public way to retrieve or even monitor windows or stages. Also: Searching for nodes within all windows simplifies tests for open popup window drastically in

Public way to monitor JavaFX Windows

2014-11-25 Thread Matthieu BROUILLARD
Hi all, I'd like to know if there is a public way to monitor all "root" window JavaFX objects (Window, Stage, PopupWindow). All what I have found until now is "private impl" - com.sun.javafx.stage.StageHelper.getStages(), observable but relevant only for Stages - javafx.stage.Window.imp