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 #ifndef CHROME_APP_CHROME_COMMAND_IDS_H_ | 5 #ifndef CHROME_APP_CHROME_COMMAND_IDS_H_ |
6 #define CHROME_APP_CHROME_COMMAND_IDS_H_ | 6 #define CHROME_APP_CHROME_COMMAND_IDS_H_ |
7 | 7 |
8 // This file lists all the command IDs understood by e.g. the browser. | 8 // This file lists all the command IDs understood by e.g. the browser. |
9 // It is used by Windows RC files, Mac NIB files, and other platforms too. | 9 // It is used by Windows RC files, Mac NIB files, and other platforms too. |
10 | 10 |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 #define IDC_SPELLCHECK_MENU 41005 | 221 #define IDC_SPELLCHECK_MENU 41005 |
222 // Language entries are inserted using autogenerated values between | 222 // Language entries are inserted using autogenerated values between |
223 // [_FIRST, _LAST). | 223 // [_FIRST, _LAST). |
224 #define IDC_SPELLCHECK_LANGUAGES_FIRST 41006 | 224 #define IDC_SPELLCHECK_LANGUAGES_FIRST 41006 |
225 #define IDC_SPELLCHECK_LANGUAGES_LAST 41106 | 225 #define IDC_SPELLCHECK_LANGUAGES_LAST 41106 |
226 #define IDC_CHECK_SPELLING_WHILE_TYPING 41107 | 226 #define IDC_CHECK_SPELLING_WHILE_TYPING 41107 |
227 #define IDC_SPELLPANEL_TOGGLE 41109 | 227 #define IDC_SPELLPANEL_TOGGLE 41109 |
228 #define IDC_SPELLCHECK_ADD_TO_DICTIONARY 41110 | 228 #define IDC_SPELLCHECK_ADD_TO_DICTIONARY 41110 |
229 | 229 |
230 // Writing direction | 230 // Writing direction |
231 #define IDC_WRITING_DIRECTION_MENU 41120 // OSX only | 231 #define IDC_WRITING_DIRECTION_MENU 41120 // OSX and Linux Gtk only |
232 #define IDC_WRITING_DIRECTION_DEFAULT 41121 // OSX only | 232 #define IDC_WRITING_DIRECTION_DEFAULT 41121 // OSX and Linux Gtk only |
233 #define IDC_WRITING_DIRECTION_LTR 41122 // OSX only | 233 #define IDC_WRITING_DIRECTION_LTR 41122 // OSX and Linux Gtk only |
234 #define IDC_WRITING_DIRECTION_RTL 41123 // OSX only | 234 #define IDC_WRITING_DIRECTION_RTL 41123 // OSX and Linux Gtk only |
235 | 235 |
236 // Translate | 236 // Translate |
237 #define IDC_TRANSLATE_OPTIONS_ALWAYS 42000 | 237 #define IDC_TRANSLATE_OPTIONS_ALWAYS 42000 |
238 #define IDC_TRANSLATE_OPTIONS_NEVER_TRANSLATE_LANG 42001 | 238 #define IDC_TRANSLATE_OPTIONS_NEVER_TRANSLATE_LANG 42001 |
239 #define IDC_TRANSLATE_OPTIONS_NEVER_TRANSLATE_SITE 42002 | 239 #define IDC_TRANSLATE_OPTIONS_NEVER_TRANSLATE_SITE 42002 |
240 #define IDC_TRANSLATE_REPORT_BAD_LANGUAGE_DETECTION 42003 | 240 #define IDC_TRANSLATE_REPORT_BAD_LANGUAGE_DETECTION 42003 |
241 #define IDC_TRANSLATE_OPTIONS_ABOUT 42004 | 241 #define IDC_TRANSLATE_OPTIONS_ABOUT 42004 |
242 #define IDC_TRANSLATE_ORIGINAL_LANGUAGE_BASE 42100 | 242 #define IDC_TRANSLATE_ORIGINAL_LANGUAGE_BASE 42100 |
243 #define IDC_TRANSLATE_TARGET_LANGUAGE_BASE 42400 | 243 #define IDC_TRANSLATE_TARGET_LANGUAGE_BASE 42400 |
244 | 244 |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
353 | 353 |
354 // Protocol handler menu entries | 354 // Protocol handler menu entries |
355 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 | 355 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 |
356 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 | 356 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 |
357 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 | 357 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 |
358 | 358 |
359 // NOTE: The last valid command value is 57343 (0xDFFF) | 359 // NOTE: The last valid command value is 57343 (0xDFFF) |
360 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx | 360 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx |
361 | 361 |
362 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ | 362 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
OLD | NEW |