1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/gtk/standard_menus.h"
#include "base/basictypes.h"
#include "chrome/app/chrome_dll_resource.h"
#include "chrome/common/l10n_util.h"
#include "grit/chromium_strings.h"
#include "grit/generated_resources.h"
namespace {
struct MenuCreateMaterial zoom_menu_materials[] = {
{ MENU_NORMAL, IDC_ZOOM_PLUS, IDS_ZOOM_MENU, 0, NULL },
{ MENU_NORMAL, IDC_ZOOM_PLUS, IDS_ZOOM_PLUS, 0, NULL },
{ MENU_NORMAL, IDC_ZOOM_NORMAL, IDS_ZOOM_NORMAL, 0, NULL },
{ MENU_NORMAL, IDC_ZOOM_MINUS, IDS_ZOOM_MINUS, 0, NULL },
{ MENU_END, 0, 0, NULL }
};
struct MenuCreateMaterial encoding_menu_materials[] = {
{ MENU_CHECKBOX, IDC_ENCODING_AUTO_DETECT, IDS_ENCODING_AUTO_DETECT, 0,
NULL },
{ MENU_END, 0, 0, NULL }
};
struct MenuCreateMaterial developer_menu_materials[] = {
{ MENU_NORMAL, IDC_VIEW_SOURCE, IDS_VIEW_SOURCE, 0, NULL },
{ MENU_NORMAL, IDC_DEBUGGER, IDS_DEBUGGER, 0, NULL },
{ MENU_NORMAL, IDC_JS_CONSOLE, IDS_JS_CONSOLE, 0, NULL },
{ MENU_NORMAL, IDC_TASK_MANAGER, IDS_TASK_MANAGER, 0, NULL },
{ MENU_END, 0, 0, NULL }
};
struct MenuCreateMaterial standard_page_menu_materials[] = {
{ MENU_NORMAL, IDC_CREATE_SHORTCUTS, IDS_CREATE_SHORTCUTS, 0, NULL },
{ MENU_SEPARATOR, 0, 0, 0, NULL },
{ MENU_NORMAL, IDC_CUT, IDS_CUT, 0, NULL },
{ MENU_NORMAL, IDC_COPY, IDS_COPY, 0, NULL },
{ MENU_NORMAL, IDC_PASTE, IDS_PASTE, 0, NULL },
{ MENU_SEPARATOR, 0, 0, 0, NULL },
{ MENU_NORMAL, IDC_FIND, IDS_FIND, 0, NULL },
{ MENU_NORMAL, IDC_SAVE_PAGE, IDS_SAVE_PAGE, 0, NULL },
{ MENU_NORMAL, IDC_PRINT, IDS_PRINT, 0, NULL },
{ MENU_SEPARATOR, 0, 0, 0, NULL },
{ MENU_NORMAL, IDC_ZOOM_MENU, IDS_ZOOM_MENU, 0, zoom_menu_materials },
{ MENU_NORMAL, IDC_ENCODING_MENU, IDS_ENCODING_MENU, 0,
encoding_menu_materials },
{ MENU_SEPARATOR, 0, 0, 0, NULL },
{ MENU_NORMAL, IDC_DEVELOPER_MENU, IDS_DEVELOPER_MENU, 0,
developer_menu_materials },
{ MENU_SEPARATOR, 0, 0, 0, NULL },
{ MENU_NORMAL, IDC_REPORT_BUG, IDS_REPORT_BUG, 0, NULL },
{ MENU_END, 0, 0, NULL }
};
// -----------------------------------------------------------------------
struct MenuCreateMaterial standard_app_menu_materials[] = {
{ MENU_NORMAL, IDC_NEW_TAB, IDS_NEW_TAB, 0, NULL },
{ MENU_NORMAL, IDC_NEW_WINDOW, IDS_NEW_WINDOW, 0, NULL },
{ MENU_NORMAL, IDC_NEW_INCOGNITO_WINDOW, IDS_NEW_INCOGNITO_WINDOW, 0, NULL },
{ MENU_NORMAL, IDC_PROFILE_MENU, IDS_PROFILE_MENU, 0, NULL },
{ MENU_SEPARATOR, 0, 0, NULL },
{ MENU_NORMAL, IDC_SHOW_BOOKMARK_BAR, IDS_SHOW_BOOKMARK_BAR },
{ MENU_SEPARATOR, 0, 0, NULL },
{ MENU_NORMAL, IDC_SHOW_HISTORY, IDS_SHOW_HISTORY },
{ MENU_NORMAL, IDC_SHOW_BOOKMARK_MANAGER, IDS_BOOKMARK_MANAGER },
{ MENU_NORMAL, IDC_SHOW_DOWNLOADS, IDS_SHOW_DOWNLOADS },
{ MENU_SEPARATOR, 0, 0, NULL },
// TODO(erg): P13N stuff goes here as soon as they get IDS strings.
{ MENU_NORMAL, IDC_CLEAR_BROWSING_DATA, IDS_CLEAR_BROWSING_DATA, 0, NULL },
{ MENU_NORMAL, IDC_IMPORT_SETTINGS, IDS_IMPORT_SETTINGS, 0, NULL },
{ MENU_SEPARATOR, 0, 0, 0, NULL },
{ MENU_NORMAL, IDC_OPTIONS, IDS_OPTIONS, IDS_PRODUCT_NAME, NULL },
{ MENU_NORMAL, IDC_ABOUT, IDS_ABOUT, IDS_PRODUCT_NAME, NULL },
{ MENU_NORMAL, IDC_HELP_PAGE, IDS_HELP_PAGE, 0, NULL },
{ MENU_SEPARATOR, 0, 0, 0, NULL },
{ MENU_NORMAL, IDC_EXIT, IDS_EXIT, 0, NULL },
{ MENU_END, 0, 0, NULL }
};
} // namespace
const MenuCreateMaterial* GetStandardPageMenu() {
return standard_page_menu_materials;
}
const MenuCreateMaterial* GetStandardAppMenu() {
return standard_app_menu_materials;
}
|