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

Side by Side Diff: ui/events/keycodes/keyboard_codes_posix.h

Issue 2128573002: [DomKey] Support Japanese (JIS) layout special keys (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add DomKey map for Japanese special keys Created 4 years, 5 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 /* 5 /*
6 * Copyright (C) 2006 Michael Emmel mike.emmel@gmail.com. All rights reserved. 6 * Copyright (C) 2006 Michael Emmel mike.emmel@gmail.com. All rights reserved.
7 * Copyright (C) 2008, 2009 Google Inc. 7 * Copyright (C) 2008, 2009 Google Inc.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions 10 * modification, are permitted provided that the following conditions
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 VKEY_OEM_4 = 0xDB, 189 VKEY_OEM_4 = 0xDB,
190 VKEY_OEM_5 = 0xDC, 190 VKEY_OEM_5 = 0xDC,
191 VKEY_OEM_6 = 0xDD, 191 VKEY_OEM_6 = 0xDD,
192 VKEY_OEM_7 = 0xDE, 192 VKEY_OEM_7 = 0xDE,
193 VKEY_OEM_8 = 0xDF, 193 VKEY_OEM_8 = 0xDF,
194 VKEY_OEM_102 = 0xE2, 194 VKEY_OEM_102 = 0xE2,
195 VKEY_OEM_103 = 0xE3, // GTV KEYCODE_MEDIA_REWIND 195 VKEY_OEM_103 = 0xE3, // GTV KEYCODE_MEDIA_REWIND
196 VKEY_OEM_104 = 0xE4, // GTV KEYCODE_MEDIA_FAST_FORWARD 196 VKEY_OEM_104 = 0xE4, // GTV KEYCODE_MEDIA_FAST_FORWARD
197 VKEY_PROCESSKEY = 0xE5, 197 VKEY_PROCESSKEY = 0xE5,
198 VKEY_PACKET = 0xE7, 198 VKEY_PACKET = 0xE7,
199 VKEY_OEM_ATTN = 0xF0,
200 VKEY_OEM_FINISH = 0xF1,
201 VKEY_OEM_COPY = 0xF2,
Wez 2016/07/07 18:25:51 Since these have not-very-helpful names, can we ad
chongz 2016/07/07 22:18:08 Done.
199 VKEY_DBE_SBCSCHAR = 0xF3, 202 VKEY_DBE_SBCSCHAR = 0xF3,
200 VKEY_DBE_DBCSCHAR = 0xF4, 203 VKEY_DBE_DBCSCHAR = 0xF4,
204 VKEY_OEM_BACKTAB = 0xF5,
201 VKEY_ATTN = 0xF6, 205 VKEY_ATTN = 0xF6,
202 VKEY_CRSEL = 0xF7, 206 VKEY_CRSEL = 0xF7,
203 VKEY_EXSEL = 0xF8, 207 VKEY_EXSEL = 0xF8,
204 VKEY_EREOF = 0xF9, 208 VKEY_EREOF = 0xF9,
205 VKEY_PLAY = 0xFA, 209 VKEY_PLAY = 0xFA,
206 VKEY_ZOOM = 0xFB, 210 VKEY_ZOOM = 0xFB,
207 VKEY_NONAME = 0xFC, 211 VKEY_NONAME = 0xFC,
208 VKEY_PA1 = 0xFD, 212 VKEY_PA1 = 0xFD,
209 VKEY_OEM_CLEAR = 0xFE, 213 VKEY_OEM_CLEAR = 0xFE,
210 VKEY_UNKNOWN = 0, 214 VKEY_UNKNOWN = 0,
(...skipping 12 matching lines...) Expand all
223 // Linux. 227 // Linux.
224 VKEY_ALTGR = 0xE1, 228 VKEY_ALTGR = 0xE1,
225 // Windows does not have a specific key code for Compose. We use the unused 229 // Windows does not have a specific key code for Compose. We use the unused
226 // 0xE6 (VK_ICO_CLEAR) code to represent Compose. 230 // 0xE6 (VK_ICO_CLEAR) code to represent Compose.
227 VKEY_COMPOSE = 0xE6, 231 VKEY_COMPOSE = 0xE6,
228 }; 232 };
229 233
230 } // namespace ui 234 } // namespace ui
231 235
232 #endif // UI_EVENTS_KEYCODES_KEYBOARD_CODES_POSIX_H_ 236 #endif // UI_EVENTS_KEYCODES_KEYBOARD_CODES_POSIX_H_
OLDNEW
« no previous file with comments | « no previous file | ui/events/keycodes/keyboard_codes_win.h » ('j') | ui/events/keycodes/platform_key_map_win.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698