Minor changelog updates
[pidgin-git.git] / finch / plugins / gntgf.c
blobb7d185007b4eace622a68cbb56d2ca68b23bed1e
1 /**
2 * @file gntgf.c Minimal toaster plugin in Gnt.
4 * Copyright (C) 2006 Sadrul Habib Chowdhury <sadrul@users.sourceforge.net>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
22 #include "internal.h"
24 #define PLUGIN_STATIC_NAME "GntGf"
26 #define PREFS_PREFIX "/plugins/gnt/gntgf"
27 #define PREFS_EVENT PREFS_PREFIX "/events"
28 #define PREFS_EVENT_SIGNONF PREFS_EVENT "/signonf"
29 #define PREFS_EVENT_IM_MSG PREFS_EVENT "/immsg"
30 #define PREFS_EVENT_CHAT_MSG PREFS_EVENT "/chatmsg"
31 #define PREFS_EVENT_CHAT_NICK PREFS_EVENT "/chatnick"
32 #define PREFS_BEEP PREFS_PREFIX "/beep"
34 #define MAX_COLS 3
36 #ifdef HAVE_X11
37 #define PREFS_URGENT PREFS_PREFIX "/urgent"
39 #include <X11/Xlib.h>
40 #include <X11/Xutil.h>
41 #endif
43 #include <glib.h>
45 #include <plugin.h>
46 #include <version.h>
47 #include <blist.h>
48 #include <conversation.h>
49 #include <debug.h>
50 #include <util.h>
52 #include <gnt.h>
53 #include <gntbox.h>
54 #include <gntbutton.h>
55 #include <gntcheckbox.h>
56 #include <gntlabel.h>
57 #include <gnttree.h>
59 #include "gntplugin.h"
60 #include "gntconv.h"
62 typedef struct
64 GntWidget *window;
65 int timer;
66 int column;
67 } GntToast;
69 static GList *toasters;
70 static int gpsy[MAX_COLS];
71 static int gpsw[MAX_COLS];
73 static void
74 destroy_toaster(GntToast *toast)
76 toasters = g_list_remove(toasters, toast);
77 gnt_widget_destroy(toast->window);
78 g_source_remove(toast->timer);
79 g_free(toast);
82 static gboolean
83 remove_toaster(GntToast *toast)
85 GList *iter;
86 int h;
87 int col;
88 int nwin[MAX_COLS];
90 gnt_widget_get_size(toast->window, NULL, &h);
91 gpsy[toast->column] -= h;
92 col = toast->column;
94 memset(&nwin, 0, sizeof(nwin));
95 destroy_toaster(toast);
97 for (iter = toasters; iter; iter = iter->next)
99 int x, y;
100 toast = iter->data;
101 nwin[toast->column]++;
102 if (toast->column != col) continue;
103 gnt_widget_get_position(toast->window, &x, &y);
104 y += h;
105 gnt_screen_move_widget(toast->window, x, y);
108 if (nwin[col] == 0)
109 gpsw[col] = 0;
111 return FALSE;
114 #ifdef HAVE_X11
115 static int
116 error_handler(Display *dpy, XErrorEvent *error)
118 char buffer[1024];
119 XGetErrorText(dpy, error->error_code, buffer, sizeof(buffer));
120 purple_debug_error("gntgf", "Could not set urgent to the window: %s.\n", buffer);
121 return 0;
124 static void
125 urgent()
127 /* This is from deryni/tuomov's urgent_test.c */
128 Display *dpy;
129 Window id;
130 const char *ids;
131 XWMHints *hints;
133 ids = getenv("WINDOWID");
134 if (ids == NULL)
135 return;
137 id = atoi(ids);
139 dpy = XOpenDisplay(NULL);
140 if (dpy == NULL)
141 return;
143 XSetErrorHandler(error_handler);
144 hints = XGetWMHints(dpy, id);
145 if (hints) {
146 hints->flags|=XUrgencyHint;
147 XSetWMHints(dpy, id, hints);
148 XFree(hints);
150 XSetErrorHandler(NULL);
152 XFlush(dpy);
153 XCloseDisplay(dpy);
155 #endif
157 static void
158 notify(PurpleConversation *conv, const char *fmt, ...)
160 GntWidget *window;
161 GntToast *toast;
162 char *str;
163 int h, w, i;
164 va_list args;
166 if (purple_prefs_get_bool(PREFS_BEEP))
167 beep();
169 if (conv != NULL) {
170 FinchConv *fc = conv->ui_data;
171 if (gnt_widget_has_focus(fc->window))
172 return;
175 #ifdef HAVE_X11
176 if (purple_prefs_get_bool(PREFS_URGENT))
177 urgent();
178 #endif
180 window = gnt_vbox_new(FALSE);
181 GNT_WIDGET_SET_FLAGS(window, GNT_WIDGET_TRANSIENT);
182 GNT_WIDGET_UNSET_FLAGS(window, GNT_WIDGET_NO_BORDER);
184 va_start(args, fmt);
185 str = g_strdup_vprintf(fmt, args);
186 va_end(args);
188 gnt_box_add_widget(GNT_BOX(window),
189 gnt_label_new_with_format(str, GNT_TEXT_FLAG_HIGHLIGHT));
191 g_free(str);
192 gnt_widget_size_request(window);
193 gnt_widget_get_size(window, &w, &h);
194 for (i = 0; i < MAX_COLS && gpsy[i] + h >= getmaxy(stdscr) ; ++i)
196 if (i >= MAX_COLS) {
197 purple_debug_warning("GntGf", "Dude, that's way too many popups\n");
198 gnt_widget_destroy(window);
199 return;
202 toast = g_new0(GntToast, 1);
203 toast->window = window;
204 toast->column = i;
205 gpsy[i] += h;
206 if (w > gpsw[i]) {
207 if (i == 0)
208 gpsw[i] = w;
209 else
210 gpsw[i] = gpsw[i - 1] + w + 1;
213 if (i == 0 || (w + gpsw[i - 1] >= getmaxx(stdscr))) {
214 /* if it's going to be too far left, overlap. */
215 gnt_widget_set_position(window, getmaxx(stdscr) - w - 1,
216 getmaxy(stdscr) - gpsy[i] - 1);
217 } else {
218 gnt_widget_set_position(window, getmaxx(stdscr) - gpsw[i - 1] - w - 1,
219 getmaxy(stdscr) - gpsy[i] - 1);
221 gnt_widget_draw(window);
223 toast->timer = g_timeout_add(4000, (GSourceFunc)remove_toaster, toast);
224 toasters = g_list_prepend(toasters, toast);
227 static void
228 buddy_signed_on(PurpleBuddy *buddy, gpointer null)
230 if (purple_prefs_get_bool(PREFS_EVENT_SIGNONF))
231 notify(NULL, _("%s just signed on"), purple_buddy_get_alias(buddy));
234 static void
235 buddy_signed_off(PurpleBuddy *buddy, gpointer null)
237 if (purple_prefs_get_bool(PREFS_EVENT_SIGNONF))
238 notify(NULL, _("%s just signed off"), purple_buddy_get_alias(buddy));
241 static void
242 received_im_msg(PurpleAccount *account, const char *sender, const char *msg,
243 PurpleConversation *conv, PurpleMessageFlags flags, gpointer null)
245 if (purple_prefs_get_bool(PREFS_EVENT_IM_MSG))
246 notify(conv, _("%s sent you a message"), sender);
249 static void
250 received_chat_msg(PurpleAccount *account, const char *sender, const char *msg,
251 PurpleConversation *conv, PurpleMessageFlags flags, gpointer null)
253 const char *nick;
255 if (flags & PURPLE_MESSAGE_WHISPER)
256 return;
258 nick = PURPLE_CONV_CHAT(conv)->nick;
260 if (g_utf8_collate(sender, nick) == 0)
261 return;
263 if (purple_prefs_get_bool(PREFS_EVENT_CHAT_NICK) &&
264 (purple_utf8_has_word(msg, nick)))
265 notify(conv, _("%s said your nick in %s"), sender, purple_conversation_get_name(conv));
266 else if (purple_prefs_get_bool(PREFS_EVENT_CHAT_MSG))
267 notify(conv, _("%s sent a message in %s"), sender, purple_conversation_get_name(conv));
270 static gboolean
271 plugin_load(PurplePlugin *plugin)
273 purple_signal_connect(purple_blist_get_handle(), "buddy-signed-on", plugin,
274 PURPLE_CALLBACK(buddy_signed_on), NULL);
275 purple_signal_connect(purple_blist_get_handle(), "buddy-signed-off", plugin,
276 PURPLE_CALLBACK(buddy_signed_off), NULL);
277 purple_signal_connect(purple_conversations_get_handle(), "received-im-msg", plugin,
278 PURPLE_CALLBACK(received_im_msg), NULL);
279 purple_signal_connect(purple_conversations_get_handle(), "received-chat-msg", plugin,
280 PURPLE_CALLBACK(received_chat_msg), NULL);
282 memset(&gpsy, 0, sizeof(gpsy));
283 memset(&gpsw, 0, sizeof(gpsw));
285 return TRUE;
288 static gboolean
289 plugin_unload(PurplePlugin *plugin)
291 while (toasters)
293 GntToast *toast = toasters->data;
294 destroy_toaster(toast);
296 return TRUE;
299 static struct
301 char *pref;
302 char *display;
303 } prefs[] =
305 {PREFS_EVENT_SIGNONF, N_("Buddy signs on/off")},
306 {PREFS_EVENT_IM_MSG, N_("You receive an IM")},
307 {PREFS_EVENT_CHAT_MSG, N_("Someone speaks in a chat")},
308 {PREFS_EVENT_CHAT_NICK, N_("Someone says your name in a chat")},
309 {NULL, NULL}
312 static void
313 pref_toggled(GntTree *tree, char *key, gpointer null)
315 purple_prefs_set_bool(key, gnt_tree_get_choice(tree, key));
318 static void
319 toggle_option(GntCheckBox *check, gpointer str)
321 purple_prefs_set_bool(str, gnt_check_box_get_checked(check));
324 static GntWidget *
325 config_frame()
327 GntWidget *window, *tree, *check;
328 int i;
330 window = gnt_vbox_new(FALSE);
331 gnt_box_set_pad(GNT_BOX(window), 0);
332 gnt_box_set_alignment(GNT_BOX(window), GNT_ALIGN_MID);
333 gnt_box_set_fill(GNT_BOX(window), TRUE);
335 gnt_box_add_widget(GNT_BOX(window),
336 gnt_label_new(_("Notify with a toaster when")));
338 tree = gnt_tree_new();
339 gnt_box_add_widget(GNT_BOX(window), tree);
341 for (i = 0; prefs[i].pref; i++)
343 gnt_tree_add_choice(GNT_TREE(tree), prefs[i].pref,
344 gnt_tree_create_row(GNT_TREE(tree), prefs[i].display), NULL, NULL);
345 gnt_tree_set_choice(GNT_TREE(tree), prefs[i].pref,
346 purple_prefs_get_bool(prefs[i].pref));
348 gnt_tree_set_col_width(GNT_TREE(tree), 0, 40);
349 g_signal_connect(G_OBJECT(tree), "toggled", G_CALLBACK(pref_toggled), NULL);
351 check = gnt_check_box_new(_("Beep too!"));
352 gnt_check_box_set_checked(GNT_CHECK_BOX(check), purple_prefs_get_bool(PREFS_BEEP));
353 g_signal_connect(G_OBJECT(check), "toggled", G_CALLBACK(toggle_option), PREFS_BEEP);
354 gnt_box_add_widget(GNT_BOX(window), check);
356 #ifdef HAVE_X11
357 check = gnt_check_box_new(_("Set URGENT for the terminal window."));
358 gnt_check_box_set_checked(GNT_CHECK_BOX(check), purple_prefs_get_bool(PREFS_URGENT));
359 g_signal_connect(G_OBJECT(check), "toggled", G_CALLBACK(toggle_option), PREFS_URGENT);
360 gnt_box_add_widget(GNT_BOX(window), check);
361 #endif
363 return window;
366 static PurplePluginInfo info =
368 PURPLE_PLUGIN_MAGIC,
369 PURPLE_MAJOR_VERSION,
370 PURPLE_MINOR_VERSION,
371 PURPLE_PLUGIN_STANDARD,
372 FINCH_PLUGIN_TYPE,
374 NULL,
375 PURPLE_PRIORITY_DEFAULT,
376 "gntgf",
377 N_("GntGf"),
378 VERSION,
379 N_("Toaster plugin"),
380 N_("Toaster plugin"),
381 "Sadrul H Chowdhury <sadrul@users.sourceforge.net>",
382 PURPLE_WEBSITE,
383 plugin_load,
384 plugin_unload,
385 NULL,
386 config_frame,
387 NULL,
388 NULL,
389 NULL,
391 /* padding */
392 NULL,
393 NULL,
394 NULL,
395 NULL
398 static void
399 init_plugin(PurplePlugin *plugin)
401 purple_prefs_add_none("/plugins");
402 purple_prefs_add_none("/plugins/gnt");
404 purple_prefs_add_none("/plugins/gnt/gntgf");
405 purple_prefs_add_none(PREFS_EVENT);
407 purple_prefs_add_bool(PREFS_EVENT_SIGNONF, TRUE);
408 purple_prefs_add_bool(PREFS_EVENT_IM_MSG, TRUE);
409 purple_prefs_add_bool(PREFS_EVENT_CHAT_MSG, TRUE);
410 purple_prefs_add_bool(PREFS_EVENT_CHAT_NICK, TRUE);
412 purple_prefs_add_bool(PREFS_BEEP, TRUE);
413 #ifdef HAVE_X11
414 purple_prefs_add_bool(PREFS_URGENT, FALSE);
415 #endif
418 PURPLE_INIT_PLUGIN(PLUGIN_STATIC_NAME, init_plugin, info)