#
2141d2fe |
| 18-Aug-2024 |
X512 <danger_mail@list.ru> |
input: fix KEY_power key code conflict with japanese `\_` key
- This key code is inherited from BeOS, where it was used for the power key on Apple ADB keyboards - Since then, we have introduced a
input: fix KEY_power key code conflict with japanese `\_` key
- This key code is inherited from BeOS, where it was used for the power key on Apple ADB keyboards - Since then, we have introduced a new system for "multimedia" keys, that uses HID key codes directly instead of defining our own mappings - The PS2 driver was using the HID keycode, but the USB driver was still using the BeOS defined one - Japanese keyboards, which have a few more keys than US and European ones, reused the same keycode for something else
Since the power key does not need to be mapped by the keymap, move it out of the way by using the HID keycode (key codes larger than 0x7f cannot be mapped to UTF8 symbols). Remove all mentions of the use of 0x6b as a keycode for the power key, but add a note in the documentation that BeOS did this.
To avoid further confusions, complete the documentation of extra keycodes, and remove some definitions from keyboard_mouse_driver.h that should have been in InterfaceDefs.h.
While researching this, I also found that some keys specific to Korean keyboards were declared in the wrong place, as mapped codes instead of unmapped ones (checked that by looking at the HID driver, which emits these raw keycodes, and confirming that the mapped ones are not used in any keymaps. Also added a note about the mapping of the extra modifier keys in Japanese keyboards, which I think may be a problem since these map to invalid UTF-8 byte sequences, but this is what the existing keymap does, so leaving it as is for now until we can determine if this can be changed or if we have to keep it that way.
Change-Id: I6a198a0840cba7739bdc78e0c65e5d8fd23956c9 Reviewed-on: https://review.haiku-os.org/c/haiku/+/8047 Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org> Reviewed-by: Adrien Destugues <pulkomandy@pulkomandy.tk>
show more ...
|
#
7eefe785 |
| 03-Mar-2024 |
Oscar Lesta <oscar.lesta@gmail.com> |
keymaps: fix empty "right option" key.
Fixes #18833.
Change-Id: I5d46ea11581af48e6fd6f38003a589ca700b07f0 Reviewed-on: https://review.haiku-os.org/c/haiku/+/7497 Reviewed-by: nephele nephele <nep-g
keymaps: fix empty "right option" key.
Fixes #18833.
Change-Id: I5d46ea11581af48e6fd6f38003a589ca700b07f0 Reviewed-on: https://review.haiku-os.org/c/haiku/+/7497 Reviewed-by: nephele nephele <nep-git@packageloss.eu> Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
show more ...
|
#
a309c6ee |
| 23-Jan-2020 |
bitigchi <bitigchi@me.com> |
Use UTF-8 HEX values instead of UTF-32 values
The previous commits resulted in TOFU (black diagonal shape with question mark in it). As per humdinger's suggestion and copying from how € sign was enc
Use UTF-8 HEX values instead of UTF-32 values
The previous commits resulted in TOFU (black diagonal shape with question mark in it). As per humdinger's suggestion and copying from how € sign was encoded, this is another try at fixing non-break space and Turkish Lira Sign.
Previous PR: /c/haiku/+/2004/1
Change-Id: I3775c178b1921e7dff7ceb660c8fda1152050c94 Reviewed-on: https://review.haiku-os.org/c/haiku/+/2148 Reviewed-by: humdinger <humdingerb@gmail.com> Reviewed-by: John Scipione <jscipione@gmail.com>
show more ...
|
#
07161b81 |
| 08-Dec-2019 |
bitigchi <bitigchi@me.com> |
Fix qt mark/Add TR Lira Symbol/Add non-break space
On Turkish F layout Shift+2 produces single quote, although it should return double quotation mark. Probably this is a result of an error whilst co
Fix qt mark/Add TR Lira Symbol/Add non-break space
On Turkish F layout Shift+2 produces single quote, although it should return double quotation mark. Probably this is a result of an error whilst copying from Turkish Q layout.
Turkish Lira Symbol has been added to the both layouts, produceable with ALT GR+T, as this is the standard combination on Turkish layouts.
I've also noticed that most of the keys produce a whitespace with the ALT+GR modifier, fixed that one as well.
This commit also adds non-breaking space to ALT GR+Space modifier
Change-Id: I9eb47ae70449c75b15b551f081f8767b1ab03cc5 Reviewed-on: https://review.haiku-os.org/c/haiku/+/2004 Reviewed-by: John Scipione <jscipione@gmail.com>
show more ...
|