Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2559)

Unified Diff: chrome/browser/gtk/standard_menus.cc

Issue 20245: Port the Menu class to GTK. (Closed)
Patch Set: Fixes for evanm Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« chrome/browser/gtk/menu_gtk.cc ('K') | « chrome/browser/gtk/standard_menus.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/gtk/standard_menus.cc
diff --git a/chrome/browser/gtk/standard_menus.cc b/chrome/browser/gtk/standard_menus.cc
new file mode 100644
index 0000000000000000000000000000000000000000..ceb75d52ded95db86753342114bb2cbda3361afe
--- /dev/null
+++ b/chrome/browser/gtk/standard_menus.cc
@@ -0,0 +1,94 @@
+// 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 "chromium_strings.h"
+#include "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;
+}
« chrome/browser/gtk/menu_gtk.cc ('K') | « chrome/browser/gtk/standard_menus.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698