OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ui/events/ozone/layout/xkb/xkb_keyboard_layout_engine.h" | 5 #include "ui/events/ozone/layout/xkb/xkb_keyboard_layout_engine.h" |
6 | 6 |
7 #include <xkbcommon/xkbcommon-names.h> | 7 #include <xkbcommon/xkbcommon-names.h> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/location.h" | 10 #include "base/location.h" |
11 #include "base/logging.h" | 11 #include "base/logging.h" |
12 #include "base/single_thread_task_runner.h" | 12 #include "base/single_thread_task_runner.h" |
13 #include "base/task_runner.h" | 13 #include "base/task_runner.h" |
14 #include "base/thread_task_runner_handle.h" | 14 #include "base/thread_task_runner_handle.h" |
15 #include "base/threading/worker_pool.h" | 15 #include "base/threading/worker_pool.h" |
16 #include "ui/events/event_constants.h" | 16 #include "ui/events/event_constants.h" |
17 #include "ui/events/keycodes/dom3/dom_code.h" | 17 #include "ui/events/keycodes/dom3/dom_code.h" |
18 #include "ui/events/keycodes/dom3/dom_key.h" | 18 #include "ui/events/keycodes/dom3/dom_key.h" |
19 #include "ui/events/keycodes/dom4/keycode_converter.h" | 19 #include "ui/events/keycodes/dom4/keycode_converter.h" |
20 #include "ui/events/keycodes/keyboard_code_conversion.h" | 20 #include "ui/events/keycodes/keyboard_code_conversion.h" |
21 #include "ui/events/ozone/layout/layout_util.h" | 21 #include "ui/events/keycodes/keyboard_code_conversion_xkb.h" |
22 #include "ui/events/ozone/layout/xkb/xkb_keyboard_code_conversion.h" | |
23 | 22 |
24 namespace ui { | 23 namespace ui { |
25 | 24 |
26 namespace { | 25 namespace { |
27 | 26 |
28 typedef base::Callback<void(const std::string&, | 27 typedef base::Callback<void(const std::string&, |
29 scoped_ptr<char, base::FreeDeleter>)> | 28 scoped_ptr<char, base::FreeDeleter>)> |
30 LoadKeymapCallback; | 29 LoadKeymapCallback; |
31 | 30 |
32 DomKey CharacterToDomKey(base::char16 character) { | |
33 switch (character) { | |
34 case 0x08: | |
35 return DomKey::BACKSPACE; | |
36 case 0x09: | |
37 return DomKey::TAB; | |
38 case 0x0A: | |
39 case 0x0D: | |
40 return DomKey::ENTER; | |
41 case 0x1B: | |
42 return DomKey::ESCAPE; | |
43 default: | |
44 return DomKey::CHARACTER; | |
45 } | |
46 } | |
47 | |
48 KeyboardCode AlphanumericKeyboardCode(base::char16 character) { | 31 KeyboardCode AlphanumericKeyboardCode(base::char16 character) { |
49 // Plain ASCII letters and digits map directly to VKEY values. | 32 // Plain ASCII letters and digits map directly to VKEY values. |
50 if ((character >= '0') && (character <= '9')) | 33 if ((character >= '0') && (character <= '9')) |
51 return static_cast<KeyboardCode>(VKEY_0 + character - '0'); | 34 return static_cast<KeyboardCode>(VKEY_0 + character - '0'); |
52 if ((character >= 'a') && (character <= 'z')) | 35 if ((character >= 'a') && (character <= 'z')) |
53 return static_cast<KeyboardCode>(VKEY_A + character - 'a'); | 36 return static_cast<KeyboardCode>(VKEY_A + character - 'a'); |
54 if ((character >= 'A') && (character <= 'Z')) | 37 if ((character >= 'A') && (character <= 'Z')) |
55 return static_cast<KeyboardCode>(VKEY_A + character - 'A'); | 38 return static_cast<KeyboardCode>(VKEY_A + character - 'A'); |
56 return VKEY_UNKNOWN; | 39 return VKEY_UNKNOWN; |
57 } | 40 } |
(...skipping 701 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
759 return false; | 742 return false; |
760 } | 743 } |
761 xkb_mod_mask_t xkb_flags = EventFlagsToXkbFlags(flags); | 744 xkb_mod_mask_t xkb_flags = EventFlagsToXkbFlags(flags); |
762 // Obtain keysym and character. | 745 // Obtain keysym and character. |
763 xkb_keysym_t xkb_keysym; | 746 xkb_keysym_t xkb_keysym; |
764 if (!XkbLookup(xkb_keycode, xkb_flags, &xkb_keysym, character)) | 747 if (!XkbLookup(xkb_keycode, xkb_flags, &xkb_keysym, character)) |
765 return false; | 748 return false; |
766 *platform_keycode = xkb_keysym; | 749 *platform_keycode = xkb_keysym; |
767 // Classify the keysym and convert to DOM and VKEY representations. | 750 // Classify the keysym and convert to DOM and VKEY representations. |
768 *dom_key = NonPrintableXkbKeySymToDomKey(xkb_keysym); | 751 *dom_key = NonPrintableXkbKeySymToDomKey(xkb_keysym); |
| 752 KeyboardCode keyboard_code = DomCodeToKeyboardCode(dom_code); |
769 if (*dom_key == DomKey::NONE) { | 753 if (*dom_key == DomKey::NONE) { |
770 *dom_key = CharacterToDomKey(*character); | 754 *dom_key = CharacterToDomKey(*character); |
771 *key_code = AlphanumericKeyboardCode(*character); | 755 *key_code = AlphanumericKeyboardCode(*character); |
772 if (*key_code == VKEY_UNKNOWN) { | 756 if (*key_code == VKEY_UNKNOWN) { |
773 *key_code = DifficultKeyboardCode(dom_code, flags, xkb_keycode, xkb_flags, | 757 *key_code = DifficultKeyboardCode(dom_code, flags, xkb_keycode, xkb_flags, |
774 xkb_keysym, *dom_key, *character); | 758 xkb_keysym, *dom_key, *character); |
775 if (*key_code == VKEY_UNKNOWN) | 759 if (*key_code == VKEY_UNKNOWN) |
776 *key_code = DomCodeToNonLocatedKeyboardCode(dom_code); | 760 *key_code = LocatedToNonLocatedKeyboardCode(keyboard_code); |
777 } | 761 } |
778 | 762 |
779 if ((flags & EF_CONTROL_DOWN) == EF_CONTROL_DOWN) { | 763 if ((flags & EF_CONTROL_DOWN) == EF_CONTROL_DOWN) { |
780 // Use GetCharacterFromKeyCode() to set |character| to 0x0 for key codes | 764 // Use GetCharacterFromKeyCode() to set |character| to 0x0 for key codes |
781 // that we do not care about. | 765 // that we do not care about. |
782 *character = GetCharacterFromKeyCode(*key_code, flags); | 766 *character = GetCharacterFromKeyCode(*key_code, flags); |
783 } | 767 } |
784 } else if (*dom_key == DomKey::DEAD) { | 768 } else if (*dom_key == DomKey::DEAD) { |
785 *character = DeadXkbKeySymToCombiningCharacter(xkb_keysym); | 769 *character = DeadXkbKeySymToCombiningCharacter(xkb_keysym); |
786 *key_code = DomCodeToNonLocatedKeyboardCode(dom_code); | 770 *key_code = LocatedToNonLocatedKeyboardCode(keyboard_code); |
787 } else { | 771 } else { |
788 *key_code = NonPrintableDomKeyToKeyboardCode(*dom_key); | 772 *key_code = NonPrintableDomKeyToKeyboardCode(*dom_key); |
789 if (*key_code == VKEY_UNKNOWN) | 773 if (*key_code == VKEY_UNKNOWN) |
790 *key_code = DomCodeToNonLocatedKeyboardCode(dom_code); | 774 *key_code = LocatedToNonLocatedKeyboardCode(keyboard_code); |
791 } | 775 } |
792 return true; | 776 return true; |
793 } | 777 } |
794 | 778 |
795 void XkbKeyboardLayoutEngine::SetKeymap(xkb_keymap* keymap) { | 779 void XkbKeyboardLayoutEngine::SetKeymap(xkb_keymap* keymap) { |
796 xkb_state_.reset(xkb_state_new(keymap)); | 780 xkb_state_.reset(xkb_state_new(keymap)); |
797 // Update flag map. | 781 // Update flag map. |
798 static const struct { | 782 static const struct { |
799 int ui_flag; | 783 int ui_flag; |
800 const char* xkb_name; | 784 const char* xkb_name; |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
956 if (close_index == std::string::npos) | 940 if (close_index == std::string::npos) |
957 close_index = layout_name.size(); | 941 close_index = layout_name.size(); |
958 *layout_variant = layout_name.substr(parentheses_index + 1, | 942 *layout_variant = layout_name.substr(parentheses_index + 1, |
959 close_index - parentheses_index - 1); | 943 close_index - parentheses_index - 1); |
960 } else if (dash_index != std::string::npos) { | 944 } else if (dash_index != std::string::npos) { |
961 *layout_id = layout_name.substr(0, dash_index); | 945 *layout_id = layout_name.substr(0, dash_index); |
962 *layout_variant = layout_name.substr(dash_index + 1); | 946 *layout_variant = layout_name.substr(dash_index + 1); |
963 } | 947 } |
964 } | 948 } |
965 } // namespace ui | 949 } // namespace ui |
OLD | NEW |