aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-01-13 05:00:21 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-01-13 05:00:21 +0800
commit936a6d77ddf54813096e2ecbe55b824b5ae80c4c (patch)
treedafa161b1c69c081506db43bdbffe0f7d66894f3 /mail
parent9c6f86a43dd17e08ea6ec275a5bbf52ace9d879b (diff)
downloadgsoc2013-evolution-936a6d77ddf54813096e2ecbe55b824b5ae80c4c.tar
gsoc2013-evolution-936a6d77ddf54813096e2ecbe55b824b5ae80c4c.tar.gz
gsoc2013-evolution-936a6d77ddf54813096e2ecbe55b824b5ae80c4c.tar.bz2
gsoc2013-evolution-936a6d77ddf54813096e2ecbe55b824b5ae80c4c.tar.lz
gsoc2013-evolution-936a6d77ddf54813096e2ecbe55b824b5ae80c4c.tar.xz
gsoc2013-evolution-936a6d77ddf54813096e2ecbe55b824b5ae80c4c.tar.zst
gsoc2013-evolution-936a6d77ddf54813096e2ecbe55b824b5ae80c4c.zip
Add an ::asyncCopyFolder method to the ShellComponent interface. Move
all the message hiding options to the View menu. svn path=/trunk/; revision=7456
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog8
-rw-r--r--mail/component-factory.c10
-rw-r--r--mail/folder-browser.c33
3 files changed, 15 insertions, 36 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 7e0ba16e88..71671d19d5 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,11 @@
+2001-01-12 Ettore Perazzoli <ettore@helixcode.com>
+
+ * component-factory.c (component_fn): Pass NULL as the
+ @copy_folder_fn arg to `evolution_shell_component_new()'.
+
+ * folder-browser.c (on_right_click): Removed hide menu. It
+ belongs to the view menu now.
+
2001-01-12 Miguel de Icaza <miguel@ximian.com>
* message-list.c: Add strings for localization
diff --git a/mail/component-factory.c b/mail/component-factory.c
index d280388e58..25914359ea 100644
--- a/mail/component-factory.c
+++ b/mail/component-factory.c
@@ -248,9 +248,13 @@ component_fn (BonoboGenericFactory *factory, void *closure)
{
EvolutionShellComponent *shell_component;
- shell_component = evolution_shell_component_new (
- folder_types, create_view, create_folder,
- NULL, NULL, NULL);
+ shell_component = evolution_shell_component_new (folder_types,
+ create_view,
+ create_folder,
+ NULL, /* remove_folder_fn */
+ NULL, /* copy_folder_fn */
+ NULL, /* populate_folder_context_menu */
+ NULL);
gtk_signal_connect (GTK_OBJECT (shell_component), "owner_set",
GTK_SIGNAL_FUNC (owner_set_cb), NULL);
diff --git a/mail/folder-browser.c b/mail/folder-browser.c
index 3b99d729d6..7b1168c7e0 100644
--- a/mail/folder-browser.c
+++ b/mail/folder-browser.c
@@ -653,20 +653,6 @@ on_right_click (ETable *table, gint row, gint col, GdkEvent *event, FolderBrowse
{ NULL, NULL, NULL, NULL, 0 }
};
- EPopupMenu hide_menu[] = {
- { _("Show all hidden"), NULL, GTK_SIGNAL_FUNC (hide_none), NULL, 128 },
- { "", NULL, GTK_SIGNAL_FUNC (NULL), NULL, 0 },
- { _("Hide selected"), NULL, GTK_SIGNAL_FUNC (hide_selected), NULL, 2 },
- { "", NULL, GTK_SIGNAL_FUNC (NULL), NULL, 0 },
- /* could use another mask, but not enough api do to it */
- { _("Hide read"), NULL, GTK_SIGNAL_FUNC (hide_read), NULL, 0 },
- { _("Hide deleted"), NULL, GTK_SIGNAL_FUNC (hide_deleted), NULL, 0 },
-#define HIDE_SUBJECT (6)
- { _("Hide Subject"), NULL, GTK_SIGNAL_FUNC (hide_subject), NULL, 2 },
-#define HIDE_SENDER (7)
- { _("Hide from Sender"), NULL, GTK_SIGNAL_FUNC (hide_sender), NULL, 2 },
- { NULL, NULL, NULL, NULL, 0 }
- };
EPopupMenu menu[] = {
{ _("Open"), NULL, GTK_SIGNAL_FUNC (view_msg), NULL, 0 },
@@ -692,7 +678,6 @@ on_right_click (ETable *table, gint row, gint col, GdkEvent *event, FolderBrowse
{ _("Apply Filters"), NULL, GTK_SIGNAL_FUNC (apply_filters), NULL, 0 },
{ "", NULL, GTK_SIGNAL_FUNC (NULL), NULL, 0 },
{ _("Create Rule From Message"), NULL, GTK_SIGNAL_FUNC (NULL), filter_menu, 2 },
- { _("Hide Messages"), NULL, GTK_SIGNAL_FUNC (NULL), hide_menu, 0 },
{ NULL, NULL, NULL, NULL, 0 }
};
@@ -785,27 +770,9 @@ display_menu:
g_free(mailing_list_name);
}
- if (subject_match != NULL) {
- hide_menu[HIDE_SUBJECT].name = g_strdup_printf(_("Hide Subject \"%s\""), subject_match);
- g_free(subject_match);
- } else
- hide_menu[HIDE_SUBJECT].name = g_strdup(_("Hide Subject"));
-
- if (from_match != NULL) {
- hide_menu[HIDE_SENDER].name = g_strdup_printf(_("Hide from Sender <%s>"), from_match);
- g_free(from_match);
- } else
- hide_menu[HIDE_SENDER].name = g_strdup(_("Hide from Sender"));
-
- /* TODO: should probably be a function to say if anything is hidden ... but this is accurate */
- if (fb->message_list->hidden == NULL)
- enable_mask |= 128;
-
e_popup_menu_run (menu, (GdkEventButton *)event, enable_mask, 0, fb);
g_free(filter_menu[last_item].name);
- g_free(hide_menu[HIDE_SUBJECT].name);
- g_free(hide_menu[HIDE_SENDER].name);
return TRUE;
}