Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 Loading... | |
| 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_ |
| OLD | NEW |