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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 #define IDC_SPELLCHECK_SUGGESTION_4 41004 | 223 #define IDC_SPELLCHECK_SUGGESTION_4 41004 |
224 #define IDC_SPELLCHECK_SUGGESTION_LAST IDC_SPELLCHECK_SUGGESTION_4 | 224 #define IDC_SPELLCHECK_SUGGESTION_LAST IDC_SPELLCHECK_SUGGESTION_4 |
225 #define IDC_SPELLCHECK_MENU 41005 | 225 #define IDC_SPELLCHECK_MENU 41005 |
226 // Language entries are inserted using autogenerated values between | 226 // Language entries are inserted using autogenerated values between |
227 // [_FIRST, _LAST). | 227 // [_FIRST, _LAST). |
228 #define IDC_SPELLCHECK_LANGUAGES_FIRST 41006 | 228 #define IDC_SPELLCHECK_LANGUAGES_FIRST 41006 |
229 #define IDC_SPELLCHECK_LANGUAGES_LAST 41106 | 229 #define IDC_SPELLCHECK_LANGUAGES_LAST 41106 |
230 #define IDC_CHECK_SPELLING_WHILE_TYPING 41107 | 230 #define IDC_CHECK_SPELLING_WHILE_TYPING 41107 |
231 #define IDC_SPELLPANEL_TOGGLE 41109 | 231 #define IDC_SPELLPANEL_TOGGLE 41109 |
232 #define IDC_SPELLCHECK_ADD_TO_DICTIONARY 41110 | 232 #define IDC_SPELLCHECK_ADD_TO_DICTIONARY 41110 |
| 233 #define IDC_SPELLCHECK_MULTI_LINGUAL 41111 |
233 | 234 |
234 // Writing direction | 235 // Writing direction |
235 #define IDC_WRITING_DIRECTION_MENU 41120 | 236 #define IDC_WRITING_DIRECTION_MENU 41120 |
236 #define IDC_WRITING_DIRECTION_DEFAULT 41121 | 237 #define IDC_WRITING_DIRECTION_DEFAULT 41121 |
237 #define IDC_WRITING_DIRECTION_LTR 41122 | 238 #define IDC_WRITING_DIRECTION_LTR 41122 |
238 #define IDC_WRITING_DIRECTION_RTL 41123 | 239 #define IDC_WRITING_DIRECTION_RTL 41123 |
239 | 240 |
240 // Translate | 241 // Translate |
241 #define IDC_TRANSLATE_ORIGINAL_LANGUAGE_BASE 42100 | 242 #define IDC_TRANSLATE_ORIGINAL_LANGUAGE_BASE 42100 |
242 #define IDC_TRANSLATE_TARGET_LANGUAGE_BASE 42400 | 243 #define IDC_TRANSLATE_TARGET_LANGUAGE_BASE 42400 |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
373 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx | 374 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx |
374 | 375 |
375 // Starting command id for menus showing bookmarks (such as the wrench menu). | 376 // Starting command id for menus showing bookmarks (such as the wrench menu). |
376 // While command ids passed to Windows functions must not be higher than 0xDFFF, | 377 // While command ids passed to Windows functions must not be higher than 0xDFFF, |
377 // these IDs are not exposed to the native system and thus can be in this | 378 // these IDs are not exposed to the native system and thus can be in this |
378 // otherwise-reserved range. No command used in a menu (such as the wrench menu) | 379 // otherwise-reserved range. No command used in a menu (such as the wrench menu) |
379 // should be higher than this, otherwise it'll conflict. | 380 // should be higher than this, otherwise it'll conflict. |
380 #define IDC_FIRST_BOOKMARK_MENU 0xE000 | 381 #define IDC_FIRST_BOOKMARK_MENU 0xE000 |
381 | 382 |
382 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ | 383 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
OLD | NEW |