Skip to content

Conversation

@lukostyra
Copy link
Contributor

@lukostyra lukostyra commented Jul 16, 2025

This PR fixes isFocused() returning invalid value when Stage fails to receive focus after calling Stage.show(). This problem is Windows-only.

In Windows the SetForegroundWindow() API lists a set of conditions to successfully grant focus to a Window. If any of the conditions are not met, the API will return FALSE. JavaFX did not respect that and instead assumed that receiving WM_ACTIVATE with our Window being activated is enough to assume the Window is in focus (which in some cases is not true).

I first tried reacting to WM_SETFOCUS and WM_KILLFOCUS but it seems those messages are not sent when the window is shown for the first time (instead WM_ACTIVATE is used).

To correct this behavior, I noticed the following path is the most reliable:

  • Call ShowWindow() using SW_SHOWNA instead of SW_SHOW - that makes the window visible but does NOT activate it
  • Call SetForegroundWindow() - that will attempt to give the Window focus and will also activate it if it is successful
    • If successful, Java notifyFocus callback will be called via WM_ACTIVATE handler
    • If it fails, we call the notifyFocus callback manually informing the upper layers the focus is lost. This establishes the correct state of Window.focused property.

With this change I observed that all tests pass as intended as long as two conditions are met (these are needed to satisfy SetForegroundWindow() restrictions):

  • Gradle build is ran without the Gradle daemon
  • The terminal running Gradle test is in foreground

