Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

app: [macos] improve focus #93

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Conversation

inkeliz
Copy link
Contributor

@inkeliz inkeliz commented Jul 25, 2022

No description provided.

@eliasnaur
Copy link
Contributor

Can you describe what this PR fixes, preferably in the commit message?

app/os_macos.go Outdated Show resolved Hide resolved
Comment on lines +582 to +584
if w.w.d != nil {
w.w.Event(key.FocusEvent{Focus: w.focused})
}
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Maybe unrelated, add it as new PR?

Before that patch, Gio doesn't remove the focus from any child
NSView. This patch forces Gio to get the focus when clicked. It
also emit the key.FocusOp when the focus is moved to some child
NSView.

Signed-off-by: Inkeliz <[email protected]>
@@ -563,6 +574,16 @@ func gio_onFocus(view C.CFTypeRef, focus C.int) {
w.SetCursor(w.cursor)
}

//export gio_onResponder
func gio_onResponder(view C.CFTypeRef, first C.int) {
Copy link
Contributor

Choose a reason for hiding this comment

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

What about gio_onFocus, windowDidBecomeKey, windowDidResignKey? It seems to me they should be removed by this change. If not, why not?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I think each one fits one purpose. The Responder seems to be related to the current window, and Key is global. In the end:

  • If you minimize the window: the ResignKey is triggered, but resignFirstResponder is not.
  • If you click in another child window: the ResignKey is not triggered, but the resignFirstResponder will be triggered.

Seems that in some conditions, both will notify.

Copy link
Contributor

Choose a reason for hiding this comment

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

I think each one fits one purpose. The Responder seems to be related to the current window, and Key is global. In the end:

* If you minimize the window: the ResignKey is triggered, but resignFirstResponder is not.

* If you click in another child window: the ResignKey is not triggered, but the resignFirstResponder will be triggered.

Seems that in some conditions, both will notify.

So in total, Key is what we want for StageInactive, and Responder is what we want to use for focus, right?

// That function is called when some child view becomes first responder.
w := mustView(view)
w.focused = first == 1
if w.w.d != nil {
Copy link
Contributor

Choose a reason for hiding this comment

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

We don't check w.w.d for nil elsewhere, why here? If it's really necessary, it smells like a different problem, perhaps that SetDriver is called too late.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Without that check it crashes. I'm not sure exactly why. I also tried to wrapper it into w.run() (the main thread stuff), and still crashing.

Copy link
Contributor

Choose a reason for hiding this comment

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

What's the crash dump? Maybe we can figure out why.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I need to check again, but that is something like: "sending events before drivers is ready".

Copy link
Contributor

Choose a reason for hiding this comment

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

I thought so, which is why I commented "perhaps the SetDriver is called too late". You can try moving that call earlier, or you may have to construct a window in a two-step process: first create the window, then make it visible/key/whatever.

@inkeliz inkeliz closed this Feb 24, 2023
@inkeliz inkeliz deleted the fix-macos-focus branch February 24, 2023 14:36
@inkeliz inkeliz restored the fix-macos-focus branch June 9, 2024 01:04
@inkeliz inkeliz reopened this Jun 9, 2024
@inkeliz inkeliz changed the title app: [macos] set focus on click app: [macos] improve focus Jun 9, 2024
@eliasnaur
Copy link
Contributor

Is this relevant again? If so, what's the connection to #138, if any?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants