aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2000-08-18 01:54:34 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2000-08-18 01:54:34 +0800
commit75d7dc01ad542cdf9198240b6ba8b117fa0ac163 (patch)
tree1a5d5c21d6bc282d758a8b9edd2597542c9ac233
parentdf2c6c922a5700d261717a1e11a33a04ff5f98a6 (diff)
downloadgsoc2013-evolution-75d7dc01ad542cdf9198240b6ba8b117fa0ac163.tar
gsoc2013-evolution-75d7dc01ad542cdf9198240b6ba8b117fa0ac163.tar.gz
gsoc2013-evolution-75d7dc01ad542cdf9198240b6ba8b117fa0ac163.tar.bz2
gsoc2013-evolution-75d7dc01ad542cdf9198240b6ba8b117fa0ac163.tar.lz
gsoc2013-evolution-75d7dc01ad542cdf9198240b6ba8b117fa0ac163.tar.xz
gsoc2013-evolution-75d7dc01ad542cdf9198240b6ba8b117fa0ac163.tar.zst
gsoc2013-evolution-75d7dc01ad542cdf9198240b6ba8b117fa0ac163.zip
Fix menus and add placeholders in the menubar for the components to
use. svn path=/trunk/; revision=4868
-rw-r--r--shell/ChangeLog15
-rw-r--r--shell/e-shell-view-menu.c53
2 files changed, 37 insertions, 31 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 2bf2e6e1da..993e1326f5 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,18 @@
+2000-08-17 Ettore Perazzoli <ettore@helixcode.com>
+
+ * e-shell-view-menu.c (menu_create_file): Make capitalization of
+ menu items consistent.
+ (menu_create_view): Likewise.
+ (menu_create_help): Likewise.
+ (e_shell_view_menu_setup): Create a component menu placeholder so
+ that components can add their own component-specific menus there.
+ (menu_create_actions): Removed.
+ (e_shell_view_menu_setup): Don't call it.
+ (menu_create_tools): Removed.
+ (e_shell_view_menu_setup): Don't call it.
+ (menu_create_settings): New.
+ (e_shell_view_menu_setup): Call it.
+
2000-08-13 Ettore Perazzoli <ettore@helixcode.com>
* e-shell-view.c (delete_event): New. Make the parent shell quit.
diff --git a/shell/e-shell-view-menu.c b/shell/e-shell-view-menu.c
index 8d0f8b0bf6..6cf7fe826a 100644
--- a/shell/e-shell-view-menu.c
+++ b/shell/e-shell-view-menu.c
@@ -441,7 +441,7 @@ menu_create_file (BonoboUIHandler *uih,
bonobo_ui_handler_menu_new_separator (uih, "/File/Separator1", -1);
bonobo_ui_handler_menu_new_item (uih, "/File/Go to folder",
- _("_Go to folder..."),
+ _("_Go to Folder..."),
_("Display a different folder"),
-1,
BONOBO_UI_HANDLER_PIXMAP_NONE, NULL,
@@ -449,7 +449,7 @@ menu_create_file (BonoboUIHandler *uih,
command_goto_folder, data);
bonobo_ui_handler_menu_new_item (uih, "/File/Create new folder",
- _("_Create new folder..."),
+ _("_Create New Folder..."),
_("Create a new folder"),
-1,
BONOBO_UI_HANDLER_PIXMAP_NONE, NULL,
@@ -492,13 +492,13 @@ menu_create_view (BonoboUIHandler *uih,
0, 0);
bonobo_ui_handler_menu_new_toggleitem (uih, "/View/Show shortcut bar",
- _("Show _shortcut bar"),
+ _("Show _Shortcut Bar"),
_("Show the shortcut bar"),
-1,
0, 0,
command_toggle_shortcut_bar, data);
bonobo_ui_handler_menu_new_toggleitem (uih, "/View/Show folder bar",
- _("Show _folder bar"),
+ _("Show _Folder Bar"),
_("Show the folder bar"),
-1,
0, 0,
@@ -506,22 +506,11 @@ menu_create_view (BonoboUIHandler *uih,
}
static void
-menu_create_tools (BonoboUIHandler *uih,
- void *data)
-{
- bonobo_ui_handler_menu_new_subtree (uih, "/Tools",
- _("_Tools"),
- NULL, -1,
- BONOBO_UI_HANDLER_PIXMAP_NONE, NULL,
- 0, 0);
-}
-
-static void
-menu_create_actions (BonoboUIHandler *uih,
- void *data)
+menu_create_settings (BonoboUIHandler *uih,
+ void *data)
{
- bonobo_ui_handler_menu_new_subtree (uih, "/Actions",
- _("_Actions"),
+ bonobo_ui_handler_menu_new_subtree (uih, "/Settings",
+ _("_Settings"),
NULL, -1,
BONOBO_UI_HANDLER_PIXMAP_NONE, NULL,
0, 0);
@@ -538,35 +527,35 @@ menu_create_help (BonoboUIHandler *uih,
0, 0);
bonobo_ui_handler_menu_new_item (uih, "/Help/Help index",
- _("Help _index"),
+ _("Help _Index"),
NULL,
-1,
BONOBO_UI_HANDLER_PIXMAP_NONE, NULL,
0, 0,
command_help, "index.html");
bonobo_ui_handler_menu_new_item (uih, "/Help/Getting started",
- _("Getting _started"),
+ _("Getting _Started"),
NULL,
-1,
BONOBO_UI_HANDLER_PIXMAP_NONE, NULL,
0, 0,
command_help, "usage-mainwindow.html");
bonobo_ui_handler_menu_new_item (uih, "/Help/Using the mailer",
- _("Using the _mailer"),
+ _("Using the _Mailer"),
NULL,
-1,
BONOBO_UI_HANDLER_PIXMAP_NONE, NULL,
0, 0,
command_help, "usage-mail.html");
bonobo_ui_handler_menu_new_item (uih, "/Help/Using the calendar",
- _("Using the _calendar"),
+ _("Using the _Calendar"),
NULL,
-1,
BONOBO_UI_HANDLER_PIXMAP_NONE, NULL,
0, 0,
command_help, "usage-calendar.html");
bonobo_ui_handler_menu_new_item (uih, "/Help/Using the contact manager",
- _("Using the c_ontact manager"),
+ _("Using the C_ontact Manager"),
NULL,
-1,
BONOBO_UI_HANDLER_PIXMAP_NONE, NULL,
@@ -576,7 +565,7 @@ menu_create_help (BonoboUIHandler *uih,
bonobo_ui_handler_menu_new_separator (uih, "/Help/Separator1", -1);
bonobo_ui_handler_menu_new_item (uih, "/Help/Submit bug report",
- _("_Submit bug report"),
+ _("_Submit Bug Report"),
_("Submit bug report using Bug Buddy"),
-1,
BONOBO_UI_HANDLER_PIXMAP_NONE, NULL,
@@ -609,12 +598,14 @@ e_shell_view_menu_setup (EShellView *shell_view)
uih = e_shell_view_get_bonobo_ui_handler (shell_view);
- menu_create_file (uih, shell_view);
- menu_create_edit (uih, shell_view);
- menu_create_view (uih, shell_view);
- menu_create_tools (uih, shell_view);
- menu_create_actions (uih, shell_view);
- menu_create_help (uih, shell_view);
+ menu_create_file (uih, shell_view);
+ menu_create_edit (uih, shell_view);
+ menu_create_view (uih, shell_view);
+ menu_create_settings (uih, shell_view);
+
+ bonobo_ui_handler_menu_new_placeholder (uih, "/<Component Placeholder>");
+
+ menu_create_help (uih, shell_view);
gtk_signal_connect (GTK_OBJECT (shell_view), "shortcut_bar_mode_changed",
GTK_SIGNAL_FUNC (shortcut_bar_mode_changed_cb),