5c79e5b3e1bc505834daa220d894ac7044ab155a
[claws.git] / src / plugins / trayicon / trayicon.c
1 /*
2  * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 2003-2011 the Claws Mail Team
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  * 
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #endif
23
24 #include <stdio.h>
25
26 #include <glib.h>
27 #include <glib/gi18n.h>
28 #include <gtk/gtk.h>
29
30 #include "common/claws.h"
31 #include "common/version.h"
32 #include "plugin.h"
33 #include "utils.h"
34 #include "hooks.h"
35 #include "folder.h"
36 #include "mainwindow.h"
37 #include "gtkutils.h"
38 #include "menu.h"
39 #include "toolbar.h"
40 #include "prefs_common.h"
41 #include "main.h"
42 #include "alertpanel.h"
43 #include "account.h"
44 #include "gtk/manage_window.h"
45 #ifdef USE_NEW_ADDRBOOK
46         #include "addressbook-dbus.h"
47 #endif
48
49 #include "trayicon_prefs.h"
50
51 #include "stock_pixmap.h"
52
53 #define PLUGIN_NAME (_("Trayicon"))
54
55 static guint item_hook_id;
56 static guint folder_hook_id;
57 static guint offline_hook_id;
58 static guint account_hook_id;
59 static guint close_hook_id;
60 static guint iconified_hook_id;
61 static guint theme_hook_id;
62
63 static GdkPixbuf *newmail_pixbuf[2] = {NULL, NULL};
64 static GdkPixbuf *unreadmail_pixbuf[2] = {NULL, NULL};
65 static GdkPixbuf *newmarkedmail_pixbuf[2] = {NULL, NULL};
66 static GdkPixbuf *unreadmarkedmail_pixbuf[2] = {NULL, NULL};
67 static GdkPixbuf *nomail_pixbuf[2] = {NULL, NULL};
68
69 static GtkStatusIcon *trayicon;
70 static GtkWidget *focused_widget = NULL;
71
72 static GtkWidget *traymenu_popup;
73 static gboolean updating_menu = FALSE;
74
75 typedef enum
76 {
77         TRAYICON_NEW,
78         TRAYICON_NEWMARKED,
79         TRAYICON_UNREAD,
80         TRAYICON_UNREADMARKED,
81         TRAYICON_NOTHING
82 } TrayIconType;
83
84 static void trayicon_get_all_cb     (GtkAction *action, gpointer data);
85 static void trayicon_compose_cb     (GtkAction *action, gpointer data);
86 static void trayicon_compose_acc_cb (GtkMenuItem *menuitem, gpointer data );
87 static void trayicon_addressbook_cb (GtkAction *action, gpointer data);
88 static void trayicon_exit_cb        (GtkAction *action, gpointer data);
89 static void trayicon_toggle_offline_cb  (GtkAction *action, gpointer data);
90
91 static GtkActionEntry trayicon_popup_menu_entries[] =
92 {
93         {"TrayiconPopup",                       NULL, "TrayiconPopup" },
94         {"TrayiconPopup/GetMail",               NULL, N_("_Get Mail"), NULL, NULL, G_CALLBACK(trayicon_get_all_cb) },
95         {"TrayiconPopup/---",                   NULL, "---", NULL, NULL, G_CALLBACK(trayicon_compose_cb) },
96         {"TrayiconPopup/Email",                 NULL, N_("_Email"), NULL, NULL, G_CALLBACK(trayicon_compose_cb) },
97         {"TrayiconPopup/EmailAcc",              NULL, N_("E_mail from account"), NULL, NULL, NULL },
98         {"TrayiconPopup/OpenAB",                NULL, N_("Open A_ddressbook"), NULL, NULL, G_CALLBACK(trayicon_addressbook_cb) },
99         {"TrayiconPopup/Exit",                  NULL, N_("E_xit Claws Mail"), NULL, NULL, G_CALLBACK(trayicon_exit_cb) },
100 };
101
102 static GtkToggleActionEntry trayicon_popup_toggle_menu_entries[] =
103 {
104         {"TrayiconPopup/ToggleOffline",         NULL, N_("_Work Offline"), NULL, NULL, G_CALLBACK(trayicon_toggle_offline_cb) },
105 };
106
107 static gboolean trayicon_set_accounts_hook(gpointer source, gpointer data)
108 {
109         GList *cur_ac;
110         GtkWidget *menu, *submenu;
111         GtkWidget *menuitem;
112         PrefsAccount *ac_prefs;
113
114         GList *account_list = account_get_list();
115
116         menu = gtk_ui_manager_get_widget(gtkut_ui_manager(), "/Menus/TrayiconPopup/EmailAcc");
117         gtk_widget_show(menu);
118
119         gtk_menu_item_set_submenu(GTK_MENU_ITEM(menu), NULL);
120         submenu = gtk_menu_new();
121         for (cur_ac = account_list; cur_ac != NULL; cur_ac = cur_ac->next) {
122                 ac_prefs = (PrefsAccount *)cur_ac->data;
123
124                 menuitem = gtk_menu_item_new_with_label
125                         (ac_prefs->account_name ? ac_prefs->account_name
126                          : _("Untitled"));
127                 gtk_widget_show(menuitem);
128                 gtk_menu_shell_append(GTK_MENU_SHELL(submenu), menuitem);
129                 g_signal_connect(G_OBJECT(menuitem), "activate",
130                                  G_CALLBACK(trayicon_compose_acc_cb),
131                                  ac_prefs);
132         }
133         gtk_widget_show(submenu);
134         gtk_menu_item_set_submenu(GTK_MENU_ITEM(menu), submenu);
135         return FALSE;
136 }
137
138 static void set_trayicon_pixbuf(TrayIconType icontype)
139 {
140         GdkPixbuf *pixbuf = NULL;
141         static GdkPixbuf *last_pixbuf = NULL;
142
143         switch(icontype) {
144         case TRAYICON_NEW:
145                 pixbuf = newmail_pixbuf[prefs_common.work_offline];
146                 break;
147         case TRAYICON_NEWMARKED:
148                 pixbuf = newmarkedmail_pixbuf[prefs_common.work_offline];
149                 break;
150         case TRAYICON_UNREAD:
151                 pixbuf = unreadmail_pixbuf[prefs_common.work_offline];
152                 break;
153         case TRAYICON_UNREADMARKED:
154                 pixbuf = unreadmarkedmail_pixbuf[prefs_common.work_offline];
155                 break;
156         default:
157                 pixbuf = nomail_pixbuf[prefs_common.work_offline];
158                 break;
159         }
160
161         if (pixbuf == last_pixbuf) {
162                 return;
163         }
164
165         gtk_status_icon_set_from_pixbuf(GTK_STATUS_ICON(trayicon), pixbuf);
166
167         last_pixbuf = pixbuf;
168 }
169
170 static void update(FolderItem *removed_item)
171 {
172         guint new, unread, unreadmarked, marked, total;
173         guint replied, forwarded, locked, ignored, watched;
174         gchar *buf;
175         TrayIconType icontype = TRAYICON_NOTHING;
176
177         folder_count_total_msgs(&new, &unread, &unreadmarked, &marked, &total,
178                                 &replied, &forwarded, &locked, &ignored,
179                                 &watched);
180         if (removed_item) {
181                 total -= removed_item->total_msgs;
182                 new -= removed_item->new_msgs;
183                 unread -= removed_item->unread_msgs;
184         }
185
186         buf = g_strdup_printf(_("New %d, Unread: %d, Total: %d"), new, unread, total);
187
188 #if !(GTK_CHECK_VERSION(2,16,0))
189         gtk_status_icon_set_tooltip(trayicon, buf);
190 #else
191         gtk_status_icon_set_tooltip_text(trayicon, buf);
192 #endif
193         g_free(buf);
194
195         if (new > 0 && unreadmarked > 0) {
196                 icontype = TRAYICON_NEWMARKED;
197         } else if (new > 0) {
198                 icontype = TRAYICON_NEW;
199         } else if (unreadmarked > 0) {
200                 icontype = TRAYICON_UNREADMARKED;
201         } else if (unread > 0) {
202                 icontype = TRAYICON_UNREAD;
203         }
204
205         set_trayicon_pixbuf(icontype);
206 }
207
208 static gboolean folder_item_update_hook(gpointer source, gpointer data)
209 {
210         update(NULL);
211
212         return FALSE;
213 }
214
215 static gboolean folder_update_hook(gpointer source, gpointer data)
216 {
217         FolderUpdateData *hookdata;
218         hookdata = source;
219         if (hookdata->update_flags & FOLDER_REMOVE_FOLDERITEM)
220                 update(hookdata->item);
221         else
222                 update(NULL);
223
224         return FALSE;
225 }
226
227 static gboolean offline_update_hook(gpointer source, gpointer data)
228 {
229         update(NULL);
230         return FALSE;
231 }
232
233 static gboolean trayicon_close_hook(gpointer source, gpointer data)
234 {
235         if (source) {
236                 gboolean *close_allowed = (gboolean*)source;
237
238                 if (trayicon_prefs.close_to_tray) {
239                         MainWindow *mainwin = mainwindow_get_mainwindow();
240
241                         *close_allowed = FALSE;
242                         focused_widget = gtk_window_get_focus(GTK_WINDOW(mainwin->window));
243                         
244                         if (gtk_widget_get_visible(GTK_WIDGET(mainwin->window)))
245                                 main_window_hide(mainwin);
246                 }
247         }
248         return FALSE;
249 }
250
251 static gboolean trayicon_got_iconified_hook(gpointer source, gpointer data)
252 {
253         MainWindow *mainwin = mainwindow_get_mainwindow();
254
255         if (trayicon_prefs.hide_when_iconified
256                         && gtk_widget_get_visible(GTK_WIDGET(mainwin->window))
257                         && !gtk_window_get_skip_taskbar_hint(GTK_WINDOW(mainwin->window))) {
258                 focused_widget = gtk_window_get_focus(GTK_WINDOW(mainwin->window));
259                 gtk_window_set_skip_taskbar_hint(GTK_WINDOW(mainwin->window), TRUE);
260         }
261         return FALSE;
262 }
263
264 static void fix_folderview_scroll(MainWindow *mainwin)
265 {
266         static gboolean fix_done = FALSE;
267
268         if (fix_done)
269                 return;
270
271         gtk_widget_queue_resize(mainwin->folderview->ctree);
272
273         fix_done = TRUE;
274 }
275
276 static gboolean click_cb(GtkWidget * widget,
277                          GdkEventButton * event, gpointer user_data)
278 {
279         MainWindow *mainwin;
280
281         if (event == NULL) {
282                 return TRUE;
283         }
284
285         mainwin = mainwindow_get_mainwindow();
286
287         switch (event->button) {
288         case 1:
289                 if (gtk_widget_get_visible(GTK_WIDGET(mainwin->window))) {
290                         if ((gdk_window_get_state(gtk_widget_get_window(
291                                 GTK_WIDGET(mainwin->window)))&GDK_WINDOW_STATE_ICONIFIED)
292                                         || mainwindow_is_obscured()) {
293                                 gtk_window_deiconify(GTK_WINDOW(mainwin->window));
294                                 gtk_window_set_skip_taskbar_hint(GTK_WINDOW(mainwin->window), FALSE);
295                                 main_window_show(mainwin);
296                                 gtk_window_present(GTK_WINDOW(mainwin->window));
297                                 gtk_window_set_focus(GTK_WINDOW(mainwin->window), focused_widget);
298                         } else {
299                                 focused_widget = gtk_window_get_focus(GTK_WINDOW(mainwin->window));
300                                 main_window_hide(mainwin);
301                         }
302                 } else {
303                         gtk_window_deiconify(GTK_WINDOW(mainwin->window));
304                         gtk_window_set_skip_taskbar_hint(GTK_WINDOW(mainwin->window), FALSE);
305                         main_window_show(mainwin);
306                         gtk_window_present(GTK_WINDOW(mainwin->window));
307                         fix_folderview_scroll(mainwin);
308                         gtk_window_set_focus(GTK_WINDOW(mainwin->window), focused_widget);
309         }
310                 break;
311         case 3:
312                 /* tell callbacks to skip any event */
313                 updating_menu = TRUE;
314                 /* initialize checkitem according to current offline state */
315                 cm_toggle_menu_set_active("TrayiconPopup/ToggleOffline", prefs_common.work_offline);
316                 cm_menu_set_sensitive("TrayiconPopup/GetMail", mainwin->lock_count == 0);
317                 updating_menu = FALSE;
318
319                 gtk_menu_popup( GTK_MENU(traymenu_popup), NULL, NULL, NULL, NULL,
320                        event->button, event->time );
321                 break;
322         default:
323                 return TRUE;
324         }
325         return TRUE;
326 }
327
328 static void create_trayicon(void);
329
330 static gboolean trayicon_update_theme(gpointer source, gpointer data)
331 {
332         MainWindow *mainwin = mainwindow_get_mainwindow();
333         stock_pixbuf_gdk(GTK_WIDGET(mainwin->window), STOCK_PIXMAP_TRAY_NOMAIL, &nomail_pixbuf[0]);
334         stock_pixbuf_gdk(GTK_WIDGET(mainwin->window), STOCK_PIXMAP_TRAY_UNREADMAIL, &unreadmail_pixbuf[0]);
335         stock_pixbuf_gdk(GTK_WIDGET(mainwin->window), STOCK_PIXMAP_TRAY_NEWMAIL, &newmail_pixbuf[0]);
336         stock_pixbuf_gdk(GTK_WIDGET(mainwin->window), STOCK_PIXMAP_TRAY_UNREADMARKEDMAIL, &unreadmarkedmail_pixbuf[0]);
337         stock_pixbuf_gdk(GTK_WIDGET(mainwin->window), STOCK_PIXMAP_TRAY_NEWMARKEDMAIL, &newmarkedmail_pixbuf[0]);
338
339         stock_pixbuf_gdk(GTK_WIDGET(mainwin->window), STOCK_PIXMAP_TRAY_NOMAIL_OFFLINE, &nomail_pixbuf[1]);
340         stock_pixbuf_gdk(GTK_WIDGET(mainwin->window), STOCK_PIXMAP_TRAY_UNREADMAIL_OFFLINE, &unreadmail_pixbuf[1]);
341         stock_pixbuf_gdk(GTK_WIDGET(mainwin->window), STOCK_PIXMAP_TRAY_NEWMAIL_OFFLINE, &newmail_pixbuf[1]);
342         stock_pixbuf_gdk(GTK_WIDGET(mainwin->window), STOCK_PIXMAP_TRAY_UNREADMARKEDMAIL_OFFLINE, &unreadmarkedmail_pixbuf[1]);
343         stock_pixbuf_gdk(GTK_WIDGET(mainwin->window), STOCK_PIXMAP_TRAY_NEWMARKEDMAIL_OFFLINE, &newmarkedmail_pixbuf[1]);
344
345         update(NULL);
346
347         return FALSE;
348 }
349
350 static void create_trayicon()
351 {
352         GtkActionGroup *action_group;
353         trayicon = gtk_status_icon_new();
354         gtk_status_icon_set_title(GTK_STATUS_ICON(trayicon), _("Claws Mail"));
355         g_signal_connect(G_OBJECT(trayicon), "button-press-event",
356                 G_CALLBACK(click_cb), NULL);
357
358         action_group = cm_menu_create_action_group("TrayiconPopup", trayicon_popup_menu_entries,
359                         G_N_ELEMENTS(trayicon_popup_menu_entries), (gpointer)NULL);
360         gtk_action_group_add_toggle_actions(action_group, trayicon_popup_toggle_menu_entries,
361                         G_N_ELEMENTS(trayicon_popup_toggle_menu_entries), (gpointer)NULL);
362
363         MENUITEM_ADDUI("/Menus", "TrayiconPopup", "TrayiconPopup", GTK_UI_MANAGER_MENU)
364         MENUITEM_ADDUI("/Menus/TrayiconPopup", "GetMail", "TrayiconPopup/GetMail", GTK_UI_MANAGER_MENUITEM)
365         MENUITEM_ADDUI("/Menus/TrayiconPopup", "Separator1", "TrayiconPopup/---", GTK_UI_MANAGER_SEPARATOR)
366         MENUITEM_ADDUI("/Menus/TrayiconPopup", "Email", "TrayiconPopup/Email", GTK_UI_MANAGER_MENUITEM)
367         MENUITEM_ADDUI("/Menus/TrayiconPopup", "EmailAcc", "TrayiconPopup/EmailAcc", GTK_UI_MANAGER_MENU)
368         MENUITEM_ADDUI("/Menus/TrayiconPopup", "Separator2", "TrayiconPopup/---", GTK_UI_MANAGER_SEPARATOR)
369         MENUITEM_ADDUI("/Menus/TrayiconPopup", "OpenAB", "TrayiconPopup/OpenAB", GTK_UI_MANAGER_MENUITEM)
370         MENUITEM_ADDUI("/Menus/TrayiconPopup", "Separator3", "TrayiconPopup/---", GTK_UI_MANAGER_SEPARATOR)
371         MENUITEM_ADDUI("/Menus/TrayiconPopup", "ToggleOffline", "TrayiconPopup/ToggleOffline", GTK_UI_MANAGER_MENUITEM)
372         MENUITEM_ADDUI("/Menus/TrayiconPopup", "Separator4", "TrayiconPopup/---", GTK_UI_MANAGER_SEPARATOR)
373         MENUITEM_ADDUI("/Menus/TrayiconPopup", "Exit", "TrayiconPopup/Exit", GTK_UI_MANAGER_MENUITEM)
374
375         traymenu_popup = gtk_menu_item_get_submenu(GTK_MENU_ITEM(
376                                 gtk_ui_manager_get_widget(gtkut_ui_manager(), "/Menus/TrayiconPopup")) );
377
378         trayicon_update_theme(NULL, NULL);
379 }
380
381 int plugin_init(gchar **error)
382 {
383         if (!check_plugin_version(MAKE_NUMERIC_VERSION(2,9,2,72),
384                                 VERSION_NUMERIC, PLUGIN_NAME, error))
385                 return -1;
386
387         item_hook_id = hooks_register_hook (FOLDER_ITEM_UPDATE_HOOKLIST, folder_item_update_hook, NULL);
388         if (item_hook_id == -1) {
389                 *error = g_strdup(_("Failed to register folder item update hook"));
390                 goto err_out_item;
391         }
392
393         folder_hook_id = hooks_register_hook (FOLDER_UPDATE_HOOKLIST, folder_update_hook, NULL);
394         if (folder_hook_id == -1) {
395                 *error = g_strdup(_("Failed to register folder update hook"));
396                 goto err_out_folder;
397         }
398
399         offline_hook_id = hooks_register_hook (OFFLINE_SWITCH_HOOKLIST, offline_update_hook, NULL);
400         if (offline_hook_id == -1) {
401                 *error = g_strdup(_("Failed to register offline switch hook"));
402                 goto err_out_offline;
403         }
404
405         account_hook_id = hooks_register_hook (ACCOUNT_LIST_CHANGED_HOOKLIST, trayicon_set_accounts_hook, NULL);
406         if (account_hook_id == -1) {
407                 *error = g_strdup(_("Failed to register account list changed hook"));
408                 goto err_out_account;
409         }
410
411         close_hook_id = hooks_register_hook (MAIN_WINDOW_CLOSE, trayicon_close_hook, NULL);
412         if (close_hook_id == -1) {
413                 *error = g_strdup(_("Failed to register close hook"));
414                 goto err_out_close;
415         }
416
417         iconified_hook_id = hooks_register_hook (MAIN_WINDOW_GOT_ICONIFIED, trayicon_got_iconified_hook, NULL);
418         if (iconified_hook_id == -1) {
419                 *error = g_strdup(_("Failed to register got iconified hook"));
420                 goto err_out_iconified;
421         }
422
423         theme_hook_id = hooks_register_hook(THEME_CHANGED_HOOKLIST, trayicon_update_theme, NULL);
424         if (theme_hook_id == -1) {
425                 *error = g_strdup(_("Failed to register theme change hook"));
426                 goto err_out_theme;
427         }
428
429         create_trayicon();
430         trayicon_set_accounts_hook(NULL, NULL);
431
432         trayicon_prefs_init();
433
434         if (trayicon_prefs.hide_at_startup && claws_is_starting()) {
435                 MainWindow *mainwin = mainwindow_get_mainwindow();
436
437                 if (gtk_widget_get_visible(GTK_WIDGET(mainwin->window)))
438                         main_window_hide(mainwin);
439                 main_set_show_at_startup(FALSE);
440         }
441
442         return 0;
443
444 err_out_theme:
445         hooks_unregister_hook(MAIN_WINDOW_GOT_ICONIFIED, iconified_hook_id);
446 err_out_iconified:
447         hooks_unregister_hook(MAIN_WINDOW_CLOSE, close_hook_id);
448 err_out_close:
449         hooks_unregister_hook(ACCOUNT_LIST_CHANGED_HOOKLIST, account_hook_id);
450 err_out_account:
451         hooks_unregister_hook(OFFLINE_SWITCH_HOOKLIST, offline_hook_id);
452 err_out_offline:
453         hooks_unregister_hook(FOLDER_UPDATE_HOOKLIST, folder_hook_id);
454 err_out_folder:
455         hooks_unregister_hook(FOLDER_ITEM_UPDATE_HOOKLIST, item_hook_id);
456 err_out_item:
457         return -1;
458 }
459
460 gboolean plugin_done(void)
461 {
462         trayicon_prefs_done();
463
464         hooks_unregister_hook(FOLDER_ITEM_UPDATE_HOOKLIST, item_hook_id);
465         hooks_unregister_hook(FOLDER_UPDATE_HOOKLIST, folder_hook_id);
466         hooks_unregister_hook(OFFLINE_SWITCH_HOOKLIST, offline_hook_id);
467         hooks_unregister_hook(ACCOUNT_LIST_CHANGED_HOOKLIST, account_hook_id);
468         hooks_unregister_hook(MAIN_WINDOW_CLOSE, close_hook_id);
469         hooks_unregister_hook(MAIN_WINDOW_GOT_ICONIFIED, iconified_hook_id);
470         hooks_unregister_hook(THEME_CHANGED_HOOKLIST, theme_hook_id);
471
472         if (claws_is_exiting())
473                 return TRUE;
474
475         gtk_status_icon_set_visible(trayicon, FALSE);
476         g_object_unref(G_OBJECT(trayicon));
477         trayicon = NULL;
478
479         while (gtk_events_pending()) {
480                 gtk_main_iteration();
481         }
482         return TRUE;
483 }
484
485 const gchar *plugin_name(void)
486 {
487         return PLUGIN_NAME;
488 }
489
490 const gchar *plugin_desc(void)
491 {
492         return _("This plugin places a mailbox icon in the system tray that "
493                  "indicates if you have new or unread mail.\n"
494                  "\n"
495                  "The mailbox is empty if you have no unread mail, otherwise "
496                  "it contains a letter. A tooltip shows new, unread and total "
497                  "number of messages.");
498 }
499
500 const gchar *plugin_type(void)
501 {
502         return "GTK2";
503 }
504
505 const gchar *plugin_licence(void)
506 {
507         return "GPL3+";
508 }
509
510 const gchar *plugin_version(void)
511 {
512         return VERSION;
513 }
514
515
516 /* popup menu callbacks */
517 static void trayicon_get_all_cb( GtkAction *action, gpointer data )
518 {
519         MainWindow *mainwin = mainwindow_get_mainwindow();
520         inc_all_account_mail_cb(mainwin, 0, NULL);
521 }
522
523 static void trayicon_compose_cb( GtkAction *action, gpointer data )
524 {
525         MainWindow *mainwin = mainwindow_get_mainwindow();
526         compose_mail_cb(mainwin, 0, NULL);
527 }
528
529 static void trayicon_compose_acc_cb( GtkMenuItem *menuitem, gpointer data )
530 {
531         compose_new((PrefsAccount *)data, NULL, NULL);
532 }
533
534 static void trayicon_addressbook_cb( GtkAction *action, gpointer data )
535 {
536 #ifndef USE_NEW_ADDRBOOK
537         addressbook_open(NULL);
538 #else
539         GError* error = NULL;
540         addressbook_dbus_open(FALSE, &error);
541         if (error) {
542                 g_warning("%s", error->message);
543                 g_error_free(error);
544         }
545 #endif
546 }
547
548 static void trayicon_toggle_offline_cb( GtkAction *action, gpointer data )
549 {
550         /* toggle offline mode if menu checkitem has been clicked */
551         if (!updating_menu) {
552                 MainWindow *mainwin = mainwindow_get_mainwindow();
553                 main_window_toggle_work_offline(mainwin, !prefs_common.work_offline, TRUE);
554         }
555 }
556
557 static void app_exit_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
558 {
559         if (prefs_common.clean_on_exit) {
560                 if (!main_window_empty_trash(mainwin, prefs_common.ask_on_clean, TRUE))
561                         return;
562         }
563
564         if (prefs_common.confirm_on_exit) {
565                 if (alertpanel(_("Exit"), _("Exit Claws Mail?"),
566                                GTK_STOCK_CANCEL, GTK_STOCK_OK,
567                                NULL) != G_ALERTALTERNATE) {
568                         return;
569                 }
570                 manage_window_focus_in(mainwin->window, NULL, NULL);
571         }
572
573         app_will_exit(NULL, mainwin);
574 }
575
576 static void trayicon_exit_cb( GtkAction *action, gpointer data )
577 {
578         MainWindow *mainwin = mainwindow_get_mainwindow();
579
580         if (mainwin->lock_count == 0) {
581                 app_exit_cb(mainwin, 0, NULL);
582         }
583 }
584
585 struct PluginFeature *plugin_provides(void)
586 {
587         static struct PluginFeature features[] = 
588                 { {PLUGIN_NOTIFIER, N_("Trayicon")},
589                   {PLUGIN_NOTHING, NULL}};
590         return features;
591 }