Mercurial > pidgin
annotate plugins/docklet/docklet.c @ 5743:af159a5bbaa0
[gaim-migrate @ 6167]
Fixed a missing preference.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Wed, 04 Jun 2003 08:46:05 +0000 |
parents | b61520e71679 |
children | 059d95c67cda |
rev | line source |
---|---|
4093 | 1 /* System tray icon (aka docklet) plugin for Gaim |
3510 | 2 * Copyright (C) 2002 Robert McQueen <robot101@debian.org> |
3 * Inspired by a similar plugin by: | |
4 * John (J5) Palmieri <johnp@martianrock.com> | |
5 * | |
6 * This program is free software; you can redistribute it and/or | |
7 * modify it under the terms of the GNU General Public License as | |
8 * published by the Free Software Foundation; either version 2 of the | |
9 * License, or (at your option) any later version. | |
10 * | |
11 * This program is distributed in the hope that it will be useful, but | |
12 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 * General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU General Public License | |
17 * along with this program; if not, write to the Free Software | |
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA | |
19 * 02111-1307, USA. | |
20 */ | |
21 | |
22 /* todo (in order of importance): | |
4261
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
23 - unify the queue so we can have a global away without the dialog |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
24 - handle and update tooltips to show your current accounts/queued messages? |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
25 - show a count of queued messages in the unified queue |
3510 | 26 - dernyi's account status menu in the right click |
4261
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
27 - optional pop up notices when GNOME2's system-tray-applet supports it */ |
3510 | 28 |
29 /* includes */ | |
30 #include <gtk/gtk.h> | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
31 #include "gtkplugin.h" |
5609 | 32 #include "gtkaccount.h" |
3510 | 33 #include "gaim.h" |
4561 | 34 #include "sound.h" |
5684 | 35 #include "gtksound.h" |
5554
7b36d02031a2
[gaim-migrate @ 5955]
Christian Hammond <chipx86@chipx86.com>
parents:
5530
diff
changeset
|
36 #include "prefs.h" |
7b36d02031a2
[gaim-migrate @ 5955]
Christian Hammond <chipx86@chipx86.com>
parents:
5530
diff
changeset
|
37 #include "gtkblist.h" |
3510 | 38 #include "eggtrayicon.h" |
39 | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
40 #define DOCKLET_PLUGIN_ID "gtk-docklet" |
3867 | 41 |
3510 | 42 /* types */ |
43 enum docklet_status { | |
4157 | 44 offline, |
45 offline_connecting, | |
3510 | 46 online, |
4157 | 47 online_connecting, |
48 online_pending, | |
3510 | 49 away, |
4157 | 50 away_pending |
3510 | 51 }; |
52 | |
53 /* functions */ | |
4093 | 54 static gboolean docklet_create(); |
4157 | 55 static gboolean docklet_update_status(); |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
56 static gboolean plugin_unload(GaimPlugin *plugin); |
3510 | 57 |
58 /* globals */ | |
3513 | 59 static EggTrayIcon *docklet = NULL; |
4261
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
60 static GtkWidget *image = NULL; |
3510 | 61 static enum docklet_status status; |
4261
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
62 static enum docklet_status icon; |
3510 | 63 |
3554 | 64 static void docklet_toggle_mute(GtkWidget *toggle, void *data) { |
5684 | 65 gaim_gtk_sound_set_mute(GTK_CHECK_MENU_ITEM(toggle)->active); |
3510 | 66 } |
67 | |
5554
7b36d02031a2
[gaim-migrate @ 5955]
Christian Hammond <chipx86@chipx86.com>
parents:
5530
diff
changeset
|
68 static void docklet_set_bool(GtkWidget *widget, const char *key) { |
7b36d02031a2
[gaim-migrate @ 5955]
Christian Hammond <chipx86@chipx86.com>
parents:
5530
diff
changeset
|
69 gaim_prefs_set_bool(key, gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget))); |
3510 | 70 } |
3570 | 71 |
3554 | 72 static void docklet_flush_queue() { |
3570 | 73 if (unread_message_queue) { |
4274 | 74 purge_away_queue(&unread_message_queue); |
3570 | 75 } |
3510 | 76 } |
77 | |
78 static void docklet_menu(GdkEventButton *event) { | |
3513 | 79 static GtkWidget *menu = NULL; |
3512 | 80 GtkWidget *entry; |
3510 | 81 |
82 if (menu) { | |
83 gtk_widget_destroy(menu); | |
84 } | |
85 | |
86 menu = gtk_menu_new(); | |
87 | |
4157 | 88 switch (status) { |
89 case offline: | |
90 case offline_connecting: | |
5584 | 91 /* XXX CHIP KILLED AUTO CONNECTING */ |
92 #if 0 | |
5024 | 93 gaim_new_item_from_stock(menu, _("Auto-login"), GAIM_STOCK_SIGN_ON, G_CALLBACK(auto_login), NULL, 0, 0, NULL); |
5584 | 94 #endif |
4567 | 95 break; |
96 default: | |
5024 | 97 gaim_new_item_from_stock(menu, _("New Message.."), GAIM_STOCK_IM, G_CALLBACK(show_im_dialog), NULL, 0, 0, NULL); |
98 gaim_new_item_from_stock(menu, _("Join A Chat..."), GAIM_STOCK_CHAT, G_CALLBACK(join_chat), NULL, 0, 0, NULL); | |
4567 | 99 break; |
100 } | |
101 | |
102 switch (status) { | |
103 case offline: | |
104 case offline_connecting: | |
4157 | 105 break; |
106 case online: | |
107 case online_connecting: | |
108 case online_pending: { | |
3510 | 109 GtkWidget *docklet_awaymenu; |
110 GSList *awy = NULL; | |
111 struct away_message *a = NULL; | |
112 | |
113 docklet_awaymenu = gtk_menu_new(); | |
114 awy = away_messages; | |
115 | |
116 while (awy) { | |
117 a = (struct away_message *)awy->data; | |
118 | |
119 entry = gtk_menu_item_new_with_label(a->name); | |
3554 | 120 g_signal_connect(G_OBJECT(entry), "activate", G_CALLBACK(do_away_message), a); |
4635 | 121 gtk_menu_shell_append(GTK_MENU_SHELL(docklet_awaymenu), entry); |
3510 | 122 |
123 awy = g_slist_next(awy); | |
124 } | |
125 | |
4157 | 126 if (away_messages) |
127 gaim_separator(docklet_awaymenu); | |
3510 | 128 |
129 entry = gtk_menu_item_new_with_label(_("New...")); | |
3554 | 130 g_signal_connect(G_OBJECT(entry), "activate", G_CALLBACK(create_away_mess), NULL); |
4635 | 131 gtk_menu_shell_append(GTK_MENU_SHELL(docklet_awaymenu), entry); |
3510 | 132 |
133 entry = gtk_menu_item_new_with_label(_("Away")); | |
3512 | 134 gtk_menu_item_set_submenu(GTK_MENU_ITEM(entry), docklet_awaymenu); |
4635 | 135 gtk_menu_shell_append(GTK_MENU_SHELL(menu), entry); |
4157 | 136 } break; |
137 case away: | |
138 case away_pending: | |
3510 | 139 entry = gtk_menu_item_new_with_label(_("Back")); |
3554 | 140 g_signal_connect(G_OBJECT(entry), "activate", G_CALLBACK(do_im_back), NULL); |
4635 | 141 gtk_menu_shell_append(GTK_MENU_SHELL(menu), entry); |
4157 | 142 break; |
3510 | 143 } |
144 | |
4567 | 145 gaim_separator(menu); |
146 | |
147 entry = gtk_check_menu_item_new_with_label(_("Mute Sounds")); | |
5684 | 148 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(entry), gaim_gtk_sound_get_mute()); |
4567 | 149 g_signal_connect(G_OBJECT(entry), "toggled", G_CALLBACK(docklet_toggle_mute), NULL); |
4635 | 150 gtk_menu_shell_append(GTK_MENU_SHELL(menu), entry); |
4567 | 151 |
5669 | 152 gaim_new_item_from_stock(menu, _("File Transfers"), GAIM_STOCK_FILE_TRANSFER, G_CALLBACK(gaim_show_xfer_dialog), NULL, 0, 0, NULL); |
153 gaim_new_item_from_stock(menu, _("Accounts"), GAIM_STOCK_ACCOUNTS, G_CALLBACK(gaim_gtk_account_dialog_show), NULL, 0, 0, NULL); | |
154 gaim_new_item_from_stock(menu, _("Preferences"), GTK_STOCK_PREFERENCES, G_CALLBACK(gaim_gtk_prefs_show), NULL, 0, 0, NULL); | |
4567 | 155 |
156 gaim_separator(menu); | |
157 | |
4157 | 158 switch (status) { |
159 case offline: | |
160 case offline_connecting: | |
161 break; | |
162 default: | |
5607 | 163 gaim_new_item_from_stock(menu, _("Signoff"), GTK_STOCK_CLOSE, G_CALLBACK(gaim_connections_disconnect_all), NULL, 0, 0, 0); |
4157 | 164 break; |
165 } | |
166 | |
167 gaim_new_item_from_stock(menu, _("Quit"), GTK_STOCK_QUIT, G_CALLBACK(do_quit), NULL, 0, 0, 0); | |
3510 | 168 |
169 gtk_widget_show_all(menu); | |
170 gtk_menu_popup(GTK_MENU(menu), NULL, NULL, NULL, NULL, event->button, event->time); | |
171 } | |
172 | |
173 static void docklet_clicked(GtkWidget *button, GdkEventButton *event, void *data) { | |
3939 | 174 if (event->type != GDK_BUTTON_PRESS) |
175 return; | |
176 | |
3510 | 177 switch (event->button) { |
178 case 1: | |
3517 | 179 if (unread_message_queue) { |
3570 | 180 docklet_flush_queue(); |
3517 | 181 docklet_update_status(); |
3570 | 182 } else { |
4698 | 183 gaim_gtk_blist_docklet_toggle(); |
3554 | 184 } |
3510 | 185 break; |
186 case 2: | |
187 break; | |
188 case 3: | |
189 docklet_menu(event); | |
190 break; | |
191 } | |
192 } | |
193 | |
4261
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
194 static void docklet_update_icon() { |
4250
3b884e35e6b5
[gaim-migrate @ 4500]
Christian Hammond <chipx86@chipx86.com>
parents:
4157
diff
changeset
|
195 const gchar *icon_name = NULL; |
3510 | 196 |
4261
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
197 switch (icon) { |
4157 | 198 case offline: |
5024 | 199 icon_name = GAIM_STOCK_ICON_OFFLINE; |
4157 | 200 break; |
201 case offline_connecting: | |
202 case online_connecting: | |
5024 | 203 icon_name = GAIM_STOCK_ICON_CONNECT; |
4157 | 204 break; |
3510 | 205 case online: |
5024 | 206 icon_name = GAIM_STOCK_ICON_ONLINE; |
3510 | 207 break; |
4157 | 208 case online_pending: |
5024 | 209 icon_name = GAIM_STOCK_ICON_ONLINE_MSG; |
4157 | 210 break; |
3510 | 211 case away: |
5024 | 212 icon_name = GAIM_STOCK_ICON_AWAY; |
3510 | 213 break; |
214 case away_pending: | |
5024 | 215 icon_name = GAIM_STOCK_ICON_AWAY_MSG; |
3510 | 216 break; |
217 } | |
218 | |
4261
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
219 gtk_image_set_from_stock(GTK_IMAGE(image), icon_name, GTK_ICON_SIZE_LARGE_TOOLBAR); |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
220 } |
3510 | 221 |
4261
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
222 static gboolean docklet_blink_icon() { |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
223 if (status == online_pending) { |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
224 if (status == icon) { |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
225 /* last icon was the right one... let's change it */ |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
226 icon = online; |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
227 } else { |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
228 /* last icon was the wrong one, change it back */ |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
229 icon = online_pending; |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
230 } |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
231 } else if (status == away_pending) { |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
232 if (status == icon) { |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
233 /* last icon was the right one... let's change it */ |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
234 icon = away; |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
235 } else { |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
236 /* last icon was the wrong one, change it back */ |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
237 icon = away_pending; |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
238 } |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
239 } else { |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
240 /* no messages, stop blinking */ |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
241 return FALSE; |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
242 } |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
243 |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
244 docklet_update_icon(); |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
245 |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
246 return TRUE; /* keep blinking */ |
3510 | 247 } |
248 | |
4157 | 249 static gboolean docklet_update_status() { |
3510 | 250 enum docklet_status oldstatus; |
251 | |
252 oldstatus = status; | |
253 | |
5584 | 254 if (gaim_connections_get_all()) { |
3517 | 255 if (unread_message_queue) { |
4157 | 256 status = online_pending; |
3517 | 257 } else if (awaymessage) { |
3510 | 258 if (message_queue) { |
259 status = away_pending; | |
260 } else { | |
261 status = away; | |
262 } | |
5584 | 263 /* XXX Chip killed my dog... */ |
264 #if 0 | |
3554 | 265 } else if (connecting_count) { |
4157 | 266 status = online_connecting; |
5584 | 267 #endif |
3510 | 268 } else { |
269 status = online; | |
270 } | |
271 } else { | |
5584 | 272 /* XXX ... and my pet goldfish ... */ |
273 #if 0 | |
3517 | 274 if (connecting_count) { |
4157 | 275 status = offline_connecting; |
3517 | 276 } else { |
5584 | 277 #endif |
3517 | 278 status = offline; |
5584 | 279 /* XXX ... both of them. */ |
280 #if 0 | |
3517 | 281 } |
5584 | 282 #endif |
3510 | 283 } |
284 | |
4261
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
285 /* update the icon if we changed status */ |
3510 | 286 if (status != oldstatus) { |
4261
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
287 icon = status; |
3510 | 288 docklet_update_icon(); |
4261
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
289 |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
290 /* and schedule the blinker function if messages are pending */ |
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
291 if (status == online_pending || status == away_pending) { |
4274 | 292 g_timeout_add(500, docklet_blink_icon, &docklet); |
4261
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
293 } |
3510 | 294 } |
4157 | 295 |
296 return FALSE; /* for when we're called by the glib idle handler */ | |
3510 | 297 } |
298 | |
3554 | 299 static void docklet_embedded(GtkWidget *widget, void *data) { |
5227
6d1707dc8c3d
[gaim-migrate @ 5597]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
300 gaim_debug(GAIM_DEBUG_INFO, "docklet", "Tray Icon: embedded\n"); |
4698 | 301 gaim_gtk_blist_docklet_add(); |
3554 | 302 } |
303 | |
4274 | 304 static void docklet_remove_callbacks() { |
5227
6d1707dc8c3d
[gaim-migrate @ 5597]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
305 gaim_debug(GAIM_DEBUG_INFO, "docklet", "Tray Icon: removing callbacks"); |
4274 | 306 |
307 while (g_source_remove_by_user_data(&docklet)) { | |
5227
6d1707dc8c3d
[gaim-migrate @ 5597]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
308 gaim_debug(GAIM_DEBUG_INFO, NULL, "."); |
4274 | 309 } |
310 | |
5227
6d1707dc8c3d
[gaim-migrate @ 5597]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
311 gaim_debug(GAIM_DEBUG_INFO, NULL, "\n"); |
4274 | 312 } |
313 | |
3554 | 314 static void docklet_destroyed(GtkWidget *widget, void *data) { |
5227
6d1707dc8c3d
[gaim-migrate @ 5597]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
315 gaim_debug(GAIM_DEBUG_INFO, "docklet", "Tray Icon: destroyed\n"); |
4093 | 316 |
4698 | 317 gaim_gtk_blist_docklet_remove(); |
4093 | 318 |
3570 | 319 docklet_flush_queue(); |
4093 | 320 |
4274 | 321 docklet_remove_callbacks(); |
4261
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
322 |
4093 | 323 g_object_unref(G_OBJECT(docklet)); |
324 docklet = NULL; | |
325 | |
4274 | 326 g_idle_add(docklet_create, &docklet); |
3554 | 327 } |
328 | |
4274 | 329 static gboolean docklet_create() { |
3510 | 330 GtkWidget *box; |
331 | |
3570 | 332 if (docklet) { |
4093 | 333 /* if this is being called when a tray icon exists, it's because |
334 something messed up. try destroying it before we proceed, | |
335 although docklet_refcount may be all hosed. hopefully won't happen. */ | |
5227
6d1707dc8c3d
[gaim-migrate @ 5597]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
336 gaim_debug(GAIM_DEBUG_WARNING, "docklet", |
6d1707dc8c3d
[gaim-migrate @ 5597]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
337 "Tray Icon: trying to create icon but it already exists?\n"); |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
338 plugin_unload(NULL); |
3510 | 339 } |
340 | |
341 docklet = egg_tray_icon_new("Gaim"); | |
342 box = gtk_event_box_new(); | |
4261
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
343 image = gtk_image_new(); |
3510 | 344 |
3554 | 345 g_signal_connect(G_OBJECT(docklet), "embedded", G_CALLBACK(docklet_embedded), NULL); |
346 g_signal_connect(G_OBJECT(docklet), "destroy", G_CALLBACK(docklet_destroyed), NULL); | |
347 g_signal_connect(G_OBJECT(box), "button-press-event", G_CALLBACK(docklet_clicked), NULL); | |
3510 | 348 |
4261
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
349 gtk_container_add(GTK_CONTAINER(box), image); |
3510 | 350 gtk_container_add(GTK_CONTAINER(docklet), box); |
351 gtk_widget_show_all(GTK_WIDGET(docklet)); | |
352 | |
3554 | 353 /* ref the docklet before we bandy it about the place */ |
354 g_object_ref(G_OBJECT(docklet)); | |
3510 | 355 docklet_update_status(); |
356 docklet_update_icon(); | |
357 | |
5227
6d1707dc8c3d
[gaim-migrate @ 5597]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
358 gaim_debug(GAIM_DEBUG_INFO, "docklet", "Tray Icon: created\n"); |
4093 | 359 |
360 return FALSE; /* for when we're called by the glib idle handler */ | |
3510 | 361 } |
362 | |
5584 | 363 static void gaim_signon(GaimConnection *gc, void *data) { |
3510 | 364 docklet_update_status(); |
365 } | |
366 | |
5584 | 367 static void gaim_signoff(GaimConnection *gc, void *data) { |
4157 | 368 /* do this when idle so that if the prpl was connecting |
369 and was cancelled, we register that connecting_count | |
370 has returned to 0 */ | |
4274 | 371 g_idle_add(docklet_update_status, &docklet); |
3510 | 372 } |
373 | |
5584 | 374 static void gaim_connecting(GaimAccount *account, void *data) { |
3510 | 375 docklet_update_status(); |
376 } | |
377 | |
5584 | 378 static void gaim_away(GaimConnection *gc, char *state, char *message, void *data) { |
3510 | 379 /* we only support global away. this is the way it is, ok? */ |
380 docklet_update_status(); | |
381 } | |
382 | |
5584 | 383 static void gaim_im_recv(GaimConnection *gc, char **who, char **what, void *data) { |
3510 | 384 /* if message queuing while away is enabled, this event could be the first |
4274 | 385 message so we need to see if the status (and hence icon) needs changing. |
386 do this when idle so that all message processing is completed, queuing | |
387 etc, before we run. */ | |
388 g_idle_add(docklet_update_status, &docklet); | |
3510 | 389 } |
390 | |
5584 | 391 /* static void gaim_buddy_signon(GaimConnection *gc, char *who, void *data) { |
3510 | 392 } |
393 | |
5584 | 394 static void gaim_buddy_signoff(GaimConnection *gc, char *who, void *data) { |
3510 | 395 } |
396 | |
5584 | 397 static void gaim_buddy_away(GaimConnection *gc, char *who, void *data) { |
3510 | 398 } |
399 | |
5584 | 400 static void gaim_buddy_back(GaimConnection *gc, char *who, void *data) { |
3510 | 401 } |
402 | |
403 static void gaim_new_conversation(char *who, void *data) { | |
3570 | 404 } */ |
3510 | 405 |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
406 static gboolean |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
407 plugin_load(GaimPlugin *plugin) |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
408 { |
5554
7b36d02031a2
[gaim-migrate @ 5955]
Christian Hammond <chipx86@chipx86.com>
parents:
5530
diff
changeset
|
409 gaim_prefs_add_none("/plugins/gtk/docklet"); |
7b36d02031a2
[gaim-migrate @ 5955]
Christian Hammond <chipx86@chipx86.com>
parents:
5530
diff
changeset
|
410 gaim_prefs_add_bool("/plugins/gtk/docklet/queue_messages", FALSE); |
7b36d02031a2
[gaim-migrate @ 5955]
Christian Hammond <chipx86@chipx86.com>
parents:
5530
diff
changeset
|
411 |
4093 | 412 docklet_create(NULL); |
3510 | 413 |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
414 gaim_signal_connect(plugin, event_signon, gaim_signon, NULL); |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
415 gaim_signal_connect(plugin, event_signoff, gaim_signoff, NULL); |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
416 gaim_signal_connect(plugin, event_connecting, gaim_connecting, NULL); |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
417 gaim_signal_connect(plugin, event_away, gaim_away, NULL); |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
418 gaim_signal_connect(plugin, event_im_recv, gaim_im_recv, NULL); |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
419 /* gaim_signal_connect(plugin, event_buddy_signon, gaim_buddy_signon, NULL); |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
420 gaim_signal_connect(plugin, event_buddy_signoff, gaim_buddy_signoff, NULL); |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
421 gaim_signal_connect(plugin, event_buddy_away, gaim_buddy_away, NULL); |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
422 gaim_signal_connect(plugin, event_buddy_back, gaim_buddy_back, NULL); |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
423 gaim_signal_connect(plugin, event_new_conversation, gaim_new_conversation, NULL); */ |
3510 | 424 |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
425 return TRUE; |
3510 | 426 } |
427 | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
428 static gboolean |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
429 plugin_unload(GaimPlugin *plugin) |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
430 { |
3570 | 431 if (GTK_WIDGET_VISIBLE(docklet)) { |
4698 | 432 gaim_gtk_blist_docklet_remove(); |
3570 | 433 } |
3554 | 434 |
3570 | 435 docklet_flush_queue(); |
3554 | 436 |
4274 | 437 docklet_remove_callbacks(); |
4261
e252238f99df
[gaim-migrate @ 4512]
Christian Hammond <chipx86@chipx86.com>
parents:
4250
diff
changeset
|
438 |
3570 | 439 g_signal_handlers_disconnect_by_func(G_OBJECT(docklet), G_CALLBACK(docklet_destroyed), NULL); |
440 gtk_widget_destroy(GTK_WIDGET(docklet)); | |
3554 | 441 |
4093 | 442 g_object_unref(G_OBJECT(docklet)); |
443 docklet = NULL; | |
444 | |
4567 | 445 /* do this while gaim has no other way to toggle the global mute */ |
5684 | 446 gaim_gtk_sound_set_mute(FALSE); |
4567 | 447 |
5227
6d1707dc8c3d
[gaim-migrate @ 5597]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
448 gaim_debug(GAIM_DEBUG_INFO, "docklet", "Tray Icon: removed\n"); |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
449 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
450 return TRUE; |
3554 | 451 } |
452 | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
453 static GtkWidget * |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
454 get_config_frame(GaimPlugin *plugin) |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
455 { |
3570 | 456 GtkWidget *frame; |
457 GtkWidget *vbox, *hbox; | |
458 GtkWidget *toggle; | |
5554
7b36d02031a2
[gaim-migrate @ 5955]
Christian Hammond <chipx86@chipx86.com>
parents:
5530
diff
changeset
|
459 static const char *qmpref = "/plugins/gtk/docklet/queue_messages"; |
3517 | 460 |
3570 | 461 frame = gtk_vbox_new(FALSE, 18); |
462 gtk_container_set_border_width(GTK_CONTAINER(frame), 12); | |
463 | |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
464 vbox = gaim_gtk_make_frame(frame, _("Tray Icon Configuration")); |
3570 | 465 hbox = gtk_hbox_new(FALSE, 18); |
466 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); | |
3517 | 467 |
4093 | 468 toggle = gtk_check_button_new_with_mnemonic(_("_Hide new messages until tray icon is clicked")); |
5554
7b36d02031a2
[gaim-migrate @ 5955]
Christian Hammond <chipx86@chipx86.com>
parents:
5530
diff
changeset
|
469 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toggle), gaim_prefs_get_bool(qmpref)); |
7b36d02031a2
[gaim-migrate @ 5955]
Christian Hammond <chipx86@chipx86.com>
parents:
5530
diff
changeset
|
470 g_signal_connect(G_OBJECT(toggle), "clicked", G_CALLBACK(docklet_set_bool), (void *)qmpref); |
3570 | 471 gtk_box_pack_start(GTK_BOX(vbox), toggle, FALSE, FALSE, 0); |
472 | |
473 gtk_widget_show_all(frame); | |
474 return frame; | |
3517 | 475 } |
3570 | 476 |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
477 static GaimGtkPluginUiInfo ui_info = |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
478 { |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
479 get_config_frame |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
480 }; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
481 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
482 static GaimPluginInfo info = |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
483 { |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
484 2, /**< api_version */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
485 GAIM_PLUGIN_STANDARD, /**< type */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
486 GAIM_GTK_PLUGIN_TYPE, /**< ui_requirement */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
487 0, /**< flags */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
488 NULL, /**< dependencies */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
489 GAIM_PRIORITY_DEFAULT, /**< priority */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
490 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
491 DOCKLET_PLUGIN_ID, /**< id */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
492 N_("System Tray Icon"), /**< name */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
493 VERSION, /**< version */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
494 /** summary */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
495 N_("Displays an icon for Gaim in the system tray."), |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
496 /** description */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
497 N_("Interacts with a Notification Area applet (in GNOME or KDE, " |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
498 "for example) to display the current status of Gaim, allow fast " |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
499 "access to commonly used functions, and to toggle display of the " |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
500 "buddy list or login window. Also allows messages to be queued " |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
501 "until the icon is clicked, similar to ICQ."), |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
502 "Robert McQueen <robot101@debian.org>", /**< author */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
503 WEBSITE, /**< homepage */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
504 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
505 plugin_load, /**< load */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
506 plugin_unload, /**< unload */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
507 NULL, /**< destroy */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
508 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
509 &ui_info, /**< ui_info */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
510 NULL /**< extra_info */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
511 }; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
512 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
513 static void |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
514 __init_plugin(GaimPlugin *plugin) |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
515 { |
3551 | 516 } |
3510 | 517 |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
518 GAIM_INIT_PLUGIN(docklet, __init_plugin, info); |