Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(473)

Side by Side Diff: ui/events/ozone/layout/xkb/xkb_key_code_converter.h

Issue 786813004: Generate correct KeyboardCode (VKEY). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@x430194-xkb
Patch Set: rebase after crrev.com/308447 Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 #ifndef UI_EVENTS_OZONE_LAYOUT_XKB_XKB_KEY_CODE_CONVERTER_H_ 5 #ifndef UI_EVENTS_OZONE_LAYOUT_XKB_XKB_KEY_CODE_CONVERTER_H_
6 #define UI_EVENTS_OZONE_LAYOUT_XKB_XKB_KEY_CODE_CONVERTER_H_ 6 #define UI_EVENTS_OZONE_LAYOUT_XKB_XKB_KEY_CODE_CONVERTER_H_
7 7
8 #include <xkbcommon/xkbcommon.h> 8 #include <xkbcommon/xkbcommon.h>
9 9
10 namespace ui { 10 namespace ui {
11 11
12 enum class DomCode; 12 enum class DomCode;
13 13
14 // XKB scan code values are platform-dependent; this provides the layout engine
15 // with the mapping from DomCode to xkb_keycode_t. (This mapping is in principle
16 // derivable from the XKB keyboard layout, but xkbcommon does not provide a
17 // practical interface to do so.)
14 class EVENTS_OZONE_LAYOUT_EXPORT XkbKeyCodeConverter { 18 class EVENTS_OZONE_LAYOUT_EXPORT XkbKeyCodeConverter {
15 public: 19 public:
16 XkbKeyCodeConverter(); 20 XkbKeyCodeConverter();
17 virtual ~XkbKeyCodeConverter(); 21 virtual ~XkbKeyCodeConverter();
18 xkb_keycode_t InvalidXkbKeyCode() const { return invalid_xkb_keycode_; } 22 xkb_keycode_t InvalidXkbKeyCode() const { return invalid_xkb_keycode_; }
19 virtual xkb_keycode_t DomCodeToXkbKeyCode(DomCode dom_code) const = 0; 23 virtual xkb_keycode_t DomCodeToXkbKeyCode(DomCode dom_code) const = 0;
20 24
21 protected: 25 protected:
22 xkb_keycode_t invalid_xkb_keycode_; 26 xkb_keycode_t invalid_xkb_keycode_;
23 }; 27 };
24 28
25 } // namespace ui 29 } // namespace ui
26 30
27 #endif // UI_EVENTS_OZONE_LAYOUT_XKB_XKB_KEY_CODE_CONVERTER_H_ 31 #endif // UI_EVENTS_OZONE_LAYOUT_XKB_XKB_KEY_CODE_CONVERTER_H_
OLDNEW
« no previous file with comments | « ui/events/ozone/layout/stub/stub_keyboard_layout_engine.cc ('k') | ui/events/ozone/layout/xkb/xkb_keyboard_code_conversion.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698