Mercurial > pidgin
annotate plugins/notify.c @ 11718:11e95968c9ff
[gaim-migrate @ 14009]
PRPLs are no longer required to call gaim_account_connect() and
gaim_account_disconnect()--it is done in the core. Having the PRPLs
do it was kind of silly. And this should allow me to improve the
auto-reconnect plugin some. I think.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sat, 22 Oct 2005 20:09:24 +0000 |
parents | 872932089400 |
children | 89e416ac9ef7 |
rev | line source |
---|---|
6302 | 1 /* |
2 * Gaim buddy notification plugin. | |
3 * | |
4 * Copyright (C) 2000-2001, Eric Warmenhoven (original code) | |
5 * Copyright (C) 2002, Etan Reisner <deryni@eden.rutgers.edu> (rewritten code) | |
6 * Copyright (C) 2003, Christian Hammond (update for changed API) | |
6322 | 7 * Copyright (C) 2003, Brian Tarricone <bjt23@cornell.edu> (mostly rewritten) |
6302 | 8 * Copyright (C) 2003, Mark Doliner (minor cleanup) |
6977 | 9 * Copyright (C) 2003, Etan Reisner (largely rewritten again) |
6302 | 10 * |
11 * This program is free software; you can redistribute it and/or modify | |
12 * it under the terms of the GNU General Public License as published by | |
13 * the Free Software Foundation; either version 2 of the License, or | |
14 * (at your option) any later version. | |
15 * | |
16 * This program is distributed in the hope that it will be useful, | |
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 * GNU General Public License for more details. | |
3374 | 20 * |
6302 | 21 * You should have received a copy of the GNU General Public License |
22 * along with this program; if not, write to the Free Software | |
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
24 * | |
25 */ | |
26 | |
10606
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
27 /* TODO |
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
28 * 22:22:17 <seanegan> deryni: speaking of notify.c... you know what else |
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
29 * might be a neat feature? |
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
30 * 22:22:30 <seanegan> Changing the window icon. |
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
31 * 22:23:25 <deryni> seanegan: To what? |
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
32 * 22:23:42 <seanegan> deryni: I dunno. Flash it between the regular icon and |
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
33 * blank or something. |
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
34 * 22:23:53 <deryni> Also I think gaim might re-set that sort of frequently, |
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
35 * but I'd have to look. |
11581 | 36 * 22:25:16 <seanegan> deryni: I keep my conversations in one workspace and am |
10606
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
37 * frequently in an another, and the icon flashing in the pager would be a |
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
38 * neat visual clue. |
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
39 */ |
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
40 |
6302 | 41 /* |
42 * From Etan, 2002: | |
43 * -Added config dialog | |
44 * -Added control over notification method | |
45 * -Added control over when to release notification | |
46 * | |
47 * -Added option to get notification for chats also | |
48 * -Cleaned up code | |
49 * -Added option to notify on click as it's own option | |
50 * rather then as what happens when on focus isn't clicked | |
51 * -Added apply button to change the denotification methods for | |
52 * open conversation windows | |
53 * -Fixed apply to conversations, count now keeps count across applies | |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6464
diff
changeset
|
54 * -Fixed(?) memory leak, and in the process fixed some stupidities |
6302 | 55 * -Hit enter when done editing the title string entry box to save it |
3392 | 56 * |
57 * Thanks to Carles Pina i Estany <carles@pinux.info> | |
58 * for count of new messages option | |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6464
diff
changeset
|
59 * |
6302 | 60 * From Brian, 20 July 2003: |
61 * -Use new xml prefs | |
62 * -Better handling of notification states tracking | |
63 * -Better pref change handling | |
64 * -Fixed a possible memleak and possible crash (rare) | |
65 * -Use gtk_window_get_title() rather than gtkwin->title | |
66 * -Other random fixes and cleanups | |
6977 | 67 * |
9298 | 68 * Etan again, 12 August 2003: |
6977 | 69 * -Better use of the new xml prefs |
70 * -Removed all bitmask stuff | |
71 * -Even better pref change handling | |
72 * -Removed unnecessary functions | |
73 * -Reworking of notification/unnotification stuff | |
74 * -Header file include cleanup | |
75 * -General code cleanup | |
9298 | 76 * |
77 * Etan yet again, 04 April 2004: | |
78 * -Re-added Urgent option | |
79 * -Re-added unnotify on focus option (still needs work, as it will only | |
80 * react to focus-in events when the entry or history widgets are focused) | |
10492 | 81 * |
82 * Sean, 08 January, 2005: | |
83 * -Added Raise option, formally in Gaim proper | |
3392 | 84 */ |
85 | |
9791 | 86 #include "internal.h" |
87 #include "gtkgaim.h" | |
10492 | 88 #include "gtkprefs.h" |
6302 | 89 |
90 #include "prefs.h" | |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6464
diff
changeset
|
91 #include "signals.h" |
9943 | 92 #include "version.h" |
11581 | 93 #include "debug.h" |
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4165
diff
changeset
|
94 |
6302 | 95 #include "gtkplugin.h" |
96 #include "gtkutils.h" | |
97 | |
6977 | 98 #include <X11/Xatom.h> |
3385 | 99 #include <X11/Xlib.h> |
3374 | 100 #include <X11/Xutil.h> |
101 | |
6302 | 102 #define NOTIFY_PLUGIN_ID "gtk-x11-notify" |
3710 | 103 |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
104 static GaimPlugin *my_plugin = NULL; |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
105 |
6302 | 106 /* notification set/unset */ |
6977 | 107 static int notify(GaimConversation *conv, gboolean increment); |
11581 | 108 static void notify_win(GaimGtkWindow *gaimwin); |
9298 | 109 static void unnotify(GaimConversation *conv, gboolean reset); |
110 static int unnotify_cb(GtkWidget *widget, gpointer data, GaimConversation *conv); | |
6302 | 111 |
112 /* gtk widget callbacks for prefs panel */ | |
6977 | 113 static void type_toggle_cb(GtkWidget *widget, gpointer data); |
114 static void method_toggle_cb(GtkWidget *widget, gpointer data); | |
115 static void notify_toggle_cb(GtkWidget *widget, gpointer data); | |
116 static gboolean options_entry_cb(GtkWidget *widget, GdkEventFocus *event, gpointer data); | |
117 static void apply_method(); | |
118 static void apply_notify(); | |
191 | 119 |
6977 | 120 /* string function */ |
11581 | 121 static void handle_string(GaimGtkWindow *gaimwin); |
6302 | 122 |
6977 | 123 /* count function */ |
11581 | 124 static void handle_count(GaimGtkWindow *gaimwin); |
6302 | 125 |
6977 | 126 /* urgent function */ |
11581 | 127 static void handle_urgent(GaimGtkWindow *gaimwin, gboolean add); |
10606
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
128 |
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
129 /* raise function */ |
11581 | 130 static void handle_raise(GaimGtkWindow *gaimwin); |
3710 | 131 |
6302 | 132 /****************************************/ |
133 /* Begin doing stuff below this line... */ | |
134 /****************************************/ | |
9298 | 135 static int |
11581 | 136 count_messages(GaimGtkWindow *gaimwin) |
9298 | 137 { |
138 gint count = 0; | |
11581 | 139 GList *convs = NULL, *l; |
9298 | 140 |
11581 | 141 for (convs = gaimwin->gtkconvs; convs != NULL; convs = convs->next) { |
142 GaimGtkConversation *conv = convs->data; | |
143 for (l = conv->convs; l != NULL; l = l->next) { | |
144 count += GPOINTER_TO_INT(gaim_conversation_get_data(l->data, "notify-message-count")); | |
145 } | |
9298 | 146 } |
147 | |
148 return count; | |
149 } | |
6302 | 150 |
6977 | 151 static int |
152 notify(GaimConversation *conv, gboolean increment) | |
153 { | |
11581 | 154 GaimGtkWindow *gaimwin = NULL; |
6302 | 155 gint count; |
6977 | 156 gboolean has_focus; |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4218
diff
changeset
|
157 |
6977 | 158 if (conv == NULL) |
6302 | 159 return 0; |
160 | |
6977 | 161 /* We want to remove the notifications, but not reset the counter */ |
162 unnotify(conv, FALSE); | |
163 | |
11581 | 164 gaimwin = GAIM_GTK_CONVERSATION(conv)->win; |
5021 | 165 |
6977 | 166 /* If we aren't doing notifications for this type of conversation, return */ |
11338 | 167 if (((gaim_conversation_get_type(conv) == GAIM_CONV_TYPE_IM) && |
9298 | 168 !gaim_prefs_get_bool("/plugins/gtk/X11/notify/type_im")) || |
11338 | 169 ((gaim_conversation_get_type(conv) == GAIM_CONV_TYPE_CHAT) && |
9298 | 170 !gaim_prefs_get_bool("/plugins/gtk/X11/notify/type_chat"))) |
6977 | 171 return 0; |
4203
ec6d0c5e5c23
[gaim-migrate @ 4439]
Christian Hammond <chipx86@chipx86.com>
parents:
4202
diff
changeset
|
172 |
11581 | 173 g_object_get(G_OBJECT(gaimwin->window), |
9298 | 174 "has-toplevel-focus", &has_focus, NULL); |
3374 | 175 |
6977 | 176 if (gaim_prefs_get_bool("/plugins/gtk/X11/notify/type_focused") || |
10984 | 177 !has_focus) { |
6977 | 178 if (increment) { |
179 count = GPOINTER_TO_INT(gaim_conversation_get_data(conv, "notify-message-count")); | |
180 count++; | |
181 gaim_conversation_set_data(conv, "notify-message-count", GINT_TO_POINTER(count)); | |
182 } | |
6302 | 183 |
9298 | 184 notify_win(gaimwin); |
6977 | 185 } |
6302 | 186 |
187 return 0; | |
188 } | |
189 | |
9298 | 190 static void |
11581 | 191 notify_win(GaimGtkWindow *gaimwin) |
9298 | 192 { |
10971 | 193 if (count_messages(gaimwin) <= 0) |
194 return; | |
195 | |
9298 | 196 if (gaim_prefs_get_bool("/plugins/gtk/X11/notify/method_count")) |
197 handle_count(gaimwin); | |
198 if (gaim_prefs_get_bool("/plugins/gtk/X11/notify/method_string")) | |
199 handle_string(gaimwin); | |
200 if (gaim_prefs_get_bool("/plugins/gtk/X11/notify/method_urgent")) | |
201 handle_urgent(gaimwin, TRUE); | |
10492 | 202 if (gaim_prefs_get_bool("/plugins/gtk/X11/notify/method_raise")) |
203 handle_raise(gaimwin); | |
9298 | 204 } |
205 | |
206 static void | |
207 unnotify(GaimConversation *conv, gboolean reset) | |
208 { | |
209 GaimConversation *active_conv = NULL; | |
11581 | 210 GaimGtkWindow *gaimwin = NULL; |
9298 | 211 |
212 g_return_if_fail(conv != NULL); | |
213 | |
11581 | 214 gaimwin = GAIM_GTK_CONVERSATION(conv)->win; |
215 active_conv = gaim_gtk_conv_window_get_active_conversation(gaimwin); | |
9298 | 216 |
217 /* reset the conversation window title */ | |
218 gaim_conversation_autoset_title(active_conv); | |
219 | |
220 if (reset) { | |
221 /* Only need to actually remove the urgent hinting here, since removing it | |
222 * just to have it readded in re-notify is an unnecessary couple extra RTs | |
223 * to the server */ | |
224 handle_urgent(gaimwin, FALSE); | |
225 gaim_conversation_set_data(conv, "notify-message-count", GINT_TO_POINTER(0)); | |
226 } | |
227 | |
228 return; | |
229 } | |
230 | |
231 static int | |
232 unnotify_cb(GtkWidget *widget, gpointer data, GaimConversation *conv) | |
233 { | |
234 if (GPOINTER_TO_INT(gaim_conversation_get_data(conv, "notify-message-count")) != 0) | |
235 unnotify(conv, TRUE); | |
236 | |
237 return 0; | |
238 } | |
239 | |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6464
diff
changeset
|
240 static gboolean |
9298 | 241 im_recv_im(GaimAccount *account, char *sender, char *message, |
10104 | 242 GaimConversation *conv, int *flags) |
6977 | 243 { |
244 notify(conv, TRUE); | |
3710 | 245 |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6464
diff
changeset
|
246 return FALSE; |
3710 | 247 } |
248 | |
9298 | 249 static gboolean |
250 chat_recv_im(GaimAccount *account, char *sender, char *message, | |
10104 | 251 GaimConversation *conv, int *flags) |
9298 | 252 { |
10345 | 253 if (gaim_conv_chat_is_user_ignored(GAIM_CONV_CHAT(conv), sender)) |
254 return FALSE; | |
255 | |
9298 | 256 notify(conv, TRUE); |
257 | |
258 return FALSE; | |
259 } | |
260 | |
6977 | 261 static void |
9298 | 262 im_sent_im(GaimAccount *account, char *receiver, const char *message) { |
263 GaimConversation *conv = NULL; | |
264 | |
265 if (gaim_prefs_get_bool("/plugins/gtk/X11/notify/notify_send")) { | |
11338 | 266 conv = gaim_find_conversation_with_account(GAIM_CONV_TYPE_IM, receiver, account); |
9298 | 267 unnotify(conv, TRUE); |
268 } | |
269 } | |
270 | |
271 static void | |
272 chat_sent_im(GaimAccount *account, const char *message, int id) | |
6977 | 273 { |
274 GaimConversation *conv = NULL; | |
275 | |
276 if (gaim_prefs_get_bool("/plugins/gtk/X11/notify/notify_send")) { | |
277 conv = gaim_find_chat(gaim_account_get_connection(account), id); | |
278 unnotify(conv, TRUE); | |
279 } | |
3710 | 280 } |
281 | |
6977 | 282 static int |
283 attach_signals(GaimConversation *conv) | |
284 { | |
285 GaimGtkConversation *gtkconv = NULL; | |
286 GaimGtkWindow *gtkwin = NULL; | |
287 GSList *window_ids = NULL, *imhtml_ids = NULL, *entry_ids = NULL; | |
288 guint id; | |
289 | |
290 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
11581 | 291 if (!gtkconv) { |
292 gaim_debug_misc("notify", "Failed to find gtkconv\n"); | |
293 return 0; | |
294 } | |
295 | |
296 gtkwin = gtkconv->win; | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4218
diff
changeset
|
297 |
6977 | 298 if (gaim_prefs_get_bool("/plugins/gtk/X11/notify/notify_focus")) { |
9298 | 299 /* TODO should really find a way to make this work no matter where the |
300 * focus is inside the conv window, without having to bind to | |
301 * focus-in-event on the g(d|t)kwindow */ | |
302 /* try setting the signal on the focus-in-event for | |
303 * gtkwin->notebook->container? */ | |
304 id = g_signal_connect(G_OBJECT(gtkconv->entry), "focus-in-event", | |
305 G_CALLBACK(unnotify_cb), conv); | |
11606 | 306 entry_ids = g_slist_append(window_ids, GUINT_TO_POINTER(id)); |
9298 | 307 |
308 id = g_signal_connect(G_OBJECT(gtkconv->imhtml), "focus-in-event", | |
309 G_CALLBACK(unnotify_cb), conv); | |
11606 | 310 imhtml_ids = g_slist_append(window_ids, GUINT_TO_POINTER(id)); |
6977 | 311 } |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4218
diff
changeset
|
312 |
6977 | 313 if (gaim_prefs_get_bool("/plugins/gtk/X11/notify/notify_click")) { |
9298 | 314 /* TODO similarly should really find a way to allow for clicking in other |
315 * places of the window */ | |
316 id = g_signal_connect(G_OBJECT(gtkconv->imhtml), "button-press-event", | |
317 G_CALLBACK(unnotify_cb), conv); | |
6977 | 318 imhtml_ids = g_slist_append(imhtml_ids, GUINT_TO_POINTER(id)); |
319 | |
9298 | 320 id = g_signal_connect(G_OBJECT(gtkconv->entry), "button-press-event", |
321 G_CALLBACK(unnotify_cb), conv); | |
6977 | 322 entry_ids = g_slist_append(entry_ids, GUINT_TO_POINTER(id)); |
3374 | 323 } |
3710 | 324 |
6977 | 325 if (gaim_prefs_get_bool("/plugins/gtk/X11/notify/notify_type")) { |
9298 | 326 id = g_signal_connect(G_OBJECT(gtkconv->entry), "key-press-event", |
327 G_CALLBACK(unnotify_cb), conv); | |
6977 | 328 entry_ids = g_slist_append(entry_ids, GUINT_TO_POINTER(id)); |
3374 | 329 } |
330 | |
6977 | 331 gaim_conversation_set_data(conv, "notify-window-signals", window_ids); |
332 gaim_conversation_set_data(conv, "notify-imhtml-signals", imhtml_ids); | |
333 gaim_conversation_set_data(conv, "notify-entry-signals", entry_ids); | |
4035 | 334 |
3428 | 335 return 0; |
191 | 336 } |
337 | |
6977 | 338 static void |
339 detach_signals(GaimConversation *conv) | |
340 { | |
341 GaimGtkConversation *gtkconv = NULL; | |
342 GaimGtkWindow *gtkwin = NULL; | |
11606 | 343 GSList *ids = NULL, *l; |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6464
diff
changeset
|
344 |
6977 | 345 gtkconv = GAIM_GTK_CONVERSATION(conv); |
11581 | 346 if (!gtkconv) |
347 return; | |
348 gtkwin = gtkconv->win; | |
4203
ec6d0c5e5c23
[gaim-migrate @ 4439]
Christian Hammond <chipx86@chipx86.com>
parents:
4202
diff
changeset
|
349 |
6977 | 350 ids = gaim_conversation_get_data(conv, "notify-window-signals"); |
11606 | 351 for (l = ids; l != NULL; l = l->next) |
352 g_signal_handler_disconnect(gtkwin->window, GPOINTER_TO_INT(l->data)); | |
353 g_slist_free(ids); | |
6302 | 354 |
6977 | 355 ids = gaim_conversation_get_data(conv, "notify-imhtml-signals"); |
11606 | 356 for (l = ids; l != NULL; l = l->next) |
357 g_signal_handler_disconnect(gtkconv->imhtml, GPOINTER_TO_INT(l->data)); | |
358 g_slist_free(ids); | |
6302 | 359 |
6977 | 360 ids = gaim_conversation_get_data(conv, "notify-entry-signals"); |
11606 | 361 for (l = ids; l != NULL; l = l->next) |
362 g_signal_handler_disconnect(gtkconv->entry, GPOINTER_TO_INT(l->data)); | |
363 g_slist_free(ids); | |
3710 | 364 |
9298 | 365 gaim_conversation_set_data(conv, "notify-message-count", GINT_TO_POINTER(0)); |
3710 | 366 |
6977 | 367 gaim_conversation_set_data(conv, "notify-window-signals", NULL); |
368 gaim_conversation_set_data(conv, "notify-imhtml-signals", NULL); | |
369 gaim_conversation_set_data(conv, "notify-entry-signals", NULL); | |
3710 | 370 } |
371 | |
6977 | 372 static void |
373 conv_created(GaimConversation *conv) | |
374 { | |
9298 | 375 gaim_conversation_set_data(conv, "notify-message-count", GINT_TO_POINTER(0)); |
6302 | 376 |
6977 | 377 /* always attach the signals, notify() will take care of conversation type |
378 * checking */ | |
379 attach_signals(conv); | |
3374 | 380 } |
381 | |
6977 | 382 static void |
383 conv_switched(GaimConversation *old_conv, GaimConversation *new_conv) | |
384 { | |
10971 | 385 #if 0 |
11581 | 386 GaimGtkWindow *gaimwin = gaim_conversation_get_window(new_conv); |
10971 | 387 #endif |
6302 | 388 |
10971 | 389 /* |
390 * If the conversation was switched, then make sure we re-notify | |
391 * because Gaim will have overwritten our custom window title. | |
392 */ | |
393 notify(new_conv, FALSE); | |
394 | |
395 #if 0 | |
9298 | 396 printf("conv_switched - %p - %p\n", old_conv, new_conv); |
397 printf("count - %d\n", count_messages(gaimwin)); | |
398 if (gaim_prefs_get_bool("/plugins/gtk/X11/notify/notify_switch")) | |
399 unnotify(new_conv, FALSE); | |
400 else { | |
401 /* if we don't have notification on the window then we don't want to | |
402 * re-notify it */ | |
403 if (count_messages(gaimwin)) | |
404 notify_win(gaimwin); | |
405 } | |
10971 | 406 #endif |
6977 | 407 } |
6302 | 408 |
6977 | 409 static void |
410 deleting_conv(GaimConversation *conv) | |
411 { | |
11581 | 412 GaimGtkWindow *gaimwin = NULL; |
9298 | 413 |
6977 | 414 detach_signals(conv); |
3392 | 415 |
11606 | 416 gaimwin = GAIM_GTK_CONVERSATION(conv)->win; |
417 | |
6977 | 418 |
11606 | 419 handle_urgent(gaimwin, FALSE); |
420 gaim_conversation_set_data(conv, "notify-message-count", GINT_TO_POINTER(0)); | |
421 | |
422 | |
423 return; | |
424 | |
11581 | 425 #if 0 |
426 /* i think this line crashes */ | |
9298 | 427 if (count_messages(gaimwin)) |
428 notify_win(gaimwin); | |
11581 | 429 #endif |
6977 | 430 } |
431 | |
9303 | 432 #if 0 |
6977 | 433 static void |
11447
ef6e94bdda08
[gaim-migrate @ 13686]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11338
diff
changeset
|
434 conversation_dragging(GaimConversation *active_conv, |
11581 | 435 GaimGtkWindow *old_gaimwin, |
436 GaimGtkWindow *new_gaimwin) | |
6977 | 437 { |
9298 | 438 if (old_gaimwin != new_gaimwin) { |
439 if (old_gaimwin == NULL) { | |
440 /* | |
441 gaim_conversation_autoset_title(active_conv); | |
442 handle_urgent(new_gaimwin, FALSE); | |
443 */ | |
444 | |
445 if (count_messages(new_gaimwin)) | |
446 notify_win(new_gaimwin); | |
447 } else { | |
448 printf("if else count = %d\n", count_messages(new_gaimwin)); | |
449 printf("if else count = %d\n", count_messages(old_gaimwin)); | |
450 /* | |
451 GaimConversation *old_active_conv = NULL; | |
452 old_active_conv = gaim_conv_window_get_active_conversation(new_gaimwin); | |
453 | |
454 gaim_conversation_autoset_title(old_active_conv); | |
455 handle_urgent(old_gaimwin, FALSE); | |
6302 | 456 |
9298 | 457 if (count_messages(old_gaimwin)) |
458 notify_win(old_gaimwin); | |
459 | |
460 gaim_conversation_autoset_title(active_conv); | |
461 handle_urgent(new_gaimwin, FALSE); | |
462 | |
463 if (count_messages(new_gaimwin)) | |
464 notify_win(new_gaimwin); | |
465 */ | |
466 } | |
467 } else { | |
468 printf("else count = %d\n", count_messages(new_gaimwin)); | |
469 printf("else count = %d\n", count_messages(old_gaimwin)); | |
470 /* | |
471 gaim_conversation_autoset_title(active_conv); | |
472 handle_urgent(old_gaimwin, FALSE); | |
473 | |
474 if (count_messages(old_gaimwin)) | |
475 notify_win(old_gaimwin); | |
476 */ | |
477 } | |
4035 | 478 } |
9303 | 479 #endif |
4035 | 480 |
6977 | 481 static void |
11581 | 482 handle_string(GaimGtkWindow *gaimwin) |
9298 | 483 { |
484 GtkWindow *window = NULL; | |
485 gchar newtitle[256]; | |
486 | |
487 g_return_if_fail(gaimwin != NULL); | |
488 | |
11581 | 489 window = GTK_WINDOW(gaimwin->window); |
9298 | 490 g_return_if_fail(window != NULL); |
491 | |
492 g_snprintf(newtitle, sizeof(newtitle), "%s%s", | |
493 gaim_prefs_get_string("/plugins/gtk/X11/notify/title_string"), | |
494 gtk_window_get_title(window)); | |
495 gtk_window_set_title(window, newtitle); | |
496 } | |
497 | |
498 static void | |
11581 | 499 handle_count(GaimGtkWindow *gaimwin) |
9298 | 500 { |
501 GtkWindow *window; | |
502 char newtitle[256]; | |
503 | |
504 g_return_if_fail(gaimwin != NULL); | |
505 | |
11581 | 506 window = GTK_WINDOW(gaimwin->window); |
9298 | 507 g_return_if_fail(window != NULL); |
508 | |
10606
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
509 g_snprintf(newtitle, sizeof(newtitle), "[%d] %s", |
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
510 count_messages(gaimwin), gtk_window_get_title(window)); |
9298 | 511 gtk_window_set_title(window, newtitle); |
512 } | |
513 | |
514 static void | |
11581 | 515 handle_urgent(GaimGtkWindow *win, gboolean add) |
6977 | 516 { |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4218
diff
changeset
|
517 XWMHints *hints; |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4218
diff
changeset
|
518 |
11581 | 519 g_return_if_fail(win != NULL); |
520 g_return_if_fail(win->window != NULL); | |
521 g_return_if_fail(win->window->window != NULL); | |
9298 | 522 |
11581 | 523 hints = XGetWMHints(GDK_WINDOW_XDISPLAY(win->window->window), |
524 GDK_WINDOW_XWINDOW(win->window->window)); | |
6977 | 525 if (add) |
526 hints->flags |= XUrgencyHint; | |
527 else | |
528 hints->flags &= ~XUrgencyHint; | |
11581 | 529 XSetWMHints(GDK_WINDOW_XDISPLAY(win->window->window), |
530 GDK_WINDOW_XWINDOW(win->window->window), hints); | |
4218 | 531 XFree(hints); |
4035 | 532 } |
533 | |
6977 | 534 static void |
11581 | 535 handle_raise(GaimGtkWindow *gaimwin) |
10606
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
536 { |
11581 | 537 gaim_gtk_conv_window_raise(gaimwin); |
10606
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
538 } |
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
539 |
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
540 static void |
6977 | 541 type_toggle_cb(GtkWidget *widget, gpointer data) |
542 { | |
543 gboolean on = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget)); | |
544 gchar pref[256]; | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4218
diff
changeset
|
545 |
6977 | 546 g_snprintf(pref, sizeof(pref), "/plugins/gtk/X11/notify/%s", (char *)data); |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4218
diff
changeset
|
547 |
6977 | 548 gaim_prefs_set_bool(pref, on); |
3374 | 549 } |
550 | |
6977 | 551 static void |
552 method_toggle_cb(GtkWidget *widget, gpointer data) | |
553 { | |
554 gboolean on = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget)); | |
555 gchar pref[256]; | |
556 | |
557 g_snprintf(pref, sizeof(pref), "/plugins/gtk/X11/notify/%s", (char *)data); | |
3374 | 558 |
6977 | 559 gaim_prefs_set_bool(pref, on); |
560 | |
561 if (!strcmp(data, "method_string")) { | |
562 GtkWidget *entry = g_object_get_data(G_OBJECT(widget), "title-entry"); | |
563 gtk_widget_set_sensitive(entry, on); | |
564 | |
565 gaim_prefs_set_string("/plugins/gtk/X11/notify/title_string", gtk_entry_get_text(GTK_ENTRY(entry))); | |
566 } | |
567 | |
568 apply_method(); | |
3374 | 569 } |
570 | |
6977 | 571 static void |
572 notify_toggle_cb(GtkWidget *widget, gpointer data) | |
573 { | |
574 gboolean on = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget)); | |
575 gchar pref[256]; | |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6464
diff
changeset
|
576 |
6977 | 577 g_snprintf(pref, sizeof(pref), "/plugins/gtk/X11/notify/%s", (char *)data); |
3374 | 578 |
6977 | 579 gaim_prefs_set_bool(pref, on); |
580 | |
581 apply_notify(); | |
3374 | 582 } |
583 | |
6977 | 584 static gboolean |
585 options_entry_cb(GtkWidget *widget, GdkEventFocus *evt, gpointer data) | |
586 { | |
587 if (data == NULL) | |
6982 | 588 return FALSE; |
6302 | 589 |
6977 | 590 if (!strcmp(data, "method_string")) { |
591 gaim_prefs_set_string("/plugins/gtk/X11/notify/title_string", gtk_entry_get_text(GTK_ENTRY(widget))); | |
3374 | 592 } |
6302 | 593 |
6977 | 594 apply_method(); |
6302 | 595 |
596 return FALSE; | |
597 } | |
598 | |
6977 | 599 static void |
600 apply_method() { | |
601 GList *convs = gaim_get_conversations(); | |
11581 | 602 GaimGtkWindow *gaimwin = NULL; |
6977 | 603 |
9298 | 604 for (convs = gaim_get_conversations(); convs != NULL; convs = convs->next) { |
6977 | 605 GaimConversation *conv = (GaimConversation *)convs->data; |
6302 | 606 |
6977 | 607 /* remove notifications */ |
9298 | 608 unnotify(conv, FALSE); |
609 | |
11581 | 610 gaimwin = GAIM_GTK_CONVERSATION(conv)->win; |
9298 | 611 if (GPOINTER_TO_INT(gaim_conversation_get_data(conv, "notify-message-count")) != 0) |
6977 | 612 /* reattach appropriate notifications */ |
613 notify(conv, FALSE); | |
614 } | |
3374 | 615 } |
616 | |
6977 | 617 static void |
618 apply_notify() | |
619 { | |
620 GList *convs = gaim_get_conversations(); | |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6464
diff
changeset
|
621 |
6977 | 622 while (convs) { |
623 GaimConversation *conv = (GaimConversation *)convs->data; | |
4203
ec6d0c5e5c23
[gaim-migrate @ 4439]
Christian Hammond <chipx86@chipx86.com>
parents:
4202
diff
changeset
|
624 |
6977 | 625 /* detach signals */ |
626 detach_signals(conv); | |
627 /* reattach appropriate signals */ | |
628 attach_signals(conv); | |
4035 | 629 |
6977 | 630 convs = convs->next; |
4035 | 631 } |
632 } | |
633 | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
634 static GtkWidget * |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
635 get_config_frame(GaimPlugin *plugin) |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
636 { |
6977 | 637 GtkWidget *ret = NULL, *frame = NULL; |
638 GtkWidget *vbox = NULL, *hbox = NULL; | |
639 GtkWidget *toggle = NULL, *entry = NULL; | |
6302 | 640 |
3565 | 641 ret = gtk_vbox_new(FALSE, 18); |
6302 | 642 gtk_container_set_border_width(GTK_CONTAINER (ret), 12); |
3392 | 643 |
6302 | 644 /*---------- "Notify For" ----------*/ |
645 frame = gaim_gtk_make_frame(ret, _("Notify For")); | |
646 vbox = gtk_vbox_new(FALSE, 5); | |
647 gtk_container_add(GTK_CONTAINER(frame), vbox); | |
648 | |
3710 | 649 toggle = gtk_check_button_new_with_mnemonic(_("_IM windows")); |
650 gtk_box_pack_start(GTK_BOX(vbox), toggle, FALSE, FALSE, 0); | |
6977 | 651 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toggle), |
9298 | 652 gaim_prefs_get_bool("/plugins/gtk/X11/notify/type_im")); |
6977 | 653 g_signal_connect(G_OBJECT(toggle), "toggled", |
9298 | 654 G_CALLBACK(type_toggle_cb), "type_im"); |
3710 | 655 |
6977 | 656 toggle = gtk_check_button_new_with_mnemonic(_("C_hat windows")); |
3710 | 657 gtk_box_pack_start(GTK_BOX(vbox), toggle, FALSE, FALSE, 0); |
6977 | 658 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toggle), |
9298 | 659 gaim_prefs_get_bool("/plugins/gtk/X11/notify/type_chat")); |
6977 | 660 g_signal_connect(G_OBJECT(toggle), "toggled", |
9298 | 661 G_CALLBACK(type_toggle_cb), "type_chat"); |
6977 | 662 |
663 toggle = gtk_check_button_new_with_mnemonic(_("_Focused windows")); | |
664 gtk_box_pack_start(GTK_BOX(vbox), toggle, FALSE, FALSE, 0); | |
665 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toggle), | |
9298 | 666 gaim_prefs_get_bool("/plugins/gtk/X11/notify/type_focused")); |
6977 | 667 g_signal_connect(G_OBJECT(toggle), "toggled", |
9298 | 668 G_CALLBACK(type_toggle_cb), "type_focused"); |
3710 | 669 |
6302 | 670 /*---------- "Notification Methods" ----------*/ |
671 frame = gaim_gtk_make_frame(ret, _("Notification Methods")); | |
672 vbox = gtk_vbox_new(FALSE, 5); | |
673 gtk_container_add(GTK_CONTAINER(frame), vbox); | |
674 | |
6977 | 675 /* String method button */ |
3565 | 676 hbox = gtk_hbox_new(FALSE, 18); |
677 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); | |
6302 | 678 toggle = gtk_check_button_new_with_mnemonic(_("Prepend _string into window title:")); |
6977 | 679 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toggle), |
9298 | 680 gaim_prefs_get_bool("/plugins/gtk/X11/notify/method_string")); |
3565 | 681 gtk_box_pack_start(GTK_BOX(hbox), toggle, FALSE, FALSE, 0); |
6977 | 682 |
6302 | 683 entry = gtk_entry_new(); |
684 gtk_box_pack_start(GTK_BOX(hbox), entry, FALSE, FALSE, 0); | |
685 gtk_entry_set_max_length(GTK_ENTRY(entry), 10); | |
6977 | 686 gtk_widget_set_sensitive(GTK_WIDGET(entry), |
9298 | 687 gaim_prefs_get_bool("/plugins/gtk/X11/notify/method_string")); |
6977 | 688 gtk_entry_set_text(GTK_ENTRY(entry), |
9298 | 689 gaim_prefs_get_string("/plugins/gtk/X11/notify/title_string")); |
6977 | 690 g_object_set_data(G_OBJECT(toggle), "title-entry", entry); |
691 g_signal_connect(G_OBJECT(toggle), "toggled", | |
9298 | 692 G_CALLBACK(method_toggle_cb), "method_string"); |
6977 | 693 g_signal_connect(G_OBJECT(entry), "focus-out-event", |
9298 | 694 G_CALLBACK(options_entry_cb), "method_string"); |
3374 | 695 |
6977 | 696 /* Count method button */ |
697 toggle = gtk_check_button_new_with_mnemonic(_("Insert c_ount of new messages into window title")); | |
698 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toggle), | |
9298 | 699 gaim_prefs_get_bool("/plugins/gtk/X11/notify/method_count")); |
6977 | 700 gtk_box_pack_start(GTK_BOX(vbox), toggle, FALSE, FALSE, 0); |
701 g_signal_connect(G_OBJECT(toggle), "toggled", | |
9298 | 702 G_CALLBACK(method_toggle_cb), "method_count"); |
4035 | 703 |
6977 | 704 /* Urgent method button */ |
705 toggle = gtk_check_button_new_with_mnemonic(_("Set window manager \"_URGENT\" hint")); | |
706 gtk_box_pack_start(GTK_BOX(vbox), toggle, FALSE, FALSE, 0); | |
707 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toggle), | |
9298 | 708 gaim_prefs_get_bool("/plugins/gtk/X11/notify/method_urgent")); |
709 g_signal_connect(G_OBJECT(toggle), "toggled", | |
710 G_CALLBACK(method_toggle_cb), "method_urgent"); | |
3710 | 711 |
10606
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
712 /* Raise window method button */ |
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
713 toggle = gtk_check_button_new_with_mnemonic(_("R_aise conversation window")); |
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
714 gtk_box_pack_start(GTK_BOX(vbox), toggle, FALSE, FALSE, 0); |
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
715 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toggle), |
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
716 gaim_prefs_get_bool("/plugins/gtk/X11/notify/method_raise")); |
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
717 g_signal_connect(G_OBJECT(toggle), "toggled", |
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
718 G_CALLBACK(method_toggle_cb), "method_raise"); |
1a65fc2d7978
[gaim-migrate @ 12039]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10492
diff
changeset
|
719 |
6977 | 720 /*---------- "Notification Removals" ----------*/ |
6302 | 721 frame = gaim_gtk_make_frame(ret, _("Notification Removal")); |
722 vbox = gtk_vbox_new(FALSE, 5); | |
723 gtk_container_add(GTK_CONTAINER(frame), vbox); | |
3374 | 724 |
6977 | 725 /* Remove on focus button */ |
726 toggle = gtk_check_button_new_with_mnemonic(_("Remove when conversation window _gains focus")); | |
727 gtk_box_pack_start(GTK_BOX(vbox), toggle, FALSE, FALSE, 0); | |
728 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toggle), | |
9298 | 729 gaim_prefs_get_bool("/plugins/gtk/X11/notify/notify_focus")); |
6977 | 730 g_signal_connect(G_OBJECT(toggle), "toggled", G_CALLBACK(notify_toggle_cb), "notify_focus"); |
731 | |
732 /* Remove on click button */ | |
733 toggle = gtk_check_button_new_with_mnemonic(_("Remove when conversation window _receives click")); | |
734 gtk_box_pack_start(GTK_BOX(vbox), toggle, FALSE, FALSE, 0); | |
735 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toggle), | |
9298 | 736 gaim_prefs_get_bool("/plugins/gtk/X11/notify/notify_click")); |
6977 | 737 g_signal_connect(G_OBJECT(toggle), "toggled", |
9298 | 738 G_CALLBACK(notify_toggle_cb), "notify_click"); |
3710 | 739 |
6977 | 740 /* Remove on type button */ |
741 toggle = gtk_check_button_new_with_mnemonic(_("Remove when _typing in conversation window")); | |
742 gtk_box_pack_start(GTK_BOX(vbox), toggle, FALSE, FALSE, 0); | |
743 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toggle), | |
9298 | 744 gaim_prefs_get_bool("/plugins/gtk/X11/notify/notify_type")); |
6977 | 745 g_signal_connect(G_OBJECT(toggle), "toggled", |
9298 | 746 G_CALLBACK(notify_toggle_cb), "notify_type"); |
4035 | 747 |
6977 | 748 /* Remove on message send button */ |
749 toggle = gtk_check_button_new_with_mnemonic(_("Remove when a _message gets sent")); | |
750 gtk_box_pack_start(GTK_BOX(vbox), toggle, FALSE, FALSE, 0); | |
751 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toggle), | |
9298 | 752 gaim_prefs_get_bool("/plugins/gtk/X11/notify/notify_send")); |
6977 | 753 g_signal_connect(G_OBJECT(toggle), "toggled", |
9298 | 754 G_CALLBACK(notify_toggle_cb), "notify_send"); |
3565 | 755 |
6977 | 756 #if 0 |
757 /* Remove on conversation switch button */ | |
9298 | 758 toggle = gtk_check_button_new_with_mnemonic(_("Remove on switch to conversation ta_b")); |
6977 | 759 gtk_box_pack_start(GTK_BOX(vbox), toggle, FALSE, FALSE, 0); |
760 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toggle), | |
9298 | 761 gaim_prefs_get_bool("/plugins/gtk/X11/notify/notify_switch")); |
6977 | 762 g_signal_connect(G_OBJECT(toggle), "toggled", |
9298 | 763 G_CALLBACK(notify_toggle_cb), "notify_switch"); |
6977 | 764 #endif |
765 | |
766 gtk_widget_show_all(ret); | |
767 return ret; | |
3374 | 768 } |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
769 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
770 static gboolean |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
771 plugin_load(GaimPlugin *plugin) |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
772 { |
6977 | 773 GList *convs = gaim_get_conversations(); |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6464
diff
changeset
|
774 void *conv_handle = gaim_conversations_get_handle(); |
9298 | 775 /* |
776 void *gtk_conv_handle = gaim_gtk_conversations_get_handle(); | |
777 */ | |
6302 | 778 |
779 my_plugin = plugin; | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
780 |
6977 | 781 gaim_signal_connect(conv_handle, "received-im-msg", plugin, |
9298 | 782 GAIM_CALLBACK(im_recv_im), NULL); |
6977 | 783 gaim_signal_connect(conv_handle, "received-chat-msg", plugin, |
9298 | 784 GAIM_CALLBACK(chat_recv_im), NULL); |
6977 | 785 gaim_signal_connect(conv_handle, "sent-im-msg", plugin, |
9298 | 786 GAIM_CALLBACK(im_sent_im), NULL); |
6977 | 787 gaim_signal_connect(conv_handle, "sent-chat-msg", plugin, |
9298 | 788 GAIM_CALLBACK(chat_sent_im), NULL); |
6977 | 789 gaim_signal_connect(conv_handle, "conversation-created", plugin, |
9298 | 790 GAIM_CALLBACK(conv_created), NULL); |
6977 | 791 gaim_signal_connect(conv_handle, "chat-joined", plugin, |
9298 | 792 GAIM_CALLBACK(conv_created), NULL); |
6977 | 793 gaim_signal_connect(conv_handle, "deleting-conversation", plugin, |
9298 | 794 GAIM_CALLBACK(deleting_conv), NULL); |
6977 | 795 gaim_signal_connect(conv_handle, "conversation-switched", plugin, |
9298 | 796 GAIM_CALLBACK(conv_switched), NULL); |
10971 | 797 #if 0 |
11447
ef6e94bdda08
[gaim-migrate @ 13686]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11338
diff
changeset
|
798 gaim_signal_connect(gtk_conv_handle, "conversation-dragging", plugin, |
ef6e94bdda08
[gaim-migrate @ 13686]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11338
diff
changeset
|
799 GAIM_CALLBACK(conversation_dragging), NULL); |
9303 | 800 #endif |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
801 |
6977 | 802 while (convs) { |
803 GaimConversation *conv = (GaimConversation *)convs->data; | |
6302 | 804 |
805 /* attach signals */ | |
6977 | 806 attach_signals(conv); |
6302 | 807 |
6977 | 808 convs = convs->next; |
6302 | 809 } |
810 | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
811 return TRUE; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
812 } |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
813 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
814 static gboolean |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
815 plugin_unload(GaimPlugin *plugin) |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
816 { |
6977 | 817 GList *convs = gaim_get_conversations(); |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
818 |
6977 | 819 while (convs) { |
820 GaimConversation *conv = (GaimConversation *)convs->data; | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
821 |
6302 | 822 /* kill signals */ |
6977 | 823 detach_signals(conv); |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
824 |
6977 | 825 convs = convs->next; |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
826 } |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
827 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
828 return TRUE; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
829 } |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
830 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
831 static GaimGtkPluginUiInfo ui_info = |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
832 { |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
833 get_config_frame |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
834 }; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
835 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
836 static GaimPluginInfo info = |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
837 { |
9943 | 838 GAIM_PLUGIN_MAGIC, |
839 GAIM_MAJOR_VERSION, | |
840 GAIM_MINOR_VERSION, | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
841 GAIM_PLUGIN_STANDARD, /**< type */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
842 GAIM_GTK_PLUGIN_TYPE, /**< ui_requirement */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
843 0, /**< flags */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
844 NULL, /**< dependencies */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
845 GAIM_PRIORITY_DEFAULT, /**< priority */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
846 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
847 NOTIFY_PLUGIN_ID, /**< id */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
848 N_("Message Notification"), /**< name */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
849 VERSION, /**< version */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
850 /** summary */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
851 N_("Provides a variety of ways of notifying you of unread messages."), |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
852 /** description */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
853 N_("Provides a variety of ways of notifying you of unread messages."), |
9298 | 854 "Etan Reisner <deryni@eden.rutgers.edu>\n\t\t\tBrian Tarricone <bjt23@cornell.edu>", |
6302 | 855 /**< author */ |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6464
diff
changeset
|
856 GAIM_WEBSITE, /**< homepage */ |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
857 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
858 plugin_load, /**< load */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
859 plugin_unload, /**< unload */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
860 NULL, /**< destroy */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
861 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
862 &ui_info, /**< ui_info */ |
8993 | 863 NULL, /**< extra_info */ |
864 NULL, | |
865 NULL | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
866 }; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
867 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
868 static void |
5920
7d385de2f9cd
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5676
diff
changeset
|
869 init_plugin(GaimPlugin *plugin) |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
870 { |
6302 | 871 gaim_prefs_add_none("/plugins/gtk"); |
872 gaim_prefs_add_none("/plugins/gtk/X11"); | |
873 gaim_prefs_add_none("/plugins/gtk/X11/notify"); | |
874 | |
6464 | 875 gaim_prefs_add_bool("/plugins/gtk/X11/notify/type_im", TRUE); |
876 gaim_prefs_add_bool("/plugins/gtk/X11/notify/type_chat", FALSE); | |
877 gaim_prefs_add_bool("/plugins/gtk/X11/notify/type_focused", FALSE); | |
6302 | 878 gaim_prefs_add_bool("/plugins/gtk/X11/notify/method_string", FALSE); |
879 gaim_prefs_add_string("/plugins/gtk/X11/notify/title_string", "(*)"); | |
880 gaim_prefs_add_bool("/plugins/gtk/X11/notify/method_urgent", FALSE); | |
881 gaim_prefs_add_bool("/plugins/gtk/X11/notify/method_count", FALSE); | |
10492 | 882 gaim_prefs_add_bool("/plugins/gtk/X11/notify/method_raise", FALSE); |
6302 | 883 gaim_prefs_add_bool("/plugins/gtk/X11/notify/notify_focus", FALSE); |
884 gaim_prefs_add_bool("/plugins/gtk/X11/notify/notify_click", FALSE); | |
885 gaim_prefs_add_bool("/plugins/gtk/X11/notify/notify_type", TRUE); | |
6464 | 886 gaim_prefs_add_bool("/plugins/gtk/X11/notify/notify_send", TRUE); |
887 gaim_prefs_add_bool("/plugins/gtk/X11/notify/notify_switch", TRUE); | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
888 } |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5021
diff
changeset
|
889 |
6063 | 890 GAIM_INIT_PLUGIN(notify, init_plugin, info) |