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

Unified Diff: ui/events/event.h

Issue 324903002: Remoes X11 dependency in InputMethodEngine. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits. Created 6 years, 6 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/events/cocoa/events_mac.mm ('k') | ui/events/event.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/events/event.h
diff --git a/ui/events/event.h b/ui/events/event.h
index 928a2b98594c92c51411a91f3c35bf9032b8e8ea..f1ee5f75a2b617d3becc3c8cdb5fd000c3279bc8 100644
--- a/ui/events/event.h
+++ b/ui/events/event.h
@@ -541,6 +541,8 @@ class EVENTS_EXPORT KeyEvent : public Event {
// BMP characters.
uint16 GetCharacter() const;
+ // Gets the platform key code. For XKB, this is the xksym value.
+ uint32 platform_keycode() const { return platform_keycode_; }
KeyboardCode key_code() const { return key_code_; }
bool is_char() const { return is_char_; }
@@ -584,6 +586,18 @@ class EVENTS_EXPORT KeyEvent : public Event {
// share the same type: ET_KEY_PRESSED.
bool is_char_;
+ // The platform related keycode value. For XKB, it's keysym value.
+ // For now, this is used for CharacterComposer in ChromeOS.
+ // Note: for XKB, the keysym vlaue is modifiered value. But for other
sadrul 2014/06/16 15:19:20 *value
Shu Chen 2014/06/16 15:22:24 I've removed the comments after "Note:" which caus
+ // platforms, it may be unmodifiered value.
+ uint32 platform_keycode_;
+
+ // String of 'key' defined in DOM KeyboardEvent (e.g. 'a', 'รข')
+ // http://www.w3.org/TR/uievents/#keyboard-key-codes.
+ //
+ // This value represents the text that the key event will insert to input
+ // field. For key with modifier key, it may have specifial text.
+ // e.g. CTRL+A has '\x01'.
uint16 character_;
static bool IsRepeated(const KeyEvent& event);
« no previous file with comments | « ui/events/cocoa/events_mac.mm ('k') | ui/events/event.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698