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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 #define IDC_SPELLPANEL_TOGGLE 41109 | 230 #define IDC_SPELLPANEL_TOGGLE 41109 |
231 #define IDC_SPELLCHECK_ADD_TO_DICTIONARY 41110 | 231 #define IDC_SPELLCHECK_ADD_TO_DICTIONARY 41110 |
232 | 232 |
233 // Writing direction | 233 // Writing direction |
234 #define IDC_WRITING_DIRECTION_MENU 41120 | 234 #define IDC_WRITING_DIRECTION_MENU 41120 |
235 #define IDC_WRITING_DIRECTION_DEFAULT 41121 | 235 #define IDC_WRITING_DIRECTION_DEFAULT 41121 |
236 #define IDC_WRITING_DIRECTION_LTR 41122 | 236 #define IDC_WRITING_DIRECTION_LTR 41122 |
237 #define IDC_WRITING_DIRECTION_RTL 41123 | 237 #define IDC_WRITING_DIRECTION_RTL 41123 |
238 | 238 |
239 // Translate | 239 // Translate |
240 #define IDC_TRANSLATE_OPTIONS_ALWAYS 42000 | 240 #define IDC_TRANSLATE_ORIGINAL_LANGUAGE_BASE 42100 |
241 #define IDC_TRANSLATE_OPTIONS_NEVER_TRANSLATE_LANG 42001 | 241 #define IDC_TRANSLATE_TARGET_LANGUAGE_BASE 42400 |
242 #define IDC_TRANSLATE_OPTIONS_NEVER_TRANSLATE_SITE 42002 | |
243 #define IDC_TRANSLATE_REPORT_BAD_LANGUAGE_DETECTION 42003 | |
244 #define IDC_TRANSLATE_OPTIONS_ABOUT 42004 | |
245 #define IDC_TRANSLATE_ORIGINAL_LANGUAGE_BASE 42100 | |
246 #define IDC_TRANSLATE_TARGET_LANGUAGE_BASE 42400 | |
247 | 242 |
248 // Speech input | 243 // Speech input |
249 #define IDC_TOGGLE_SPEECH_INPUT 42500 | 244 #define IDC_TOGGLE_SPEECH_INPUT 42500 |
250 | 245 |
251 // Identifiers for platform-specific items. | 246 // Identifiers for platform-specific items. |
252 // Placed in a common file to help insure they never collide. | 247 // Placed in a common file to help insure they never collide. |
253 #define IDC_VIEW_MENU 44000 // OSX only | 248 #define IDC_VIEW_MENU 44000 // OSX only |
254 #define IDC_FILE_MENU 44001 // OSX only | 249 #define IDC_FILE_MENU 44001 // OSX only |
255 #define IDC_CHROME_MENU 44002 // OSX only | 250 #define IDC_CHROME_MENU 44002 // OSX only |
256 #define IDC_HIDE_APP 44003 // OSX only | 251 #define IDC_HIDE_APP 44003 // OSX only |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
353 | 348 |
354 // Protocol handler menu entries | 349 // Protocol handler menu entries |
355 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 | 350 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 |
356 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 | 351 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 |
357 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 | 352 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 |
358 | 353 |
359 // NOTE: The last valid command value is 57343 (0xDFFF) | 354 // NOTE: The last valid command value is 57343 (0xDFFF) |
360 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx | 355 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx |
361 | 356 |
362 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ | 357 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
OLD | NEW |