If any of above two conditions is not met, some tests (including canary test from #1804) now timeout/fail when checking whether Window.isFocused() is true.

Manually started JavaFX apps (ex. Ensemble) run as they used to and still receive focus upon Stage showing.


Progress

  • Change must not contain extraneous whitespace
  • Commit message must refer to an issue
  • Change must be properly reviewed (2 reviews required, with at least 1 Reviewer, 1 Author)

Issue

  • JDK-8359899: Stage.isFocused() returns invalid value when Stage fails to receive focus (Bug - P3)

Reviewing

Using git

Checkout this PR locally:
$ git fetch https://git.openjdk.org/jfx.git pull/1849/head:pull/1849
$ git checkout pull/1849

Update a local copy of the PR:
$ git checkout pull/1849
$ git pull https://git.openjdk.org/jfx.git pull/1849/head

Using Skara CLI tools

Checkout this PR locally:
$ git pr checkout 1849

View PR using the GUI difftool:
$ git pr show -t 1849

Using diff file

Download this PR as a diff file:
https://git.openjdk.org/jfx/pull/1849.diff

Using Webrev

Link to Webrev Comment

@bridgekeeper
Copy link

bridgekeeper bot commented Jul 16, 2025

👋 Welcome back lkostyra! A progress list of the required criteria for merging this PR into master will be added to the body of your pull request. There are additional pull request commands available for use with this pull request.

@openjdk
Copy link

openjdk bot commented Jul 16, 2025

❗ This change is not yet ready to be integrated.
See the Progress checklist in the description for automated requirements.

@lukostyra lukostyra marked this pull request as ready for review August 4, 2025 08:47
@openjdk openjdk bot added the rfr Ready for review label Aug 4, 2025
@mlbridge
Copy link

mlbridge bot commented Aug 4, 2025

Webrevs

@kevinrushforth kevinrushforth self-requested a review August 18, 2025 19:40
@bridgekeeper
Copy link

bridgekeeper bot commented Sep 1, 2025

@lukostyra This pull request has been inactive for more than 4 weeks and will be automatically closed if another 4 weeks passes without any activity. To avoid this, simply issue a /touch or /keepalive command to the pull request. Feel free to ask for assistance if you need help with progressing this pull request towards integration!

@lukostyra
Copy link
Contributor Author

/keepalive

@openjdk
Copy link

openjdk bot commented Sep 3, 2025

@lukostyra The pull request is being re-evaluated and the inactivity timeout has been reset.

@beldenfox
Copy link
Contributor

I’ve been testing this PR by launching the manual KeyboardTest app.

java @build/run.args tests/manual/events/KeyboardTest.java

The call to SetForegroundWindow fails but not before activating the window. Since it’s not the foreground window this PR correctly sets the JavaFX focused property back to false. But when I later click on the title bar to bring the window to the foreground the focused property is not updated.

I’m not sure how we’re expected to detect that our HWND has come to the foreground. There’s no specific message sent when this happens and since the OS thinks the window is already active and focused we don’t get WM_ACTIVATE or WM_SETFOCUS. There’s some messages we could use heuristically (like WM_NCACTIVATE) but I couldn’t find anything more clear cut. I'll keep looking but it doesn't look like Windows makes this easy.

@lukostyra
Copy link
Contributor Author

@beldenfox thanks for checking. I remember doing a fair share of looking for a reliable answer to this and couldn't find anything specific, other that SetForegroundWindow being able to fail and having to "handle it". I'll get back to testing this starting next week as well, maybe we'll manage to track down some more reasonable solution.

@bridgekeeper
Copy link

bridgekeeper bot commented Oct 17, 2025

@lukostyra This pull request has been inactive for more than 4 weeks and will be automatically closed if another 4 weeks passes without any activity. To avoid this, simply issue a /touch or /keepalive command to the pull request. Feel free to ask for assistance if you need help with progressing this pull request towards integration!

@lukostyra
Copy link
Contributor Author

/touch

I didn't get a chance to look into other solutions yet, but I will be investigating that soon.

@openjdk
Copy link

openjdk bot commented Oct 23, 2025

@lukostyra The pull request is being re-evaluated and the inactivity timeout has been reset.

@lukostyra
Copy link
Contributor Author

The call to SetForegroundWindow fails but not before activating the window. Since it’s not the foreground window this PR correctly sets the JavaFX focused property back to false. But when I later click on the title bar to bring the window to the foreground the focused property is not updated.

I played around with this for a bit and I cannot reproduce this behavior. When I start the app it gets brought to foreground and stage.isFocused() returns true as it should for me.

Could it be the difference between Windows versions maybe? I'm running Win 11 24H2 at this point in time.

@kevinrushforth
Copy link
Member

Reviewers: @beldenfox @kevinrushforth

/reviewers 2

@openjdk
Copy link

openjdk bot commented Oct 29, 2025

@kevinrushforth
The total number of required reviews for this PR (including the jcheck configuration and the last /reviewers command) is now set to 2 (with at least 1 Reviewer, 1 Author).

Copy link
Member

@kevinrushforth kevinrushforth left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The code changes look reasonable to me. I did leave one question inline.

What is the best way to test this? Ideally, I'd like a way to locally force the case where a window cannot be made focusable and have that test check the value of Stage::isFocused, reporting it (incorrectly) as true without this fix and false with the fix. I would then like to click on the Window (as @beldenfox did), and verify that it now reports as true.

I was able to verify that I get a different failing error message when I run StageFocusTest with gradle daemon enabled. Without this fix, two test methods fail when they try to readback the color. With this fix, they report that the window doesn't have focus. So that seems to validate at least part of the fix.

Comment on lines -1949 to +1959
::ShowWindow(hWnd, visible ? SW_SHOW : SW_HIDE);
::ShowWindow(hWnd, visible ? SW_SHOWNA : SW_HIDE);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this change needed? I presume that the idea behind it is that if it is a focusable window, it will be activated anyway?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, this is part of the fix. The values in question are:

  • SW_SHOW - shows a window and activates it, sending the WM_ACTIVATE message
  • SW_SHOWNA - shows a window but doesn't activate it - activation is postponed to us later calling ::SetForegroundWindow()

By using SW_SHOWNA we can postpone the window activation and have ::SetForegroundWindow() trigger it. If ::SetForegroundWindow() succeeds, window gets activated and gains focus, and WM_ACTIVATE gets sent, which will then be captured by JavaFX message loop so we can notify Java-side that we gained focus. If ::SetForegroundWindow() fails, we see that in this function and we can notify Java-side the focus has been lost.

This is unfortunately a bit hacky, but I couldn't find another way of establishing whether we actually have focus or not, especially combining that with what ::SetForegroundWindow() returns. With SW_SHOW the WM_ACTIVATE message would go through despite ::SetForegroundWindow() failing and us ultimately not having focus.

My first attempt also considered leaving this part as-is and simply notifying Java-side if we lost focus or not based on ::SetForegroundWindow() result, but that wasn't consistent. Postponing the window activation seemed to me as the best bet here.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

On my system the SetForegroundWindow call activates the window and makes it the focus window. We get WM_ACTIVATE and WM_SETFOCUS and tell the Java side to set the focused property to true. Then SetForegroundWindow returns false and we tell the Java side to clear the focused property.

@beldenfox
Copy link
Contributor

I played around with this for a bit and I cannot reproduce this behavior. When I start the app it gets brought to foreground and stage.isFocused() returns true as it should for me.

Could it be the difference between Windows versions maybe? I'm running Win 11 24H2 at this point in time.

I'm also running an up-to-date version of Win 11. I can reproduce the ::SetForegroundWindow failure when launching from a MinGW terminal window but not from a Cygwin terminal.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

rfr Ready for review

Development

Successfully merging this pull request may close these issues.

3 participants