| 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 #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_ |
| OLD | NEW |