2005-09-14 [paul] 1.9.14cvs26
[claws.git] / src / plugins / trayicon / trayicon.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2003 Hiroyuki Yamamoto and the Sylpheed-Claws 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 2 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, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
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/sylpheed.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 "gtk/manage_window.h"
44
45 #include "eggtrayicon.h"
46 #include "newmarkedmail.xpm"
47 #include "unreadmarkedmail.xpm"
48 #include "newmail.xpm"
49 #include "unreadmail.xpm"
50 #include "nomail.xpm"
51
52 static guint hook_id;
53
54 static GdkPixmap *newmail_pixmap;
55 static GdkPixmap *newmail_bitmap;
56 static GdkPixmap *unreadmail_pixmap;
57 static GdkPixmap *unreadmail_bitmap;
58 static GdkPixmap *newmarkedmail_pixmap;
59 static GdkPixmap *newmarkedmail_bitmap;
60 static GdkPixmap *unreadmarkedmail_pixmap;
61 static GdkPixmap *unreadmarkedmail_bitmap;
62 static GdkPixmap *nomail_pixmap;
63 static GdkPixmap *nomail_bitmap;
64
65 static EggTrayIcon *trayicon;
66 static GtkWidget *eventbox;
67 static GtkWidget *image;
68 static GtkTooltips *tooltips;
69 static GtkWidget *traymenu_popup;
70
71 guint destroy_signal_id;
72
73 typedef enum
74 {
75         TRAYICON_NEW,
76         TRAYICON_NEWMARKED,
77         TRAYICON_UNREAD,
78         TRAYICON_UNREADMARKED,
79         TRAYICON_NOTHING
80 } TrayIconType;
81
82 static void trayicon_get_cb         (gpointer data, guint action, GtkWidget *widget);
83 static void trayicon_get_all_cb     (gpointer data, guint action, GtkWidget *widget);
84 static void trayicon_compose_cb     (gpointer data, guint action, GtkWidget *widget);
85 static void trayicon_addressbook_cb (gpointer data, guint action, GtkWidget *widget);
86 static void trayicon_exit_cb        (gpointer data, guint action, GtkWidget *widget);
87 static void resize_cb               (GtkWidget *widget, GtkRequisition *req, gpointer user_data);
88
89 static GtkItemFactoryEntry trayicon_popup_menu_entries[] =
90 {
91         {N_("/_Get"),                   NULL, trayicon_get_cb,          0, NULL},
92         {N_("/Get _All"),               NULL, trayicon_get_all_cb,      0, NULL},
93         {N_("/---"),                    NULL, NULL,                     0, "<Separator>"},
94         {N_("/_Email"),                 NULL, trayicon_compose_cb,      0, NULL},
95         {N_("/Open A_ddressbook"),      NULL, trayicon_addressbook_cb,  0, NULL},
96         {N_("/---"),                    NULL, NULL,                     0, "<Separator>"},
97         {N_("/E_xit Sylpheed"),         NULL, trayicon_exit_cb,         0, NULL}
98 };
99
100 static void set_trayicon_pixmap(TrayIconType icontype)
101 {
102         GdkPixmap *pixmap = NULL;
103         GdkBitmap *bitmap = NULL;
104         static GdkPixmap *last_pixmap = NULL;
105
106         switch(icontype) {
107         case TRAYICON_NEW:
108                 pixmap = newmail_pixmap;
109                 bitmap = newmail_bitmap;
110                 break;
111         case TRAYICON_NEWMARKED:
112                 pixmap = newmarkedmail_pixmap;
113                 bitmap = newmarkedmail_bitmap;
114                 break;
115         case TRAYICON_UNREAD:
116                 pixmap = unreadmail_pixmap;
117                 bitmap = unreadmail_bitmap;
118                 break;
119         case TRAYICON_UNREADMARKED:
120                 pixmap = unreadmarkedmail_pixmap;
121                 bitmap = unreadmarkedmail_bitmap;
122                 break;
123         default:
124                 pixmap = nomail_pixmap;
125                 bitmap = nomail_bitmap;
126                 break;
127         }
128
129         if (pixmap == last_pixmap)
130                 return;
131
132         gtk_image_set_from_pixmap(GTK_IMAGE(image), pixmap, bitmap);
133
134         last_pixmap = pixmap;
135 }
136
137 static void update(void)
138 {
139         guint new, unread, unreadmarked, marked, total;
140         gchar *buf;
141         TrayIconType icontype = TRAYICON_NOTHING;
142
143         folder_count_total_msgs(&new, &unread, &unreadmarked, &marked, &total);
144         buf = g_strdup_printf(_("New %d, Unread: %d, Total: %d"), new, unread, total);
145
146         gtk_tooltips_set_tip(tooltips, eventbox, buf, "");
147         g_free(buf);
148         
149         if (new > 0 && unreadmarked > 0)
150                 icontype = TRAYICON_NEWMARKED;
151         else if (new > 0)
152                 icontype = TRAYICON_NEW;
153         else if (unreadmarked > 0)
154                 icontype = TRAYICON_UNREADMARKED;
155         else if (unread > 0)
156                 icontype = TRAYICON_UNREAD;
157
158         set_trayicon_pixmap(icontype);
159 }
160
161 static gboolean folder_item_update_hook(gpointer source, gpointer data)
162 {
163         update();
164
165         return FALSE;
166 }
167
168 static void resize_cb(GtkWidget *widget, GtkRequisition *req,
169                       gpointer user_data)
170 {
171         update();
172 }
173
174 static gboolean click_cb(GtkWidget * widget,
175                          GdkEventButton * event, gpointer user_data)
176 {
177         MainWindow *mainwin;
178
179         if (event == NULL)
180                 return TRUE;
181
182         mainwin = mainwindow_get_mainwindow();
183         
184         switch (event->button) {
185         case 1:
186                 if (GTK_WIDGET_VISIBLE(GTK_WIDGET(mainwin->window))) {
187                         main_window_hide(mainwin);
188                 } else {
189                         main_window_show(mainwin);
190                 }
191                 break;
192         case 3:
193                 gtk_menu_popup( GTK_MENU(traymenu_popup), NULL, NULL, NULL, NULL,
194                        event->button, event->time );
195                 break;
196         default:
197                 return TRUE;
198         }
199         return TRUE;
200 }
201
202 static void create_trayicon(void);
203
204 static void destroy_cb(GtkWidget *widget, gpointer *data)
205 {
206         debug_print("Widget destroyed\n");
207
208         create_trayicon();
209 }
210
211 static void create_trayicon()
212 {
213         gint n_entries = 0;
214         GtkItemFactory *traymenu_factory;
215 #if 0
216         GtkPacker *packer;
217 #endif
218
219         trayicon = egg_tray_icon_new("Sylpheed-Claws");
220         gtk_widget_realize(GTK_WIDGET(trayicon));
221         gtk_window_set_default_size(GTK_WINDOW(trayicon), 16, 16);
222         gtk_container_set_border_width(GTK_CONTAINER(trayicon), 0);
223
224         PIXMAP_CREATE(GTK_WIDGET(trayicon), nomail_pixmap, nomail_bitmap, nomail_xpm);
225         PIXMAP_CREATE(GTK_WIDGET(trayicon), unreadmail_pixmap, unreadmail_bitmap, unreadmail_xpm);
226         PIXMAP_CREATE(GTK_WIDGET(trayicon), newmail_pixmap, newmail_bitmap, newmail_xpm);
227         PIXMAP_CREATE(GTK_WIDGET(trayicon), unreadmarkedmail_pixmap, unreadmarkedmail_bitmap, unreadmarkedmail_xpm);
228         PIXMAP_CREATE(GTK_WIDGET(trayicon), newmarkedmail_pixmap, newmarkedmail_bitmap, newmarkedmail_xpm);
229
230         eventbox = gtk_event_box_new();
231         gtk_container_set_border_width(GTK_CONTAINER(eventbox), 0);
232         gtk_container_add(GTK_CONTAINER(trayicon), GTK_WIDGET(eventbox));
233
234         image = gtk_image_new_from_pixmap(nomail_pixmap, nomail_bitmap);
235         gtk_container_add(GTK_CONTAINER(eventbox), image);
236
237         destroy_signal_id =
238         g_signal_connect(G_OBJECT(trayicon), "destroy",
239                          G_CALLBACK(destroy_cb), NULL);
240         g_signal_connect(GTK_OBJECT(trayicon), "size-request",
241                          G_CALLBACK(resize_cb), NULL);
242         g_signal_connect(G_OBJECT(eventbox), "button-press-event",
243                          G_CALLBACK(click_cb), NULL);
244
245         tooltips = gtk_tooltips_new();
246         gtk_tooltips_set_delay(tooltips, 1000);
247         gtk_tooltips_enable(tooltips);
248
249         n_entries = sizeof(trayicon_popup_menu_entries) /
250                 sizeof(trayicon_popup_menu_entries[0]);
251         traymenu_popup = menu_create_items(trayicon_popup_menu_entries,
252                                        n_entries,
253                                        "<TrayiconMenu>", &traymenu_factory,
254                                        NULL);
255
256         gtk_widget_show_all(GTK_WIDGET(trayicon));
257
258         update();
259 }
260
261 int plugin_init(gchar **error)
262 {
263         if ((sylpheed_get_version() > VERSION_NUMERIC)) {
264                 *error = g_strdup("Your sylpheed version is newer than the version the plugin was built with");
265                 return -1;
266         }
267
268         if ((sylpheed_get_version() < MAKE_NUMERIC_VERSION(0, 9, 3, 86))) {
269                 *error = g_strdup("Your sylpheed version is too old");
270                 return -1;
271         }
272
273         hook_id = hooks_register_hook (FOLDER_ITEM_UPDATE_HOOKLIST, folder_item_update_hook, NULL);
274         if (hook_id == -1) {
275                 *error = g_strdup("Failed to register folder item update hook");
276                 return -1;
277         }
278
279         create_trayicon();
280
281         return 0;
282 }
283
284 void plugin_done(void)
285 {
286         g_signal_handler_disconnect(G_OBJECT(trayicon), destroy_signal_id);
287
288         gtk_widget_destroy(GTK_WIDGET(trayicon));
289         hooks_unregister_hook(FOLDER_ITEM_UPDATE_HOOKLIST, hook_id);
290
291         while (gtk_events_pending())
292                 gtk_main_iteration();           
293 }
294
295 const gchar *plugin_name(void)
296 {
297         return _("Trayicon");
298 }
299
300 const gchar *plugin_desc(void)
301 {
302         return _("This plugin places a mailbox icon in the system tray that "
303                  "indicates if you have new or unread mail.\n"
304                  "\n"
305                  "The mailbox is empty if you have no unread mail, otherwise "
306                  "it contains a letter. A tooltip shows new, unread and total "
307                  "number of messages.");
308 }
309
310 const gchar *plugin_type(void)
311 {
312         return "GTK2";
313 }
314
315 /* popup menu callbacks */
316 static void trayicon_get_cb( gpointer data, guint action, GtkWidget *widget )
317 {
318         MainWindow *mainwin = mainwindow_get_mainwindow();
319         inc_mail_cb(mainwin, 0, NULL);
320 }
321
322 static void trayicon_get_all_cb( gpointer data, guint action, GtkWidget *widget )
323 {
324         MainWindow *mainwin = mainwindow_get_mainwindow();
325         inc_all_account_mail_cb(mainwin, 0, NULL);
326 }
327
328 static void trayicon_compose_cb( gpointer data, guint action, GtkWidget *widget )
329 {
330         MainWindow *mainwin = mainwindow_get_mainwindow();
331         compose_mail_cb(mainwin, 0, NULL);
332 }
333
334 static void trayicon_addressbook_cb( gpointer data, guint action, GtkWidget *widget )
335 {
336         addressbook_open(NULL);
337 }
338
339 static void app_exit_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
340 {
341         if (prefs_common.confirm_on_exit) {
342                 if (alertpanel(_("Exit"), _("Exit this program?"),
343                                _("OK"), _("Cancel"), NULL) != G_ALERTDEFAULT)
344                         return;
345                 manage_window_focus_in(mainwin->window, NULL, NULL);
346         }
347
348         app_will_exit(NULL, mainwin);
349 }
350
351 static void trayicon_exit_cb( gpointer data, guint action, GtkWidget *widget )
352 {
353         MainWindow *mainwin = mainwindow_get_mainwindow();
354
355         if (mainwin->lock_count == 0)
356                 app_exit_cb(mainwin, 0, NULL);
357 }