-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Separately track modifier keys for mouse events. #23473
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
Conversation
d625e11
to
38c9039
Compare
I haven't had a chance to look at the details here, but I just pulled and tested quick on macosx and hit some errors that you can probably fix pretty quick: Clicking anywhere: TypeError: MouseEvent.__init__() got an unexpected keyword argument 'num' ctrl + clicking anywhere: SystemError: NULL object passed to Py_BuildValue |
Oops, thanks for trying. Hopefully fixed now? |
9957c82
to
1cddbef
Compare
1cddbef
to
cd9185f
Compare
Looks like the failures with macosx are real and a |
cd9185f
to
794c623
Compare
Oops, probably a careless rebase, thanks for the ping. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tk seems to be double registering the modifiers in key_press now. (I see shift+shift
and maybe more illuminating is ctrl+control
rather than control+control
although I only expect a single control
).
The modifiers appear with the mouse presses as expected in macosx, qt, tk. However, I think it'd be nice to also add these to the keypress events because currently it is only an empty frozenset on those events.
Test script I was using:
import matplotlib.pyplot as plt
fig, ax = plt.subplots(1,1)
fig.canvas.mpl_connect('key_press_event', lambda key_event: print(f'press {key_event.key!r}'))
fig.canvas.mpl_connect('key_release_event', lambda key_event: print(f'release {key_event.key!r}'))
fig.canvas.mpl_connect('key_press_event', lambda key_event: print(f'modifiers press {key_event.modifiers!r}'))
fig.canvas.mpl_connect('button_press_event', lambda key_event: print(f'modifiers press {key_event.modifiers!r}'))
plt.show()
794c623
to
ecc7f36
Compare
Ah, I had forgotten to implement the exclude kwarg to _mpl_modifiers for some backends, thanks for catching that, the doubling of modifiers should now be fixed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fine to save some work for follow-ups and break this up. This is a good start!
Works as expected for me now, but there are some differences between backends which is unrelated to this PR, but it might be nice to fix up the inconsistencies later. It is likely related to mac's keyboards.
macosx -> good
qt5 -> good
tk -> Pressing command, I get a KeyPress "super+meta" (KeyRelease is only "meta" which is odd), but only "super" in the modifiers. I would expect "cmd" in the modifiers.
gtk3 -> Pressing command, I get a KeyPress "meta" but nothing in the modifiers when I expect a "cmd" in the modifiers
I suspect it's just a matter of updating (if needed) the table in _mpl_modifiers (previously _get_key) (perhaps by manually inspecting event.state in various cases); as you have access to a mac, can you give it a try (perhaps both with a laptop keyboard and with an independent one just to be sure)? |
I tested qt + tk on linux and osx on osx. Also saw something funny going on with 'meta' on tk. I saw it in the out put from the snippet Greg posted, but I could not sort out which keys I hit to get it. |
Anyone can merge on green (again, excluding the patch coverage). |
Whether the event modifiers are directly available on enter/leave events depends on the backend, but all are handled here (except possibly for macos, which I haven't checked).
5929f98
to
b4e9e31
Compare
Thank you @anntzer ! |
@greglucas I got my hands on a mac :) and had a look at #23473 (review).
where the last tuple item must be "meta" (to match tk reporting the cmd key with event.keysym = "Meta_L" (or "Meta_R")) and the first entry is how you think the modifier should actually be called (I guess "cmd", or perhaps "meta", I don't really have a good intuition here)? Can you decide on that last point and pick up the patch? |
PR Summary
Ensure that modifier keys are correctly reported for mouse events even if the last key press occurred out of the canvas.
Whether the event modifiers are directly available on enter/leave events
depends on the backend, but all are handled here (except possibly for
macos, which I haven't checked).
There's a first separate commit for the macosx backend for some preliminary work with ObjC.
Followup to #16931 (it's the reason for that big PR...). Supersedes #6159. See also the side note at #23436 (comment).
PR Checklist
Tests and Styling
pytest
passes).flake8-docstrings
and runflake8 --docstring-convention=all
).Documentation
doc/users/next_whats_new/
(follow instructions in README.rst there).doc/api/next_api_changes/
(follow instructions in README.rst there).