aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-window-commands.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2003-11-14 05:32:39 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2003-11-14 05:32:39 +0800
commit5880c00dd2fc254ea85302acd054cd57fede3966 (patch)
tree83980c1d8e170b376401ca032cf34f7e97376e34 /shell/e-shell-window-commands.c
parent1627a081744129fbf8f874c290b9a18138655590 (diff)
downloadgsoc2013-evolution-5880c00dd2fc254ea85302acd054cd57fede3966.tar
gsoc2013-evolution-5880c00dd2fc254ea85302acd054cd57fede3966.tar.gz
gsoc2013-evolution-5880c00dd2fc254ea85302acd054cd57fede3966.tar.bz2
gsoc2013-evolution-5880c00dd2fc254ea85302acd054cd57fede3966.tar.lz
gsoc2013-evolution-5880c00dd2fc254ea85302acd054cd57fede3966.tar.xz
gsoc2013-evolution-5880c00dd2fc254ea85302acd054cd57fede3966.tar.zst
gsoc2013-evolution-5880c00dd2fc254ea85302acd054cd57fede3966.zip
New.
* e-shell.c (e_shell_send_receive): New. * Evolution-Component.idl (Component.sendAndReceive): New. * evolution.xml: Add back send/receive command and toolbar button. svn path=/trunk/; revision=23334
Diffstat (limited to 'shell/e-shell-window-commands.c')
-rw-r--r--shell/e-shell-window-commands.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/shell/e-shell-window-commands.c b/shell/e-shell-window-commands.c
index b75fc998a4..0bc9b7f12f 100644
--- a/shell/e-shell-window-commands.c
+++ b/shell/e-shell-window-commands.c
@@ -197,6 +197,14 @@ command_work_online (BonoboUIComponent *uih,
e_shell_go_online (e_shell_window_peek_shell (window), window);
}
+static void
+command_send_receive (BonoboUIComponent *uih,
+ EShellWindow *window,
+ const char *path)
+{
+ e_shell_send_receive (e_shell_window_peek_shell (window));
+}
+
/* Tools menu. */
@@ -228,6 +236,12 @@ static BonoboUIVerb file_verbs [] = {
BONOBO_UI_VERB_END
};
+static BonoboUIVerb actions_verbs[] = {
+ BONOBO_UI_VERB ("SendReceive", (BonoboUIVerbFn) command_send_receive),
+
+ BONOBO_UI_VERB_END
+};
+
static BonoboUIVerb tools_verbs[] = {
BONOBO_UI_VERB ("Settings", (BonoboUIVerbFn) command_settings),
BONOBO_UI_VERB ("PilotSettings", (BonoboUIVerbFn) command_pilot_settings),
@@ -244,6 +258,7 @@ static BonoboUIVerb help_verbs [] = {
};
static EPixmap pixmaps [] = {
+ E_PIXMAP ("/commands/SendReceive", "send-receive.xpm"),
E_PIXMAP ("/menu/File/FileImporter", "import.xpm"),
E_PIXMAP ("/menu/File/ToggleOffline", "work_offline.xpm"),
E_PIXMAP ("/menu/Tools/Settings", "settings-16.png"),
@@ -341,6 +356,7 @@ e_shell_window_commands_setup (EShellWindow *shell_window)
shell = e_shell_window_peek_shell (shell_window);
bonobo_ui_component_add_verb_list_with_data (uic, file_verbs, shell_window);
+ bonobo_ui_component_add_verb_list_with_data (uic, actions_verbs, shell_window);
bonobo_ui_component_add_verb_list_with_data (uic, tools_verbs, shell_window);
bonobo_ui_component_add_verb_list_with_data (uic, help_verbs, shell_window);