diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-09-05 23:35:02 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-09-05 23:35:02 +0800 |
commit | 016805f54d602763358da78f45b4779bd85763b1 (patch) | |
tree | 87c21aa8b82ccee9dff6732de22b30b39c4810f5 /mail/e-mail-browser.c | |
parent | 7ec8fed125463d5eda4bcf306378d0cf528d0ca8 (diff) | |
download | gsoc2013-evolution-016805f54d602763358da78f45b4779bd85763b1.tar.gz gsoc2013-evolution-016805f54d602763358da78f45b4779bd85763b1.tar.zst gsoc2013-evolution-016805f54d602763358da78f45b4779bd85763b1.zip |
Get the mailing-list-actions plugin working.
Also get mail-to-task working for the message browser window.
Came up with a new technique for managing actions and action groups in
the process. Also gave the EMailReader interface an "update-actions"
signal for plugins to connect to.
Diffstat (limited to 'mail/e-mail-browser.c')
-rw-r--r-- | mail/e-mail-browser.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mail/e-mail-browser.c b/mail/e-mail-browser.c index fb79932653..ea860c016f 100644 --- a/mail/e-mail-browser.c +++ b/mail/e-mail-browser.c @@ -26,6 +26,7 @@ #include <camel/camel-folder.h> #include "e-util/e-util.h" +#include "e-util/e-plugin-ui.h" #include "e-util/gconf-bridge.h" #include "shell/e-shell.h" @@ -372,6 +373,7 @@ mail_browser_constructed (GObject *object) GtkHTML *html; const gchar *domain; const gchar *key; + const gchar *id; guint merge_id; priv = E_MAIL_BROWSER_GET_PRIVATE (object); @@ -479,6 +481,10 @@ mail_browser_constructed (GObject *object) object = G_OBJECT (reader); key = "/apps/evolution/mail/display/show_deleted"; gconf_bridge_bind_property (bridge, key, object, "show-deleted"); + + id = "org.gnome.evolution.mail.browser"; + e_plugin_ui_register_manager (ui_manager, id, object); + e_plugin_ui_enable_manager (ui_manager, id); } static gboolean |