aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Loper <mloper@src.gnome.org>2000-05-27 05:09:28 +0800
committerMatthew Loper <mloper@src.gnome.org>2000-05-27 05:09:28 +0800
commitfe42d534f146396a0c48f4e4f28c04b6c381f82d (patch)
treecd86aad17727a2497c0bdc5ae4fca170d1ab3929
parent3d1cadd580d1be1de29f6ad135adbed0e4f204e1 (diff)
downloadgsoc2013-evolution-fe42d534f146396a0c48f4e4f28c04b6c381f82d.tar
gsoc2013-evolution-fe42d534f146396a0c48f4e4f28c04b6c381f82d.tar.gz
gsoc2013-evolution-fe42d534f146396a0c48f4e4f28c04b6c381f82d.tar.bz2
gsoc2013-evolution-fe42d534f146396a0c48f4e4f28c04b6c381f82d.tar.lz
gsoc2013-evolution-fe42d534f146396a0c48f4e4f28c04b6c381f82d.tar.xz
gsoc2013-evolution-fe42d534f146396a0c48f4e4f28c04b6c381f82d.tar.zst
gsoc2013-evolution-fe42d534f146396a0c48f4e4f28c04b6c381f82d.zip
+ * e-shell-view-menu.c (command_about_box): Make authorlist more
+ alphabetical. + (command_show_treeview): New function; shows the treeview, when it + has been hidden. + (command_show_shortcut_bar): New function; shows the shortcut bar, + when it's been hidden. svn path=/trunk/; revision=3225
-rw-r--r--shell/ChangeLog9
-rw-r--r--shell/e-shell-view-menu.c37
2 files changed, 38 insertions, 8 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 7f1746e625..2139e99042 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,12 @@
+2000-05-26 Matt Loper <matt@helixcode.com>
+
+ * e-shell-view-menu.c (command_about_box): Make authorlist more
+ alphabetical.
+ (command_show_treeview): New function; shows the treeview, when it
+ has been hidden.
+ (command_show_shortcut_bar): New function; shows the shortcut bar,
+ when it's been hidden.
+
2000-05-26 Ettore Perazzoli <ettore@helixcode.com>
* e-corba-storage.c (impl_StorageListener_new_folder): Set the
diff --git a/shell/e-shell-view-menu.c b/shell/e-shell-view-menu.c
index 0bdb6e36f3..9cd4ea7bf2 100644
--- a/shell/e-shell-view-menu.c
+++ b/shell/e-shell-view-menu.c
@@ -89,20 +89,20 @@ command_about_box (GtkWidget *menuitem, gpointer data)
"Damon Chaplin",
"Clifford R. Conover",
"Miguel de Icaza",
+ "Radek Doulik",
"Arturo Espinoza",
"Larry Ewing",
+ "Nat Friedman",
"Bertrand Guiheneuf",
"Tuomas Kuosmanen",
"Christopher J. Lahey",
"Matthew Loper",
"Federico Mena",
"Eskil Heyn Olsen",
- "Nat Friedman",
"Ettore Perazzoli",
"Russell Steinthal",
"Peter Teichman",
"Chris Toshok",
- "Radek Doulik",
"Dan Winship",
"Michael Zucchi",
NULL};
@@ -121,6 +121,29 @@ command_about_box (GtkWidget *menuitem, gpointer data)
}
}
+static void
+command_show_treeview (GtkWidget* widget, gpointer data)
+{
+ EShellView* shell_view;
+
+ g_assert (E_IS_SHELL_VIEW (data));
+
+ shell_view = E_SHELL_VIEW (data);
+ e_shell_view_show_folders (shell_view, TRUE);
+}
+
+static void
+command_show_shortcut_bar (GtkWidget* widget, gpointer data)
+{
+ EShellView* shell_view;
+
+ g_assert (E_IS_SHELL_VIEW (data));
+
+ shell_view = E_SHELL_VIEW (data);
+ e_shell_view_show_shortcuts (shell_view, TRUE);
+}
+
+
/* Unimplemented commands. */
@@ -146,8 +169,6 @@ DEFINE_UNIMPLEMENTED (command_new_note)
DEFINE_UNIMPLEMENTED (command_open_selected_items)
DEFINE_UNIMPLEMENTED (command_save_as)
DEFINE_UNIMPLEMENTED (command_close_open_items)
-DEFINE_UNIMPLEMENTED (command_toggle_shortcut_bar)
-DEFINE_UNIMPLEMENTED (command_toggle_treeview)
/*
@@ -240,11 +261,11 @@ static GnomeUIInfo menu_edit [] = {
};
static GnomeUIInfo menu_view [] = {
- { GNOME_APP_UI_ITEM, N_("_Toggle Shortcut Bar"),
- N_("Toggles the shortcut bar"), command_toggle_shortcut_bar, NULL,
+ { GNOME_APP_UI_ITEM, N_("Show _Shortcut Bar"),
+ N_("Shows the shortcut bar"), command_show_shortcut_bar, NULL,
NULL, 0, 0, 'n', GDK_CONTROL_MASK | GDK_SHIFT_MASK },
- { GNOME_APP_UI_ITEM, N_("_Toggle Treeview"),
- N_("Toggles the tree view"), command_toggle_treeview, NULL,
+ { GNOME_APP_UI_ITEM, N_("Show _Treeview"),
+ N_("Shows the tree view"), command_show_treeview, NULL,
NULL, 0, 0, 'n', GDK_CONTROL_MASK | GDK_SHIFT_MASK },
GNOMEUIINFO_END
};