diff options
author | Srinivasa Ragavan <sragavan@novell.com> | 2008-11-19 13:55:21 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2008-11-19 13:55:21 +0800 |
commit | 31e212934cb4fcb43eb0836758546e2a8ae294e5 (patch) | |
tree | 6009bc540d17ec13767a735d1e917d532b9895d4 /plugins | |
parent | fe7b22387ae8788292f59479b056847e33e57f94 (diff) | |
download | gsoc2013-evolution-31e212934cb4fcb43eb0836758546e2a8ae294e5.tar gsoc2013-evolution-31e212934cb4fcb43eb0836758546e2a8ae294e5.tar.gz gsoc2013-evolution-31e212934cb4fcb43eb0836758546e2a8ae294e5.tar.bz2 gsoc2013-evolution-31e212934cb4fcb43eb0836758546e2a8ae294e5.tar.lz gsoc2013-evolution-31e212934cb4fcb43eb0836758546e2a8ae294e5.tar.xz gsoc2013-evolution-31e212934cb4fcb43eb0836758546e2a8ae294e5.tar.zst gsoc2013-evolution-31e212934cb4fcb43eb0836758546e2a8ae294e5.zip |
** Fix for BNC bug #434320
2008-11-19 Srinivasa Ragavan <sragavan@novell.com>
** Fix for BNC bug #434320
* plugins/mail-notification/mail-notification.c: When the popup is
clicked close the status icon.
svn path=/trunk/; revision=36802
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mail-notification/ChangeLog | 7 | ||||
-rw-r--r-- | plugins/mail-notification/mail-notification.c | 21 |
2 files changed, 27 insertions, 1 deletions
diff --git a/plugins/mail-notification/ChangeLog b/plugins/mail-notification/ChangeLog index 3e489aca96..2612fd6ae5 100644 --- a/plugins/mail-notification/ChangeLog +++ b/plugins/mail-notification/ChangeLog @@ -1,3 +1,10 @@ +2008-11-19 Srinivasa Ragavan <sragavan@novell.com> + + ** Fix for BNC bug #434320 + + * plugins/mail-notification/mail-notification.c: When the popup is + clicked close the status icon. + 2008-09-16 Sankar P <psankar@novell.com> License Changes diff --git a/plugins/mail-notification/mail-notification.c b/plugins/mail-notification/mail-notification.c index f3da922a79..58db560c64 100644 --- a/plugins/mail-notification/mail-notification.c +++ b/plugins/mail-notification/mail-notification.c @@ -56,6 +56,7 @@ static gboolean enabled = FALSE; static GtkWidget *get_cfg_widget (void); +static GStaticMutex mlock = G_STATIC_MUTEX_INIT; /** * each part should "implement" its own "public" functions: @@ -441,6 +442,24 @@ popup_menu_status (GtkStatusIcon *status_icon, guint button, guint activate_time g_object_unref (menu); } +static void +notifyActionCallback (NotifyNotification *n, gchar *label, gpointer a) +{ + g_static_mutex_lock (&mlock); + + gtk_status_icon_set_visible (status_icon, FALSE); + g_object_unref (status_icon); + + if (blink_timeout_id) { + g_source_remove (blink_timeout_id); + blink_timeout_id = 0; + } + + status_icon = NULL; + status_count = 0; + g_static_mutex_unlock (&mlock); +} + static void new_notify_status (EMEventTargetFolder *t) { @@ -487,6 +506,7 @@ new_notify_status (EMEventTargetFolder *t) notify_notification_set_urgency (notify, NOTIFY_URGENCY_NORMAL); notify_notification_set_timeout (notify, NOTIFY_EXPIRES_DEFAULT); + notify_notification_add_action(notify, "default", "Default", notifyActionCallback, NULL, NULL); g_timeout_add (500, notification_callback, notify); } } @@ -835,7 +855,6 @@ void org_gnome_mail_read_notify (EPlugin *ep, EMEventTargetMessage *t); int e_plugin_lib_enable (EPluginLib *ep, int enable); GtkWidget *e_plugin_lib_get_configure_widget (EPlugin *epl); -static GStaticMutex mlock = G_STATIC_MUTEX_INIT; void org_gnome_mail_new_notify (EPlugin *ep, EMEventTargetFolder *t) |