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