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

Add dead key mappings #7

Open
wants to merge 53 commits into
base: new-keyboard-linux
Choose a base branch
from

Conversation

ArturKovacs
Copy link

I mapped things like XKB_KEY_dead_belowdot to their seemingly trivial mappings like Some('.') when I couldn't find anything closer. I mapped anything else that doesn't seem to have such a "trivial" mapping to None.

  • Tested on all platforms changed
  • Compilation warnings were addressed
  • cargo fmt has been run on this branch
  • cargo doc builds successfully
  • Added an entry to CHANGELOG.md if knowledge of this change could be valuable to users
  • Updated documentation to reflect any user-facing changes, including notes of platform-specific behavior
  • Created or updated an example program if it would help users understand this functionality
  • Updated feature matrix, if new features were added or implemented

ArturKovacs and others added 30 commits January 10, 2022 12:44
* Introducing the new `KeyEvent` and renaming old stuff

* Implemented physical_key on Windows

* Ran cargo fmt

* Progress with the keyboard's windows implementation

* Add proper handling of dead keys

* Add translation for non-printable virtual keys

* Run `cargo fmt`

* Fix for AltGraph not being reported

* Synthesize key events when focus enters or leaves

* Minor improvements

* Remove obsolete API

* Fix numlock and pause not being reported correctly

* Ran `cargo fmt`

* Fix numpad keys being reported incorrectly

* Update examples

* Ran `cargo fmt`

* Add documentation for `ScanCode`

* Add key binding example

* Use consistent modifier key names rust-windowing#1343

* WONT COMPILE transitioning to new keyboard API

* WONT COMPILE Implement new keyboard layout preparation

* WONT COMPILE new keyboard API progress

* Main compile errors fixed for keyboard

* Fix bugs in new keyboard handling

* Remove obsolete code

* Fix examples

* Ran `cargo fmt`

* Fix build error with serde

* Ran `cargo fmt`

* Tweaks in the Windows keyboard implementation

* Add `KeyCodeExtScancode`

* Add `reset_dead_keys`

* Improve the documentation for `Key` and `KeyCode`

* Rename the meta key to super

* Address feedback for the keyboard API

* Fix for rustdoc

Co-authored-by: Markus Røyset <maroider@protonmail.com>

* Improve documentation

Co-authored-by: Markus Røyset <maroider@protonmail.com>

* Fix for arrow keys being reported as unidentified.

And minor improvements

* Fix media keys reporting Unidentified

* Don't report text on key release events

* Fix for NumLock being reported as Pause in raw input

* Fix for strange behaviour around NumLock and Pause

* Fix for NumLock being ineffective

* Fix for location not being reported correctly

* `RawKeyEvent`s now report repeat

* Don't report text for synthetic key releases

* Address feedback

- Add the `Space` variant to the `to_text` function.
- Mark `get_kbd_state` safe.
- Change `[MaybeUninit<u8>; 256]` to `MaybeUninit<[u8; 256]>`

* Filter `Unidentified` from PrtSc key device events

* Don't report incorrect `RawKeyEvent` for shift + numpad

* AltGraph is not reported again

* Document Windows specific behaviour for shift+numpad

* Fix typo

* Dead keys now affect characters from logical_key

* Prevent Pause and NumLock mappings in window events

* Apply suggestions from code review

Co-authored-by: Markus Røyset <maroider@protonmail.com>

* Ran `cargo fmt`

* Add W3C license for `Key` and `KeyCode`

* Extend documentation according to feedback

* Ignore NumLock in `key_without_modifiers`

* Remove unused `key_code_to_non_char_key`

* Remove empty event.rs file

* Use space for resetting dead keys

* Fix reporting multiple graphemes in logical_key

* Avoid incorrect synthetic keypress during setfocus

* Fixed the AltGr keypress not being reported when the AltGr key is pressed and released in a very quick succession

* Filter fake Ctrl events when pressing AltGr

* Improve code quality

* Remove `repeat` from `RawKeyEvent`

* Allow fractional scroll in raw mouse events

* Fix typo

Co-authored-by: Markus Siglreithmaier <m.siglreith@gmail.com>

* Remove unused imports

* Remove unused variable

* Remove unnecessary `unwrap()`

Co-authored-by: Markus Siglreithmaier <m.siglreith@gmail.com>

* Avoid using the deprecated `into_rgba()`

* Fix IME crash

Co-authored-by: Markus Røyset <maroider@protonmail.com>
Co-authored-by: Markus Siglreithmaier <m.siglreith@gmail.com>
Also add a `Meta` key (code) value.
Use `xkb_keysym_to_utf8` rather than `xkb_state_key_get_utf8` to create
key value strings, as the latter performs keysym transformations, while
the former doesn't.
I accidentally skipped over `XKB_KEY_Page_Down` while initially mapping
keysyms.
I forgot about the offset between evdev keycodes and xkb keycodes.
maroider and others added 15 commits January 10, 2022 17:26
`XkbCode` now contains keycodes while `XkbSym` contains keysyms.
This may change sooner rather than later.
This patch addresses an issue in the modifier key handling appearing on
gnome/x11 while focussing a winit window using a meta/super/logo key
shortcut.

As soon as the window gained focus via a shortcut using a meta key,
gnome/x11 reports a meta modifier as pressed in the focus event, even
though it was just released. No key release events were sent afterwards,
so the meta modifier remained "stuck" in the winit state.

This patch refactors the modifier key handling following this goals:
 - Only rely on winit's own modifier state tracking for key and focus
   events, do not mix it with x11's modifier reporting
 - Track modifiers only via non-raw key events, so winit does not track
   modifier changes when not focussed
 - Integrate modifier handling with the synthetic key events mechanism
   in order to report release of all currently held modifiers when
   unfocussed and report set for all currently held modifiers when
   focussed.
The only thing we did in response to said event is update the
`xkb_state`, but we throw that away on every keypress anyway due to the
keyeyboard layout change detection hack. This commit also removes
associated code which let us recieve and react to the event in the first
place. If a fix is ever introduced, then this commit ought to be
reverted.
We must not report virtual keyboard events for keys that were grabbed by
other applications (XGrabKey, etc.). Since grabs only affect master
devices, we must consume virtual events from master devices only.
@maroider maroider force-pushed the new-keyboard-linux branch 6 times, most recently from 409f144 to 69c5779 Compare June 14, 2022 04:58
@maroider maroider force-pushed the new-keyboard-linux branch 4 times, most recently from 7d59987 to ba8023a Compare June 15, 2022 04:01
@maroider maroider force-pushed the new-keyboard-linux branch 3 times, most recently from 0676c39 to 6c7820e Compare July 7, 2022 07:46
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.

4 participants