Mercurial > pidgin
annotate src/gtkblist.c @ 8829:d5ca3e9a77e2
[gaim-migrate @ 9593]
Etan just keeps being cooler than everyone around him. This names the
gtkimhtml in GaimConversations so that people with crap fonts can
resize them via Gtk+ through the already existing mechanism.
committer: Tailor Script <tailor@pidgin.im>
author | Ethan Blanton <elb@pidgin.im> |
---|---|
date | Tue, 27 Apr 2004 02:12:08 +0000 |
parents | f08245ed03aa |
children | 76013c5ef153 |
rev | line source |
---|---|
5228 | 1 /* |
2 * gaim | |
3 * | |
8046 | 4 * Gaim is the legal property of its developers, whose names are too numerous |
5 * to list here. Please refer to the COPYRIGHT file distributed with this | |
6 * source distribution. | |
5228 | 7 * |
8 * This program is free software; you can redistribute it and/or modify | |
9 * it under the terms of the GNU General Public License as published by | |
10 * the Free Software Foundation; either version 2 of the License, or | |
11 * (at your option) any later version. | |
12 * | |
13 * This program is distributed in the hope that it will be useful, | |
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 * GNU General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU General Public License | |
19 * along with this program; if not, write to the Free Software | |
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
21 * | |
22 */ | |
7620 | 23 #include "gtkinternal.h" |
24 | |
25 #include "account.h" | |
26 #include "core.h" | |
27 #include "debug.h" | |
28 #include "multi.h" | |
29 #include "notify.h" | |
30 #include "prpl.h" | |
31 #include "prefs.h" | |
32 #include "request.h" | |
33 #include "signals.h" | |
34 #include "sound.h" | |
35 #include "stock.h" | |
36 #include "util.h" | |
37 | |
38 #include "gtkaccount.h" | |
39 #include "gtkblist.h" | |
40 #include "gtkconv.h" | |
41 #include "gtkdebug.h" | |
42 #include "gtkft.h" | |
43 #include "gtklog.h" | |
44 #include "gtkpounce.h" | |
45 #include "gtkprefs.h" | |
46 #include "gtkprivacy.h" | |
8113 | 47 #include "gtkroomlist.h" |
7620 | 48 #include "gtkutils.h" |
49 | |
50 #include "ui.h" | |
51 | |
52 #include "gaim.h" | |
5228 | 53 |
54 #include <gdk/gdkkeysyms.h> | |
55 #include <gtk/gtk.h> | |
7620 | 56 #include <gdk/gdk.h> |
57 | |
7662 | 58 #if (GTK_CHECK_VERSION(2,2,0) && !(defined(__APPLE__) && defined(__MACH__))) |
59 #define WANT_DROP_SHADOW | |
60 #endif | |
61 | |
7620 | 62 typedef struct |
63 { | |
64 GaimAccount *account; | |
65 | |
66 GtkWidget *window; | |
67 GtkWidget *combo; | |
68 GtkWidget *entry; | |
69 GtkWidget *entry_for_alias; | |
70 GtkWidget *account_box; | |
71 | |
72 } GaimGtkAddBuddyData; | |
73 | |
74 typedef struct | |
75 { | |
76 GaimAccount *account; | |
77 | |
78 GtkWidget *window; | |
79 GtkWidget *account_menu; | |
80 GtkWidget *alias_entry; | |
81 GtkWidget *group_combo; | |
82 GtkWidget *entries_box; | |
83 GtkSizeGroup *sg; | |
84 | |
85 GList *entries; | |
86 | |
87 } GaimGtkAddChatData; | |
88 | |
8303
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
89 typedef struct |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
90 { |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
91 GaimAccount *account; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
92 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
93 GtkWidget *window; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
94 GtkWidget *account_menu; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
95 GtkWidget *entries_box; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
96 GtkSizeGroup *sg; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
97 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
98 GList *entries; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
99 } GaimGtkJoinChatData; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
100 |
7620 | 101 |
102 static GtkWidget *protomenu = NULL; | |
5228 | 103 |
5422 | 104 GSList *gaim_gtk_blist_sort_methods = NULL; |
105 static struct gaim_gtk_blist_sort_method *current_sort_method = NULL; | |
7620 | 106 static GtkTreeIter sort_method_none(GaimBlistNode *node, GaimBuddyList *blist, GtkTreeIter groupiter, GtkTreeIter *cur); |
107 | |
108 /* The functions we use for sorting aren't available in gtk 2.0.x, and | |
109 * segfault in 2.2.0. 2.2.1 is known to work, so I'll require that */ | |
110 #if GTK_CHECK_VERSION(2,2,1) | |
111 static GtkTreeIter sort_method_alphabetical(GaimBlistNode *node, GaimBuddyList *blist, GtkTreeIter groupiter, GtkTreeIter *cur); | |
112 static GtkTreeIter sort_method_status(GaimBlistNode *node, GaimBuddyList *blist, GtkTreeIter groupiter, GtkTreeIter *cur); | |
113 static GtkTreeIter sort_method_log(GaimBlistNode *node, GaimBuddyList *blist, GtkTreeIter groupiter, GtkTreeIter *cur); | |
114 #endif | |
115 static GaimGtkBuddyList *gtkblist = NULL; | |
5228 | 116 |
117 /* part of the best damn Docklet code this side of Tahiti */ | |
118 static gboolean gaim_gtk_blist_obscured = FALSE; | |
119 | |
120 static void gaim_gtk_blist_selection_changed(GtkTreeSelection *selection, gpointer data); | |
7620 | 121 static void gaim_gtk_blist_update(GaimBuddyList *list, GaimBlistNode *node); |
5234 | 122 static char *gaim_get_tooltip_text(GaimBlistNode *node); |
5228 | 123 static char *item_factory_translate_func (const char *path, gpointer func_data); |
5273 | 124 static gboolean get_iter_from_node(GaimBlistNode *node, GtkTreeIter *iter); |
7620 | 125 static void redo_buddy_list(GaimBuddyList *list, gboolean remove); |
126 static void gaim_gtk_blist_collapse_contact_cb(GtkWidget *w, GaimBlistNode *node); | |
127 | |
128 static void show_rename_group(GtkWidget *unused, GaimGroup *g); | |
5422 | 129 |
5256 | 130 struct _gaim_gtk_blist_node { |
131 GtkTreeRowReference *row; | |
7620 | 132 gboolean contact_expanded; |
5256 | 133 }; |
134 | |
7662 | 135 #ifdef WANT_DROP_SHADOW |
7620 | 136 /**************************** Weird drop shadow stuff *******************/ |
137 /* This is based on a patch for drop shadows in GTK menus available at http://www.xfce.org/gtkmenu-shadow/ */ | |
138 | |
139 enum side { | |
140 EAST_SIDE, | |
141 SOUTH_SIDE | |
142 }; | |
143 | |
144 const double shadow_strip_l[5] = { | |
145 .937, .831, .670, .478, .180 | |
146 }; | |
147 | |
148 const double bottom_left_corner[25] = { | |
149 1.00, .682, .423, .333, .258, | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
150 1.00, .898, .800, .682, .584, |
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
151 1.00, .937, .874, .800, .737, |
7620 | 152 1.00, .968, .937, .898, .866, |
153 1.00, .988, .976, .960, .945 | |
154 }; | |
155 | |
156 const double bottom_right_corner[25] = { | |
157 .258, .584, .737, .866, .945, | |
158 .584, .682, .800, .898, .960, | |
159 .737, .800, .874, .937, .976, | |
160 .866, .898, .937, .968, .988, | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
161 .945, .960, .976, .988, .996 |
7620 | 162 }; |
163 | |
164 const double top_right_corner[25] = { | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
165 1.00, 1.00, 1.00, 1.00, 1.00, |
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
166 .686, .898, .937, .968, .988, |
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
167 .423, .803, .874, .937, .976, |
7620 | 168 .333, .686, .800, .898, .960, |
169 .258, .584, .737, .866, .945 | |
170 }; | |
171 | |
172 const double top_left_corner[25] = { | |
173 .988, .968, .937, .898, .498, | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
174 .976, .937, .874, .803, .423, |
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
175 .960, .898, .800, .686, .333, |
7620 | 176 .945, .866, .737, .584, .258, |
177 .941, .847, .698, .521, .215 | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
178 }; |
7620 | 179 |
180 | |
181 static GdkPixbuf * | |
182 get_pixbuf (GtkWidget *menu, | |
183 int x, | |
184 int y, | |
185 int width, | |
186 int height) | |
187 { | |
188 GdkPixbuf *dest, *src; | |
189 GdkScreen *screen = gtk_widget_get_screen (GTK_WIDGET(menu)); | |
190 GdkWindow *root = gdk_screen_get_root_window (screen); | |
191 gint screen_height = gdk_screen_get_height (screen); | |
192 gint screen_width = gdk_screen_get_width (screen); | |
193 gint original_width = width; | |
194 gint original_height = height; | |
195 | |
196 #ifdef _WIN32 | |
197 /* In Win32, GDK gets the workarea that isn't occupied by toolbars | |
198 (including the taskbar) and uses that region as the screen size. | |
199 GTK returns positions based on a screen size that ignores these | |
200 toolbars. Since we want a pixmap with real X,Y coordinates, we | |
201 need to find out the offset from GTK's screen to GDK's screen, | |
202 and adjust the pixmaps we grab accordingly. GDK will not deal | |
203 with toolbar position updates, so we're stuck restarting Gaim | |
204 if that happens. */ | |
205 RECT *workarea = g_malloc(sizeof(RECT)); | |
206 SystemParametersInfo(SPI_GETWORKAREA, 0, (void *)workarea, 0); | |
207 x += (workarea->left); | |
208 y += (workarea->top); | |
209 g_free(workarea); | |
210 #endif | |
211 | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
212 if (x < 0) |
7620 | 213 { |
214 width += x; | |
215 x = 0; | |
216 } | |
217 | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
218 if (y < 0) |
7620 | 219 { |
220 height += y; | |
221 y = 0; | |
222 } | |
223 | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
224 if (x + width > screen_width) |
7620 | 225 { |
226 width = screen_width - x; | |
227 } | |
228 | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
229 if (y + height > screen_height) |
7620 | 230 { |
231 height = screen_height - y; | |
232 } | |
233 | |
234 if (width <= 0 || height <= 0) | |
235 return NULL; | |
236 | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
237 dest = gdk_pixbuf_new (GDK_COLORSPACE_RGB, FALSE, 8, |
7620 | 238 original_width, original_height); |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
239 src = gdk_pixbuf_get_from_drawable (NULL, root, NULL, x, y, 0, 0, |
7620 | 240 width, height); |
241 gdk_pixbuf_copy_area (src, 0, 0, width, height, dest, 0, 0); | |
242 | |
243 g_object_unref (G_OBJECT (src)); | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
244 |
7620 | 245 return dest; |
246 } | |
247 | |
248 static void | |
249 shadow_paint(GaimGtkBuddyList *blist, GdkRectangle *area, enum side shadow) | |
250 { | |
251 gint width, height; | |
252 GdkGC *gc = gtkblist->tipwindow->style->black_gc; | |
253 | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
254 switch (shadow) |
7620 | 255 { |
256 case EAST_SIDE: | |
257 if (gtkblist->east != NULL) | |
258 { | |
259 if (area) | |
260 gdk_gc_set_clip_rectangle (gc, area); | |
261 | |
262 width = gdk_pixbuf_get_width (gtkblist->east); | |
263 height = gdk_pixbuf_get_height (gtkblist->east); | |
264 | |
265 gdk_draw_pixbuf(GDK_DRAWABLE(gtkblist->east_shadow), gc, | |
266 gtkblist->east, 0, 0, 0, 0, width, height, GDK_RGB_DITHER_NONE, | |
267 0, 0); | |
268 | |
269 if (area) | |
270 gdk_gc_set_clip_rectangle (gc, NULL); | |
271 } | |
272 break; | |
273 case SOUTH_SIDE: | |
274 if (blist->south != NULL) | |
275 { | |
276 if (area) | |
277 gdk_gc_set_clip_rectangle (gc, area); | |
278 | |
279 width = gdk_pixbuf_get_width (gtkblist->south); | |
280 height = gdk_pixbuf_get_height (gtkblist->south); | |
281 gdk_draw_pixbuf(GDK_DRAWABLE(gtkblist->south_shadow), gc, gtkblist->south, | |
282 0, 0, 0, 0, width, height, GDK_RGB_DITHER_NONE, 0, 0); | |
8040 | 283 |
7620 | 284 if (area) |
285 gdk_gc_set_clip_rectangle (gc, NULL); | |
286 } | |
287 break; | |
288 default: | |
289 break; | |
290 } | |
291 } | |
292 | |
293 static void | |
294 pixbuf_add_shadow (GdkPixbuf *pb, | |
295 enum side shadow) | |
296 { | |
297 gint width, rowstride, height; | |
298 gint i; | |
299 guchar *pixels, *p; | |
300 | |
301 width = gdk_pixbuf_get_width (pb); | |
302 height = gdk_pixbuf_get_height (pb); | |
303 rowstride = gdk_pixbuf_get_rowstride (pb); | |
304 pixels = gdk_pixbuf_get_pixels (pb); | |
305 | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
306 switch (shadow) |
7620 | 307 { |
308 case EAST_SIDE: | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
309 if (height > 5) |
7620 | 310 { |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
311 for (i = 0; i < width; i++) |
7620 | 312 { |
313 gint j, k; | |
314 | |
315 p = pixels + (i * rowstride); | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
316 for (j = 0, k = 0; j < 3 * width; j += 3, k++) |
7620 | 317 { |
318 p[j] = (guchar) (p[j] * top_right_corner [i * width + k]); | |
319 p[j + 1] = (guchar) (p[j + 1] * top_right_corner [i * width + k]); | |
320 p[j + 2] = (guchar) (p[j + 2] * top_right_corner [i * width + k]); | |
321 } | |
322 } | |
323 | |
324 i = 5; | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
325 } |
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
326 else |
7620 | 327 { |
328 i = 0; | |
329 } | |
330 | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
331 for (;i < height; i++) |
7620 | 332 { |
333 gint j, k; | |
334 | |
335 p = pixels + (i * rowstride); | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
336 for (j = 0, k = 0; j < 3 * width; j += 3, k++) |
7620 | 337 { |
338 p[j] = (guchar) (p[j] * shadow_strip_l[width - 1 - k]); | |
339 p[j + 1] = (guchar) (p[j + 1] * shadow_strip_l[width - 1 - k]); | |
340 p[j + 2] = (guchar) (p[j + 2] * shadow_strip_l[width - 1 - k]); | |
341 } | |
342 } | |
343 break; | |
344 | |
345 case SOUTH_SIDE: | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
346 for (i = 0; i < height; i++) |
7620 | 347 { |
348 gint j, k; | |
349 | |
350 p = pixels + (i * rowstride); | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
351 for (j = 0, k = 0; j < 3 * height; j += 3, k++) |
7620 | 352 { |
353 p[j] = (guchar) (p[j] * bottom_left_corner[i * height + k]); | |
354 p[j + 1] = (guchar) (p[j + 1] * bottom_left_corner[i * height + k]); | |
355 p[j + 2] = (guchar) (p[j + 2] * bottom_left_corner[i * height + k]); | |
356 } | |
357 | |
358 p = pixels + (i * rowstride) + 3 * height; | |
359 for (j = 0, k = 0; j < (width * 3) - (6 * height); j += 3, k++) | |
360 { | |
361 p[j] = (guchar) (p[j] * bottom_right_corner [i * height]); | |
362 p[j + 1] = (guchar) (p[j + 1] * bottom_right_corner [i * height]); | |
363 p[j + 2] = (guchar) (p[j + 2] * bottom_right_corner [i * height]); | |
364 } | |
365 | |
366 p = pixels + (i * rowstride) + ((width * 3) - (3 * height)); | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
367 for (j = 0, k = 0; j < 3 * height; j += 3, k++) |
7620 | 368 { |
369 p[j] = (guchar) (p[j] * bottom_right_corner[i * height + k]); | |
370 p[j + 1] = (guchar) (p[j + 1] * bottom_right_corner[i * height + k]); | |
371 p[j + 2] = (guchar) (p[j + 2] * bottom_right_corner[i * height + k]); | |
372 } | |
373 } | |
374 break; | |
375 | |
376 default: | |
377 break; | |
378 } | |
379 } | |
380 | |
381 static gboolean | |
382 map_shadow_windows (gpointer data) | |
383 { | |
384 GaimGtkBuddyList *blist = (GaimGtkBuddyList*)data; | |
385 GtkWidget *widget = blist->tipwindow; | |
386 GdkPixbuf *pixbuf; | |
387 int x, y; | |
388 | |
389 gtk_window_get_position(GTK_WINDOW(widget), &x, &y); | |
390 pixbuf = get_pixbuf (widget, | |
391 x + widget->allocation.width, y, | |
392 5, widget->allocation.height + 5); | |
393 if (pixbuf != NULL) | |
394 { | |
395 pixbuf_add_shadow (pixbuf, EAST_SIDE); | |
396 if (blist->east != NULL) | |
397 { | |
398 g_object_unref (G_OBJECT (blist->east)); | |
399 } | |
400 blist->east = pixbuf; | |
401 } | |
402 | |
403 pixbuf = get_pixbuf (widget, | |
404 x, y + widget->allocation.height, | |
405 widget->allocation.width + 5, 5); | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
406 if (pixbuf != NULL) |
7620 | 407 { |
408 pixbuf_add_shadow (pixbuf, SOUTH_SIDE); | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
409 if (blist->south != NULL) |
7620 | 410 { |
411 g_object_unref (G_OBJECT (blist->south)); | |
412 } | |
413 blist->south = pixbuf; | |
414 } | |
415 | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
416 gdk_window_move_resize (blist->east_shadow, |
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
417 x + widget->allocation.width, y, |
7620 | 418 5, widget->allocation.height); |
419 | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
420 gdk_window_move_resize (blist->south_shadow, |
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
421 x, y + widget->allocation.height, |
7620 | 422 widget->allocation.width + 5, 5); |
423 gdk_window_show (blist->east_shadow); | |
424 gdk_window_show (blist->south_shadow); | |
425 shadow_paint(blist, NULL, EAST_SIDE); | |
426 shadow_paint(blist, NULL, SOUTH_SIDE); | |
427 | |
428 return FALSE; | |
429 } | |
430 | |
431 /**************** END WEIRD DROP SHADOW STUFF ***********************************/ | |
432 #endif | |
8254 | 433 |
7620 | 434 static GSList *blist_prefs_callbacks = NULL; |
435 | |
5228 | 436 /*************************************************** |
437 * Callbacks * | |
438 ***************************************************/ | |
439 | |
440 static gboolean gtk_blist_delete_cb(GtkWidget *w, GdkEventAny *event, gpointer data) | |
441 { | |
442 if (docklet_count) | |
443 gaim_blist_set_visible(FALSE); | |
444 else | |
7620 | 445 gaim_core_quit(); |
5228 | 446 |
447 /* we handle everything, event should not propogate further */ | |
448 return TRUE; | |
449 } | |
450 | |
451 static gboolean gtk_blist_configure_cb(GtkWidget *w, GdkEventConfigure *event, gpointer data) | |
452 { | |
453 /* unfortunately GdkEventConfigure ignores the window gravity, but * | |
454 * the only way we have of setting the position doesn't. we have to * | |
7620 | 455 * call get_position because it does pay attention to the gravity. * |
456 * this is inefficient and I agree it sucks, but it's more likely * | |
457 * to work correctly. - Robot101 */ | |
5228 | 458 gint x, y; |
459 | |
460 /* check for visibility because when we aren't visible, this will * | |
461 * give us bogus (0,0) coordinates. - xOr */ | |
7620 | 462 if (GTK_WIDGET_VISIBLE(w)) |
5228 | 463 gtk_window_get_position(GTK_WINDOW(w), &x, &y); |
7620 | 464 else |
465 return FALSE; /* carry on normally */ | |
466 | |
467 /* don't save if nothing changed */ | |
468 if (x == gaim_prefs_get_int("/gaim/gtk/blist/x") && | |
469 y == gaim_prefs_get_int("/gaim/gtk/blist/y") && | |
470 event->width == gaim_prefs_get_int("/gaim/gtk/blist/width") && | |
471 event->height == gaim_prefs_get_int("/gaim/gtk/blist/height")) { | |
472 | |
473 return FALSE; /* carry on normally */ | |
5228 | 474 } |
475 | |
7620 | 476 /* don't save off-screen positioning */ |
477 if (x + event->width < 0 || | |
478 y + event->height < 0 || | |
479 x > gdk_screen_width() || | |
480 y > gdk_screen_height()) { | |
481 | |
482 return FALSE; /* carry on normally */ | |
483 } | |
484 | |
485 /* store the position */ | |
486 gaim_prefs_set_int("/gaim/gtk/blist/x", x); | |
487 gaim_prefs_set_int("/gaim/gtk/blist/y", y); | |
488 gaim_prefs_set_int("/gaim/gtk/blist/width", event->width); | |
489 gaim_prefs_set_int("/gaim/gtk/blist/height", event->height); | |
490 | |
5228 | 491 /* continue to handle event normally */ |
492 return FALSE; | |
493 } | |
494 | |
495 static gboolean gtk_blist_visibility_cb(GtkWidget *w, GdkEventVisibility *event, gpointer data) | |
496 { | |
497 if (event->state == GDK_VISIBILITY_FULLY_OBSCURED) | |
498 gaim_gtk_blist_obscured = TRUE; | |
499 else | |
500 gaim_gtk_blist_obscured = FALSE; | |
501 | |
502 /* continue to handle event normally */ | |
503 return FALSE; | |
504 } | |
505 | |
7620 | 506 static void gtk_blist_menu_info_cb(GtkWidget *w, GaimBuddy *b) |
5228 | 507 { |
508 serv_get_info(b->account->gc, b->name); | |
509 } | |
510 | |
7620 | 511 static void gtk_blist_menu_im_cb(GtkWidget *w, GaimBuddy *b) |
5228 | 512 { |
7620 | 513 GaimConversation *conv = gaim_conversation_new(GAIM_CONV_IM, b->account, |
514 b->name); | |
515 | |
516 if(conv) { | |
517 GaimConvWindow *win = gaim_conversation_get_window(conv); | |
518 | |
519 gaim_conv_window_raise(win); | |
520 gaim_conv_window_switch_conversation( | |
521 gaim_conversation_get_window(conv), | |
522 gaim_conversation_get_index(conv)); | |
523 | |
524 if (GAIM_IS_GTK_WINDOW(win)) | |
525 gtk_window_present(GTK_WINDOW(GAIM_GTK_WINDOW(win)->window)); | |
526 } | |
5228 | 527 } |
528 | |
7620 | 529 static void gtk_blist_menu_autojoin_cb(GtkWidget *w, GaimChat *chat) |
530 { | |
7693 | 531 gaim_blist_node_set_bool((GaimBlistNode*)chat, "gtk-autojoin", |
532 gtk_check_menu_item_get_active(GTK_CHECK_MENU_ITEM(w))); | |
7620 | 533 |
534 gaim_blist_save(); | |
535 } | |
536 | |
537 static void gtk_blist_menu_join_cb(GtkWidget *w, GaimChat *chat) | |
5228 | 538 { |
5234 | 539 serv_join_chat(chat->account->gc, chat->components); |
540 } | |
541 | |
542 static void gtk_blist_menu_alias_cb(GtkWidget *w, GaimBlistNode *node) | |
543 { | |
544 if(GAIM_BLIST_NODE_IS_BUDDY(node)) | |
7620 | 545 alias_dialog_bud((GaimBuddy*)node); |
546 else if(GAIM_BLIST_NODE_IS_CONTACT(node)) | |
547 alias_dialog_contact((GaimContact*)node); | |
5234 | 548 else if(GAIM_BLIST_NODE_IS_CHAT(node)) |
7620 | 549 alias_dialog_blist_chat((GaimChat*)node); |
5228 | 550 } |
551 | |
7620 | 552 static void gtk_blist_menu_bp_cb(GtkWidget *w, GaimBuddy *b) |
5228 | 553 { |
7620 | 554 gaim_gtkpounce_dialog_show(b->account, b->name, NULL); |
5228 | 555 } |
556 | |
7620 | 557 static void gtk_blist_menu_showlog_cb(GtkWidget *w, GaimBuddy *b) |
5228 | 558 { |
7620 | 559 gaim_gtk_log_show(b->name, b->account); |
560 } | |
561 | |
5228 | 562 static void gtk_blist_show_systemlog_cb() |
563 { | |
8573 | 564 gaim_gtk_syslog_show(); |
5228 | 565 } |
566 | |
567 static void gtk_blist_show_onlinehelp_cb() | |
568 { | |
7620 | 569 gaim_notify_uri(NULL, GAIM_WEBSITE "documentation.php"); |
5228 | 570 } |
571 | |
572 static void gtk_blist_button_im_cb(GtkWidget *w, GtkTreeView *tv) | |
573 { | |
574 GtkTreeIter iter; | |
575 GtkTreeModel *model = gtk_tree_view_get_model(tv); | |
576 GtkTreeSelection *sel = gtk_tree_view_get_selection(tv); | |
577 | |
578 if(gtk_tree_selection_get_selected(sel, &model, &iter)){ | |
579 GaimBlistNode *node; | |
580 | |
581 gtk_tree_model_get(GTK_TREE_MODEL(gtkblist->treemodel), &iter, NODE_COLUMN, &node, -1); | |
582 if (GAIM_BLIST_NODE_IS_BUDDY(node)) { | |
7620 | 583 gaim_conversation_new(GAIM_CONV_IM, ((GaimBuddy*)node)->account, ((GaimBuddy*)node)->name); |
584 return; | |
585 } else if(GAIM_BLIST_NODE_IS_CONTACT(node)) { | |
586 GaimBuddy *buddy = | |
587 gaim_contact_get_priority_buddy((GaimContact*)node); | |
588 gaim_conversation_new(GAIM_CONV_IM, buddy->account, buddy->name); | |
5228 | 589 return; |
590 } | |
591 } | |
592 show_im_dialog(); | |
593 } | |
594 | |
595 static void gtk_blist_button_info_cb(GtkWidget *w, GtkTreeView *tv) | |
596 { | |
597 GtkTreeIter iter; | |
598 GtkTreeModel *model = gtk_tree_view_get_model(tv); | |
599 GtkTreeSelection *sel = gtk_tree_view_get_selection(tv); | |
600 | |
601 if(gtk_tree_selection_get_selected(sel, &model, &iter)){ | |
602 GaimBlistNode *node; | |
603 | |
604 gtk_tree_model_get(GTK_TREE_MODEL(gtkblist->treemodel), &iter, NODE_COLUMN, &node, -1); | |
605 if (GAIM_BLIST_NODE_IS_BUDDY(node)) { | |
7620 | 606 serv_get_info(((GaimBuddy*)node)->account->gc, ((GaimBuddy*)node)->name); |
607 return; | |
608 } else if(GAIM_BLIST_NODE_IS_CONTACT(node)) { | |
609 GaimBuddy *buddy = gaim_contact_get_priority_buddy((GaimContact*)node); | |
610 serv_get_info(buddy->account->gc, buddy->name); | |
5228 | 611 return; |
612 } | |
613 } | |
614 show_info_dialog(); | |
615 } | |
616 | |
8303
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
617 static void |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
618 do_join_chat(GaimGtkJoinChatData *data) |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
619 { |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
620 if (data) |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
621 { |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
622 GHashTable *components = |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
623 g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
624 GList *tmp; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
625 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
626 for (tmp = data->entries; tmp != NULL; tmp = tmp->next) |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
627 { |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
628 if (g_object_get_data(tmp->data, "is_spin")) |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
629 { |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
630 g_hash_table_replace(components, |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
631 g_strdup(g_object_get_data(tmp->data, "identifier")), |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
632 g_strdup_printf("%d", |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
633 gtk_spin_button_get_value_as_int(tmp->data))); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
634 } |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
635 else |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
636 { |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
637 g_hash_table_replace(components, |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
638 g_strdup(g_object_get_data(tmp->data, "identifier")), |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
639 g_strdup(gtk_entry_get_text(tmp->data))); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
640 } |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
641 } |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
642 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
643 serv_join_chat(gaim_account_get_connection(data->account), components); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
644 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
645 g_hash_table_destroy(components); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
646 } |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
647 } |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
648 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
649 static void |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
650 rebuild_joinchat_entries(GaimGtkJoinChatData *data) |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
651 { |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
652 GaimConnection *gc; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
653 GList *list, *tmp; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
654 struct proto_chat_entry *pce; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
655 gboolean focus = TRUE; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
656 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
657 gc = gaim_account_get_connection(data->account); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
658 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
659 while (GTK_BOX(data->entries_box)->children) |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
660 { |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
661 gtk_container_remove(GTK_CONTAINER(data->entries_box), |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
662 ((GtkBoxChild *)GTK_BOX(data->entries_box)->children->data)->widget); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
663 } |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
664 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
665 if (data->entries != NULL) |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
666 g_list_free(data->entries); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
667 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
668 data->entries = NULL; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
669 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
670 list = GAIM_PLUGIN_PROTOCOL_INFO(gc->prpl)->chat_info(gc); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
671 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
672 for (tmp = list; tmp; tmp = tmp->next) |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
673 { |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
674 GtkWidget *label; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
675 GtkWidget *rowbox; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
676 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
677 pce = tmp->data; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
678 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
679 rowbox = gtk_hbox_new(FALSE, 12); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
680 gtk_box_pack_start(GTK_BOX(data->entries_box), rowbox, FALSE, FALSE, 0); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
681 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
682 label = gtk_label_new_with_mnemonic(pce->label); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
683 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
684 gtk_size_group_add_widget(data->sg, label); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
685 gtk_box_pack_start(GTK_BOX(rowbox), label, FALSE, FALSE, 0); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
686 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
687 if (pce->is_int) |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
688 { |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
689 GtkObject *adjust; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
690 GtkWidget *spin; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
691 adjust = gtk_adjustment_new(pce->min, pce->min, pce->max, |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
692 1, 10, 10); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
693 spin = gtk_spin_button_new(GTK_ADJUSTMENT(adjust), 1, 0); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
694 g_object_set_data(G_OBJECT(spin), "is_spin", |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
695 GINT_TO_POINTER(TRUE)); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
696 g_object_set_data(G_OBJECT(spin), "identifier", pce->identifier); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
697 data->entries = g_list_append(data->entries, spin); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
698 gtk_widget_set_size_request(spin, 50, -1); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
699 gtk_box_pack_end(GTK_BOX(rowbox), spin, FALSE, FALSE, 0); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
700 gtk_label_set_mnemonic_widget(GTK_LABEL(label), GTK_WIDGET(spin)); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
701 gaim_set_accessible_label (spin, label); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
702 } |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
703 else |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
704 { |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
705 GtkWidget *entry = gtk_entry_new(); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
706 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
707 gtk_entry_set_activates_default(GTK_ENTRY(entry), TRUE); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
708 g_object_set_data(G_OBJECT(entry), "identifier", pce->identifier); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
709 data->entries = g_list_append(data->entries, entry); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
710 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
711 if (pce->def) |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
712 gtk_entry_set_text(GTK_ENTRY(entry), pce->def); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
713 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
714 if (focus) |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
715 { |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
716 gtk_widget_grab_focus(entry); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
717 focus = FALSE; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
718 } |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
719 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
720 if (pce->secret) |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
721 gtk_entry_set_visibility(GTK_ENTRY(entry), FALSE); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
722 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
723 gtk_box_pack_end(GTK_BOX(rowbox), entry, TRUE, TRUE, 0); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
724 gtk_label_set_mnemonic_widget(GTK_LABEL(label), GTK_WIDGET(entry)); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
725 gaim_set_accessible_label (entry, label); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
726 } |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
727 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
728 g_free(pce); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
729 } |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
730 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
731 g_list_free(list); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
732 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
733 gtk_widget_show_all(data->entries_box); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
734 } |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
735 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
736 static void |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
737 join_chat_select_account_cb(GObject *w, GaimAccount *account, |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
738 GaimGtkJoinChatData *data) |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
739 { |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
740 if (gaim_account_get_protocol(data->account) == |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
741 gaim_account_get_protocol(account)) |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
742 { |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
743 data->account = account; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
744 } |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
745 else |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
746 { |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
747 data->account = account; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
748 rebuild_joinchat_entries(data); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
749 } |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
750 } |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
751 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
752 static gboolean |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
753 join_chat_check_account_func(GaimAccount *account) |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
754 { |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
755 GaimConnection *gc = gaim_account_get_connection(account); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
756 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
757 return (GAIM_PLUGIN_PROTOCOL_INFO(gc->prpl)->chat_info != NULL); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
758 } |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
759 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
760 static void |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
761 do_joinchat(GtkWidget *dialog, int id, GaimGtkJoinChatData *info) |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
762 { |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
763 switch(id) |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
764 { |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
765 case GTK_RESPONSE_OK: |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
766 do_join_chat(info); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
767 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
768 break; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
769 } |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
770 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
771 gtk_widget_destroy(GTK_WIDGET(dialog)); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
772 g_list_free(info->entries); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
773 g_free(info); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
774 } |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
775 |
8305
57bdd25752c1
[gaim-migrate @ 9029]
Christian Hammond <chipx86@chipx86.com>
parents:
8303
diff
changeset
|
776 void |
57bdd25752c1
[gaim-migrate @ 9029]
Christian Hammond <chipx86@chipx86.com>
parents:
8303
diff
changeset
|
777 gaim_gtk_blist_show_join_chat(void) |
8303
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
778 { |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
779 GtkWidget *hbox, *vbox; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
780 GtkWidget *rowbox; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
781 GtkWidget *label; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
782 GList *c; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
783 GaimGtkBuddyList *gtkblist; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
784 GtkWidget *img = NULL; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
785 GaimConnection *gc = NULL; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
786 GaimGtkJoinChatData *data = NULL; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
787 int numaccounts = 0; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
788 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
789 /* Count how many protocols support chat */ |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
790 for (c = gaim_connections_get_all(); c != NULL; c = c->next) |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
791 { |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
792 gc = c->data; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
793 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
794 if (GAIM_PLUGIN_PROTOCOL_INFO(gc->prpl)->join_chat) |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
795 numaccounts++; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
796 } |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
797 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
798 if (numaccounts <= 0) |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
799 { |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
800 gaim_notify_error(NULL, NULL, |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
801 _("You are not currently signed on with any " |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
802 "protocols that have the ability to chat."), |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
803 NULL); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
804 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
805 return; |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
806 } |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
807 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
808 gtkblist = GAIM_GTK_BLIST(gaim_get_blist()); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
809 img = gtk_image_new_from_stock(GAIM_STOCK_DIALOG_QUESTION, |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
810 GTK_ICON_SIZE_DIALOG); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
811 data = g_new0(GaimGtkJoinChatData, 1); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
812 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
813 data->window = gtk_dialog_new_with_buttons( |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
814 _("Join a Chat"), |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
815 gtkblist->window ? GTK_WINDOW(gtkblist->window) : NULL, 0, |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
816 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, |
8308 | 817 GAIM_STOCK_CHAT, GTK_RESPONSE_OK, NULL); |
8303
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
818 gtk_dialog_set_default_response(GTK_DIALOG(data->window), GTK_RESPONSE_OK); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
819 gtk_container_set_border_width(GTK_CONTAINER(data->window), 6); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
820 gtk_window_set_resizable(GTK_WINDOW(data->window), FALSE); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
821 gtk_dialog_set_has_separator(GTK_DIALOG(data->window), FALSE); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
822 gtk_box_set_spacing(GTK_BOX(GTK_DIALOG(data->window)->vbox), 12); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
823 gtk_container_set_border_width( |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
824 GTK_CONTAINER(GTK_DIALOG(data->window)->vbox), 6); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
825 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
826 hbox = gtk_hbox_new(FALSE, 12); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
827 gtk_container_add(GTK_CONTAINER(GTK_DIALOG(data->window)->vbox), hbox); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
828 gtk_box_pack_start(GTK_BOX(hbox), img, FALSE, FALSE, 0); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
829 gtk_misc_set_alignment(GTK_MISC(img), 0, 0); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
830 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
831 vbox = gtk_vbox_new(FALSE, 5); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
832 gtk_container_set_border_width(GTK_CONTAINER(vbox), 0); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
833 gtk_container_add(GTK_CONTAINER(hbox), vbox); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
834 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
835 label = gtk_label_new(_("Please enter the appropriate information " |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
836 "about the chat you would like to join.\n")); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
837 gtk_label_set_line_wrap(GTK_LABEL(label), TRUE); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
838 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
839 gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
840 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
841 rowbox = gtk_hbox_new(FALSE, 12); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
842 gtk_box_pack_start(GTK_BOX(vbox), rowbox, TRUE, TRUE, 0); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
843 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
844 data->sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
845 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
846 if (numaccounts > 1) |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
847 { |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
848 label = gtk_label_new_with_mnemonic(_("_Account:")); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
849 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
850 gtk_box_pack_start(GTK_BOX(rowbox), label, FALSE, FALSE, 0); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
851 gtk_size_group_add_widget(data->sg, label); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
852 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
853 data->account_menu = gaim_gtk_account_option_menu_new(NULL, FALSE, |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
854 G_CALLBACK(join_chat_select_account_cb), |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
855 join_chat_check_account_func, data); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
856 gtk_box_pack_start(GTK_BOX(rowbox), data->account_menu, TRUE, TRUE, 0); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
857 gtk_label_set_mnemonic_widget(GTK_LABEL(label), |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
858 GTK_WIDGET(data->account_menu)); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
859 gaim_set_accessible_label (data->account_menu, label); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
860 } |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
861 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
862 data->entries_box = gtk_vbox_new(FALSE, 5); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
863 gtk_container_add(GTK_CONTAINER(vbox), data->entries_box); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
864 gtk_container_set_border_width(GTK_CONTAINER(data->entries_box), 0); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
865 |
8444 | 866 for (c = gaim_connections_get_all(); c != NULL; c = c->next) |
867 { | |
868 gc = c->data; | |
869 | |
870 if (GAIM_PLUGIN_PROTOCOL_INFO(gc->prpl)->join_chat) | |
871 break; | |
872 } | |
873 data->account = gaim_connection_get_account(gc); | |
8303
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
874 rebuild_joinchat_entries(data); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
875 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
876 g_signal_connect(G_OBJECT(data->window), "response", |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
877 G_CALLBACK(do_joinchat), data); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
878 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
879 g_object_unref(data->sg); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
880 |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
881 gtk_widget_show_all(data->window); |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
882 } |
4eb4b2a6c604
[gaim-migrate @ 9027]
Christian Hammond <chipx86@chipx86.com>
parents:
8302
diff
changeset
|
883 |
5234 | 884 static void gtk_blist_button_chat_cb(GtkWidget *w, GtkTreeView *tv) |
5228 | 885 { |
5234 | 886 GtkTreeIter iter; |
887 GtkTreeModel *model = gtk_tree_view_get_model(tv); | |
888 GtkTreeSelection *sel = gtk_tree_view_get_selection(tv); | |
889 | |
890 if(gtk_tree_selection_get_selected(sel, &model, &iter)){ | |
891 GaimBlistNode *node; | |
892 | |
893 gtk_tree_model_get(GTK_TREE_MODEL(gtkblist->treemodel), &iter, NODE_COLUMN, &node, -1); | |
894 if (GAIM_BLIST_NODE_IS_CHAT(node)) { | |
7620 | 895 serv_join_chat(((GaimChat *)node)->account->gc, ((GaimChat *)node)->components); |
5234 | 896 return; |
897 } | |
898 } | |
8305
57bdd25752c1
[gaim-migrate @ 9029]
Christian Hammond <chipx86@chipx86.com>
parents:
8303
diff
changeset
|
899 gaim_gtk_blist_show_join_chat(); |
5228 | 900 } |
901 | |
902 static void gtk_blist_button_away_cb(GtkWidget *w, gpointer data) | |
903 { | |
904 gtk_menu_popup(GTK_MENU(awaymenu), NULL, NULL, NULL, NULL, 1, GDK_CURRENT_TIME); | |
905 } | |
906 | |
907 static void gtk_blist_row_expanded_cb(GtkTreeView *tv, GtkTreeIter *iter, GtkTreePath *path, gpointer user_data) { | |
908 GaimBlistNode *node; | |
909 GValue val = {0,}; | |
910 | |
911 gtk_tree_model_get_value(GTK_TREE_MODEL(gtkblist->treemodel), iter, NODE_COLUMN, &val); | |
912 | |
913 node = g_value_get_pointer(&val); | |
914 | |
915 if (GAIM_BLIST_NODE_IS_GROUP(node)) { | |
7693 | 916 gaim_blist_node_set_bool(node, "collapsed", FALSE); |
5228 | 917 gaim_blist_save(); |
918 } | |
919 } | |
920 | |
921 static void gtk_blist_row_collapsed_cb(GtkTreeView *tv, GtkTreeIter *iter, GtkTreePath *path, gpointer user_data) { | |
922 GaimBlistNode *node; | |
923 GValue val = {0,}; | |
924 | |
925 gtk_tree_model_get_value(GTK_TREE_MODEL(gtkblist->treemodel), iter, NODE_COLUMN, &val); | |
926 | |
927 node = g_value_get_pointer(&val); | |
928 | |
929 if (GAIM_BLIST_NODE_IS_GROUP(node)) { | |
7693 | 930 gaim_blist_node_set_bool(node, "collapsed", TRUE); |
5228 | 931 gaim_blist_save(); |
7620 | 932 } else if(GAIM_BLIST_NODE_IS_CONTACT(node)) { |
933 gaim_gtk_blist_collapse_contact_cb(NULL, node); | |
5228 | 934 } |
935 } | |
936 | |
937 static void gtk_blist_row_activated_cb(GtkTreeView *tv, GtkTreePath *path, GtkTreeViewColumn *col, gpointer data) { | |
938 GaimBlistNode *node; | |
939 GtkTreeIter iter; | |
940 GValue val = { 0, }; | |
941 | |
942 gtk_tree_model_get_iter(GTK_TREE_MODEL(gtkblist->treemodel), &iter, path); | |
943 | |
944 gtk_tree_model_get_value (GTK_TREE_MODEL(gtkblist->treemodel), &iter, NODE_COLUMN, &val); | |
945 node = g_value_get_pointer(&val); | |
946 | |
7620 | 947 if(GAIM_BLIST_NODE_IS_CONTACT(node) || GAIM_BLIST_NODE_IS_BUDDY(node)) { |
948 GaimBuddy *buddy; | |
949 GaimConversation *conv; | |
950 | |
951 if(GAIM_BLIST_NODE_IS_CONTACT(node)) | |
952 buddy = gaim_contact_get_priority_buddy((GaimContact*)node); | |
953 else | |
954 buddy = (GaimBuddy*)node; | |
955 | |
956 conv = gaim_conversation_new(GAIM_CONV_IM, buddy->account, buddy->name); | |
5489
5b5aa701d46b
[gaim-migrate @ 5885]
Christian Hammond <chipx86@chipx86.com>
parents:
5451
diff
changeset
|
957 |
5228 | 958 if(conv) { |
7620 | 959 GaimConvWindow *win = gaim_conversation_get_window(conv); |
960 | |
961 gaim_conv_window_raise(win); | |
962 gaim_conv_window_switch_conversation( | |
5228 | 963 gaim_conversation_get_window(conv), |
964 gaim_conversation_get_index(conv)); | |
5489
5b5aa701d46b
[gaim-migrate @ 5885]
Christian Hammond <chipx86@chipx86.com>
parents:
5451
diff
changeset
|
965 |
5b5aa701d46b
[gaim-migrate @ 5885]
Christian Hammond <chipx86@chipx86.com>
parents:
5451
diff
changeset
|
966 if (GAIM_IS_GTK_WINDOW(win)) |
5b5aa701d46b
[gaim-migrate @ 5885]
Christian Hammond <chipx86@chipx86.com>
parents:
5451
diff
changeset
|
967 gtk_window_present(GTK_WINDOW(GAIM_GTK_WINDOW(win)->window)); |
5228 | 968 } |
5234 | 969 } else if (GAIM_BLIST_NODE_IS_CHAT(node)) { |
7620 | 970 serv_join_chat(((GaimChat *)node)->account->gc, ((GaimChat *)node)->components); |
5228 | 971 } else if (GAIM_BLIST_NODE_IS_GROUP(node)) { |
972 if (gtk_tree_view_row_expanded(tv, path)) | |
973 gtk_tree_view_collapse_row(tv, path); | |
974 else | |
975 gtk_tree_view_expand_row(tv,path,FALSE); | |
976 } | |
977 } | |
978 | |
5234 | 979 static void gaim_gtk_blist_add_chat_cb() |
980 { | |
981 GtkTreeSelection *sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(gtkblist->treeview)); | |
982 GtkTreeIter iter; | |
983 GaimBlistNode *node; | |
984 | |
985 if(gtk_tree_selection_get_selected(sel, NULL, &iter)){ | |
986 gtk_tree_model_get(GTK_TREE_MODEL(gtkblist->treemodel), &iter, NODE_COLUMN, &node, -1); | |
7620 | 987 if (GAIM_BLIST_NODE_IS_BUDDY(node)) |
7859 | 988 gaim_blist_request_add_chat(NULL, (GaimGroup*)node->parent->parent, NULL); |
7620 | 989 if (GAIM_BLIST_NODE_IS_CONTACT(node) || GAIM_BLIST_NODE_IS_CHAT(node)) |
7859 | 990 gaim_blist_request_add_chat(NULL, (GaimGroup*)node->parent, NULL); |
5234 | 991 else if (GAIM_BLIST_NODE_IS_GROUP(node)) |
7859 | 992 gaim_blist_request_add_chat(NULL, (GaimGroup*)node, NULL); |
5234 | 993 } |
994 else { | |
7859 | 995 gaim_blist_request_add_chat(NULL, NULL, NULL); |
5234 | 996 } |
997 } | |
998 | |
5228 | 999 static void gaim_gtk_blist_add_buddy_cb() |
1000 { | |
1001 GtkTreeSelection *sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(gtkblist->treeview)); | |
1002 GtkTreeIter iter; | |
1003 GaimBlistNode *node; | |
1004 | |
1005 if(gtk_tree_selection_get_selected(sel, NULL, &iter)){ | |
1006 gtk_tree_model_get(GTK_TREE_MODEL(gtkblist->treemodel), &iter, NODE_COLUMN, &node, -1); | |
7620 | 1007 if (GAIM_BLIST_NODE_IS_BUDDY(node)) { |
1008 gaim_blist_request_add_buddy(NULL, NULL, ((GaimGroup*)node->parent->parent)->name, | |
1009 NULL); | |
1010 } else if (GAIM_BLIST_NODE_IS_CONTACT(node) | |
1011 || GAIM_BLIST_NODE_IS_CHAT(node)) { | |
1012 gaim_blist_request_add_buddy(NULL, NULL, ((GaimGroup*)node->parent)->name, NULL); | |
1013 } else if (GAIM_BLIST_NODE_IS_GROUP(node)) { | |
1014 gaim_blist_request_add_buddy(NULL, NULL, ((GaimGroup*)node)->name, NULL); | |
1015 } | |
5228 | 1016 } |
1017 else { | |
7620 | 1018 gaim_blist_request_add_buddy(NULL, NULL, NULL, NULL); |
1019 } | |
1020 } | |
1021 | |
1022 static void | |
1023 gaim_gtk_blist_remove_cb (GtkWidget *w, GaimBlistNode *node) | |
1024 { | |
1025 if (GAIM_BLIST_NODE_IS_BUDDY(node)) { | |
1026 show_confirm_del((GaimBuddy*)node); | |
1027 } else if (GAIM_BLIST_NODE_IS_CHAT(node)) { | |
1028 show_confirm_del_blist_chat((GaimChat*)node); | |
1029 } else if (GAIM_BLIST_NODE_IS_GROUP(node)) { | |
1030 show_confirm_del_group((GaimGroup*)node); | |
1031 } else if (GAIM_BLIST_NODE_IS_CONTACT(node)) { | |
1032 show_confirm_del_contact((GaimContact*)node); | |
5228 | 1033 } |
1034 } | |
1035 | |
1036 static void | |
7620 | 1037 gaim_gtk_blist_expand_contact_cb(GtkWidget *w, GaimBlistNode *node) |
5228 | 1038 { |
7620 | 1039 struct _gaim_gtk_blist_node *gtknode; |
1040 GaimBlistNode *bnode; | |
1041 | |
1042 if(!GAIM_BLIST_NODE_IS_CONTACT(node)) | |
1043 return; | |
1044 | |
1045 gtknode = (struct _gaim_gtk_blist_node *)node->ui_data; | |
1046 | |
1047 gtknode->contact_expanded = TRUE; | |
1048 | |
1049 for(bnode = node->child; bnode; bnode = bnode->next) { | |
1050 gaim_gtk_blist_update(NULL, bnode); | |
1051 } | |
1052 gaim_gtk_blist_update(NULL, node); | |
1053 } | |
1054 | |
1055 static void | |
1056 gaim_gtk_blist_collapse_contact_cb(GtkWidget *w, GaimBlistNode *node) | |
1057 { | |
1058 GaimBlistNode *bnode; | |
1059 struct _gaim_gtk_blist_node *gtknode; | |
1060 | |
1061 if(!GAIM_BLIST_NODE_IS_CONTACT(node)) | |
1062 return; | |
1063 | |
1064 gtknode = (struct _gaim_gtk_blist_node *)node->ui_data; | |
1065 | |
1066 gtknode->contact_expanded = FALSE; | |
1067 | |
1068 for(bnode = node->child; bnode; bnode = bnode->next) { | |
1069 gaim_gtk_blist_update(NULL, bnode); | |
5228 | 1070 } |
1071 } | |
1072 | |
7620 | 1073 static void gaim_proto_menu_cb(GtkMenuItem *item, GaimBuddy *b) |
5228 | 1074 { |
1075 struct proto_buddy_menu *pbm = g_object_get_data(G_OBJECT(item), "gaimcallback"); | |
1076 if (pbm->callback) | |
1077 pbm->callback(pbm->gc, b->name); | |
1078 } | |
1079 | |
7620 | 1080 static void make_buddy_menu(GtkWidget *menu, GaimPluginProtocolInfo *prpl_info, GaimBuddy *b) |
1081 { | |
8710
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1082 GList *list = NULL, *l = NULL; |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1083 gboolean dup_separator = FALSE; |
7620 | 1084 GtkWidget *menuitem; |
1085 | |
1086 if (prpl_info && prpl_info->get_info) { | |
8137 | 1087 gaim_new_item_from_stock(menu, _("Get _Info"), GAIM_STOCK_INFO, |
7620 | 1088 G_CALLBACK(gtk_blist_menu_info_cb), b, 0, 0, NULL); |
1089 } | |
8137 | 1090 gaim_new_item_from_stock(menu, _("I_M"), GAIM_STOCK_IM, |
7620 | 1091 G_CALLBACK(gtk_blist_menu_im_cb), b, 0, 0, NULL); |
1092 gaim_new_item_from_stock(menu, _("Add Buddy _Pounce"), NULL, | |
1093 G_CALLBACK(gtk_blist_menu_bp_cb), b, 0, 0, NULL); | |
1094 gaim_new_item_from_stock(menu, _("View _Log"), NULL, | |
1095 G_CALLBACK(gtk_blist_menu_showlog_cb), b, 0, 0, NULL); | |
1096 | |
1097 if (prpl_info && prpl_info->buddy_menu) { | |
1098 list = prpl_info->buddy_menu(b->account->gc, b->name); | |
8710
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1099 |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1100 for(l = list; l; l = l->next) { |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1101 struct proto_buddy_menu *pbm = l->data; |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1102 |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1103 /* draw "-" titled menu items as a separator. Since the |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1104 pbm is not being used in a callback, it needs to be |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1105 freed. Also, do some simple checking to prevent |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1106 doubled-up separators */ |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1107 if('-' == *pbm->label) { |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1108 if(! dup_separator) { |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1109 gaim_separator(menu); |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1110 dup_separator = TRUE; |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1111 } |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1112 g_free(pbm); |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1113 continue; |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1114 } else { |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1115 dup_separator = FALSE; |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1116 } |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1117 |
7620 | 1118 menuitem = gtk_menu_item_new_with_mnemonic(pbm->label); |
1119 g_object_set_data(G_OBJECT(menuitem), "gaimcallback", pbm); | |
1120 g_signal_connect(G_OBJECT(menuitem), "activate", | |
8710
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1121 G_CALLBACK(gaim_proto_menu_cb), b); |
7620 | 1122 gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem); |
1123 } | |
8710
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1124 g_list_free(list); |
7620 | 1125 } |
1126 | |
8710
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1127 /* check for additional menu items which may be added by other |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1128 plugins. */ |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1129 list = gaim_buddy_get_extended_menu(b); |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1130 for(l = list; l; l = l->next) { |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1131 struct proto_buddy_menu *pbm = l->data; |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1132 |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1133 /* draw "-" titled menu items as a separator. see previous, |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1134 identical-looking code. */ |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1135 if('-' == *pbm->label) { |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1136 if(! dup_separator) { |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1137 gaim_separator(menu); |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1138 dup_separator = TRUE; |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1139 } |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1140 g_free(pbm); |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1141 continue; |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1142 } else { |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1143 dup_separator = FALSE; |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1144 } |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1145 |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1146 menuitem = gtk_menu_item_new_with_mnemonic(pbm->label); |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1147 g_object_set_data(G_OBJECT(menuitem), "gaimcallback", pbm); |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1148 g_signal_connect(G_OBJECT(menuitem), "activate", |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1149 G_CALLBACK(gaim_proto_menu_cb), b); |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1150 gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem); |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1151 } |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1152 g_list_free(list); |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1153 |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8697
diff
changeset
|
1154 /* moving on to the old ui-specific plugin menus */ |
8823 | 1155 gaim_signal_emit(gaim_gtk_blist_get_handle(), |
7620 | 1156 "drawing-menu", menu, b); |
1157 | |
1158 gaim_separator(menu); | |
8302
462ead6fc1a0
[gaim-migrate @ 9026]
Christian Hammond <chipx86@chipx86.com>
parents:
8259
diff
changeset
|
1159 gaim_new_item_from_stock(menu, _("_Alias..."), GAIM_STOCK_ALIAS, |
7620 | 1160 G_CALLBACK(gtk_blist_menu_alias_cb), b, 0, 0, NULL); |
1161 gaim_new_item_from_stock(menu, _("_Remove"), GTK_STOCK_REMOVE, | |
1162 G_CALLBACK(gaim_gtk_blist_remove_cb), b, | |
1163 0, 0, NULL); | |
1164 } | |
1165 | |
1166 static gboolean gtk_blist_key_press_cb(GtkWidget *tv, GdkEventKey *event, | |
1167 gpointer null) | |
1168 { | |
1169 GaimBlistNode *node; | |
1170 GValue val = { 0, }; | |
1171 GtkTreeIter iter; | |
1172 GtkTreeSelection *sel; | |
1173 | |
1174 sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(tv)); | |
1175 if(!gtk_tree_selection_get_selected(sel, NULL, &iter)) | |
1176 return FALSE; | |
1177 | |
1178 gtk_tree_model_get_value(GTK_TREE_MODEL(gtkblist->treemodel), &iter, | |
1179 NODE_COLUMN, &val); | |
1180 node = g_value_get_pointer(&val); | |
1181 | |
1182 if(event->state & GDK_CONTROL_MASK && | |
1183 (event->keyval == 'o' || event->keyval == 'O')) { | |
1184 GaimBuddy *buddy; | |
1185 | |
1186 if(GAIM_BLIST_NODE_IS_CONTACT(node)) { | |
1187 buddy = gaim_contact_get_priority_buddy((GaimContact*)node); | |
1188 } else if(GAIM_BLIST_NODE_IS_BUDDY(node)) { | |
1189 buddy = (GaimBuddy*)node; | |
1190 } else { | |
1191 return FALSE; | |
1192 } | |
1193 if(buddy) | |
1194 serv_get_info(buddy->account->gc, buddy->name); | |
1195 } | |
1196 | |
1197 return FALSE; | |
1198 } | |
1199 | |
8143 | 1200 static GtkWidget * |
1201 create_group_menu (GaimBlistNode *node) | |
1202 { | |
1203 GtkWidget *menu; | |
1204 | |
1205 menu = gtk_menu_new(); | |
1206 gaim_new_item_from_stock(menu, _("Add a _Buddy"), GTK_STOCK_ADD, | |
1207 G_CALLBACK(gaim_gtk_blist_add_buddy_cb), node, 0, 0, NULL); | |
1208 gaim_new_item_from_stock(menu, _("Add a C_hat"), GTK_STOCK_ADD, | |
1209 G_CALLBACK(gaim_gtk_blist_add_chat_cb), node, 0, 0, NULL); | |
1210 gaim_new_item_from_stock(menu, _("_Delete Group"), GTK_STOCK_REMOVE, | |
1211 G_CALLBACK(gaim_gtk_blist_remove_cb), node, 0, 0, NULL); | |
1212 gaim_new_item_from_stock(menu, _("_Rename"), NULL, | |
1213 G_CALLBACK(show_rename_group), node, 0, 0, NULL); | |
1214 return menu; | |
1215 } | |
1216 | |
8586 | 1217 static void gaim_proto_chat_menu_cb(GtkMenuItem *item, GaimChat *c) |
1218 { | |
1219 struct proto_chat_menu *pcm = g_object_get_data(G_OBJECT(item), "gaimcallback"); | |
1220 if (pcm->callback) | |
1221 pcm->callback(pcm->gc, c->components); | |
1222 } | |
1223 | |
8143 | 1224 static GtkWidget * |
8586 | 1225 create_chat_menu (GaimBlistNode *node, |
1226 GaimChat *c, | |
1227 GaimPlugin *prpl, | |
1228 GaimPluginProtocolInfo *prpl_info) | |
8143 | 1229 { |
1230 GtkWidget *menu; | |
8586 | 1231 GList *list; |
1232 GtkWidget *menuitem; | |
8197 | 1233 gboolean autojoin = (gaim_blist_node_get_bool(node, |
8198 | 1234 "gtk-autojoin") || (gaim_blist_node_get_string(node, |
1235 "gtk-autojoin") != NULL)); | |
8143 | 1236 |
1237 menu = gtk_menu_new(); | |
1238 gaim_new_item_from_stock(menu, _("_Join"), GAIM_STOCK_CHAT, | |
1239 G_CALLBACK(gtk_blist_menu_join_cb), node, 0, 0, NULL); | |
1240 gaim_new_check_item(menu, _("Auto-Join"), | |
1241 G_CALLBACK(gtk_blist_menu_autojoin_cb), node, | |
1242 autojoin); | |
8586 | 1243 |
1244 if (prpl_info && prpl_info->chat_menu) { | |
1245 list = prpl_info->chat_menu(c->account->gc, c->components); | |
1246 while (list) { | |
1247 struct proto_chat_menu *pcm = list->data; | |
1248 menuitem = gtk_menu_item_new_with_mnemonic(pcm->label); | |
1249 g_object_set_data(G_OBJECT(menuitem), "gaimcallback", pcm); | |
1250 g_signal_connect(G_OBJECT(menuitem), "activate", | |
1251 G_CALLBACK(gaim_proto_chat_menu_cb), c); | |
1252 gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem); | |
1253 list = list->next; | |
1254 } | |
1255 } | |
8824 | 1256 gaim_signal_emit(gaim_gtk_blist_get_handle(), |
8586 | 1257 "drawing-menu", menu, c); |
1258 | |
1259 gaim_separator(menu); | |
8302
462ead6fc1a0
[gaim-migrate @ 9026]
Christian Hammond <chipx86@chipx86.com>
parents:
8259
diff
changeset
|
1260 gaim_new_item_from_stock(menu, _("_Alias..."), GAIM_STOCK_ALIAS, |
8143 | 1261 G_CALLBACK(gtk_blist_menu_alias_cb), node, 0, 0, NULL); |
1262 gaim_new_item_from_stock(menu, _("_Remove"), GTK_STOCK_REMOVE, | |
1263 G_CALLBACK(gaim_gtk_blist_remove_cb), node, 0, 0, NULL); | |
8586 | 1264 |
8143 | 1265 return menu; |
1266 } | |
1267 | |
1268 static GtkWidget * | |
1269 create_contact_menu (GaimBlistNode *node) | |
1270 { | |
1271 GtkWidget *menu; | |
1272 | |
1273 menu = gtk_menu_new(); | |
8302
462ead6fc1a0
[gaim-migrate @ 9026]
Christian Hammond <chipx86@chipx86.com>
parents:
8259
diff
changeset
|
1274 gaim_new_item_from_stock(menu, _("_Alias..."), GAIM_STOCK_ALIAS, |
8143 | 1275 G_CALLBACK(gtk_blist_menu_alias_cb), node, 0, 0, NULL); |
1276 gaim_new_item_from_stock(menu, _("_Collapse"), GTK_STOCK_ZOOM_OUT, | |
1277 G_CALLBACK(gaim_gtk_blist_collapse_contact_cb), | |
1278 node, 0, 0, NULL); | |
1279 gaim_new_item_from_stock(menu, _("_Remove"), GTK_STOCK_REMOVE, | |
1280 G_CALLBACK(gaim_gtk_blist_remove_cb), node, 0, 0, NULL); | |
1281 return menu; | |
1282 } | |
1283 | |
1284 static GtkWidget * | |
1285 create_buddy_menu (GaimBlistNode *node, | |
1286 GaimBuddy *b, | |
1287 GaimPlugin *prpl, | |
1288 GaimPluginProtocolInfo *prpl_info) | |
1289 { | |
1290 struct _gaim_gtk_blist_node *gtknode = (struct _gaim_gtk_blist_node *)node->ui_data; | |
1291 GtkWidget *menu; | |
1292 GtkWidget *menuitem; | |
1293 gboolean show_offline = gaim_prefs_get_bool("/gaim/gtk/blist/show_offline_buddies"); | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
1294 |
8143 | 1295 menu = gtk_menu_new(); |
1296 make_buddy_menu(menu, prpl_info, b); | |
1297 | |
1298 if(GAIM_BLIST_NODE_IS_CONTACT(node)) { | |
1299 gaim_separator(menu); | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
1300 |
8143 | 1301 if(gtknode->contact_expanded) { |
1302 gaim_new_item_from_stock(menu, _("_Collapse"), | |
1303 GTK_STOCK_ZOOM_OUT, | |
1304 G_CALLBACK(gaim_gtk_blist_collapse_contact_cb), | |
1305 node, 0, 0, NULL); | |
1306 } else { | |
1307 gaim_new_item_from_stock(menu, _("_Expand"), | |
1308 GTK_STOCK_ZOOM_IN, | |
1309 G_CALLBACK(gaim_gtk_blist_expand_contact_cb), node, | |
1310 0, 0, NULL); | |
1311 } | |
1312 if(node->child->next) { | |
1313 GaimBlistNode *bnode; | |
1314 | |
1315 for(bnode = node->child; bnode; bnode = bnode->next) { | |
1316 GaimBuddy *buddy = (GaimBuddy*)bnode; | |
1317 GtkWidget *submenu; | |
1318 GtkWidget *image; | |
1319 | |
1320 if(buddy == b) | |
1321 continue; | |
1322 if(!buddy->account->gc) | |
1323 continue; | |
1324 if(!show_offline && !GAIM_BUDDY_IS_ONLINE(buddy)) | |
1325 continue; | |
1326 | |
1327 menuitem = gtk_image_menu_item_new_with_label(buddy->name); | |
1328 image = gtk_image_new_from_pixbuf( | |
1329 gaim_gtk_blist_get_status_icon(bnode, | |
1330 GAIM_STATUS_ICON_SMALL)); | |
1331 gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(menuitem), | |
1332 image); | |
1333 gtk_widget_show(image); | |
1334 gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem); | |
1335 gtk_widget_show(menuitem); | |
1336 | |
1337 submenu = gtk_menu_new(); | |
1338 gtk_menu_item_set_submenu(GTK_MENU_ITEM(menuitem), submenu); | |
1339 gtk_widget_show(submenu); | |
1340 | |
1341 prpl = gaim_find_prpl(gaim_account_get_protocol_id(buddy->account)); | |
1342 prpl_info = prpl ? GAIM_PLUGIN_PROTOCOL_INFO(prpl) : NULL; | |
1343 | |
1344 make_buddy_menu(submenu, prpl_info, buddy); | |
1345 } | |
1346 } | |
1347 } | |
1348 return menu; | |
1349 } | |
1350 | |
1351 static gboolean | |
1352 gaim_gtk_blist_show_context_menu(GaimBlistNode *node, | |
1353 GtkMenuPositionFunc func, | |
1354 GtkWidget *tv, | |
1355 guint button, | |
1356 guint32 time) | |
1357 { | |
1358 struct _gaim_gtk_blist_node *gtknode; | |
1359 GtkWidget *menu = NULL; | |
1360 gboolean handled = FALSE; | |
1361 | |
1362 gtknode = (struct _gaim_gtk_blist_node *)node->ui_data; | |
1363 | |
1364 /* Create a menu based on the thing we right-clicked on */ | |
1365 if (GAIM_BLIST_NODE_IS_GROUP(node)) { | |
1366 menu = create_group_menu(node); | |
1367 } else if (GAIM_BLIST_NODE_IS_CHAT(node)) { | |
8586 | 1368 GaimChat *c = (GaimChat *)node; |
1369 GaimPlugin *prpl = NULL; | |
1370 GaimPluginProtocolInfo *prpl_info = NULL; | |
1371 prpl = gaim_find_prpl(gaim_account_get_protocol_id(c->account)); | |
1372 if (prpl != NULL) | |
1373 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(prpl); | |
1374 menu = create_chat_menu(node, c, prpl, prpl_info); | |
8143 | 1375 } else if ((GAIM_BLIST_NODE_IS_CONTACT(node)) && (gtknode->contact_expanded)) { |
1376 menu = create_contact_menu(node); | |
1377 } else if (GAIM_BLIST_NODE_IS_CONTACT(node) || GAIM_BLIST_NODE_IS_BUDDY(node)) { | |
1378 GaimBuddy *b; | |
1379 GaimPlugin *prpl = NULL; | |
1380 GaimPluginProtocolInfo *prpl_info = NULL; | |
1381 | |
1382 if (GAIM_BLIST_NODE_IS_CONTACT(node)) | |
1383 b = gaim_contact_get_priority_buddy((GaimContact*)node); | |
1384 else | |
1385 b = (GaimBuddy *)node; | |
1386 | |
1387 prpl = gaim_find_prpl(gaim_account_get_protocol_id(b->account)); | |
1388 if (prpl != NULL) | |
1389 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(prpl); | |
1390 menu = create_buddy_menu(node, b, prpl, prpl_info); | |
1391 } | |
1392 | |
1393 /* Now display the menu */ | |
1394 if (menu != NULL) { | |
1395 gtk_widget_show_all(menu); | |
1396 gtk_menu_popup(GTK_MENU(menu), NULL, NULL, func, tv, button, time); | |
1397 handled = TRUE; | |
1398 } | |
1399 | |
1400 return handled; | |
1401 } | |
1402 | |
1403 static gboolean gtk_blist_button_press_cb(GtkWidget *tv, GdkEventButton *event, gpointer user_data) | |
5228 | 1404 { |
1405 GtkTreePath *path; | |
1406 GaimBlistNode *node; | |
1407 GValue val = { 0, }; | |
1408 GtkTreeIter iter; | |
1409 GtkTreeSelection *sel; | |
1410 GaimPlugin *prpl = NULL; | |
1411 GaimPluginProtocolInfo *prpl_info = NULL; | |
7620 | 1412 struct _gaim_gtk_blist_node *gtknode; |
1413 gboolean handled = FALSE; | |
5228 | 1414 |
1415 /* Here we figure out which node was clicked */ | |
1416 if (!gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(tv), event->x, event->y, &path, NULL, NULL, NULL)) | |
1417 return FALSE; | |
1418 gtk_tree_model_get_iter(GTK_TREE_MODEL(gtkblist->treemodel), &iter, path); | |
8143 | 1419 gtk_tree_model_get_value(GTK_TREE_MODEL(gtkblist->treemodel), &iter, NODE_COLUMN, &val); |
5228 | 1420 node = g_value_get_pointer(&val); |
7620 | 1421 gtknode = (struct _gaim_gtk_blist_node *)node->ui_data; |
1422 | |
8143 | 1423 /* Right click draws a context menu */ |
1424 if ((event->button == 3) && (event->type == GDK_BUTTON_PRESS)) { | |
1425 handled = gaim_gtk_blist_show_context_menu(node, NULL, tv, 3, event->time); | |
1426 | |
1427 /* CTRL+middle click expands or collapse a contact */ | |
1428 } else if ((event->button == 2) && (event->type == GDK_BUTTON_PRESS) && | |
1429 (event->state & GDK_CONTROL_MASK) && (GAIM_BLIST_NODE_IS_CONTACT(node))) { | |
1430 if (gtknode->contact_expanded) | |
7620 | 1431 gaim_gtk_blist_collapse_contact_cb(NULL, node); |
1432 else | |
1433 gaim_gtk_blist_expand_contact_cb(NULL, node); | |
1434 handled = TRUE; | |
8143 | 1435 |
1436 /* Double middle click gets info */ | |
1437 } else if ((event->button == 2) && (event->type == GDK_2BUTTON_PRESS) && | |
1438 ((GAIM_BLIST_NODE_IS_CONTACT(node)) || (GAIM_BLIST_NODE_IS_BUDDY(node)))) { | |
7620 | 1439 GaimBuddy *b; |
1440 if(GAIM_BLIST_NODE_IS_CONTACT(node)) | |
1441 b = gaim_contact_get_priority_buddy((GaimContact*)node); | |
1442 else | |
1443 b = (GaimBuddy *)node; | |
1444 | |
7956 | 1445 prpl = gaim_find_prpl(gaim_account_get_protocol_id(b->account)); |
5228 | 1446 if (prpl != NULL) |
1447 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(prpl); | |
1448 | |
8143 | 1449 if (prpl && prpl_info->get_info) |
1450 serv_get_info(b->account->gc, b->name); | |
1451 handled = TRUE; | |
5228 | 1452 } |
1453 | |
8143 | 1454 #if (1) |
1455 /* | |
1456 * This code only exists because GTK doesn't work. If we return | |
1457 * FALSE here, as would be normal the event propoagates down and | |
1458 * somehow gets interpreted as the start of a drag event. | |
1459 * | |
1460 * Um, isn't it _normal_ to return TRUE here? Since the event | |
1461 * was handled? --Mark | |
1462 */ | |
7620 | 1463 if(handled) { |
1464 sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(tv)); | |
1465 gtk_tree_selection_select_path(sel, path); | |
1466 gtk_tree_path_free(path); | |
1467 return TRUE; | |
1468 } | |
5228 | 1469 #endif |
7753 | 1470 gtk_tree_path_free(path); |
8143 | 1471 |
7620 | 1472 return FALSE; |
5228 | 1473 } |
1474 | |
8143 | 1475 static gboolean |
1476 gaim_gtk_blist_popup_menu_cb(GtkWidget *tv, void *user_data) | |
1477 { | |
1478 GaimBlistNode *node; | |
1479 GValue val = { 0, }; | |
1480 GtkTreeIter iter; | |
1481 GtkTreeSelection *sel; | |
1482 gboolean handled = FALSE; | |
1483 | |
1484 sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(tv)); | |
1485 if (!gtk_tree_selection_get_selected(sel, NULL, &iter)) | |
1486 return FALSE; | |
1487 | |
1488 gtk_tree_model_get_value(GTK_TREE_MODEL(gtkblist->treemodel), | |
1489 &iter, NODE_COLUMN, &val); | |
1490 node = g_value_get_pointer(&val); | |
1491 | |
1492 /* Shift+F10 draws a context menu */ | |
1493 handled = gaim_gtk_blist_show_context_menu(node, gaim_gtk_treeview_popup_menu_position_func, tv, 0, GDK_CURRENT_TIME); | |
1494 | |
1495 return handled; | |
1496 } | |
1497 | |
5228 | 1498 static void gaim_gtk_blist_show_empty_groups_cb(gpointer data, guint action, GtkWidget *item) |
1499 { | |
7620 | 1500 gaim_prefs_set_bool("/gaim/gtk/blist/show_empty_groups", |
1501 gtk_check_menu_item_get_active(GTK_CHECK_MENU_ITEM(item))); | |
5228 | 1502 } |
1503 | |
1504 static void gaim_gtk_blist_edit_mode_cb(gpointer callback_data, guint callback_action, | |
1505 GtkWidget *checkitem) { | |
1506 if(gtkblist->window->window) { | |
1507 GdkCursor *cursor = gdk_cursor_new(GDK_WATCH); | |
1508 gdk_window_set_cursor(gtkblist->window->window, cursor); | |
1509 while (gtk_events_pending()) | |
1510 gtk_main_iteration(); | |
1511 gdk_cursor_unref(cursor); | |
1512 } | |
1513 | |
7620 | 1514 gaim_prefs_set_bool("/gaim/gtk/blist/show_offline_buddies", |
1515 gtk_check_menu_item_get_active(GTK_CHECK_MENU_ITEM(checkitem))); | |
5228 | 1516 |
1517 if(gtkblist->window->window) { | |
1518 GdkCursor *cursor = gdk_cursor_new(GDK_LEFT_PTR); | |
1519 gdk_window_set_cursor(gtkblist->window->window, cursor); | |
1520 gdk_cursor_unref(cursor); | |
1521 } | |
1522 } | |
1523 | |
8089 | 1524 static void |
1525 add_buddies_from_vcard(const char *prpl_id, GaimGroup *group, GList *list, | |
1526 const char *alias) | |
1527 { | |
1528 GList *l; | |
1529 GaimAccount *account = NULL; | |
1530 GaimConnection *gc; | |
1531 | |
1532 if (list == NULL) | |
1533 return; | |
1534 | |
1535 for (l = gaim_connections_get_all(); l != NULL; l = l->next) | |
1536 { | |
1537 gc = (GaimConnection *)l->data; | |
1538 account = gaim_connection_get_account(gc); | |
1539 | |
1540 if (!strcmp(gaim_account_get_protocol_id(account), prpl_id)) | |
1541 break; | |
1542 | |
1543 account = NULL; | |
1544 } | |
1545 | |
1546 if (account != NULL) | |
1547 { | |
1548 for (l = list; l != NULL; l = l->next) | |
1549 { | |
1550 gaim_blist_request_add_buddy(account, l->data, | |
1551 (group ? group->name : NULL), | |
1552 alias); | |
1553 } | |
1554 } | |
1555 | |
1556 g_list_foreach(list, (GFunc)g_free, NULL); | |
1557 g_list_free(list); | |
1558 } | |
1559 | |
1560 static gboolean | |
1561 parse_vcard(const char *vcard, GaimGroup *group) | |
1562 { | |
1563 char *temp_vcard; | |
1564 char *s, *c; | |
1565 char *alias = NULL; | |
1566 GList *aims = NULL; | |
1567 GList *icqs = NULL; | |
1568 GList *yahoos = NULL; | |
1569 GList *msns = NULL; | |
1570 GList *jabbers = NULL; | |
1571 | |
1572 s = temp_vcard = g_strdup(vcard); | |
1573 | |
1574 while (*s != '\0' && strncmp(s, "END:vCard", strlen("END:vCard"))) | |
1575 { | |
1576 char *field, *value; | |
1577 | |
1578 field = s; | |
1579 | |
1580 /* Grab the field */ | |
1581 while (*s != '\r' && *s != '\n' && *s != '\0' && *s != ':') | |
1582 s++; | |
1583 | |
1584 if (*s == '\r') s++; | |
1585 if (*s == '\n') | |
1586 { | |
1587 s++; | |
1588 continue; | |
1589 } | |
1590 | |
1591 if (*s != '\0') *s++ = '\0'; | |
1592 | |
1593 if ((c = strchr(field, ';')) != NULL) | |
1594 *c = '\0'; | |
1595 | |
1596 /* Proceed to the end of the line */ | |
1597 value = s; | |
1598 | |
1599 while (*s != '\r' && *s != '\n' && *s != '\0') | |
1600 s++; | |
1601 | |
1602 if (*s == '\r') *s++ = '\0'; | |
1603 if (*s == '\n') *s++ = '\0'; | |
1604 | |
1605 /* We only want to worry about a few fields here. */ | |
1606 if (!strcmp(field, "FN")) | |
1607 alias = g_strdup(value); | |
1608 else if (!strcmp(field, "X-AIM") || !strcmp(field, "X-ICQ") || | |
1609 !strcmp(field, "X-YAHOO") || !strcmp(field, "X-MSN") || | |
1610 !strcmp(field, "X-JABBER")) | |
1611 { | |
1612 char **values = g_strsplit(value, ":", 0); | |
1613 char **im; | |
1614 | |
1615 for (im = values; *im != NULL; im++) | |
1616 { | |
1617 if (!strcmp(field, "X-AIM")) | |
1618 aims = g_list_append(aims, g_strdup(*im)); | |
1619 else if (!strcmp(field, "X-ICQ")) | |
1620 icqs = g_list_append(icqs, g_strdup(*im)); | |
1621 else if (!strcmp(field, "X-YAHOO")) | |
1622 yahoos = g_list_append(yahoos, g_strdup(*im)); | |
1623 else if (!strcmp(field, "X-MSN")) | |
1624 msns = g_list_append(msns, g_strdup(*im)); | |
1625 else if (!strcmp(field, "X-JABBER")) | |
1626 jabbers = g_list_append(jabbers, g_strdup(*im)); | |
1627 } | |
1628 | |
1629 g_strfreev(values); | |
1630 } | |
1631 } | |
1632 | |
1633 g_free(temp_vcard); | |
1634 | |
1635 if (aims == NULL && icqs == NULL && yahoos == NULL && | |
1636 msns == NULL && jabbers == NULL) | |
1637 { | |
1638 if (alias != NULL) | |
1639 g_free(alias); | |
1640 | |
1641 return FALSE; | |
1642 } | |
1643 | |
1644 add_buddies_from_vcard("prpl-oscar", group, aims, alias); | |
1645 add_buddies_from_vcard("prpl-oscar", group, icqs, alias); | |
1646 add_buddies_from_vcard("prpl-yahoo", group, yahoos, alias); | |
1647 add_buddies_from_vcard("prpl-msn", group, msns, alias); | |
1648 add_buddies_from_vcard("prpl-jabber", group, jabbers, alias); | |
1649 | |
1650 if (alias != NULL) | |
1651 g_free(alias); | |
1652 | |
1653 return TRUE; | |
1654 } | |
1655 | |
5228 | 1656 static void gaim_gtk_blist_drag_data_get_cb (GtkWidget *widget, |
1657 GdkDragContext *dc, | |
1658 GtkSelectionData *data, | |
1659 guint info, | |
1660 guint time, | |
1661 gpointer *null) | |
1662 { | |
8089 | 1663 if (data->target == gdk_atom_intern("GAIM_BLIST_NODE", FALSE)) |
1664 { | |
5228 | 1665 GtkTreeRowReference *ref = g_object_get_data(G_OBJECT(dc), "gtk-tree-view-source-row"); |
1666 GtkTreePath *sourcerow = gtk_tree_row_reference_get_path(ref); | |
1667 GtkTreeIter iter; | |
1668 GaimBlistNode *node = NULL; | |
1669 GValue val = {0}; | |
5273 | 1670 if(!sourcerow) |
1671 return; | |
5228 | 1672 gtk_tree_model_get_iter(GTK_TREE_MODEL(gtkblist->treemodel), &iter, sourcerow); |
1673 gtk_tree_model_get_value (GTK_TREE_MODEL(gtkblist->treemodel), &iter, NODE_COLUMN, &val); | |
1674 node = g_value_get_pointer(&val); | |
1675 gtk_selection_data_set (data, | |
1676 gdk_atom_intern ("GAIM_BLIST_NODE", FALSE), | |
1677 8, /* bits */ | |
1678 (void*)&node, | |
1679 sizeof (node)); | |
5273 | 1680 |
5228 | 1681 gtk_tree_path_free(sourcerow); |
1682 } | |
8089 | 1683 else if (data->target == gdk_atom_intern("application/x-im-contact", FALSE)) |
1684 { | |
7706 | 1685 GtkTreeRowReference *ref; |
1686 GtkTreePath *sourcerow; | |
1687 GtkTreeIter iter; | |
1688 GaimBlistNode *node = NULL; | |
1689 GaimBuddy *buddy; | |
1690 GaimConnection *gc; | |
1691 GValue val = {0}; | |
1692 GString *str; | |
1693 const char *protocol; | |
1694 char *mime_str; | |
1695 | |
1696 ref = g_object_get_data(G_OBJECT(dc), "gtk-tree-view-source-row"); | |
1697 sourcerow = gtk_tree_row_reference_get_path(ref); | |
1698 | |
1699 if (!sourcerow) | |
1700 return; | |
1701 | |
1702 gtk_tree_model_get_iter(GTK_TREE_MODEL(gtkblist->treemodel), &iter, | |
1703 sourcerow); | |
1704 gtk_tree_model_get_value(GTK_TREE_MODEL(gtkblist->treemodel), &iter, | |
1705 NODE_COLUMN, &val); | |
1706 | |
1707 node = g_value_get_pointer(&val); | |
1708 | |
1709 if (GAIM_BLIST_NODE_IS_CONTACT(node)) | |
1710 { | |
1711 buddy = gaim_contact_get_priority_buddy((GaimContact *)node); | |
1712 } | |
1713 else if (!GAIM_BLIST_NODE_IS_BUDDY(node)) | |
1714 { | |
1715 gtk_tree_path_free(sourcerow); | |
1716 return; | |
1717 } | |
1718 else | |
1719 { | |
1720 buddy = (GaimBuddy *)node; | |
1721 } | |
1722 | |
1723 gc = gaim_account_get_connection(buddy->account); | |
1724 | |
1725 if (gc == NULL) | |
1726 { | |
1727 gtk_tree_path_free(sourcerow); | |
1728 return; | |
1729 } | |
1730 | |
1731 protocol = | |
1732 GAIM_PLUGIN_PROTOCOL_INFO(gc->prpl)->list_icon(buddy->account, | |
1733 buddy); | |
1734 | |
1735 str = g_string_new(NULL); | |
1736 g_string_printf(str, | |
1737 "MIME-Version: 1.0\r\n" | |
1738 "Content-Type: application/x-im-contact\r\n" | |
1739 "X-IM-Protocol: %s\r\n" | |
1740 "X-IM-Username: %s\r\n", | |
1741 protocol, | |
1742 buddy->name); | |
1743 | |
1744 if (buddy->alias != NULL) | |
1745 { | |
1746 g_string_append_printf(str, | |
1747 "X-IM-Alias: %s\r\n", | |
1748 buddy->alias); | |
1749 } | |
1750 | |
1751 str = g_string_append(str, "\r\n"); | |
1752 | |
1753 mime_str = g_string_free(str, FALSE); | |
1754 | |
1755 gtk_selection_data_set(data, | |
1756 gdk_atom_intern("application/x-im-contact", FALSE), | |
1757 8, /* bits */ | |
1758 mime_str, | |
1759 strlen(mime_str) + 1); | |
1760 | |
1761 g_free(mime_str); | |
1762 gtk_tree_path_free(sourcerow); | |
1763 } | |
5228 | 1764 } |
1765 | |
1766 static void gaim_gtk_blist_drag_data_rcv_cb(GtkWidget *widget, GdkDragContext *dc, guint x, guint y, | |
1767 GtkSelectionData *sd, guint info, guint t) | |
7620 | 1768 { |
5228 | 1769 if (sd->target == gdk_atom_intern("GAIM_BLIST_NODE", FALSE) && sd->data) { |
1770 GaimBlistNode *n = NULL; | |
1771 GtkTreePath *path = NULL; | |
1772 GtkTreeViewDropPosition position; | |
1773 memcpy(&n, sd->data, sizeof(n)); | |
1774 if(gtk_tree_view_get_dest_row_at_pos(GTK_TREE_VIEW(widget), x, y, &path, &position)) { | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
1775 /* if we're here, I think it means the drop is ok */ |
7642 | 1776 GtkTreeIter iter; |
5228 | 1777 GaimBlistNode *node; |
1778 GValue val = {0}; | |
7620 | 1779 struct _gaim_gtk_blist_node *gtknode; |
1780 | |
1781 gtk_tree_model_get_iter(GTK_TREE_MODEL(gtkblist->treemodel), | |
1782 &iter, path); | |
1783 gtk_tree_model_get_value (GTK_TREE_MODEL(gtkblist->treemodel), | |
1784 &iter, NODE_COLUMN, &val); | |
5228 | 1785 node = g_value_get_pointer(&val); |
7620 | 1786 gtknode = node->ui_data; |
1787 | |
1788 if (GAIM_BLIST_NODE_IS_CONTACT(n)) { | |
1789 GaimContact *c = (GaimContact*)n; | |
1790 if (GAIM_BLIST_NODE_IS_CONTACT(node) && gtknode->contact_expanded) { | |
1791 gaim_blist_merge_contact(c, node); | |
1792 } else if (GAIM_BLIST_NODE_IS_CONTACT(node) || | |
5234 | 1793 GAIM_BLIST_NODE_IS_CHAT(node)) { |
5228 | 1794 switch(position) { |
1795 case GTK_TREE_VIEW_DROP_AFTER: | |
1796 case GTK_TREE_VIEW_DROP_INTO_OR_AFTER: | |
7620 | 1797 gaim_blist_add_contact(c, (GaimGroup*)node->parent, |
1798 node); | |
1799 break; | |
1800 case GTK_TREE_VIEW_DROP_BEFORE: | |
1801 case GTK_TREE_VIEW_DROP_INTO_OR_BEFORE: | |
1802 gaim_blist_add_contact(c, (GaimGroup*)node->parent, | |
1803 node->prev); | |
1804 break; | |
1805 } | |
1806 } else if(GAIM_BLIST_NODE_IS_GROUP(node)) { | |
1807 gaim_blist_add_contact(c, (GaimGroup*)node, NULL); | |
1808 } else if(GAIM_BLIST_NODE_IS_BUDDY(node)) { | |
1809 gaim_blist_merge_contact(c, node); | |
1810 } | |
1811 } else if (GAIM_BLIST_NODE_IS_BUDDY(n)) { | |
1812 GaimBuddy *b = (GaimBuddy*)n; | |
1813 if (GAIM_BLIST_NODE_IS_BUDDY(node)) { | |
1814 switch(position) { | |
1815 case GTK_TREE_VIEW_DROP_AFTER: | |
1816 case GTK_TREE_VIEW_DROP_INTO_OR_AFTER: | |
1817 gaim_blist_add_buddy(b, (GaimContact*)node->parent, | |
1818 (GaimGroup*)node->parent->parent, node); | |
5228 | 1819 break; |
1820 case GTK_TREE_VIEW_DROP_BEFORE: | |
1821 case GTK_TREE_VIEW_DROP_INTO_OR_BEFORE: | |
7620 | 1822 gaim_blist_add_buddy(b, (GaimContact*)node->parent, |
1823 (GaimGroup*)node->parent->parent, | |
1824 node->prev); | |
5228 | 1825 break; |
1826 } | |
7620 | 1827 } else if(GAIM_BLIST_NODE_IS_CHAT(node)) { |
1828 gaim_blist_add_buddy(b, NULL, (GaimGroup*)node->parent, | |
1829 NULL); | |
5228 | 1830 } else if (GAIM_BLIST_NODE_IS_GROUP(node)) { |
7620 | 1831 gaim_blist_add_buddy(b, NULL, (GaimGroup*)node, NULL); |
1832 } else if (GAIM_BLIST_NODE_IS_CONTACT(node)) { | |
1833 if(gtknode->contact_expanded) { | |
1834 switch(position) { | |
1835 case GTK_TREE_VIEW_DROP_INTO_OR_AFTER: | |
1836 case GTK_TREE_VIEW_DROP_AFTER: | |
1837 case GTK_TREE_VIEW_DROP_INTO_OR_BEFORE: | |
1838 gaim_blist_add_buddy(b, (GaimContact*)node, | |
1839 (GaimGroup*)node->parent, NULL); | |
1840 break; | |
1841 case GTK_TREE_VIEW_DROP_BEFORE: | |
1842 gaim_blist_add_buddy(b, NULL, | |
1843 (GaimGroup*)node->parent, node->prev); | |
1844 break; | |
1845 } | |
1846 } else { | |
1847 switch(position) { | |
1848 case GTK_TREE_VIEW_DROP_INTO_OR_AFTER: | |
1849 case GTK_TREE_VIEW_DROP_AFTER: | |
1850 gaim_blist_add_buddy(b, NULL, | |
1851 (GaimGroup*)node->parent, NULL); | |
1852 break; | |
1853 case GTK_TREE_VIEW_DROP_INTO_OR_BEFORE: | |
1854 case GTK_TREE_VIEW_DROP_BEFORE: | |
1855 gaim_blist_add_buddy(b, NULL, | |
1856 (GaimGroup*)node->parent, node->prev); | |
1857 break; | |
1858 } | |
1859 } | |
5228 | 1860 } |
5234 | 1861 } else if (GAIM_BLIST_NODE_IS_CHAT(n)) { |
7620 | 1862 GaimChat *chat = (GaimChat *)n; |
1863 if (GAIM_BLIST_NODE_IS_BUDDY(node)) { | |
1864 switch(position) { | |
1865 case GTK_TREE_VIEW_DROP_AFTER: | |
1866 case GTK_TREE_VIEW_DROP_INTO_OR_AFTER: | |
1867 gaim_blist_add_chat(chat, | |
1868 (GaimGroup*)node->parent->parent, node); | |
1869 break; | |
1870 case GTK_TREE_VIEW_DROP_BEFORE: | |
1871 case GTK_TREE_VIEW_DROP_INTO_OR_BEFORE: | |
1872 gaim_blist_add_chat(chat, | |
1873 (GaimGroup*)node->parent->parent, | |
1874 node->prev); | |
1875 break; | |
1876 } | |
1877 } else if(GAIM_BLIST_NODE_IS_CONTACT(node) || | |
5234 | 1878 GAIM_BLIST_NODE_IS_CHAT(node)) { |
1879 switch(position) { | |
1880 case GTK_TREE_VIEW_DROP_AFTER: | |
1881 case GTK_TREE_VIEW_DROP_INTO_OR_AFTER: | |
7620 | 1882 gaim_blist_add_chat(chat, (GaimGroup*)node->parent, node); |
5234 | 1883 break; |
1884 case GTK_TREE_VIEW_DROP_BEFORE: | |
1885 case GTK_TREE_VIEW_DROP_INTO_OR_BEFORE: | |
7620 | 1886 gaim_blist_add_chat(chat, (GaimGroup*)node->parent, node->prev); |
5234 | 1887 break; |
1888 } | |
1889 } else if (GAIM_BLIST_NODE_IS_GROUP(node)) { | |
7620 | 1890 gaim_blist_add_chat(chat, (GaimGroup*)node, NULL); |
5234 | 1891 } |
5228 | 1892 } else if (GAIM_BLIST_NODE_IS_GROUP(n)) { |
7620 | 1893 GaimGroup *g = (GaimGroup*)n; |
5228 | 1894 if (GAIM_BLIST_NODE_IS_GROUP(node)) { |
1895 switch (position) { | |
1896 case GTK_TREE_VIEW_DROP_INTO_OR_AFTER: | |
1897 case GTK_TREE_VIEW_DROP_AFTER: | |
1898 gaim_blist_add_group(g, node); | |
1899 break; | |
1900 case GTK_TREE_VIEW_DROP_INTO_OR_BEFORE: | |
1901 case GTK_TREE_VIEW_DROP_BEFORE: | |
1902 gaim_blist_add_group(g, node->prev); | |
1903 break; | |
1904 } | |
7620 | 1905 } else if(GAIM_BLIST_NODE_IS_BUDDY(node)) { |
1906 gaim_blist_add_group(g, node->parent->parent); | |
1907 } else if(GAIM_BLIST_NODE_IS_CONTACT(node) || | |
5234 | 1908 GAIM_BLIST_NODE_IS_CHAT(node)) { |
5228 | 1909 gaim_blist_add_group(g, node->parent); |
1910 } | |
1911 } | |
1912 | |
1913 gtk_tree_path_free(path); | |
7620 | 1914 gtk_drag_finish(dc, TRUE, (dc->action == GDK_ACTION_MOVE), t); |
1915 | |
5228 | 1916 gaim_blist_save(); |
1917 } | |
1918 } | |
7706 | 1919 else if (sd->target == gdk_atom_intern("application/x-im-contact", |
1920 FALSE) && sd->data) | |
1921 { | |
1922 GaimGroup *group = NULL; | |
1923 GtkTreePath *path = NULL; | |
1924 GtkTreeViewDropPosition position; | |
7712
2823111061ba
[gaim-migrate @ 8357]
Christian Hammond <chipx86@chipx86.com>
parents:
7706
diff
changeset
|
1925 GaimAccount *account; |
7706 | 1926 char *protocol = NULL; |
1927 char *username = NULL; | |
1928 char *alias = NULL; | |
1929 | |
1930 if (gtk_tree_view_get_dest_row_at_pos(GTK_TREE_VIEW(widget), | |
1931 x, y, &path, &position)) | |
1932 { | |
1933 GtkTreeIter iter; | |
1934 GaimBlistNode *node; | |
1935 GValue val = {0}; | |
1936 | |
1937 gtk_tree_model_get_iter(GTK_TREE_MODEL(gtkblist->treemodel), | |
1938 &iter, path); | |
1939 gtk_tree_model_get_value (GTK_TREE_MODEL(gtkblist->treemodel), | |
1940 &iter, NODE_COLUMN, &val); | |
1941 node = g_value_get_pointer(&val); | |
1942 | |
1943 if (GAIM_BLIST_NODE_IS_BUDDY(node)) | |
1944 { | |
1945 group = (GaimGroup *)node->parent->parent; | |
1946 } | |
1947 else if (GAIM_BLIST_NODE_IS_CHAT(node) || | |
1948 GAIM_BLIST_NODE_IS_CONTACT(node)) | |
1949 { | |
1950 group = (GaimGroup *)node->parent; | |
1951 } | |
1952 else if (GAIM_BLIST_NODE_IS_GROUP(node)) | |
1953 { | |
1954 group = (GaimGroup *)node; | |
1955 } | |
1956 } | |
1957 | |
7712
2823111061ba
[gaim-migrate @ 8357]
Christian Hammond <chipx86@chipx86.com>
parents:
7706
diff
changeset
|
1958 if (gaim_gtk_parse_x_im_contact(sd->data, FALSE, &account, |
2823111061ba
[gaim-migrate @ 8357]
Christian Hammond <chipx86@chipx86.com>
parents:
7706
diff
changeset
|
1959 &protocol, &username, &alias)) |
7706 | 1960 { |
1961 if (account == NULL) | |
1962 { | |
1963 gaim_notify_error(NULL, NULL, | |
1964 _("You are not currently signed on with an account that " | |
1965 "can add that buddy."), NULL); | |
1966 } | |
1967 else | |
1968 { | |
1969 gaim_blist_request_add_buddy(account, username, | |
1970 (group ? group->name : NULL), | |
1971 alias); | |
1972 } | |
1973 } | |
1974 | |
1975 if (username != NULL) g_free(username); | |
1976 if (protocol != NULL) g_free(protocol); | |
1977 if (alias != NULL) g_free(alias); | |
1978 | |
1979 if (path != NULL) | |
1980 gtk_tree_path_free(path); | |
1981 | |
1982 gtk_drag_finish(dc, TRUE, (dc->action == GDK_ACTION_MOVE), t); | |
1983 } | |
8089 | 1984 else if (sd->target == gdk_atom_intern("text/x-vcard", FALSE) && sd->data) |
1985 { | |
1986 gboolean result; | |
1987 GaimGroup *group = NULL; | |
1988 GtkTreePath *path = NULL; | |
1989 GtkTreeViewDropPosition position; | |
1990 | |
1991 if (gtk_tree_view_get_dest_row_at_pos(GTK_TREE_VIEW(widget), | |
1992 x, y, &path, &position)) | |
1993 { | |
1994 GtkTreeIter iter; | |
1995 GaimBlistNode *node; | |
1996 GValue val = {0}; | |
1997 | |
1998 gtk_tree_model_get_iter(GTK_TREE_MODEL(gtkblist->treemodel), | |
1999 &iter, path); | |
2000 gtk_tree_model_get_value (GTK_TREE_MODEL(gtkblist->treemodel), | |
2001 &iter, NODE_COLUMN, &val); | |
2002 node = g_value_get_pointer(&val); | |
2003 | |
2004 if (GAIM_BLIST_NODE_IS_BUDDY(node)) | |
2005 { | |
2006 group = (GaimGroup *)node->parent->parent; | |
2007 } | |
2008 else if (GAIM_BLIST_NODE_IS_CHAT(node) || | |
2009 GAIM_BLIST_NODE_IS_CONTACT(node)) | |
2010 { | |
2011 group = (GaimGroup *)node->parent; | |
2012 } | |
2013 else if (GAIM_BLIST_NODE_IS_GROUP(node)) | |
2014 { | |
2015 group = (GaimGroup *)node; | |
2016 } | |
2017 } | |
2018 | |
2019 result = parse_vcard(sd->data, group); | |
2020 | |
2021 gtk_drag_finish(dc, result, (dc->action == GDK_ACTION_MOVE), t); | |
2022 } | |
5228 | 2023 } |
2024 | |
5234 | 2025 static void gaim_gtk_blist_paint_tip(GtkWidget *widget, GdkEventExpose *event, GaimBlistNode *node) |
5228 | 2026 { |
2027 GtkStyle *style; | |
5234 | 2028 GdkPixbuf *pixbuf = gaim_gtk_blist_get_status_icon(node, GAIM_STATUS_ICON_LARGE); |
5228 | 2029 PangoLayout *layout; |
5234 | 2030 char *tooltiptext = gaim_get_tooltip_text(node); |
5228 | 2031 |
7620 | 2032 if(!tooltiptext) |
2033 return; | |
2034 | |
5228 | 2035 layout = gtk_widget_create_pango_layout (gtkblist->tipwindow, NULL); |
2036 pango_layout_set_markup(layout, tooltiptext, strlen(tooltiptext)); | |
2037 pango_layout_set_wrap(layout, PANGO_WRAP_WORD); | |
2038 pango_layout_set_width(layout, 300000); | |
2039 style = gtkblist->tipwindow->style; | |
2040 | |
2041 gtk_paint_flat_box (style, gtkblist->tipwindow->window, GTK_STATE_NORMAL, GTK_SHADOW_OUT, | |
2042 NULL, gtkblist->tipwindow, "tooltip", 0, 0, -1, -1); | |
2043 | |
2044 #if GTK_CHECK_VERSION(2,2,0) | |
2045 gdk_draw_pixbuf(GDK_DRAWABLE(gtkblist->tipwindow->window), NULL, pixbuf, | |
2046 0, 0, 4, 4, -1 , -1, GDK_RGB_DITHER_NONE, 0, 0); | |
2047 #else | |
2048 gdk_pixbuf_render_to_drawable(pixbuf, GDK_DRAWABLE(gtkblist->tipwindow->window), NULL, 0, 0, 4, 4, -1, -1, GDK_RGB_DITHER_NONE, 0, 0); | |
2049 #endif | |
2050 | |
2051 gtk_paint_layout (style, gtkblist->tipwindow->window, GTK_STATE_NORMAL, TRUE, | |
2052 NULL, gtkblist->tipwindow, "tooltip", 38, 4, layout); | |
2053 | |
2054 g_object_unref (pixbuf); | |
2055 g_object_unref (layout); | |
2056 g_free(tooltiptext); | |
7620 | 2057 |
7662 | 2058 #ifdef WANT_DROP_SHADOW |
8040 | 2059 shadow_paint(gtkblist, NULL, EAST_SIDE); |
2060 shadow_paint(gtkblist, NULL, SOUTH_SIDE); | |
7620 | 2061 #endif |
2062 | |
5228 | 2063 return; |
2064 } | |
2065 | |
8254 | 2066 static void gaim_gtk_blist_tooltip_destroy() |
2067 { | |
2068 if (gtkblist->tipwindow == NULL) | |
2069 return; | |
2070 | |
2071 gtk_widget_destroy(gtkblist->tipwindow); | |
2072 gtkblist->tipwindow = NULL; | |
2073 #ifdef WANT_DROP_SHADOW | |
2074 gdk_window_set_user_data (gtkblist->east_shadow, NULL); | |
2075 gdk_window_destroy (gtkblist->east_shadow); | |
2076 gtkblist->east_shadow = NULL; | |
2077 | |
2078 gdk_window_set_user_data (gtkblist->south_shadow, NULL); | |
2079 gdk_window_destroy (gtkblist->south_shadow); | |
2080 gtkblist->south_shadow = NULL; | |
2081 #endif | |
2082 } | |
2083 | |
5228 | 2084 static gboolean gaim_gtk_blist_tooltip_timeout(GtkWidget *tv) |
2085 { | |
2086 GtkTreePath *path; | |
2087 GtkTreeIter iter; | |
2088 GaimBlistNode *node; | |
2089 GValue val = {0}; | |
5234 | 2090 int scr_w,scr_h, w, h, x, y; |
2091 PangoLayout *layout; | |
7636 | 2092 gboolean tooltip_top = FALSE; |
5234 | 2093 char *tooltiptext = NULL; |
7636 | 2094 struct _gaim_gtk_blist_node *gtknode; |
7662 | 2095 #ifdef WANT_DROP_SHADOW |
7620 | 2096 GdkWindowAttr attr; |
2097 #endif | |
5228 | 2098 |
7636 | 2099 if (!gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(tv), gtkblist->tip_rect.x, gtkblist->tip_rect.y, &path, NULL, NULL, NULL)) |
5228 | 2100 return FALSE; |
2101 gtk_tree_model_get_iter(GTK_TREE_MODEL(gtkblist->treemodel), &iter, path); | |
2102 gtk_tree_model_get_value (GTK_TREE_MODEL(gtkblist->treemodel), &iter, NODE_COLUMN, &val); | |
2103 node = g_value_get_pointer(&val); | |
7620 | 2104 |
2105 if(!GAIM_BLIST_NODE_IS_CONTACT(node) && !GAIM_BLIST_NODE_IS_BUDDY(node) | |
2106 && !GAIM_BLIST_NODE_IS_CHAT(node)) | |
5234 | 2107 return FALSE; |
5228 | 2108 |
7636 | 2109 gtknode = node->ui_data; |
2110 | |
7731 | 2111 if (node->child && GAIM_BLIST_NODE_IS_CONTACT(node) && |
2112 ((GaimContact*)node)->online > 1 && !gtknode->contact_expanded && | |
2113 gaim_prefs_get_bool("/gaim/gtk/blist/auto_expand_contacts")) { | |
7719 | 2114 GtkTreeIter i; |
7636 | 2115 gaim_gtk_blist_expand_contact_cb(NULL, node); |
8083 | 2116 tooltip_top = TRUE; /* When the person expands, the new screennames will be below. |
2117 We'll draw the tip above the cursor so that the user can see | |
2118 the included buddies */ | |
2119 | |
7636 | 2120 while (gtk_events_pending()) |
2121 gtk_main_iteration(); | |
2122 | |
8083 | 2123 /* we check to see if we're still supposed to be moving, now that gtk events have |
2124 * happened, and the mouse might not still be in the buddy list */ | |
2125 if(!gtkblist->timeout) { | |
2126 gaim_gtk_blist_collapse_contact_cb(NULL, node); | |
2127 return FALSE; | |
2128 } | |
2129 | |
7636 | 2130 gtk_tree_view_get_cell_area(GTK_TREE_VIEW(tv), path, NULL, >kblist->contact_rect); |
7720 | 2131 gdk_drawable_get_size(GDK_DRAWABLE(tv->window), &(gtkblist->contact_rect.width), NULL); |
7636 | 2132 gtkblist->mouseover_contact = node; |
2133 gtk_tree_path_down (path); | |
7719 | 2134 while (gtk_tree_model_get_iter(GTK_TREE_MODEL(gtkblist->treemodel), &i, path)) { |
7636 | 2135 GdkRectangle rect; |
2136 gtk_tree_view_get_cell_area(GTK_TREE_VIEW(tv), path, NULL, &rect); | |
2137 gtkblist->contact_rect.height += rect.height; | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
2138 gtk_tree_path_next(path); |
7636 | 2139 } |
2140 } | |
2141 | |
2142 gtk_tree_path_free(path); | |
2143 | |
5234 | 2144 tooltiptext = gaim_get_tooltip_text(node); |
7620 | 2145 |
2146 if(!tooltiptext) | |
2147 return FALSE; | |
2148 | |
7837 | 2149 if(gtkblist->tipwindow) |
2150 gtk_widget_destroy(gtkblist->tipwindow); | |
5234 | 2151 gtkblist->tipwindow = gtk_window_new(GTK_WINDOW_POPUP); |
2152 gtk_widget_set_app_paintable(gtkblist->tipwindow, TRUE); | |
2153 gtk_window_set_resizable(GTK_WINDOW(gtkblist->tipwindow), FALSE); | |
2154 gtk_widget_set_name(gtkblist->tipwindow, "gtk-tooltips"); | |
2155 g_signal_connect(G_OBJECT(gtkblist->tipwindow), "expose_event", | |
2156 G_CALLBACK(gaim_gtk_blist_paint_tip), node); | |
2157 gtk_widget_ensure_style (gtkblist->tipwindow); | |
7837 | 2158 |
7662 | 2159 #ifdef WANT_DROP_SHADOW |
7620 | 2160 attr.window_type = GDK_WINDOW_TEMP; |
2161 attr.override_redirect = TRUE; | |
2162 attr.x = gtkblist->tipwindow->allocation.x; | |
2163 attr.y = gtkblist->tipwindow->allocation.y; | |
2164 attr.width = gtkblist->tipwindow->allocation.width; | |
2165 attr.height = gtkblist->tipwindow->allocation.height; | |
2166 attr.wclass = GDK_INPUT_OUTPUT; | |
2167 attr.visual = gtk_widget_get_visual (gtkblist->window); | |
2168 attr.colormap = gtk_widget_get_colormap (gtkblist->window); | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
2169 |
7620 | 2170 attr.event_mask = gtk_widget_get_events (gtkblist->tipwindow); |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
2171 |
7620 | 2172 attr.event_mask |= (GDK_EXPOSURE_MASK | GDK_KEY_PRESS_MASK | |
2173 GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK ); | |
7897 | 2174 if(gtkblist->east_shadow) { |
2175 gdk_window_set_user_data (gtkblist->east_shadow, NULL); | |
2176 gdk_window_destroy (gtkblist->east_shadow); | |
2177 } | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
2178 gtkblist->east_shadow = gdk_window_new(gtk_widget_get_root_window(gtkblist->tipwindow), &attr, |
7620 | 2179 GDK_WA_NOREDIR | GDK_WA_VISUAL | GDK_WA_COLORMAP); |
2180 gdk_window_set_user_data (gtkblist->east_shadow, gtkblist->tipwindow); | |
2181 gdk_window_set_back_pixmap (gtkblist->east_shadow, NULL, FALSE); | |
2182 | |
7897 | 2183 if(gtkblist->south_shadow) { |
2184 gdk_window_set_user_data (gtkblist->south_shadow, NULL); | |
2185 gdk_window_destroy (gtkblist->south_shadow); | |
2186 } | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
2187 gtkblist->south_shadow = gdk_window_new(gtk_widget_get_root_window(gtkblist->tipwindow), &attr, |
7620 | 2188 GDK_WA_NOREDIR | GDK_WA_VISUAL | GDK_WA_COLORMAP); |
2189 gdk_window_set_user_data (gtkblist->south_shadow, gtkblist->tipwindow); | |
2190 gdk_window_set_back_pixmap (gtkblist->south_shadow, NULL, FALSE); | |
2191 #endif | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
2192 |
5234 | 2193 layout = gtk_widget_create_pango_layout (gtkblist->tipwindow, NULL); |
2194 pango_layout_set_wrap(layout, PANGO_WRAP_WORD); | |
2195 pango_layout_set_width(layout, 300000); | |
2196 pango_layout_set_markup(layout, tooltiptext, strlen(tooltiptext)); | |
2197 scr_w = gdk_screen_width(); | |
2198 scr_h = gdk_screen_height(); | |
2199 pango_layout_get_size (layout, &w, &h); | |
2200 w = PANGO_PIXELS(w) + 8; | |
2201 h = PANGO_PIXELS(h) + 8; | |
5228 | 2202 |
5234 | 2203 /* 38 is the size of a large status icon plus 4 pixels padding on each side. |
2204 * I should #define this or something */ | |
2205 w = w + 38; | |
2206 h = MAX(h, 38); | |
2207 | |
2208 gdk_window_get_pointer(NULL, &x, &y, NULL); | |
2209 if (GTK_WIDGET_NO_WINDOW(gtkblist->window)) | |
2210 y+=gtkblist->window->allocation.y; | |
2211 | |
2212 x -= ((w >> 1) + 4); | |
5228 | 2213 |
7636 | 2214 if ((y + h + 4) > scr_h || tooltip_top) |
7620 | 2215 y = y - h - 5; |
5234 | 2216 else |
2217 y = y + 6; | |
7620 | 2218 |
7719 | 2219 if (y < 0) |
2220 y = 0; | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
2221 |
7719 | 2222 if (y != 0) { |
2223 if ((x + w) > scr_w) | |
2224 x -= (x + w + 5) - scr_w; | |
2225 else if (x < 0) | |
2226 x = 0; | |
2227 } else { | |
2228 x -= (w / 2 + 10); | |
2229 if (x < 0) | |
2230 x += w + 15; | |
2231 } | |
2232 | |
5234 | 2233 g_object_unref (layout); |
2234 g_free(tooltiptext); | |
2235 gtk_widget_set_size_request(gtkblist->tipwindow, w, h); | |
2236 gtk_window_move(GTK_WINDOW(gtkblist->tipwindow), x, y); | |
2237 gtk_widget_show(gtkblist->tipwindow); | |
5228 | 2238 |
7662 | 2239 #ifdef WANT_DROP_SHADOW |
7620 | 2240 map_shadow_windows(gtkblist); |
2241 #endif | |
2242 | |
5228 | 2243 return FALSE; |
2244 } | |
2245 | |
2246 static gboolean gaim_gtk_blist_motion_cb (GtkWidget *tv, GdkEventMotion *event, gpointer null) | |
2247 { | |
2248 GtkTreePath *path; | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
2249 int delay; |
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
2250 |
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
2251 delay = gaim_prefs_get_int("/gaim/gtk/blist/tooltip_delay"); |
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
2252 |
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
2253 if (delay == 0) |
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
2254 return FALSE; |
8083 | 2255 |
5228 | 2256 if (gtkblist->timeout) { |
7636 | 2257 if ((event->y > gtkblist->tip_rect.y) && ((event->y - gtkblist->tip_rect.height) < gtkblist->tip_rect.y)) |
5228 | 2258 return FALSE; |
2259 /* We've left the cell. Remove the timeout and create a new one below */ | |
8254 | 2260 gaim_gtk_blist_tooltip_destroy(); |
5228 | 2261 g_source_remove(gtkblist->timeout); |
2262 } | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
2263 |
5228 | 2264 gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(tv), event->x, event->y, &path, NULL, NULL, NULL); |
7636 | 2265 gtk_tree_view_get_cell_area(GTK_TREE_VIEW(tv), path, NULL, >kblist->tip_rect); |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
2266 |
5228 | 2267 if (path) |
2268 gtk_tree_path_free(path); | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
2269 gtkblist->timeout = g_timeout_add(delay, (GSourceFunc)gaim_gtk_blist_tooltip_timeout, tv); |
7636 | 2270 |
2271 if (gtkblist->mouseover_contact) { | |
2272 if ((event->y < gtkblist->contact_rect.y) || ((event->y - gtkblist->contact_rect.height) > gtkblist->contact_rect.y)) { | |
2273 gaim_gtk_blist_collapse_contact_cb(NULL, gtkblist->mouseover_contact); | |
2274 gtkblist->mouseover_contact = NULL; | |
2275 } | |
2276 } | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
2277 |
5228 | 2278 return FALSE; |
2279 } | |
2280 | |
2281 static void gaim_gtk_blist_leave_cb (GtkWidget *w, GdkEventCrossing *e, gpointer n) | |
2282 { | |
8083 | 2283 |
5228 | 2284 if (gtkblist->timeout) { |
2285 g_source_remove(gtkblist->timeout); | |
2286 gtkblist->timeout = 0; | |
2287 } | |
8254 | 2288 gaim_gtk_blist_tooltip_destroy(); |
7720 | 2289 |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
2290 if (gtkblist->mouseover_contact && |
7720 | 2291 !((e->x > gtkblist->contact_rect.x) && (e->x < (gtkblist->contact_rect.x + gtkblist->contact_rect.width)) && |
2292 (e->y > gtkblist->contact_rect.y) && (e->y < (gtkblist->contact_rect.y + gtkblist->contact_rect.height)))) { | |
2293 gaim_gtk_blist_collapse_contact_cb(NULL, gtkblist->mouseover_contact); | |
7636 | 2294 gtkblist->mouseover_contact = NULL; |
2295 } | |
5228 | 2296 } |
2297 | |
2298 static void | |
2299 toggle_debug(void) | |
2300 { | |
7620 | 2301 gaim_prefs_set_bool("/gaim/gtk/debug/enabled", |
2302 !gaim_prefs_get_bool("/gaim/gtk/debug/enabled")); | |
5228 | 2303 } |
2304 | |
2305 | |
2306 /*************************************************** | |
2307 * Crap * | |
2308 ***************************************************/ | |
2309 static GtkItemFactoryEntry blist_menu[] = | |
2310 { | |
2311 /* Buddies menu */ | |
2312 { N_("/_Buddies"), NULL, NULL, 0, "<Branch>" }, | |
7887 | 2313 { N_("/Buddies/New Instant _Message..."), "<CTL>M", show_im_dialog, 0, "<StockItem>", GAIM_STOCK_IM }, |
8305
57bdd25752c1
[gaim-migrate @ 9029]
Christian Hammond <chipx86@chipx86.com>
parents:
8303
diff
changeset
|
2314 { N_("/Buddies/Join a _Chat..."), "<CTL>C", gaim_gtk_blist_show_join_chat, 0, "<StockItem>", GAIM_STOCK_CHAT }, |
8143 | 2315 { N_("/Buddies/Get User _Info..."), "<CTL>I", show_info_dialog, 0, "<StockItem>", GAIM_STOCK_INFO }, |
5228 | 2316 { "/Buddies/sep1", NULL, NULL, 0, "<Separator>" }, |
5398 | 2317 { N_("/Buddies/Show _Offline Buddies"), NULL, gaim_gtk_blist_edit_mode_cb, 1, "<CheckItem>"}, |
5228 | 2318 { N_("/Buddies/Show _Empty Groups"), NULL, gaim_gtk_blist_show_empty_groups_cb, 1, "<CheckItem>"}, |
7853 | 2319 { N_("/Buddies/_Add Buddy..."), "<CTL>B", gaim_gtk_blist_add_buddy_cb, 0, "<StockItem>", GTK_STOCK_ADD }, |
2320 { N_("/Buddies/Add C_hat..."), NULL, gaim_gtk_blist_add_chat_cb, 0, "<StockItem>", GTK_STOCK_ADD }, | |
2321 { N_("/Buddies/Add _Group..."), NULL, gaim_blist_request_add_group, 0, "<StockItem>", GTK_STOCK_ADD }, | |
5228 | 2322 { "/Buddies/sep2", NULL, NULL, 0, "<Separator>" }, |
7620 | 2323 { N_("/Buddies/_Signoff"), "<CTL>D", gaim_connections_disconnect_all, 0, "<StockItem>", GAIM_STOCK_SIGN_OFF }, |
2324 { N_("/Buddies/_Quit"), "<CTL>Q", gaim_core_quit, 0, "<StockItem>", GTK_STOCK_QUIT }, | |
5228 | 2325 |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
2326 /* Tools */ |
5228 | 2327 { N_("/_Tools"), NULL, NULL, 0, "<Branch>" }, |
2328 { N_("/Tools/_Away"), NULL, NULL, 0, "<Branch>" }, | |
2329 { N_("/Tools/Buddy _Pounce"), NULL, NULL, 0, "<Branch>" }, | |
2330 { N_("/Tools/P_rotocol Actions"), NULL, NULL, 0, "<Branch>" }, | |
2331 { "/Tools/sep1", NULL, NULL, 0, "<Separator>" }, | |
7620 | 2332 { N_("/Tools/A_ccounts"), "<CTL>A", gaim_gtk_accounts_window_show, 0, "<StockItem>", GAIM_STOCK_ACCOUNTS }, |
7737 | 2333 { N_("/Tools/_File Transfers"), NULL, gaim_show_xfer_dialog, 0, "<StockItem>", GAIM_STOCK_FILE_TRANSFER }, |
8113 | 2334 { N_("/Tools/R_oom List"), NULL, gaim_gtk_roomlist_dialog_show, 0, NULL }, |
7870 | 2335 { N_("/Tools/Pr_eferences"), "<CTL>P", gaim_gtk_prefs_show, 0, "<StockItem>", GTK_STOCK_PREFERENCES }, |
7856 | 2336 { N_("/Tools/Pr_ivacy"), NULL, gaim_gtk_privacy_dialog_show, 0, NULL }, |
5228 | 2337 { "/Tools/sep2", NULL, NULL, 0, "<Separator>" }, |
7620 | 2338 { N_("/Tools/View System _Log"), NULL, gtk_blist_show_systemlog_cb, 0, NULL }, |
5228 | 2339 |
2340 /* Help */ | |
2341 { N_("/_Help"), NULL, NULL, 0, "<Branch>" }, | |
2342 { N_("/Help/Online _Help"), "F1", gtk_blist_show_onlinehelp_cb, 0, "<StockItem>", GTK_STOCK_HELP }, | |
7620 | 2343 { N_("/Help/_Debug Window"), NULL, toggle_debug, 0, NULL }, |
2344 { N_("/Help/_About"), NULL, show_about, 0, "<StockItem>", GAIM_STOCK_ABOUT }, | |
5228 | 2345 }; |
2346 | |
2347 /********************************************************* | |
2348 * Private Utility functions * | |
2349 *********************************************************/ | |
7620 | 2350 static void |
2351 rename_group_cb(GaimGroup *g, const char *new_name) | |
2352 { | |
2353 gaim_blist_rename_group(g, new_name); | |
2354 gaim_blist_save(); | |
2355 } | |
2356 | |
2357 static void | |
2358 show_rename_group(GtkWidget *unused, GaimGroup *g) | |
2359 { | |
2360 gaim_request_input(NULL, _("Rename Group"), _("New group name"), | |
2361 _("Please enter a new name for the selected group."), | |
8697 | 2362 g->name, FALSE, FALSE, NULL, |
7620 | 2363 _("OK"), G_CALLBACK(rename_group_cb), |
2364 _("Cancel"), NULL, g); | |
2365 } | |
5228 | 2366 |
5234 | 2367 static char *gaim_get_tooltip_text(GaimBlistNode *node) |
5228 | 2368 { |
5237 | 2369 GaimPlugin *prpl; |
2370 GaimPluginProtocolInfo *prpl_info = NULL; | |
5228 | 2371 char *text = NULL; |
7956 | 2372 |
5234 | 2373 if(GAIM_BLIST_NODE_IS_CHAT(node)) { |
7620 | 2374 GaimChat *chat = (GaimChat *)node; |
5237 | 2375 char *name = NULL; |
5274 | 2376 struct proto_chat_entry *pce; |
2377 GList *parts, *tmp; | |
2378 GString *parts_text = g_string_new(""); | |
2379 | |
7956 | 2380 prpl = gaim_find_prpl(gaim_account_get_protocol_id(chat->account)); |
5274 | 2381 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(prpl); |
2382 | |
2383 parts = prpl_info->chat_info(chat->account->gc); | |
5237 | 2384 |
7620 | 2385 name = g_markup_escape_text(gaim_chat_get_name(chat), -1); |
2386 | |
2387 if(g_list_length(gaim_connections_get_all()) > 1) { | |
5274 | 2388 char *account = g_markup_escape_text(chat->account->username, -1); |
2389 g_string_append_printf(parts_text, _("\n<b>Account:</b> %s"), | |
2390 account); | |
2391 g_free(account); | |
5237 | 2392 } |
5274 | 2393 for(tmp = parts; tmp; tmp = tmp->next) { |
7889 | 2394 char *label, *tmp2, *value; |
5274 | 2395 pce = tmp->data; |
5237 | 2396 |
8020 | 2397 if(!pce->secret) { |
2398 | |
2399 tmp2 = g_markup_escape_text(pce->label, -1); | |
2400 label = gaim_text_strip_mnemonic(tmp2); | |
2401 g_free(tmp2); | |
2402 | |
2403 value = g_markup_escape_text(g_hash_table_lookup(chat->components, | |
2404 pce->identifier), -1); | |
2405 | |
2406 g_string_append_printf(parts_text, "\n<b>%s</b> %s", label, value); | |
2407 g_free(label); | |
2408 g_free(value); | |
2409 } | |
5274 | 2410 g_free(pce); |
2411 } | |
2412 g_list_free(parts); | |
2413 | |
2414 text = g_strdup_printf("<span size='larger' weight='bold'>%s</span>%s", | |
2415 name, parts_text->str); | |
2416 g_string_free(parts_text, TRUE); | |
5237 | 2417 g_free(name); |
7620 | 2418 } else if(GAIM_BLIST_NODE_IS_CONTACT(node) || |
2419 GAIM_BLIST_NODE_IS_BUDDY(node)) { | |
2420 GaimBuddy *b; | |
5234 | 2421 char *statustext = NULL; |
7620 | 2422 char *contactaliastext = NULL; |
5234 | 2423 char *aliastext = NULL, *nicktext = NULL; |
7950 | 2424 char *loggedin = NULL, *idletime = NULL; |
2425 char *warning = NULL; | |
5274 | 2426 char *accounttext = NULL; |
5228 | 2427 |
7620 | 2428 if(GAIM_BLIST_NODE_IS_CONTACT(node)) { |
2429 GaimContact *contact = (GaimContact*)node; | |
2430 b = gaim_contact_get_priority_buddy(contact); | |
2431 if(contact->alias) | |
2432 contactaliastext = g_markup_escape_text(contact->alias, -1); | |
2433 } else { | |
2434 b = (GaimBuddy *)node; | |
2435 } | |
2436 | |
7956 | 2437 prpl = gaim_find_prpl(gaim_account_get_protocol_id(b->account)); |
5234 | 2438 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(prpl); |
2439 | |
7620 | 2440 if (prpl_info && prpl_info->tooltip_text) { |
5234 | 2441 const char *end; |
2442 statustext = prpl_info->tooltip_text(b); | |
5228 | 2443 |
5234 | 2444 if(statustext && !g_utf8_validate(statustext, -1, &end)) { |
2445 char *new = g_strndup(statustext, | |
2446 g_utf8_pointer_to_offset(statustext, end)); | |
2447 g_free(statustext); | |
2448 statustext = new; | |
2449 } | |
2450 } | |
2451 | |
2452 if (!statustext && !GAIM_BUDDY_IS_ONLINE(b)) | |
2453 statustext = g_strdup(_("<b>Status:</b> Offline")); | |
5228 | 2454 |
7950 | 2455 if (b->signon > 0) |
2456 loggedin = gaim_str_seconds_to_string(time(NULL) - b->signon); | |
2457 | |
5341 | 2458 if (b->idle > 0) |
7620 | 2459 idletime = gaim_str_seconds_to_string(time(NULL) - b->idle); |
5228 | 2460 |
5234 | 2461 if(b->alias && b->alias[0]) |
2462 aliastext = g_markup_escape_text(b->alias, -1); | |
5228 | 2463 |
5234 | 2464 if(b->server_alias) |
2465 nicktext = g_markup_escape_text(b->server_alias, -1); | |
5228 | 2466 |
5234 | 2467 if (b->evil > 0) |
2468 warning = g_strdup_printf(_("%d%%"), b->evil); | |
5228 | 2469 |
7620 | 2470 if(g_list_length(gaim_connections_get_all()) > 1) |
5274 | 2471 accounttext = g_markup_escape_text(b->account->username, -1); |
2472 | |
5234 | 2473 text = g_strdup_printf("<span size='larger' weight='bold'>%s</span>" |
8592 | 2474 "%s %s" /* Account */ |
7620 | 2475 "%s %s" /* Contact Alias */ |
5438 | 2476 "%s %s" /* Alias */ |
2477 "%s %s" /* Nickname */ | |
8592 | 2478 "%s %s" /* Logged In */ |
2479 "%s %s" /* Idle */ | |
2480 "%s %s" /* Warning */ | |
2481 "%s" /* Status */ | |
5438 | 2482 "%s", |
2483 b->name, | |
2484 accounttext ? _("\n<b>Account:</b>") : "", accounttext ? accounttext : "", | |
7620 | 2485 contactaliastext ? _("\n<b>Contact Alias:</b>") : "", contactaliastext ? contactaliastext : "", |
5438 | 2486 aliastext ? _("\n<b>Alias:</b>") : "", aliastext ? aliastext : "", |
2487 nicktext ? _("\n<b>Nickname:</b>") : "", nicktext ? nicktext : "", | |
7950 | 2488 loggedin ? _("\n<b>Logged In:</b>") : "", loggedin ? loggedin : "", |
5438 | 2489 idletime ? _("\n<b>Idle:</b>") : "", idletime ? idletime : "", |
2490 b->evil ? _("\n<b>Warned:</b>") : "", b->evil ? warning : "", | |
8592 | 2491 statustext ? statustext : "", |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
2492 !g_ascii_strcasecmp(b->name, "robflynn") ? _("\n<b>Description:</b> Spooky") : |
7620 | 2493 !g_ascii_strcasecmp(b->name, "seanegn") ? _("\n<b>Status</b>: Awesome") : |
2494 !g_ascii_strcasecmp(b->name, "chipx86") ? _("\n<b>Status</b>: Rockin'") : ""); | |
5234 | 2495 |
2496 if(warning) | |
2497 g_free(warning); | |
7950 | 2498 if(loggedin) |
2499 g_free(loggedin); | |
5234 | 2500 if(idletime) |
2501 g_free(idletime); | |
2502 if(statustext) | |
2503 g_free(statustext); | |
2504 if(nicktext) | |
2505 g_free(nicktext); | |
2506 if(aliastext) | |
2507 g_free(aliastext); | |
5274 | 2508 if(accounttext) |
2509 g_free(accounttext); | |
5234 | 2510 } |
8824 | 2511 gaim_signal_emit(gaim_gtk_blist_get_handle(), |
8817 | 2512 "drawing-tooltip", node, &text); |
5228 | 2513 return text; |
2514 } | |
2515 | |
7620 | 2516 struct _emblem_data { |
2517 char *filename; | |
2518 int x; | |
2519 int y; | |
2520 }; | |
2521 | |
5234 | 2522 GdkPixbuf *gaim_gtk_blist_get_status_icon(GaimBlistNode *node, GaimStatusIconSize size) |
5228 | 2523 { |
7620 | 2524 GdkPixbuf *scale, *status = NULL; |
2525 int i, scalesize = 30; | |
2526 char *filename; | |
5228 | 2527 const char *protoname = NULL; |
7620 | 2528 struct _gaim_gtk_blist_node *gtknode = node->ui_data; |
2529 struct _emblem_data emblems[4] = {{NULL, 15, 15}, {NULL, 0, 15}, | |
2530 {NULL, 0, 0}, {NULL, 15, 0}}; | |
2531 | |
2532 GaimBuddy *buddy = NULL; | |
2533 GaimChat *chat = NULL; | |
2534 | |
2535 if(GAIM_BLIST_NODE_IS_CONTACT(node)) { | |
2536 if(!gtknode->contact_expanded) | |
2537 buddy = gaim_contact_get_priority_buddy((GaimContact*)node); | |
2538 } else if(GAIM_BLIST_NODE_IS_BUDDY(node)) { | |
2539 buddy = (GaimBuddy*)node; | |
2540 } else if(GAIM_BLIST_NODE_IS_CHAT(node)) { | |
2541 chat = (GaimChat*)node; | |
2542 } else { | |
5228 | 2543 return NULL; |
5234 | 2544 } |
2545 | |
7620 | 2546 if(buddy || chat) { |
2547 GaimAccount *account; | |
2548 GaimPlugin *prpl; | |
2549 GaimPluginProtocolInfo *prpl_info; | |
2550 | |
2551 if(buddy) | |
2552 account = buddy->account; | |
2553 else | |
2554 account = chat->account; | |
2555 | |
7956 | 2556 prpl = gaim_find_prpl(gaim_account_get_protocol_id(account)); |
7620 | 2557 if(!prpl) |
2558 return NULL; | |
2559 | |
2560 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(prpl); | |
2561 | |
2562 if(prpl_info && prpl_info->list_icon) { | |
2563 protoname = prpl_info->list_icon(account, buddy); | |
2564 } | |
2565 if(prpl_info && prpl_info->list_emblems && buddy) { | |
2566 if(buddy->present != GAIM_BUDDY_SIGNING_OFF) | |
2567 prpl_info->list_emblems(buddy, &emblems[0].filename, | |
2568 &emblems[1].filename, &emblems[2].filename, | |
2569 &emblems[3].filename); | |
2570 } | |
5234 | 2571 } |
5228 | 2572 |
7620 | 2573 if(size == GAIM_STATUS_ICON_SMALL) { |
5228 | 2574 scalesize = 15; |
7620 | 2575 /* So that only the se icon will composite */ |
2576 emblems[1].filename = emblems[2].filename = emblems[3].filename = NULL; | |
5228 | 2577 } |
2578 | |
7620 | 2579 if(buddy && buddy->present == GAIM_BUDDY_SIGNING_ON) { |
2580 filename = g_build_filename(DATADIR, "pixmaps", "gaim", "status", "default", "login.png", NULL); | |
2581 } else if(buddy && buddy->present == GAIM_BUDDY_SIGNING_OFF) { | |
2582 filename = g_build_filename(DATADIR, "pixmaps", "gaim", "status", "default", "logout.png", NULL); | |
2583 } else if(buddy || chat) { | |
5228 | 2584 char *image = g_strdup_printf("%s.png", protoname); |
2585 filename = g_build_filename(DATADIR, "pixmaps", "gaim", "status", "default", image, NULL); | |
2586 g_free(image); | |
7620 | 2587 } else { |
2588 /* gaim dude */ | |
2589 filename = g_build_filename(DATADIR, "pixmaps", "gaim.png", NULL); | |
5228 | 2590 } |
7620 | 2591 |
2592 status = gdk_pixbuf_new_from_file(filename, NULL); | |
2593 g_free(filename); | |
2594 | |
2595 if(!status) | |
2596 return NULL; | |
2597 | |
2598 scale = gdk_pixbuf_scale_simple(status, scalesize, scalesize, | |
2599 GDK_INTERP_BILINEAR); | |
2600 g_object_unref(status); | |
2601 | |
2602 for(i=0; i<4; i++) { | |
2603 if(emblems[i].filename) { | |
2604 GdkPixbuf *emblem; | |
2605 char *image = g_strdup_printf("%s.png", emblems[i].filename); | |
2606 filename = g_build_filename(DATADIR, "pixmaps", "gaim", "status", "default", image, NULL); | |
2607 g_free(image); | |
2608 emblem = gdk_pixbuf_new_from_file(filename, NULL); | |
2609 g_free(filename); | |
2610 if(emblem) { | |
2611 if(i == 0 && size == GAIM_STATUS_ICON_SMALL) { | |
2612 gdk_pixbuf_composite(emblem, | |
2613 scale, 5, 5, | |
2614 10, 10, | |
2615 5, 5, | |
2616 .6, .6, | |
2617 GDK_INTERP_BILINEAR, | |
2618 255); | |
2619 } else { | |
2620 gdk_pixbuf_composite(emblem, | |
2621 scale, emblems[i].x, emblems[i].y, | |
2622 15, 15, | |
2623 emblems[i].x, emblems[i].y, | |
2624 1, 1, | |
2625 GDK_INTERP_BILINEAR, | |
2626 255); | |
2627 } | |
2628 g_object_unref(emblem); | |
2629 } | |
5228 | 2630 } |
2631 } | |
7620 | 2632 |
2633 if(buddy) { | |
2634 if(buddy->present == GAIM_BUDDY_OFFLINE) | |
2635 gdk_pixbuf_saturate_and_pixelate(scale, scale, 0.0, FALSE); | |
2636 else if(buddy->idle && | |
2637 gaim_prefs_get_bool("/gaim/gtk/blist/grey_idle_buddies")) | |
2638 gdk_pixbuf_saturate_and_pixelate(scale, scale, 0.25, FALSE); | |
5228 | 2639 } |
7620 | 2640 |
5228 | 2641 return scale; |
2642 } | |
2643 | |
7620 | 2644 static GdkPixbuf *gaim_gtk_blist_get_buddy_icon(GaimBuddy *b) |
5228 | 2645 { |
7620 | 2646 const char *file; |
5228 | 2647 GdkPixbuf *buf, *ret; |
2648 | |
7620 | 2649 if (!gaim_prefs_get_bool("/gaim/gtk/blist/show_buddy_icons")) |
5228 | 2650 return NULL; |
2651 | |
7693 | 2652 if ((file = gaim_blist_node_get_string((GaimBlistNode*)b, "buddy_icon")) == NULL) |
5228 | 2653 return NULL; |
2654 | |
2655 buf = gdk_pixbuf_new_from_file(file, NULL); | |
2656 | |
2657 | |
2658 if (buf) { | |
2659 if (!GAIM_BUDDY_IS_ONLINE(b)) | |
2660 gdk_pixbuf_saturate_and_pixelate(buf, buf, 0.0, FALSE); | |
7620 | 2661 if (b->idle && gaim_prefs_get_bool("/gaim/gtk/blist/grey_idle_buddies")) |
5228 | 2662 gdk_pixbuf_saturate_and_pixelate(buf, buf, 0.25, FALSE); |
2663 | |
2664 ret = gdk_pixbuf_scale_simple(buf,30,30, GDK_INTERP_BILINEAR); | |
2665 g_object_unref(G_OBJECT(buf)); | |
2666 return ret; | |
2667 } | |
2668 return NULL; | |
2669 } | |
2670 | |
7620 | 2671 static gchar *gaim_gtk_blist_get_name_markup(GaimBuddy *b, gboolean selected) |
5228 | 2672 { |
7620 | 2673 const char *name; |
2674 char *esc, *text = NULL; | |
5228 | 2675 GaimPlugin *prpl; |
2676 GaimPluginProtocolInfo *prpl_info = NULL; | |
7620 | 2677 GaimContact *contact; |
2678 struct _gaim_gtk_blist_node *gtkcontactnode = NULL; | |
5228 | 2679 int ihrs, imin; |
2680 char *idletime = NULL, *warning = NULL, *statustext = NULL; | |
2681 time_t t; | |
7620 | 2682 /* XXX Clean up this crap */ |
2683 | |
2684 contact = (GaimContact*)((GaimBlistNode*)b)->parent; | |
2685 if(contact) | |
2686 gtkcontactnode = ((GaimBlistNode*)contact)->ui_data; | |
2687 | |
2688 if(gtkcontactnode && !gtkcontactnode->contact_expanded && contact->alias) | |
2689 name = contact->alias; | |
2690 else | |
2691 name = gaim_get_buddy_alias(b); | |
2692 esc = g_markup_escape_text(name, strlen(name)); | |
2693 | |
7956 | 2694 prpl = gaim_find_prpl(gaim_account_get_protocol_id(b->account)); |
5228 | 2695 |
2696 if (prpl != NULL) | |
2697 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(prpl); | |
2698 | |
7620 | 2699 if (!gaim_prefs_get_bool("/gaim/gtk/blist/show_buddy_icons")) { |
2700 if ((b->idle && !selected && | |
2701 gaim_prefs_get_bool("/gaim/gtk/blist/grey_idle_buddies")) || | |
2702 !GAIM_BUDDY_IS_ONLINE(b)) { | |
2703 if (selected) | |
2704 text = g_strdup(esc); | |
2705 else | |
2706 text = g_strdup_printf("<span color='dim grey'>%s</span>", | |
2707 esc); | |
5228 | 2708 g_free(esc); |
2709 return text; | |
7620 | 2710 } |
2711 else { | |
5228 | 2712 return esc; |
2713 } | |
2714 } | |
2715 | |
2716 time(&t); | |
2717 ihrs = (t - b->idle) / 3600; | |
2718 imin = ((t - b->idle) / 60) % 60; | |
2719 | |
8122
36674144c510
[gaim-migrate @ 8826]
Christian Hammond <chipx86@chipx86.com>
parents:
8113
diff
changeset
|
2720 if (prpl_info && prpl_info->status_text && b->account->gc) { |
5228 | 2721 char *tmp = prpl_info->status_text(b); |
2722 const char *end; | |
2723 | |
2724 if(tmp && !g_utf8_validate(tmp, -1, &end)) { | |
2725 char *new = g_strndup(tmp, | |
2726 g_utf8_pointer_to_offset(tmp, end)); | |
2727 g_free(tmp); | |
2728 tmp = new; | |
2729 } | |
2730 | |
2731 if(tmp) { | |
2732 char buf[32]; | |
2733 char *c = tmp; | |
2734 int length = 0, vis=0; | |
2735 gboolean inside = FALSE; | |
2736 g_strdelimit(tmp, "\n", ' '); | |
7620 | 2737 gaim_str_strip_cr(tmp); |
5228 | 2738 |
2739 while(*c && vis < 20) { | |
2740 if(*c == '&') | |
2741 inside = TRUE; | |
2742 else if(*c == ';') | |
2743 inside = FALSE; | |
2744 if(!inside) | |
2745 vis++; | |
7620 | 2746 c = g_utf8_next_char(c); /* this is fun */ |
5228 | 2747 } |
2748 | |
7620 | 2749 length = c - tmp; |
2750 | |
5228 | 2751 if(vis == 20) |
2752 g_snprintf(buf, sizeof(buf), "%%.%ds...", length); | |
2753 else | |
2754 g_snprintf(buf, sizeof(buf), "%%s "); | |
2755 | |
2756 statustext = g_strdup_printf(buf, tmp); | |
2757 | |
2758 g_free(tmp); | |
2759 } | |
2760 } | |
2761 | |
7620 | 2762 if (b->idle > 0 && |
2763 gaim_prefs_get_bool("/gaim/gtk/blist/show_idle_time")) { | |
5228 | 2764 if (ihrs) |
2765 idletime = g_strdup_printf(_("Idle (%dh%02dm) "), ihrs, imin); | |
2766 else | |
2767 idletime = g_strdup_printf(_("Idle (%dm) "), imin); | |
2768 } | |
2769 | |
7620 | 2770 if (b->evil > 0 && |
2771 gaim_prefs_get_bool("/gaim/gtk/blist/show_warning_level")) | |
5228 | 2772 warning = g_strdup_printf(_("Warned (%d%%) "), b->evil); |
2773 | |
2774 if(!GAIM_BUDDY_IS_ONLINE(b) && !statustext) | |
7620 | 2775 statustext = g_strdup(_("Offline ")); |
2776 | |
2777 if (b->idle && !selected && | |
2778 gaim_prefs_get_bool("/gaim/gtk/blist/grey_idle_buddies")) { | |
2779 | |
5228 | 2780 text = g_strdup_printf("<span color='dim grey'>%s</span>\n" |
2781 "<span color='dim grey' size='smaller'>%s%s%s</span>", | |
2782 esc, | |
2783 statustext != NULL ? statustext : "", | |
2784 idletime != NULL ? idletime : "", | |
2785 warning != NULL ? warning : ""); | |
7620 | 2786 } else if (statustext == NULL && idletime == NULL && warning == NULL && |
2787 GAIM_BUDDY_IS_ONLINE(b)) { | |
5228 | 2788 text = g_strdup(esc); |
2789 } else { | |
2790 text = g_strdup_printf("%s\n" | |
2791 "<span %s size='smaller'>%s%s%s</span>", esc, | |
2792 selected ? "" : "color='dim grey'", | |
2793 statustext != NULL ? statustext : "", | |
7620 | 2794 idletime != NULL ? idletime : "", |
5228 | 2795 warning != NULL ? warning : ""); |
2796 } | |
2797 if (idletime) | |
2798 g_free(idletime); | |
2799 if (warning) | |
2800 g_free(warning); | |
2801 if (statustext) | |
2802 g_free(statustext); | |
2803 if (esc) | |
2804 g_free(esc); | |
2805 | |
2806 return text; | |
2807 } | |
2808 | |
2809 static void gaim_gtk_blist_restore_position() | |
2810 { | |
7620 | 2811 int blist_x, blist_y, blist_width, blist_height; |
2812 | |
2813 blist_width = gaim_prefs_get_int("/gaim/gtk/blist/width"); | |
2814 | |
2815 /* if the window exists, is hidden, we're saving positions, and the | |
2816 * position is sane... */ | |
2817 if (gtkblist && gtkblist->window && | |
2818 !GTK_WIDGET_VISIBLE(gtkblist->window) && blist_width != 0) { | |
2819 | |
2820 blist_x = gaim_prefs_get_int("/gaim/gtk/blist/x"); | |
2821 blist_y = gaim_prefs_get_int("/gaim/gtk/blist/y"); | |
2822 blist_height = gaim_prefs_get_int("/gaim/gtk/blist/height"); | |
2823 | |
5228 | 2824 /* ...check position is on screen... */ |
7620 | 2825 if (blist_x >= gdk_screen_width()) |
2826 blist_x = gdk_screen_width() - 100; | |
2827 else if (blist_x + blist_width < 0) | |
2828 blist_x = 100; | |
2829 | |
2830 if (blist_y >= gdk_screen_height()) | |
2831 blist_y = gdk_screen_height() - 100; | |
2832 else if (blist_y + blist_height < 0) | |
2833 blist_y = 100; | |
2834 | |
5228 | 2835 /* ...and move it back. */ |
7620 | 2836 gtk_window_move(GTK_WINDOW(gtkblist->window), blist_x, blist_y); |
2837 gtk_window_resize(GTK_WINDOW(gtkblist->window), blist_width, blist_height); | |
5228 | 2838 } |
2839 } | |
2840 | |
7620 | 2841 static gboolean gaim_gtk_blist_refresh_timer(GaimBuddyList *list) |
5228 | 2842 { |
7620 | 2843 GaimBlistNode *gnode, *cnode; |
2844 | |
2845 for(gnode = list->root; gnode; gnode = gnode->next) { | |
2846 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
5234 | 2847 continue; |
7620 | 2848 for(cnode = gnode->child; cnode; cnode = cnode->next) { |
2849 if(GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
2850 GaimBuddy *buddy = gaim_contact_get_priority_buddy((GaimContact*)cnode); | |
2851 if(buddy && buddy->idle) | |
2852 gaim_gtk_blist_update(list, cnode); | |
2853 } | |
5228 | 2854 } |
2855 } | |
2856 | |
2857 /* keep on going */ | |
2858 return TRUE; | |
2859 } | |
2860 | |
7620 | 2861 static void gaim_gtk_blist_hide_node(GaimBuddyList *list, GaimBlistNode *node) |
5260 | 2862 { |
2863 struct _gaim_gtk_blist_node *gtknode = (struct _gaim_gtk_blist_node *)node->ui_data; | |
2864 GtkTreeIter iter; | |
2865 | |
2866 if (!gtknode || !gtknode->row || !gtkblist) | |
2867 return; | |
2868 | |
2869 if(gtkblist->selected_node == node) | |
2870 gtkblist->selected_node = NULL; | |
2871 | |
2872 if (get_iter_from_node(node, &iter)) { | |
2873 gtk_tree_store_remove(gtkblist->treemodel, &iter); | |
7620 | 2874 if(GAIM_BLIST_NODE_IS_CONTACT(node) || GAIM_BLIST_NODE_IS_BUDDY(node) |
2875 || GAIM_BLIST_NODE_IS_CHAT(node)) { | |
5260 | 2876 gaim_gtk_blist_update(list, node->parent); |
2877 } | |
2878 } | |
2879 gtk_tree_row_reference_free(gtknode->row); | |
2880 gtknode->row = NULL; | |
2881 } | |
2882 | |
7620 | 2883 static void |
2884 signed_on_off_cb(GaimConnection *gc, GaimBuddyList *blist) | |
2885 { | |
8259
4f9f68ab8770
[gaim-migrate @ 8982]
Christian Hammond <chipx86@chipx86.com>
parents:
8254
diff
changeset
|
2886 GaimGtkBuddyList *gtkblist = GAIM_GTK_BLIST(blist); |
4f9f68ab8770
[gaim-migrate @ 8982]
Christian Hammond <chipx86@chipx86.com>
parents:
8254
diff
changeset
|
2887 |
7620 | 2888 gaim_gtk_blist_update_protocol_actions(); |
8235 | 2889 gaim_gtkpounce_menu_build(gtkblist->bpmenu); |
7620 | 2890 } |
2891 | |
2892 /* this is called on all sorts of signals, and we have no reason to pass | |
2893 * it anything, so it remains without arguments. If you need anything | |
2894 * more specific, do as below, and create another callback that calls | |
2895 * this */ | |
2896 static void | |
2897 raise_on_events_cb() | |
2898 { | |
2899 if(gtkblist && gtkblist->window && | |
2900 gaim_prefs_get_bool("/gaim/gtk/blist/raise_on_events")) { | |
2901 gtk_widget_show(gtkblist->window); | |
2902 gtk_window_deiconify(GTK_WINDOW(gtkblist->window)); | |
2903 gdk_window_raise(gtkblist->window->window); | |
2904 } | |
2905 } | |
2906 | |
5228 | 2907 /********************************************************************************** |
2908 * Public API Functions * | |
2909 **********************************************************************************/ | |
7620 | 2910 static void gaim_gtk_blist_new_list(GaimBuddyList *blist) |
5228 | 2911 { |
7620 | 2912 GaimGtkBuddyList *gtkblist; |
2913 | |
2914 gtkblist = g_new0(GaimGtkBuddyList, 1); | |
2915 blist->ui_data = gtkblist; | |
2916 | |
2917 /* All of these signal handlers are for the "Raise on Events" option */ | |
2918 gaim_signal_connect(gaim_blist_get_handle(), "buddy-signed-on", | |
2919 gtkblist, GAIM_CALLBACK(raise_on_events_cb), NULL); | |
2920 gaim_signal_connect(gaim_blist_get_handle(), "buddy-signed-off", | |
2921 gtkblist, GAIM_CALLBACK(raise_on_events_cb), NULL); | |
5228 | 2922 } |
2923 | |
5256 | 2924 static void gaim_gtk_blist_new_node(GaimBlistNode *node) |
2925 { | |
2926 node->ui_data = g_new0(struct _gaim_gtk_blist_node, 1); | |
2927 } | |
2928 | |
5228 | 2929 void gaim_gtk_blist_update_columns() |
2930 { | |
2931 if(!gtkblist) | |
2932 return; | |
2933 | |
7620 | 2934 if (gaim_prefs_get_bool("/gaim/gtk/blist/show_buddy_icons")) { |
5228 | 2935 gtk_tree_view_column_set_visible(gtkblist->buddy_icon_column, TRUE); |
2936 gtk_tree_view_column_set_visible(gtkblist->idle_column, FALSE); | |
2937 gtk_tree_view_column_set_visible(gtkblist->warning_column, FALSE); | |
2938 } else { | |
7620 | 2939 gtk_tree_view_column_set_visible(gtkblist->idle_column, |
2940 gaim_prefs_get_bool("/gaim/gtk/blist/show_idle_time")); | |
2941 gtk_tree_view_column_set_visible(gtkblist->warning_column, | |
2942 gaim_prefs_get_bool("/gaim/gtk/blist/show_warning_level")); | |
5228 | 2943 gtk_tree_view_column_set_visible(gtkblist->buddy_icon_column, FALSE); |
2944 } | |
2945 } | |
2946 | |
8089 | 2947 enum {DRAG_BUDDY, DRAG_ROW, DRAG_VCARD}; |
5228 | 2948 |
2949 static char * | |
2950 item_factory_translate_func (const char *path, gpointer func_data) | |
2951 { | |
7620 | 2952 return _((char *)path); |
5228 | 2953 } |
2954 | |
5422 | 2955 void gaim_gtk_blist_setup_sort_methods() |
2956 { | |
7620 | 2957 gaim_gtk_blist_sort_method_reg("none", _("None"), sort_method_none); |
2958 #if GTK_CHECK_VERSION(2,2,1) | |
2959 gaim_gtk_blist_sort_method_reg("alphabetical", _("Alphabetical"), sort_method_alphabetical); | |
2960 gaim_gtk_blist_sort_method_reg("status", _("By status"), sort_method_status); | |
2961 gaim_gtk_blist_sort_method_reg("log_size", _("By log size"), sort_method_log); | |
2962 #endif | |
2963 gaim_gtk_blist_sort_method_set(gaim_prefs_get_string("/gaim/gtk/blist/sort_type")); | |
2964 } | |
2965 | |
2966 static void _prefs_change_redo_list() { | |
2967 redo_buddy_list(gaim_get_blist(), TRUE); | |
2968 } | |
2969 | |
2970 static void _prefs_change_sort_method(const char *pref_name, GaimPrefType type, | |
2971 gpointer val, gpointer data) { | |
2972 if(!strcmp(pref_name, "/gaim/gtk/blist/sort_type")) | |
2973 gaim_gtk_blist_sort_method_set(val); | |
2974 } | |
2975 | |
2976 static void gaim_gtk_blist_show(GaimBuddyList *list) | |
5228 | 2977 { |
2978 GtkCellRenderer *rend; | |
2979 GtkTreeViewColumn *column; | |
2980 GtkWidget *sw; | |
2981 GtkWidget *button; | |
2982 GtkSizeGroup *sg; | |
2983 GtkAccelGroup *accel_group; | |
2984 GtkTreeSelection *selection; | |
2985 GtkTargetEntry gte[] = {{"GAIM_BLIST_NODE", GTK_TARGET_SAME_APP, DRAG_ROW}, | |
8089 | 2986 {"application/x-im-contact", 0, DRAG_BUDDY}, |
2987 {"text/x-vcard", 0, DRAG_VCARD }}; | |
5228 | 2988 |
2989 if (gtkblist && gtkblist->window) { | |
2990 gtk_widget_show(gtkblist->window); | |
2991 return; | |
2992 } | |
2993 | |
2994 gtkblist = GAIM_GTK_BLIST(list); | |
2995 | |
2996 gtkblist->window = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
2997 gtk_window_set_role(GTK_WINDOW(gtkblist->window), "buddy_list"); | |
2998 gtk_window_set_title(GTK_WINDOW(gtkblist->window), _("Buddy List")); | |
2999 | |
3000 GTK_WINDOW(gtkblist->window)->allow_shrink = TRUE; | |
3001 | |
3002 gtkblist->vbox = gtk_vbox_new(FALSE, 0); | |
3003 gtk_container_add(GTK_CONTAINER(gtkblist->window), gtkblist->vbox); | |
3004 | |
3005 g_signal_connect(G_OBJECT(gtkblist->window), "delete_event", G_CALLBACK(gtk_blist_delete_cb), NULL); | |
3006 g_signal_connect(G_OBJECT(gtkblist->window), "configure_event", G_CALLBACK(gtk_blist_configure_cb), NULL); | |
3007 g_signal_connect(G_OBJECT(gtkblist->window), "visibility_notify_event", G_CALLBACK(gtk_blist_visibility_cb), NULL); | |
3008 gtk_widget_add_events(gtkblist->window, GDK_VISIBILITY_NOTIFY_MASK); | |
3009 | |
3010 /******************************* Menu bar *************************************/ | |
3011 accel_group = gtk_accel_group_new(); | |
3012 gtk_window_add_accel_group(GTK_WINDOW (gtkblist->window), accel_group); | |
3013 g_object_unref(accel_group); | |
5427 | 3014 gtkblist->ift = gtk_item_factory_new(GTK_TYPE_MENU_BAR, "<GaimMain>", accel_group); |
3015 gtk_item_factory_set_translate_func (gtkblist->ift, | |
5228 | 3016 item_factory_translate_func, |
3017 NULL, NULL); | |
5427 | 3018 gtk_item_factory_create_items(gtkblist->ift, sizeof(blist_menu) / sizeof(*blist_menu), |
5228 | 3019 blist_menu, NULL); |
7620 | 3020 gaim_gtk_load_accels(); |
3021 g_signal_connect(G_OBJECT(accel_group), "accel-changed", | |
3022 G_CALLBACK(gaim_gtk_save_accels_cb), NULL); | |
5427 | 3023 gtk_box_pack_start(GTK_BOX(gtkblist->vbox), gtk_item_factory_get_widget(gtkblist->ift, "<GaimMain>"), FALSE, FALSE, 0); |
5228 | 3024 |
5427 | 3025 awaymenu = gtk_item_factory_get_widget(gtkblist->ift, N_("/Tools/Away")); |
5228 | 3026 do_away_menu(); |
3027 | |
5427 | 3028 gtkblist->bpmenu = gtk_item_factory_get_widget(gtkblist->ift, N_("/Tools/Buddy Pounce")); |
5228 | 3029 gaim_gtkpounce_menu_build(gtkblist->bpmenu); |
3030 | |
5427 | 3031 protomenu = gtk_item_factory_get_widget(gtkblist->ift, N_("/Tools/Protocol Actions")); |
7620 | 3032 gaim_gtk_blist_update_protocol_actions(); |
5228 | 3033 /****************************** GtkTreeView **********************************/ |
3034 sw = gtk_scrolled_window_new(NULL,NULL); | |
3035 gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_IN); | |
3036 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); | |
3037 | |
7620 | 3038 gtkblist->treemodel = gtk_tree_store_new(BLIST_COLUMNS, |
3039 GDK_TYPE_PIXBUF, G_TYPE_BOOLEAN, G_TYPE_STRING, | |
3040 G_TYPE_STRING, G_TYPE_STRING, GDK_TYPE_PIXBUF, G_TYPE_POINTER); | |
5228 | 3041 |
3042 gtkblist->treeview = gtk_tree_view_new_with_model(GTK_TREE_MODEL(gtkblist->treemodel)); | |
3043 gtk_widget_set_size_request(gtkblist->treeview, -1, 200); | |
3044 | |
3045 /* Set up selection stuff */ | |
3046 | |
3047 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(gtkblist->treeview)); | |
3048 g_signal_connect(G_OBJECT(selection), "changed", G_CALLBACK(gaim_gtk_blist_selection_changed), NULL); | |
3049 | |
3050 | |
3051 /* Set up dnd */ | |
7650 | 3052 gtk_tree_view_enable_model_drag_source(GTK_TREE_VIEW(gtkblist->treeview), |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
3053 GDK_BUTTON1_MASK, gte, 3, |
7650 | 3054 GDK_ACTION_COPY); |
3055 gtk_tree_view_enable_model_drag_dest(GTK_TREE_VIEW(gtkblist->treeview), | |
8089 | 3056 gte, 3, |
7650 | 3057 GDK_ACTION_COPY | GDK_ACTION_MOVE); |
7636 | 3058 |
3059 g_signal_connect(G_OBJECT(gtkblist->treeview), "drag-data-received", G_CALLBACK(gaim_gtk_blist_drag_data_rcv_cb), NULL); | |
5228 | 3060 g_signal_connect(G_OBJECT(gtkblist->treeview), "drag-data-get", G_CALLBACK(gaim_gtk_blist_drag_data_get_cb), NULL); |
3061 | |
3062 /* Tooltips */ | |
3063 g_signal_connect(G_OBJECT(gtkblist->treeview), "motion-notify-event", G_CALLBACK(gaim_gtk_blist_motion_cb), NULL); | |
3064 g_signal_connect(G_OBJECT(gtkblist->treeview), "leave-notify-event", G_CALLBACK(gaim_gtk_blist_leave_cb), NULL); | |
3065 | |
3066 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(gtkblist->treeview), FALSE); | |
3067 | |
3068 column = gtk_tree_view_column_new (); | |
3069 | |
3070 rend = gtk_cell_renderer_pixbuf_new(); | |
3071 gtk_tree_view_column_pack_start (column, rend, FALSE); | |
7620 | 3072 gtk_tree_view_column_set_attributes (column, rend, |
5228 | 3073 "pixbuf", STATUS_ICON_COLUMN, |
3074 "visible", STATUS_ICON_VISIBLE_COLUMN, | |
3075 NULL); | |
3076 g_object_set(rend, "xalign", 0.0, "ypad", 0, NULL); | |
3077 | |
3078 rend = gtk_cell_renderer_text_new(); | |
3079 gtk_tree_view_column_pack_start (column, rend, TRUE); | |
7620 | 3080 gtk_tree_view_column_set_attributes (column, rend, |
5228 | 3081 "markup", NAME_COLUMN, |
3082 NULL); | |
3083 g_object_set(rend, "ypad", 0, "yalign", 0.5, NULL); | |
3084 | |
3085 gtk_tree_view_append_column(GTK_TREE_VIEW(gtkblist->treeview), column); | |
3086 | |
3087 rend = gtk_cell_renderer_text_new(); | |
3088 gtkblist->warning_column = gtk_tree_view_column_new_with_attributes("Warning", rend, "markup", WARNING_COLUMN, NULL); | |
3089 gtk_tree_view_append_column(GTK_TREE_VIEW(gtkblist->treeview), gtkblist->warning_column); | |
3090 g_object_set(rend, "xalign", 1.0, "ypad", 0, NULL); | |
3091 | |
3092 rend = gtk_cell_renderer_text_new(); | |
3093 gtkblist->idle_column = gtk_tree_view_column_new_with_attributes("Idle", rend, "markup", IDLE_COLUMN, NULL); | |
3094 gtk_tree_view_append_column(GTK_TREE_VIEW(gtkblist->treeview), gtkblist->idle_column); | |
3095 g_object_set(rend, "xalign", 1.0, "ypad", 0, NULL); | |
3096 | |
3097 rend = gtk_cell_renderer_pixbuf_new(); | |
3098 gtkblist->buddy_icon_column = gtk_tree_view_column_new_with_attributes("Buddy Icon", rend, "pixbuf", BUDDY_ICON_COLUMN, NULL); | |
3099 g_object_set(rend, "xalign", 1.0, "ypad", 0, NULL); | |
3100 gtk_tree_view_append_column(GTK_TREE_VIEW(gtkblist->treeview), gtkblist->buddy_icon_column); | |
3101 | |
3102 g_signal_connect(G_OBJECT(gtkblist->treeview), "row-activated", G_CALLBACK(gtk_blist_row_activated_cb), NULL); | |
3103 g_signal_connect(G_OBJECT(gtkblist->treeview), "row-expanded", G_CALLBACK(gtk_blist_row_expanded_cb), NULL); | |
3104 g_signal_connect(G_OBJECT(gtkblist->treeview), "row-collapsed", G_CALLBACK(gtk_blist_row_collapsed_cb), NULL); | |
3105 g_signal_connect(G_OBJECT(gtkblist->treeview), "button-press-event", G_CALLBACK(gtk_blist_button_press_cb), NULL); | |
7620 | 3106 g_signal_connect(G_OBJECT(gtkblist->treeview), "key-press-event", G_CALLBACK(gtk_blist_key_press_cb), NULL); |
8143 | 3107 g_signal_connect(G_OBJECT(gtkblist->treeview), "popup-menu", G_CALLBACK(gaim_gtk_blist_popup_menu_cb), NULL); |
5228 | 3108 |
5419 | 3109 /* Enable CTRL+F searching */ |
3110 gtk_tree_view_set_search_column(GTK_TREE_VIEW(gtkblist->treeview), NAME_COLUMN); | |
3111 | |
5228 | 3112 gtk_box_pack_start(GTK_BOX(gtkblist->vbox), sw, TRUE, TRUE, 0); |
3113 gtk_container_add(GTK_CONTAINER(sw), gtkblist->treeview); | |
3114 gaim_gtk_blist_update_columns(); | |
3115 | |
3116 /* set the Show Offline Buddies option. must be done | |
3117 * after the treeview or faceprint gets mad. -Robot101 | |
3118 */ | |
5427 | 3119 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(gtk_item_factory_get_item (gtkblist->ift, N_("/Buddies/Show Offline Buddies"))), |
7620 | 3120 gaim_prefs_get_bool("/gaim/gtk/blist/show_offline_buddies")); |
5427 | 3121 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(gtk_item_factory_get_item (gtkblist->ift, N_("/Buddies/Show Empty Groups"))), |
7620 | 3122 gaim_prefs_get_bool("/gaim/gtk/blist/show_empty_groups")); |
5228 | 3123 |
3124 /* OK... let's show this bad boy. */ | |
3125 gaim_gtk_blist_refresh(list); | |
3126 gaim_gtk_blist_restore_position(); | |
3127 gtk_widget_show_all(gtkblist->window); | |
3128 | |
3129 /**************************** Button Box **************************************/ | |
3130 /* add this afterwards so it doesn't force up the width of the window */ | |
3131 | |
3132 gtkblist->tooltips = gtk_tooltips_new(); | |
3133 | |
3134 sg = gtk_size_group_new(GTK_SIZE_GROUP_BOTH); | |
3135 gtkblist->bbox = gtk_hbox_new(TRUE, 0); | |
3136 gtk_box_pack_start(GTK_BOX(gtkblist->vbox), gtkblist->bbox, FALSE, FALSE, 0); | |
3137 gtk_widget_show(gtkblist->bbox); | |
3138 | |
8137 | 3139 button = gaim_pixbuf_button_from_stock(_("I_M"), GAIM_STOCK_IM, GAIM_BUTTON_VERTICAL); |
5228 | 3140 gtk_box_pack_start(GTK_BOX(gtkblist->bbox), button, FALSE, FALSE, 0); |
3141 gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE); | |
3142 gtk_size_group_add_widget(sg, button); | |
3143 g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(gtk_blist_button_im_cb), | |
3144 gtkblist->treeview); | |
3145 gtk_tooltips_set_tip(GTK_TOOLTIPS(gtkblist->tooltips), button, _("Send a message to the selected buddy"), NULL); | |
3146 gtk_widget_show(button); | |
3147 | |
8137 | 3148 button = gaim_pixbuf_button_from_stock(_("Get _Info"), GAIM_STOCK_INFO, GAIM_BUTTON_VERTICAL); |
5228 | 3149 gtk_box_pack_start(GTK_BOX(gtkblist->bbox), button, FALSE, FALSE, 0); |
3150 gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE); | |
3151 gtk_size_group_add_widget(sg, button); | |
3152 g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(gtk_blist_button_info_cb), | |
3153 gtkblist->treeview); | |
3154 gtk_tooltips_set_tip(GTK_TOOLTIPS(gtkblist->tooltips), button, _("Get information on the selected buddy"), NULL); | |
3155 gtk_widget_show(button); | |
3156 | |
8137 | 3157 button = gaim_pixbuf_button_from_stock(_("_Chat"), GAIM_STOCK_CHAT, GAIM_BUTTON_VERTICAL); |
5228 | 3158 gtk_box_pack_start(GTK_BOX(gtkblist->bbox), button, FALSE, FALSE, 0); |
3159 gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE); | |
3160 gtk_size_group_add_widget(sg, button); | |
5234 | 3161 g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(gtk_blist_button_chat_cb), gtkblist->treeview); |
5228 | 3162 gtk_tooltips_set_tip(GTK_TOOLTIPS(gtkblist->tooltips), button, _("Join a chat room"), NULL); |
3163 gtk_widget_show(button); | |
3164 | |
8137 | 3165 button = gaim_pixbuf_button_from_stock(_("_Away"), GAIM_STOCK_ICON_AWAY, GAIM_BUTTON_VERTICAL); |
5228 | 3166 gtk_box_pack_start(GTK_BOX(gtkblist->bbox), button, FALSE, FALSE, 0); |
3167 gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE); | |
3168 gtk_size_group_add_widget(sg, button); | |
3169 g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(gtk_blist_button_away_cb), NULL); | |
3170 gtk_tooltips_set_tip(GTK_TOOLTIPS(gtkblist->tooltips), button, _("Set an away message"), NULL); | |
3171 gtk_widget_show(button); | |
3172 | |
3173 /* this will show the right image/label widgets for us */ | |
3174 gaim_gtk_blist_update_toolbar(); | |
3175 | |
3176 /* start the refresh timer */ | |
7620 | 3177 if (gaim_prefs_get_bool("/gaim/gtk/blist/show_idle_time") || |
3178 gaim_prefs_get_bool("/gaim/gtk/blist/show_buddy_icons")) { | |
3179 | |
3180 gtkblist->refresh_timer = g_timeout_add(30000, | |
3181 (GSourceFunc)gaim_gtk_blist_refresh_timer, list); | |
3182 } | |
3183 | |
3184 /* attach prefs callbacks */ | |
3185 /* for the toolbar buttons */ | |
3186 blist_prefs_callbacks = g_slist_prepend(blist_prefs_callbacks, | |
3187 GINT_TO_POINTER( | |
3188 gaim_prefs_connect_callback("/gaim/gtk/blist/button_style", | |
3189 gaim_gtk_blist_update_toolbar, NULL))); | |
3190 blist_prefs_callbacks = g_slist_prepend(blist_prefs_callbacks, | |
3191 GINT_TO_POINTER( | |
3192 gaim_prefs_connect_callback("/gaim/gtk/blist/show_buttons", | |
3193 gaim_gtk_blist_update_toolbar, NULL))); | |
3194 | |
3195 /* things that affect how buddies are displayed */ | |
3196 blist_prefs_callbacks = g_slist_prepend(blist_prefs_callbacks, | |
3197 GINT_TO_POINTER( | |
3198 gaim_prefs_connect_callback("/gaim/gtk/blist/grey_idle_buddies", | |
3199 _prefs_change_redo_list, NULL))); | |
3200 blist_prefs_callbacks = g_slist_prepend(blist_prefs_callbacks, | |
3201 GINT_TO_POINTER( | |
3202 gaim_prefs_connect_callback("/gaim/gtk/blist/show_buddy_icons", | |
3203 _prefs_change_redo_list, NULL))); | |
3204 blist_prefs_callbacks = g_slist_prepend(blist_prefs_callbacks, | |
3205 GINT_TO_POINTER( | |
3206 gaim_prefs_connect_callback("/gaim/gtk/blist/show_warning_level", | |
3207 _prefs_change_redo_list, NULL))); | |
3208 blist_prefs_callbacks = g_slist_prepend(blist_prefs_callbacks, | |
3209 GINT_TO_POINTER( | |
3210 gaim_prefs_connect_callback("/gaim/gtk/blist/show_idle_time", | |
3211 _prefs_change_redo_list, NULL))); | |
3212 blist_prefs_callbacks = g_slist_prepend(blist_prefs_callbacks, | |
3213 GINT_TO_POINTER( | |
3214 gaim_prefs_connect_callback("/gaim/gtk/blist/show_empty_groups", | |
3215 _prefs_change_redo_list, NULL))); | |
3216 blist_prefs_callbacks = g_slist_prepend(blist_prefs_callbacks, | |
3217 GINT_TO_POINTER( | |
3218 gaim_prefs_connect_callback("/gaim/gtk/blist/show_group_count", | |
3219 _prefs_change_redo_list, NULL))); | |
3220 blist_prefs_callbacks = g_slist_prepend(blist_prefs_callbacks, | |
3221 GINT_TO_POINTER( | |
3222 gaim_prefs_connect_callback("/gaim/gtk/blist/show_offline_buddies", | |
3223 _prefs_change_redo_list, NULL))); | |
3224 | |
3225 /* sorting */ | |
3226 blist_prefs_callbacks = g_slist_prepend(blist_prefs_callbacks, | |
3227 GINT_TO_POINTER( | |
3228 gaim_prefs_connect_callback("/gaim/gtk/blist/sort_type", | |
3229 _prefs_change_sort_method, NULL))); | |
3230 | |
3231 /* things that affect what columns are displayed */ | |
3232 blist_prefs_callbacks = g_slist_prepend(blist_prefs_callbacks, | |
3233 GINT_TO_POINTER( | |
3234 gaim_prefs_connect_callback("/gaim/gtk/blist/show_buddy_icons", | |
3235 gaim_gtk_blist_update_columns, NULL))); | |
3236 blist_prefs_callbacks = g_slist_prepend(blist_prefs_callbacks, | |
3237 GINT_TO_POINTER( | |
3238 gaim_prefs_connect_callback("/gaim/gtk/blist/show_idle_time", | |
3239 gaim_gtk_blist_update_columns, NULL))); | |
3240 blist_prefs_callbacks = g_slist_prepend(blist_prefs_callbacks, | |
3241 GINT_TO_POINTER( | |
3242 gaim_prefs_connect_callback("/gaim/gtk/blist/show_warning_level", | |
3243 gaim_gtk_blist_update_columns, NULL))); | |
8259
4f9f68ab8770
[gaim-migrate @ 8982]
Christian Hammond <chipx86@chipx86.com>
parents:
8254
diff
changeset
|
3244 |
4f9f68ab8770
[gaim-migrate @ 8982]
Christian Hammond <chipx86@chipx86.com>
parents:
8254
diff
changeset
|
3245 /* Setup some gaim signal handlers. */ |
4f9f68ab8770
[gaim-migrate @ 8982]
Christian Hammond <chipx86@chipx86.com>
parents:
8254
diff
changeset
|
3246 gaim_signal_connect(gaim_connections_get_handle(), "signing-on", |
4f9f68ab8770
[gaim-migrate @ 8982]
Christian Hammond <chipx86@chipx86.com>
parents:
8254
diff
changeset
|
3247 gtkblist, GAIM_CALLBACK(signed_on_off_cb), list); |
4f9f68ab8770
[gaim-migrate @ 8982]
Christian Hammond <chipx86@chipx86.com>
parents:
8254
diff
changeset
|
3248 gaim_signal_connect(gaim_connections_get_handle(), "signing-off", |
4f9f68ab8770
[gaim-migrate @ 8982]
Christian Hammond <chipx86@chipx86.com>
parents:
8254
diff
changeset
|
3249 gtkblist, GAIM_CALLBACK(signed_on_off_cb), list); |
8815 | 3250 |
3251 /* emit our created signal */ | |
3252 gaim_signal_emit(gaim_gtk_blist_get_handle(), "gtkblist-created", list); | |
5228 | 3253 } |
3254 | |
7620 | 3255 /* XXX: does this need fixing? */ |
3256 static void redo_buddy_list(GaimBuddyList *list, gboolean remove) | |
5228 | 3257 { |
7620 | 3258 GaimBlistNode *gnode, *cnode, *bnode; |
3259 | |
3260 for(gnode = list->root; gnode; gnode = gnode->next) { | |
3261 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
5234 | 3262 continue; |
7620 | 3263 for(cnode = gnode->child; cnode; cnode = cnode->next) { |
3264 if(GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
3265 if(remove) | |
3266 gaim_gtk_blist_hide_node(list, cnode); | |
3267 | |
3268 for(bnode = cnode->child; bnode; bnode = bnode->next) { | |
3269 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
3270 continue; | |
3271 if(remove) | |
3272 gaim_gtk_blist_hide_node(list, bnode); | |
3273 gaim_gtk_blist_update(list, bnode); | |
3274 } | |
3275 | |
3276 gaim_gtk_blist_update(list, cnode); | |
3277 } else if(GAIM_BLIST_NODE_IS_CHAT(cnode)) { | |
3278 if(remove) | |
3279 gaim_gtk_blist_hide_node(list, cnode); | |
3280 | |
3281 gaim_gtk_blist_update(list, cnode); | |
3282 } | |
5228 | 3283 } |
7620 | 3284 gaim_gtk_blist_update(list, gnode); |
5228 | 3285 } |
3286 } | |
3287 | |
7620 | 3288 void gaim_gtk_blist_refresh(GaimBuddyList *list) |
5422 | 3289 { |
3290 redo_buddy_list(list, FALSE); | |
3291 } | |
3292 | |
5297 | 3293 void |
3294 gaim_gtk_blist_update_refresh_timeout() | |
3295 { | |
7620 | 3296 GaimBuddyList *blist; |
3297 GaimGtkBuddyList *gtkblist; | |
5297 | 3298 |
3299 blist = gaim_get_blist(); | |
3300 gtkblist = GAIM_GTK_BLIST(gaim_get_blist()); | |
3301 | |
7620 | 3302 if (gaim_prefs_get_bool("/gaim/gtk/blist/show_idle_time") || |
3303 gaim_prefs_get_bool("/gaim/gtk/blist/show_buddy_icons")) { | |
3304 | |
3305 gtkblist->refresh_timer = g_timeout_add(30000, | |
3306 (GSourceFunc)gaim_gtk_blist_refresh_timer, blist); | |
5297 | 3307 } else { |
3308 g_source_remove(gtkblist->refresh_timer); | |
3309 gtkblist->refresh_timer = 0; | |
3310 } | |
3311 } | |
3312 | |
5256 | 3313 static gboolean get_iter_from_node(GaimBlistNode *node, GtkTreeIter *iter) { |
3314 struct _gaim_gtk_blist_node *gtknode = (struct _gaim_gtk_blist_node *)node->ui_data; | |
3315 GtkTreePath *path; | |
5228 | 3316 |
7620 | 3317 /* XXX: why do we assume we have a buddy here? */ |
5263 | 3318 if (!gtknode) { |
7620 | 3319 #if 0 |
3320 gaim_debug(GAIM_DEBUG_ERROR, "gtkblist", "buddy %s has no ui_data\n", ((GaimBuddy *)node)->name); | |
3321 #endif | |
5263 | 3322 return FALSE; |
3323 } | |
3324 | |
3325 if (!gtkblist) { | |
3326 gaim_debug(GAIM_DEBUG_ERROR, "gtkblist", "get_iter_from_node was called, but we don't seem to have a blist\n"); | |
3327 return FALSE; | |
3328 } | |
3329 | |
3330 if (!gtknode->row) | |
5228 | 3331 return FALSE; |
3332 | |
5256 | 3333 if ((path = gtk_tree_row_reference_get_path(gtknode->row)) == NULL) |
5228 | 3334 return FALSE; |
5256 | 3335 if (!gtk_tree_model_get_iter(GTK_TREE_MODEL(gtkblist->treemodel), iter, path)) { |
3336 gtk_tree_path_free(path); | |
3337 return FALSE; | |
3338 } | |
3339 gtk_tree_path_free(path); | |
3340 return TRUE; | |
5228 | 3341 } |
3342 | |
7620 | 3343 static void |
3344 gaim_gtk_blist_update_toolbar_icons (GtkWidget *widget, gpointer data) | |
3345 { | |
3346 GaimButtonStyle style = gaim_prefs_get_int("/gaim/gtk/blist/button_style"); | |
3347 | |
5228 | 3348 if (GTK_IS_IMAGE(widget)) { |
7620 | 3349 if (style == GAIM_BUTTON_IMAGE || style == GAIM_BUTTON_TEXT_IMAGE) |
5228 | 3350 gtk_widget_show(widget); |
3351 else | |
3352 gtk_widget_hide(widget); | |
7620 | 3353 } |
3354 else if (GTK_IS_LABEL(widget)) { | |
3355 if (style == GAIM_BUTTON_IMAGE) | |
5228 | 3356 gtk_widget_hide(widget); |
3357 else | |
3358 gtk_widget_show(widget); | |
7620 | 3359 } |
3360 else if (GTK_IS_CONTAINER(widget)) { | |
3361 gtk_container_foreach(GTK_CONTAINER(widget), | |
3362 gaim_gtk_blist_update_toolbar_icons, NULL); | |
5228 | 3363 } |
3364 } | |
3365 | |
3366 void gaim_gtk_blist_update_toolbar() { | |
3367 if (!gtkblist) | |
3368 return; | |
3369 | |
7620 | 3370 if (gaim_prefs_get_int("/gaim/gtk/blist/button_style") == GAIM_BUTTON_NONE) |
5228 | 3371 gtk_widget_hide(gtkblist->bbox); |
3372 else { | |
7620 | 3373 gtk_container_foreach(GTK_CONTAINER(gtkblist->bbox), |
3374 gaim_gtk_blist_update_toolbar_icons, NULL); | |
5228 | 3375 gtk_widget_show(gtkblist->bbox); |
3376 } | |
3377 } | |
3378 | |
7620 | 3379 static void gaim_gtk_blist_remove(GaimBuddyList *list, GaimBlistNode *node) |
5228 | 3380 { |
5260 | 3381 gaim_gtk_blist_hide_node(list, node); |
5228 | 3382 |
7620 | 3383 if(node->parent) |
3384 gaim_gtk_blist_update(list, node->parent); | |
3385 | |
5263 | 3386 /* There's something I don't understand here */ |
3387 /* g_free(node->ui_data); | |
3388 node->ui_data = NULL; */ | |
5228 | 3389 } |
3390 | |
3391 static gboolean do_selection_changed(GaimBlistNode *new_selection) | |
3392 { | |
5254 | 3393 GaimBlistNode *old_selection = NULL; |
5228 | 3394 |
5254 | 3395 /* test for gtkblist because crazy timeout means we can be called after the blist is gone */ |
3396 if (gtkblist && new_selection != gtkblist->selected_node) { | |
3397 old_selection = gtkblist->selected_node; | |
5228 | 3398 gtkblist->selected_node = new_selection; |
3399 if(new_selection) | |
3400 gaim_gtk_blist_update(NULL, new_selection); | |
3401 if(old_selection) | |
3402 gaim_gtk_blist_update(NULL, old_selection); | |
3403 } | |
3404 | |
3405 return FALSE; | |
3406 } | |
3407 | |
3408 static void gaim_gtk_blist_selection_changed(GtkTreeSelection *selection, gpointer data) | |
3409 { | |
3410 GaimBlistNode *new_selection = NULL; | |
3411 GtkTreeIter iter; | |
3412 | |
3413 if(gtk_tree_selection_get_selected(selection, NULL, &iter)){ | |
3414 gtk_tree_model_get(GTK_TREE_MODEL(gtkblist->treemodel), &iter, | |
3415 NODE_COLUMN, &new_selection, -1); | |
3416 } | |
5254 | 3417 |
5228 | 3418 /* we set this up as a timeout, otherwise the blist flickers */ |
3419 g_timeout_add(0, (GSourceFunc)do_selection_changed, new_selection); | |
3420 } | |
3421 | |
8252 | 3422 static gboolean insert_node(GaimBuddyList *list, GaimBlistNode *node, GtkTreeIter *iter) |
7620 | 3423 { |
3424 GtkTreeIter parent_iter, cur, *curptr = NULL; | |
3425 struct _gaim_gtk_blist_node *gtknode = node->ui_data; | |
5256 | 3426 GtkTreePath *newpath; |
7620 | 3427 |
3428 if(!gtknode || !iter) | |
8252 | 3429 return FALSE; |
7620 | 3430 |
3431 if(node->parent && !get_iter_from_node(node->parent, &parent_iter)) | |
8252 | 3432 return FALSE; |
7620 | 3433 |
3434 if(get_iter_from_node(node, &cur)) | |
3435 curptr = &cur; | |
3436 | |
3437 if(GAIM_BLIST_NODE_IS_CONTACT(node) || GAIM_BLIST_NODE_IS_CHAT(node)) { | |
3438 *iter = current_sort_method->func(node, list, parent_iter, curptr); | |
3439 } else { | |
3440 *iter = sort_method_none(node, list, parent_iter, curptr); | |
5228 | 3441 } |
3442 | |
7620 | 3443 gtk_tree_row_reference_free(gtknode->row); |
3444 newpath = gtk_tree_model_get_path(GTK_TREE_MODEL(gtkblist->treemodel), | |
3445 iter); | |
3446 gtknode->row = | |
3447 gtk_tree_row_reference_new(GTK_TREE_MODEL(gtkblist->treemodel), | |
3448 newpath); | |
5256 | 3449 gtk_tree_path_free(newpath); |
3450 | |
5228 | 3451 gtk_tree_store_set(gtkblist->treemodel, iter, |
3452 NODE_COLUMN, node, | |
3453 -1); | |
7620 | 3454 |
3455 if(node->parent) { | |
3456 GtkTreePath *expand = NULL; | |
3457 struct _gaim_gtk_blist_node *gtkparentnode = node->parent->ui_data; | |
3458 | |
3459 if(GAIM_BLIST_NODE_IS_GROUP(node->parent)) { | |
7693 | 3460 if(!gaim_blist_node_get_bool(node->parent, "collapsed")) |
7620 | 3461 expand = gtk_tree_model_get_path(GTK_TREE_MODEL(gtkblist->treemodel), &parent_iter); |
3462 } else if(GAIM_BLIST_NODE_IS_CONTACT(node->parent) && | |
3463 gtkparentnode->contact_expanded) { | |
3464 expand = gtk_tree_model_get_path(GTK_TREE_MODEL(gtkblist->treemodel), &parent_iter); | |
3465 } | |
3466 if(expand) { | |
7693 | 3467 gtk_tree_view_expand_row(GTK_TREE_VIEW(gtkblist->treeview), expand, FALSE); |
7620 | 3468 gtk_tree_path_free(expand); |
3469 } | |
3470 } | |
3471 | |
8252 | 3472 return TRUE; |
5228 | 3473 } |
3474 | |
7620 | 3475 static void gaim_gtk_blist_update_group(GaimBuddyList *list, GaimBlistNode *node) |
3476 { | |
3477 GaimGroup *group; | |
8203 | 3478 int count; |
7620 | 3479 |
3480 g_return_if_fail(GAIM_BLIST_NODE_IS_GROUP(node)); | |
3481 | |
3482 group = (GaimGroup*)node; | |
3483 | |
8203 | 3484 if(gaim_prefs_get_bool("/gaim/gtk/blist/show_offline_buddies")) |
3485 count = gaim_blist_get_group_size(group, FALSE); | |
3486 else | |
3487 count = gaim_blist_get_group_online_count(group); | |
3488 if(gaim_prefs_get_bool("/gaim/gtk/blist/show_empty_groups") || count > 0) { | |
7620 | 3489 char *mark, *esc; |
3490 GtkTreeIter iter; | |
3491 | |
8252 | 3492 if(!insert_node(list, node, &iter)) |
3493 return; | |
7620 | 3494 |
3495 esc = g_markup_escape_text(group->name, -1); | |
3496 if(gaim_prefs_get_bool("/gaim/gtk/blist/show_group_count")) { | |
3497 mark = g_strdup_printf("<span weight='bold'>%s</span> (%d/%d)", | |
3498 esc, gaim_blist_get_group_online_count(group), | |
3499 gaim_blist_get_group_size(group, FALSE)); | |
3500 } else { | |
3501 mark = g_strdup_printf("<span weight='bold'>%s</span>", esc); | |
3502 } | |
3503 g_free(esc); | |
3504 | |
3505 gtk_tree_store_set(gtkblist->treemodel, &iter, | |
3506 STATUS_ICON_COLUMN, NULL, | |
3507 STATUS_ICON_VISIBLE_COLUMN, FALSE, | |
3508 NAME_COLUMN, mark, | |
3509 NODE_COLUMN, node, | |
3510 -1); | |
3511 g_free(mark); | |
3512 } else { | |
3513 gaim_gtk_blist_hide_node(list, node); | |
3514 } | |
3515 } | |
3516 | |
3517 static void buddy_node(GaimBuddy *buddy, GtkTreeIter *iter, GaimBlistNode *node) | |
5228 | 3518 { |
7620 | 3519 GdkPixbuf *status, *avatar; |
3520 char *mark; | |
3521 char *warning = NULL, *idle = NULL; | |
3522 | |
3523 gboolean selected = (gtkblist->selected_node == node); | |
3524 | |
3525 status = gaim_gtk_blist_get_status_icon((GaimBlistNode*)buddy, | |
3526 (gaim_prefs_get_bool("/gaim/gtk/blist/show_buddy_icons") | |
3527 ? GAIM_STATUS_ICON_LARGE : GAIM_STATUS_ICON_SMALL)); | |
3528 | |
3529 avatar = gaim_gtk_blist_get_buddy_icon(buddy); | |
3530 mark = gaim_gtk_blist_get_name_markup(buddy, selected); | |
3531 | |
3532 if (buddy->idle > 0) { | |
3533 time_t t; | |
3534 int ihrs, imin; | |
3535 time(&t); | |
3536 ihrs = (t - buddy->idle) / 3600; | |
3537 imin = ((t - buddy->idle) / 60) % 60; | |
3538 if(ihrs > 0) | |
3539 idle = g_strdup_printf("(%d:%02d)", ihrs, imin); | |
3540 else | |
3541 idle = g_strdup_printf("(%d)", imin); | |
3542 } | |
3543 | |
3544 if (buddy->evil > 0) | |
3545 warning = g_strdup_printf("%d%%", buddy->evil); | |
3546 | |
3547 if (gaim_prefs_get_bool("/gaim/gtk/blist/grey_idle_buddies") && | |
3548 buddy->idle) { | |
3549 | |
3550 if(warning && !selected) { | |
3551 char *w2 = g_strdup_printf("<span color='dim grey'>%s</span>", | |
3552 warning); | |
3553 g_free(warning); | |
3554 warning = w2; | |
3555 } | |
3556 | |
3557 if(idle && !selected) { | |
3558 char *i2 = g_strdup_printf("<span color='dim grey'>%s</span>", | |
3559 idle); | |
3560 g_free(idle); | |
3561 idle = i2; | |
5228 | 3562 } |
7620 | 3563 } |
3564 | |
3565 gtk_tree_store_set(gtkblist->treemodel, iter, | |
3566 STATUS_ICON_COLUMN, status, | |
3567 STATUS_ICON_VISIBLE_COLUMN, TRUE, | |
3568 NAME_COLUMN, mark, | |
3569 WARNING_COLUMN, warning, | |
3570 IDLE_COLUMN, idle, | |
3571 BUDDY_ICON_COLUMN, avatar, | |
3572 -1); | |
3573 | |
3574 g_free(mark); | |
3575 if(idle) | |
3576 g_free(idle); | |
3577 if(warning) | |
3578 g_free(warning); | |
3579 if(status) | |
3580 g_object_unref(status); | |
3581 if(avatar) | |
3582 g_object_unref(avatar); | |
3583 } | |
3584 | |
3585 static void gaim_gtk_blist_update_contact(GaimBuddyList *list, GaimBlistNode *node) | |
3586 { | |
3587 GaimContact *contact; | |
3588 GaimBuddy *buddy; | |
3589 struct _gaim_gtk_blist_node *gtknode; | |
3590 | |
3591 g_return_if_fail(GAIM_BLIST_NODE_IS_CONTACT(node)); | |
3592 | |
3593 /* First things first, update the group */ | |
3594 gaim_gtk_blist_update_group(list, node->parent); | |
3595 | |
3596 gtknode = (struct _gaim_gtk_blist_node *)node->ui_data; | |
3597 contact = (GaimContact*)node; | |
3598 buddy = gaim_contact_get_priority_buddy(contact); | |
3599 | |
3600 if(buddy && (buddy->present != GAIM_BUDDY_OFFLINE || | |
3601 (gaim_account_is_connected(buddy->account) && | |
3602 gaim_prefs_get_bool("/gaim/gtk/blist/show_offline_buddies")))) { | |
3603 GtkTreeIter iter; | |
3604 | |
8252 | 3605 if(!insert_node(list, node, &iter)) |
3606 return; | |
7620 | 3607 |
3608 if(gtknode->contact_expanded) { | |
3609 GdkPixbuf *status; | |
5228 | 3610 char *mark; |
3611 | |
7620 | 3612 status = gaim_gtk_blist_get_status_icon(node, |
3613 (gaim_prefs_get_bool("/gaim/gtk/blist/show_buddy_icons") ? | |
3614 GAIM_STATUS_ICON_LARGE : GAIM_STATUS_ICON_SMALL)); | |
3615 | |
3616 mark = g_markup_escape_text(gaim_contact_get_alias(contact), -1); | |
3617 | |
5228 | 3618 gtk_tree_store_set(gtkblist->treemodel, &iter, |
7620 | 3619 STATUS_ICON_COLUMN, status, |
3620 STATUS_ICON_VISIBLE_COLUMN, TRUE, | |
5228 | 3621 NAME_COLUMN, mark, |
7620 | 3622 WARNING_COLUMN, NULL, |
3623 IDLE_COLUMN, NULL, | |
3624 BUDDY_ICON_COLUMN, NULL, | |
5228 | 3625 -1); |
3626 g_free(mark); | |
7620 | 3627 if(status) |
3628 g_object_unref(status); | |
3629 } else { | |
3630 buddy_node(buddy, &iter, node); | |
5228 | 3631 } |
7620 | 3632 } else { |
3633 gaim_gtk_blist_hide_node(list, node); | |
5228 | 3634 } |
7620 | 3635 } |
3636 | |
3637 static void gaim_gtk_blist_update_buddy(GaimBuddyList *list, GaimBlistNode *node) | |
3638 { | |
3639 GaimContact *contact; | |
3640 GaimBuddy *buddy; | |
3641 struct _gaim_gtk_blist_node *gtkparentnode; | |
3642 | |
3643 g_return_if_fail(GAIM_BLIST_NODE_IS_BUDDY(node)); | |
3644 | |
3645 buddy = (GaimBuddy*)node; | |
3646 contact = (GaimContact*)node->parent; | |
3647 gtkparentnode = (struct _gaim_gtk_blist_node *)node->parent->ui_data; | |
3648 | |
3649 /* First things first, update the contact */ | |
3650 gaim_gtk_blist_update_contact(list, node->parent); | |
3651 | |
3652 if(gtkparentnode->contact_expanded && | |
3653 (buddy->present != GAIM_BUDDY_OFFLINE || | |
3654 (gaim_account_is_connected(buddy->account) && | |
3655 gaim_prefs_get_bool("/gaim/gtk/blist/show_offline_buddies")))) { | |
3656 GtkTreeIter iter; | |
3657 | |
8252 | 3658 if(!insert_node(list, node, &iter)) |
3659 return; | |
3660 | |
7620 | 3661 buddy_node(buddy, &iter, node); |
3662 | |
3663 } else { | |
3664 gaim_gtk_blist_hide_node(list, node); | |
3665 } | |
3666 | |
3667 } | |
3668 | |
3669 static void gaim_gtk_blist_update_chat(GaimBuddyList *list, GaimBlistNode *node) | |
3670 { | |
3671 GaimChat *chat; | |
3672 | |
3673 g_return_if_fail(GAIM_BLIST_NODE_IS_CHAT(node)); | |
3674 | |
3675 /* First things first, update the group */ | |
3676 gaim_gtk_blist_update_group(list, node->parent); | |
3677 | |
3678 chat = (GaimChat*)node; | |
3679 | |
3680 if(gaim_account_is_connected(chat->account)) { | |
3681 GtkTreeIter iter; | |
5234 | 3682 GdkPixbuf *status; |
7620 | 3683 char *mark; |
3684 | |
8252 | 3685 if(!insert_node(list, node, &iter)) |
3686 return; | |
5234 | 3687 |
3688 status = gaim_gtk_blist_get_status_icon(node, | |
7620 | 3689 (gaim_prefs_get_bool("/gaim/gtk/blist/show_buddy_icons") ? |
3690 GAIM_STATUS_ICON_LARGE : GAIM_STATUS_ICON_SMALL)); | |
3691 | |
3692 mark = g_markup_escape_text(gaim_chat_get_name(chat), -1); | |
5234 | 3693 |
3694 gtk_tree_store_set(gtkblist->treemodel, &iter, | |
7620 | 3695 STATUS_ICON_COLUMN, status, |
3696 STATUS_ICON_VISIBLE_COLUMN, TRUE, | |
3697 NAME_COLUMN, mark, | |
3698 -1); | |
5228 | 3699 |
3700 g_free(mark); | |
7620 | 3701 if(status) |
5228 | 3702 g_object_unref(status); |
7620 | 3703 } else { |
5260 | 3704 gaim_gtk_blist_hide_node(list, node); |
5228 | 3705 } |
7620 | 3706 } |
3707 | |
3708 static void gaim_gtk_blist_update(GaimBuddyList *list, GaimBlistNode *node) | |
3709 { | |
3710 if(!gtkblist) | |
3711 return; | |
3712 | |
3713 switch(node->type) { | |
3714 case GAIM_BLIST_GROUP_NODE: | |
3715 gaim_gtk_blist_update_group(list, node); | |
3716 break; | |
3717 case GAIM_BLIST_CONTACT_NODE: | |
3718 gaim_gtk_blist_update_contact(list, node); | |
3719 break; | |
3720 case GAIM_BLIST_BUDDY_NODE: | |
3721 gaim_gtk_blist_update_buddy(list, node); | |
3722 break; | |
3723 case GAIM_BLIST_CHAT_NODE: | |
3724 gaim_gtk_blist_update_chat(list, node); | |
3725 break; | |
3726 case GAIM_BLIST_OTHER_NODE: | |
3727 return; | |
3728 } | |
5234 | 3729 |
5228 | 3730 gtk_tree_view_columns_autosize(GTK_TREE_VIEW(gtkblist->treeview)); |
3731 } | |
3732 | |
7620 | 3733 |
3734 static void gaim_gtk_blist_destroy(GaimBuddyList *list) | |
5228 | 3735 { |
3736 if (!gtkblist) | |
3737 return; | |
3738 | |
8259
4f9f68ab8770
[gaim-migrate @ 8982]
Christian Hammond <chipx86@chipx86.com>
parents:
8254
diff
changeset
|
3739 gaim_signal_disconnect(gaim_connections_get_handle(), "signing-on", |
4f9f68ab8770
[gaim-migrate @ 8982]
Christian Hammond <chipx86@chipx86.com>
parents:
8254
diff
changeset
|
3740 gtkblist, GAIM_CALLBACK(signed_on_off_cb)); |
4f9f68ab8770
[gaim-migrate @ 8982]
Christian Hammond <chipx86@chipx86.com>
parents:
8254
diff
changeset
|
3741 gaim_signal_disconnect(gaim_connections_get_handle(), "signing-off", |
4f9f68ab8770
[gaim-migrate @ 8982]
Christian Hammond <chipx86@chipx86.com>
parents:
8254
diff
changeset
|
3742 gtkblist, GAIM_CALLBACK(signed_on_off_cb)); |
4f9f68ab8770
[gaim-migrate @ 8982]
Christian Hammond <chipx86@chipx86.com>
parents:
8254
diff
changeset
|
3743 |
5228 | 3744 gtk_widget_destroy(gtkblist->window); |
7620 | 3745 |
8254 | 3746 gaim_gtk_blist_tooltip_destroy(); |
7620 | 3747 |
5228 | 3748 gtk_object_sink(GTK_OBJECT(gtkblist->tooltips)); |
3749 | |
3750 if (gtkblist->refresh_timer) | |
3751 g_source_remove(gtkblist->refresh_timer); | |
3752 if (gtkblist->timeout) | |
3753 g_source_remove(gtkblist->timeout); | |
3754 | |
3755 gtkblist->refresh_timer = 0; | |
3756 gtkblist->timeout = 0; | |
3757 gtkblist->window = gtkblist->vbox = gtkblist->treeview = NULL; | |
3758 gtkblist->treemodel = NULL; | |
3759 gtkblist->idle_column = NULL; | |
3760 gtkblist->warning_column = gtkblist->buddy_icon_column = NULL; | |
8254 | 3761 gtkblist->bbox = NULL; |
5427 | 3762 g_object_unref(G_OBJECT(gtkblist->ift)); |
5228 | 3763 protomenu = NULL; |
3764 awaymenu = NULL; | |
3765 gtkblist = NULL; | |
7620 | 3766 |
3767 while(blist_prefs_callbacks) { | |
3768 gaim_prefs_disconnect_callback(GPOINTER_TO_INT(blist_prefs_callbacks->data)); | |
3769 blist_prefs_callbacks = g_slist_remove(blist_prefs_callbacks, blist_prefs_callbacks->data); | |
3770 } | |
5228 | 3771 } |
3772 | |
7620 | 3773 static void gaim_gtk_blist_set_visible(GaimBuddyList *list, gboolean show) |
5228 | 3774 { |
3775 if (!(gtkblist && gtkblist->window)) | |
3776 return; | |
3777 | |
3778 if (show) { | |
3779 gaim_gtk_blist_restore_position(); | |
3780 gtk_window_present(GTK_WINDOW(gtkblist->window)); | |
3781 } else { | |
7620 | 3782 if (!gaim_connections_get_all() || docklet_count) { |
5228 | 3783 #ifdef _WIN32 |
3784 wgaim_systray_minimize(gtkblist->window); | |
3785 #endif | |
3786 gtk_widget_hide(gtkblist->window); | |
3787 } else { | |
3788 gtk_window_iconify(GTK_WINDOW(gtkblist->window)); | |
3789 } | |
3790 } | |
3791 } | |
3792 | |
7620 | 3793 static GList * |
3794 groups_tree(void) | |
3795 { | |
3796 GList *tmp = NULL; | |
3797 char *tmp2; | |
3798 GaimGroup *g; | |
3799 GaimBlistNode *gnode; | |
3800 | |
3801 if (gaim_get_blist()->root == NULL) | |
3802 { | |
3803 tmp2 = g_strdup(_("Buddies")); | |
3804 tmp = g_list_append(tmp, tmp2); | |
3805 } | |
3806 else | |
3807 { | |
3808 for (gnode = gaim_get_blist()->root; | |
3809 gnode != NULL; | |
3810 gnode = gnode->next) | |
3811 { | |
3812 if (GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
3813 { | |
3814 g = (GaimGroup *)gnode; | |
3815 tmp2 = g->name; | |
3816 tmp = g_list_append(tmp, tmp2); | |
3817 } | |
3818 } | |
3819 } | |
3820 | |
3821 return tmp; | |
3822 } | |
3823 | |
3824 static void | |
3825 add_buddy_select_account_cb(GObject *w, GaimAccount *account, | |
3826 GaimGtkAddBuddyData *data) | |
3827 { | |
3828 /* Save our account */ | |
3829 data->account = account; | |
3830 } | |
3831 | |
3832 static void | |
3833 destroy_add_buddy_dialog_cb(GtkWidget *win, GaimGtkAddBuddyData *data) | |
3834 { | |
3835 g_free(data); | |
3836 } | |
3837 | |
3838 static void | |
3839 add_buddy_cb(GtkWidget *w, int resp, GaimGtkAddBuddyData *data) | |
3840 { | |
3841 const char *grp, *who, *whoalias; | |
3842 GaimConversation *c; | |
3843 GaimBuddy *b; | |
3844 GaimGroup *g; | |
3845 | |
3846 if (resp == GTK_RESPONSE_OK) | |
3847 { | |
3848 who = gtk_entry_get_text(GTK_ENTRY(data->entry)); | |
3849 grp = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(data->combo)->entry)); | |
3850 whoalias = gtk_entry_get_text(GTK_ENTRY(data->entry_for_alias)); | |
3851 | |
3852 c = gaim_find_conversation_with_account(who, data->account); | |
3853 | |
3854 if ((g = gaim_find_group(grp)) == NULL) | |
3855 { | |
3856 g = gaim_group_new(grp); | |
3857 gaim_blist_add_group(g, NULL); | |
3858 } | |
3859 | |
3860 b = gaim_buddy_new(data->account, who, whoalias); | |
3861 gaim_blist_add_buddy(b, NULL, g, NULL); | |
3862 serv_add_buddy(gaim_account_get_connection(data->account), who, g); | |
3863 | |
7887 | 3864 /* |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
3865 * It really seems like it would be better if the call to serv_add_buddy() |
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
3866 * and gaim_conversation_update() were done in blist.c, possibly in the |
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
3867 * gaim_blist_add_buddy() function. Maybe serv_add_buddy() should be |
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
3868 * renamed to gaim_blist_add_new_buddy() or something, and have it call |
7887 | 3869 * gaim_blist_add_buddy() after it creates it. --Mark |
3870 */ | |
3871 | |
7620 | 3872 if (c != NULL) { |
3873 gaim_buddy_icon_update(gaim_conv_im_get_icon(GAIM_CONV_IM(c))); | |
3874 gaim_conversation_update(c, GAIM_CONV_UPDATE_ADD); | |
3875 } | |
3876 | |
3877 gaim_blist_save(); | |
3878 } | |
3879 | |
3880 gtk_widget_destroy(data->window); | |
3881 } | |
3882 | |
3883 static void | |
3884 gaim_gtk_blist_request_add_buddy(GaimAccount *account, const char *username, | |
3885 const char *group, const char *alias) | |
3886 { | |
3887 GtkWidget *table; | |
3888 GtkWidget *label; | |
3889 GtkWidget *hbox; | |
3890 GtkWidget *vbox; | |
3891 GtkWidget *img; | |
3892 GaimGtkBuddyList *gtkblist; | |
3893 GaimGtkAddBuddyData *data = g_new0(GaimGtkAddBuddyData, 1); | |
3894 | |
3895 data->account = | |
3896 (account != NULL | |
3897 ? account | |
3898 : gaim_connection_get_account(gaim_connections_get_all()->data)); | |
3899 | |
3900 img = gtk_image_new_from_stock(GAIM_STOCK_DIALOG_QUESTION, | |
3901 GTK_ICON_SIZE_DIALOG); | |
3902 | |
3903 gtkblist = GAIM_GTK_BLIST(gaim_get_blist()); | |
3904 | |
3905 data->window = gtk_dialog_new_with_buttons(_("Add Buddy"), | |
8222 | 3906 NULL, 0, |
7620 | 3907 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, |
3908 GTK_STOCK_ADD, GTK_RESPONSE_OK, | |
3909 NULL); | |
3910 | |
3911 gtk_dialog_set_default_response(GTK_DIALOG(data->window), GTK_RESPONSE_OK); | |
3912 gtk_container_set_border_width(GTK_CONTAINER(data->window), 6); | |
3913 gtk_window_set_resizable(GTK_WINDOW(data->window), FALSE); | |
3914 gtk_dialog_set_has_separator(GTK_DIALOG(data->window), FALSE); | |
3915 gtk_box_set_spacing(GTK_BOX(GTK_DIALOG(data->window)->vbox), 12); | |
3916 gtk_container_set_border_width(GTK_CONTAINER(GTK_DIALOG(data->window)->vbox), 6); | |
3917 gtk_window_set_role(GTK_WINDOW(data->window), "add_buddy"); | |
3918 | |
3919 hbox = gtk_hbox_new(FALSE, 12); | |
3920 gtk_container_add(GTK_CONTAINER(GTK_DIALOG(data->window)->vbox), hbox); | |
3921 gtk_box_pack_start(GTK_BOX(hbox), img, FALSE, FALSE, 0); | |
3922 gtk_misc_set_alignment(GTK_MISC(img), 0, 0); | |
3923 | |
3924 vbox = gtk_vbox_new(FALSE, 0); | |
3925 gtk_container_add(GTK_CONTAINER(hbox), vbox); | |
3926 | |
3927 label = gtk_label_new( | |
3928 _("Please enter the screen name of the person you would like " | |
3929 "to add to your buddy list. You may optionally enter an alias, " | |
3930 "or nickname, for the buddy. The alias will be displayed in " | |
3931 "place of the screen name whenever possible.\n")); | |
3932 | |
3933 gtk_widget_set_size_request(GTK_WIDGET(label), 400, -1); | |
3934 gtk_label_set_line_wrap(GTK_LABEL(label), TRUE); | |
3935 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
3936 gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0); | |
3937 | |
3938 hbox = gtk_hbox_new(FALSE, 6); | |
3939 gtk_container_add(GTK_CONTAINER(vbox), hbox); | |
3940 | |
3941 g_signal_connect(G_OBJECT(data->window), "destroy", | |
3942 G_CALLBACK(destroy_add_buddy_dialog_cb), data); | |
3943 | |
3944 table = gtk_table_new(4, 2, FALSE); | |
3945 gtk_table_set_row_spacings(GTK_TABLE(table), 5); | |
3946 gtk_table_set_col_spacings(GTK_TABLE(table), 5); | |
3947 gtk_container_set_border_width(GTK_CONTAINER(table), 0); | |
3948 gtk_box_pack_start(GTK_BOX(vbox), table, FALSE, FALSE, 0); | |
3949 | |
3950 label = gtk_label_new(_("Screen Name:")); | |
3951 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
3952 gtk_table_attach_defaults(GTK_TABLE(table), label, 0, 1, 0, 1); | |
3953 | |
3954 data->entry = gtk_entry_new(); | |
3955 gtk_table_attach_defaults(GTK_TABLE(table), data->entry, 1, 2, 0, 1); | |
3956 gtk_widget_grab_focus(data->entry); | |
3957 | |
3958 if (username != NULL) | |
3959 gtk_entry_set_text(GTK_ENTRY(data->entry), username); | |
3960 | |
3961 gtk_entry_set_activates_default (GTK_ENTRY(data->entry), TRUE); | |
8137 | 3962 gaim_set_accessible_label (data->entry, label); |
7620 | 3963 |
3964 label = gtk_label_new(_("Alias:")); | |
3965 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
3966 gtk_table_attach_defaults(GTK_TABLE(table), label, 0, 1, 1, 2); | |
3967 | |
3968 data->entry_for_alias = gtk_entry_new(); | |
3969 gtk_table_attach_defaults(GTK_TABLE(table), | |
3970 data->entry_for_alias, 1, 2, 1, 2); | |
3971 | |
3972 if (alias != NULL) | |
3973 gtk_entry_set_text(GTK_ENTRY(data->entry_for_alias), alias); | |
3974 | |
3975 gtk_entry_set_activates_default (GTK_ENTRY(data->entry_for_alias), TRUE); | |
8137 | 3976 gaim_set_accessible_label (data->entry_for_alias, label); |
7620 | 3977 |
3978 label = gtk_label_new(_("Group:")); | |
3979 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
3980 gtk_table_attach_defaults(GTK_TABLE(table), label, 0, 1, 2, 3); | |
3981 | |
3982 data->combo = gtk_combo_new(); | |
3983 gtk_combo_set_popdown_strings(GTK_COMBO(data->combo), groups_tree()); | |
3984 gtk_table_attach_defaults(GTK_TABLE(table), data->combo, 1, 2, 2, 3); | |
8137 | 3985 gaim_set_accessible_label (data->combo, label); |
7620 | 3986 |
3987 /* Set up stuff for the account box */ | |
3988 label = gtk_label_new(_("Account:")); | |
3989 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
3990 gtk_table_attach_defaults(GTK_TABLE(table), label, 0, 1, 3, 4); | |
3991 | |
3992 data->account_box = gaim_gtk_account_option_menu_new(account, FALSE, | |
3993 G_CALLBACK(add_buddy_select_account_cb), NULL, data); | |
3994 | |
3995 gtk_table_attach_defaults(GTK_TABLE(table), data->account_box, 1, 2, 3, 4); | |
8137 | 3996 gaim_set_accessible_label (data->account_box, label); |
7620 | 3997 |
3998 /* End of account box */ | |
3999 | |
4000 g_signal_connect(G_OBJECT(data->window), "response", | |
4001 G_CALLBACK(add_buddy_cb), data); | |
4002 | |
4003 gtk_widget_show_all(data->window); | |
4004 | |
4005 if (group != NULL) | |
4006 gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(data->combo)->entry), group); | |
4007 } | |
4008 | |
4009 static void | |
4010 add_chat_cb(GtkWidget *w, GaimGtkAddChatData *data) | |
4011 { | |
4012 GHashTable *components; | |
4013 GList *tmp; | |
4014 GaimChat *chat; | |
4015 GaimGroup *group; | |
4016 const char *group_name; | |
4017 | |
4018 components = g_hash_table_new_full(g_str_hash, g_str_equal, | |
4019 g_free, g_free); | |
4020 | |
4021 for (tmp = data->entries; tmp; tmp = tmp->next) | |
4022 { | |
4023 if (g_object_get_data(tmp->data, "is_spin")) | |
4024 { | |
4025 g_hash_table_replace(components, | |
4026 g_strdup(g_object_get_data(tmp->data, "identifier")), | |
4027 g_strdup_printf("%d", | |
4028 gtk_spin_button_get_value_as_int(tmp->data))); | |
4029 } | |
4030 else | |
4031 { | |
4032 g_hash_table_replace(components, | |
4033 g_strdup(g_object_get_data(tmp->data, "identifier")), | |
4034 g_strdup(gtk_entry_get_text(tmp->data))); | |
4035 } | |
4036 } | |
4037 | |
4038 chat = gaim_chat_new(data->account, | |
4039 gtk_entry_get_text(GTK_ENTRY(data->alias_entry)), | |
4040 components); | |
4041 | |
4042 group_name = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(data->group_combo)->entry)); | |
4043 | |
4044 if ((group = gaim_find_group(group_name)) == NULL) | |
4045 { | |
4046 group = gaim_group_new(group_name); | |
4047 gaim_blist_add_group(group, NULL); | |
4048 } | |
4049 | |
4050 if (chat != NULL) | |
4051 { | |
4052 gaim_blist_add_chat(chat, group, NULL); | |
4053 gaim_blist_save(); | |
4054 } | |
4055 | |
4056 gtk_widget_destroy(data->window); | |
4057 g_list_free(data->entries); | |
4058 | |
4059 g_free(data); | |
4060 } | |
4061 | |
4062 static void | |
4063 add_chat_resp_cb(GtkWidget *w, int resp, GaimGtkAddChatData *data) | |
4064 { | |
4065 if (resp == GTK_RESPONSE_OK) | |
4066 { | |
4067 add_chat_cb(NULL, data); | |
4068 } | |
4069 else | |
4070 { | |
4071 gtk_widget_destroy(data->window); | |
4072 g_list_free(data->entries); | |
4073 g_free(data); | |
4074 } | |
4075 } | |
4076 | |
4077 static void | |
4078 rebuild_addchat_entries(GaimGtkAddChatData *data) | |
4079 { | |
4080 GaimConnection *gc; | |
4081 GList *list, *tmp; | |
4082 struct proto_chat_entry *pce; | |
4083 gboolean focus = TRUE; | |
4084 | |
4085 gc = gaim_account_get_connection(data->account); | |
4086 | |
4087 while (GTK_BOX(data->entries_box)->children) | |
4088 { | |
4089 gtk_container_remove(GTK_CONTAINER(data->entries_box), | |
4090 ((GtkBoxChild *)GTK_BOX(data->entries_box)->children->data)->widget); | |
4091 } | |
4092 | |
4093 if (data->entries != NULL) | |
4094 g_list_free(data->entries); | |
4095 | |
4096 data->entries = NULL; | |
4097 | |
4098 list = GAIM_PLUGIN_PROTOCOL_INFO(gc->prpl)->chat_info(gc); | |
4099 | |
4100 for (tmp = list; tmp; tmp = tmp->next) | |
4101 { | |
4102 GtkWidget *label; | |
4103 GtkWidget *rowbox; | |
4104 | |
4105 pce = tmp->data; | |
4106 | |
4107 rowbox = gtk_hbox_new(FALSE, 5); | |
4108 gtk_box_pack_start(GTK_BOX(data->entries_box), rowbox, FALSE, FALSE, 0); | |
4109 | |
7889 | 4110 label = gtk_label_new_with_mnemonic(pce->label); |
7620 | 4111 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); |
4112 gtk_size_group_add_widget(data->sg, label); | |
4113 gtk_box_pack_start(GTK_BOX(rowbox), label, FALSE, FALSE, 0); | |
4114 | |
4115 if (pce->is_int) | |
4116 { | |
4117 GtkObject *adjust; | |
4118 GtkWidget *spin; | |
4119 adjust = gtk_adjustment_new(pce->min, pce->min, pce->max, | |
4120 1, 10, 10); | |
4121 spin = gtk_spin_button_new(GTK_ADJUSTMENT(adjust), 1, 0); | |
4122 g_object_set_data(G_OBJECT(spin), "is_spin", GINT_TO_POINTER(TRUE)); | |
4123 g_object_set_data(G_OBJECT(spin), "identifier", pce->identifier); | |
4124 data->entries = g_list_append(data->entries, spin); | |
4125 gtk_widget_set_size_request(spin, 50, -1); | |
4126 gtk_box_pack_end(GTK_BOX(rowbox), spin, FALSE, FALSE, 0); | |
7891 | 4127 gtk_label_set_mnemonic_widget(GTK_LABEL(label), spin); |
8137 | 4128 gaim_set_accessible_label (spin, label); |
7620 | 4129 } |
4130 else | |
4131 { | |
4132 GtkWidget *entry = gtk_entry_new(); | |
4133 | |
4134 g_object_set_data(G_OBJECT(entry), "identifier", pce->identifier); | |
4135 data->entries = g_list_append(data->entries, entry); | |
4136 | |
4137 if (pce->def) | |
4138 gtk_entry_set_text(GTK_ENTRY(entry), pce->def); | |
4139 | |
4140 if (focus) | |
4141 { | |
4142 gtk_widget_grab_focus(entry); | |
4143 focus = FALSE; | |
4144 } | |
4145 | |
4146 if (pce->secret) | |
4147 gtk_entry_set_visibility(GTK_ENTRY(entry), FALSE); | |
4148 | |
4149 gtk_box_pack_end(GTK_BOX(rowbox), entry, TRUE, TRUE, 0); | |
4150 | |
4151 g_signal_connect(G_OBJECT(entry), "activate", | |
4152 G_CALLBACK(add_chat_cb), data); | |
7891 | 4153 gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry); |
8137 | 4154 gaim_set_accessible_label (entry, label); |
7620 | 4155 } |
4156 | |
4157 g_free(pce); | |
4158 } | |
4159 | |
4160 g_list_free(list); | |
4161 | |
4162 gtk_widget_show_all(data->entries_box); | |
4163 } | |
4164 | |
4165 static void | |
4166 add_chat_select_account_cb(GObject *w, GaimAccount *account, | |
4167 GaimGtkAddChatData *data) | |
4168 { | |
4169 if (gaim_account_get_protocol(data->account) == | |
4170 gaim_account_get_protocol(account)) | |
4171 { | |
4172 data->account = account; | |
4173 } | |
4174 else | |
4175 { | |
4176 data->account = account; | |
4177 rebuild_addchat_entries(data); | |
4178 } | |
4179 } | |
4180 | |
4181 static gboolean | |
4182 add_chat_check_account_func(GaimAccount *account) | |
4183 { | |
4184 GaimConnection *gc = gaim_account_get_connection(account); | |
4185 | |
4186 return (GAIM_PLUGIN_PROTOCOL_INFO(gc->prpl)->chat_info != NULL); | |
4187 } | |
4188 | |
4189 void | |
7859 | 4190 gaim_gtk_blist_request_add_chat(GaimAccount *account, GaimGroup *group, |
4191 const char *alias) | |
7620 | 4192 { |
4193 GaimGtkAddChatData *data; | |
4194 GaimGtkBuddyList *gtkblist; | |
4195 GList *l; | |
4196 GaimConnection *gc; | |
4197 GtkWidget *label; | |
4198 GtkWidget *rowbox; | |
4199 GtkWidget *hbox; | |
4200 GtkWidget *vbox; | |
4201 GtkWidget *img; | |
4202 | |
4203 data = g_new0(GaimGtkAddChatData, 1); | |
4204 | |
4205 img = gtk_image_new_from_stock(GAIM_STOCK_DIALOG_QUESTION, | |
4206 GTK_ICON_SIZE_DIALOG); | |
4207 | |
4208 gtkblist = GAIM_GTK_BLIST(gaim_get_blist()); | |
4209 | |
4210 if (account != NULL) | |
4211 { | |
4212 data->account = account; | |
4213 } | |
4214 else | |
4215 { | |
4216 /* Select an account with chat capabilities */ | |
4217 for (l = gaim_connections_get_all(); l != NULL; l = l->next) | |
4218 { | |
4219 gc = (GaimConnection *)l->data; | |
4220 | |
4221 if (GAIM_PLUGIN_PROTOCOL_INFO(gc->prpl)->join_chat != NULL) | |
4222 { | |
4223 data->account = gaim_connection_get_account(gc); | |
4224 break; | |
4225 } | |
4226 } | |
4227 } | |
4228 | |
4229 if (data->account == NULL) | |
4230 { | |
4231 gaim_notify_error(NULL, NULL, | |
4232 _("You are not currently signed on with any " | |
4233 "protocols that have the ability to chat."), NULL); | |
4234 return; | |
4235 } | |
4236 | |
4237 data->sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); | |
4238 | |
4239 data->window = gtk_dialog_new_with_buttons(_("Add Chat"), | |
8222 | 4240 NULL, 0, |
7620 | 4241 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, |
4242 GTK_STOCK_ADD, GTK_RESPONSE_OK, | |
4243 NULL); | |
4244 | |
4245 gtk_dialog_set_default_response(GTK_DIALOG(data->window), GTK_RESPONSE_OK); | |
4246 gtk_container_set_border_width(GTK_CONTAINER(data->window), 6); | |
4247 gtk_window_set_resizable(GTK_WINDOW(data->window), FALSE); | |
4248 gtk_dialog_set_has_separator(GTK_DIALOG(data->window), FALSE); | |
4249 gtk_box_set_spacing(GTK_BOX(GTK_DIALOG(data->window)->vbox), 12); | |
4250 gtk_container_set_border_width(GTK_CONTAINER(GTK_DIALOG(data->window)->vbox), 6); | |
4251 gtk_window_set_role(GTK_WINDOW(data->window), "add_chat"); | |
4252 | |
4253 hbox = gtk_hbox_new(FALSE, 12); | |
4254 gtk_container_add(GTK_CONTAINER(GTK_DIALOG(data->window)->vbox), hbox); | |
4255 gtk_box_pack_start(GTK_BOX(hbox), img, FALSE, FALSE, 0); | |
4256 gtk_misc_set_alignment(GTK_MISC(img), 0, 0); | |
4257 | |
4258 vbox = gtk_vbox_new(FALSE, 5); | |
4259 gtk_container_add(GTK_CONTAINER(hbox), vbox); | |
4260 | |
4261 label = gtk_label_new( | |
4262 _("Please enter an alias, and the appropriate information " | |
4263 "about the chat you would like to add to your buddy list.\n")); | |
4264 gtk_widget_set_size_request(label, 400, -1); | |
4265 gtk_label_set_line_wrap(GTK_LABEL(label), TRUE); | |
4266 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
4267 gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0); | |
4268 | |
4269 rowbox = gtk_hbox_new(FALSE, 5); | |
4270 gtk_box_pack_start(GTK_BOX(vbox), rowbox, FALSE, FALSE, 0); | |
4271 | |
4272 label = gtk_label_new(_("Account:")); | |
4273 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
4274 gtk_size_group_add_widget(data->sg, label); | |
4275 gtk_box_pack_start(GTK_BOX(rowbox), label, FALSE, FALSE, 0); | |
4276 | |
4277 data->account_menu = gaim_gtk_account_option_menu_new(account, FALSE, | |
4278 G_CALLBACK(add_chat_select_account_cb), | |
4279 add_chat_check_account_func, data); | |
4280 gtk_box_pack_start(GTK_BOX(rowbox), data->account_menu, TRUE, TRUE, 0); | |
8137 | 4281 gaim_set_accessible_label (data->account_menu, label); |
7620 | 4282 |
4283 data->entries_box = gtk_vbox_new(FALSE, 5); | |
4284 gtk_container_set_border_width(GTK_CONTAINER(data->entries_box), 0); | |
4285 gtk_box_pack_start(GTK_BOX(vbox), data->entries_box, TRUE, TRUE, 0); | |
4286 | |
4287 rebuild_addchat_entries(data); | |
4288 | |
4289 rowbox = gtk_hbox_new(FALSE, 5); | |
4290 gtk_box_pack_start(GTK_BOX(vbox), rowbox, FALSE, FALSE, 0); | |
4291 | |
4292 label = gtk_label_new(_("Alias:")); | |
4293 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
4294 gtk_size_group_add_widget(data->sg, label); | |
4295 gtk_box_pack_start(GTK_BOX(rowbox), label, FALSE, FALSE, 0); | |
4296 | |
4297 data->alias_entry = gtk_entry_new(); | |
7859 | 4298 if (alias != NULL) |
4299 gtk_entry_set_text(GTK_ENTRY(data->alias_entry), alias); | |
7620 | 4300 gtk_box_pack_end(GTK_BOX(rowbox), data->alias_entry, TRUE, TRUE, 0); |
8137 | 4301 gaim_set_accessible_label (data->alias_entry, label); |
7620 | 4302 |
4303 rowbox = gtk_hbox_new(FALSE, 5); | |
4304 gtk_box_pack_start(GTK_BOX(vbox), rowbox, FALSE, FALSE, 0); | |
4305 | |
4306 label = gtk_label_new(_("Group:")); | |
4307 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
4308 gtk_size_group_add_widget(data->sg, label); | |
4309 gtk_box_pack_start(GTK_BOX(rowbox), label, FALSE, FALSE, 0); | |
4310 | |
4311 data->group_combo = gtk_combo_new(); | |
4312 gtk_combo_set_popdown_strings(GTK_COMBO(data->group_combo), groups_tree()); | |
4313 gtk_box_pack_end(GTK_BOX(rowbox), data->group_combo, TRUE, TRUE, 0); | |
4314 | |
4315 if (group) | |
4316 { | |
4317 gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(data->group_combo)->entry), | |
4318 group->name); | |
4319 } | |
8137 | 4320 gaim_set_accessible_label (data->group_combo, label); |
7620 | 4321 |
4322 g_signal_connect(G_OBJECT(data->window), "response", | |
4323 G_CALLBACK(add_chat_resp_cb), data); | |
4324 | |
4325 gtk_widget_show_all(data->window); | |
4326 } | |
4327 | |
4328 static void | |
4329 add_group_cb(GaimConnection *gc, const char *group_name) | |
4330 { | |
4331 GaimGroup *g; | |
4332 | |
4333 g = gaim_group_new(group_name); | |
4334 gaim_blist_add_group(g, NULL); | |
4335 gaim_blist_save(); | |
4336 } | |
4337 | |
4338 void | |
4339 gaim_gtk_blist_request_add_group(void) | |
4340 { | |
7853 | 4341 gaim_request_input(NULL, _("Add Group"), NULL, |
7620 | 4342 _("Please enter the name of the group to be added."), |
8697 | 4343 NULL, FALSE, FALSE, NULL, |
7620 | 4344 _("Add"), G_CALLBACK(add_group_cb), |
4345 _("Cancel"), NULL, NULL); | |
4346 } | |
4347 | |
5228 | 4348 void gaim_gtk_blist_docklet_toggle() { |
4349 /* Useful for the docklet plugin and also for the win32 tray icon*/ | |
8470
9949b752d1ab
[gaim-migrate @ 9203]
Christian Hammond <chipx86@chipx86.com>
parents:
8444
diff
changeset
|
4350 /* This is called when one of those is clicked--it will show/hide the |
5228 | 4351 buddy list/login window--depending on which is active */ |
7620 | 4352 if (gaim_connections_get_all()) { |
5228 | 4353 if (gtkblist && gtkblist->window) { |
4354 if (GTK_WIDGET_VISIBLE(gtkblist->window)) { | |
4355 gaim_blist_set_visible(GAIM_WINDOW_ICONIFIED(gtkblist->window) || gaim_gtk_blist_obscured); | |
4356 } else { | |
4357 #if _WIN32 | |
4358 wgaim_systray_maximize(gtkblist->window); | |
4359 #endif | |
4360 gaim_blist_set_visible(TRUE); | |
4361 } | |
4362 } else { | |
4363 /* we're logging in or something... do nothing */ | |
4364 /* or should I make the blist? */ | |
4365 gaim_debug(GAIM_DEBUG_WARNING, "blist", | |
7620 | 4366 "docklet_toggle called with gaim_connections_get_all() " |
5228 | 4367 "but no blist!\n"); |
4368 } | |
4369 } else if (mainwindow) { | |
4370 if (GTK_WIDGET_VISIBLE(mainwindow)) { | |
4371 if (GAIM_WINDOW_ICONIFIED(mainwindow)) { | |
4372 gtk_window_present(GTK_WINDOW(mainwindow)); | |
4373 } else { | |
4374 #if _WIN32 | |
4375 wgaim_systray_minimize(mainwindow); | |
4376 #endif | |
4377 gtk_widget_hide(mainwindow); | |
4378 } | |
4379 } else { | |
4380 #if _WIN32 | |
4381 wgaim_systray_maximize(mainwindow); | |
4382 #endif | |
4383 show_login(); | |
4384 } | |
4385 } else { | |
4386 show_login(); | |
4387 } | |
4388 } | |
4389 | |
4390 void gaim_gtk_blist_docklet_add() | |
4391 { | |
4392 docklet_count++; | |
4393 } | |
4394 | |
4395 void gaim_gtk_blist_docklet_remove() | |
4396 { | |
4397 docklet_count--; | |
4398 if (!docklet_count) { | |
7620 | 4399 if (gaim_connections_get_all()) |
5228 | 4400 gaim_blist_set_visible(TRUE); |
4401 else if (mainwindow) | |
4402 gtk_window_present(GTK_WINDOW(mainwindow)); | |
4403 else | |
4404 show_login(); | |
4405 } | |
4406 } | |
4407 | |
7620 | 4408 static GaimBlistUiOps blist_ui_ops = |
5228 | 4409 { |
4410 gaim_gtk_blist_new_list, | |
5256 | 4411 gaim_gtk_blist_new_node, |
5228 | 4412 gaim_gtk_blist_show, |
4413 gaim_gtk_blist_update, | |
4414 gaim_gtk_blist_remove, | |
4415 gaim_gtk_blist_destroy, | |
7620 | 4416 gaim_gtk_blist_set_visible, |
4417 gaim_gtk_blist_request_add_buddy, | |
4418 gaim_gtk_blist_request_add_chat, | |
4419 gaim_gtk_blist_request_add_group | |
5228 | 4420 }; |
4421 | |
4422 | |
7620 | 4423 GaimBlistUiOps * |
4424 gaim_gtk_blist_get_ui_ops(void) | |
5228 | 4425 { |
4426 return &blist_ui_ops; | |
4427 } | |
4428 | |
7620 | 4429 static void account_signon_cb(GaimConnection *gc, gpointer z) |
4430 { | |
4431 GaimAccount *account = gaim_connection_get_account(gc); | |
4432 GaimBlistNode *gnode, *cnode; | |
4433 for(gnode = gaim_get_blist()->root; gnode; gnode = gnode->next) | |
4434 { | |
4435 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
4436 continue; | |
4437 for(cnode = gnode->child; cnode; cnode = cnode->next) | |
4438 { | |
4439 GaimChat *chat; | |
4440 | |
4441 if(!GAIM_BLIST_NODE_IS_CHAT(cnode)) | |
4442 continue; | |
4443 | |
4444 chat = (GaimChat *)cnode; | |
4445 | |
4446 if(chat->account != account) | |
4447 continue; | |
4448 | |
8197 | 4449 if(gaim_blist_node_get_bool((GaimBlistNode*)chat, "gtk-autojoin") || |
8198 | 4450 (gaim_blist_node_get_string((GaimBlistNode*)chat, |
4451 "gtk-autojoin") != NULL)) | |
7620 | 4452 serv_join_chat(gc, chat->components); |
4453 } | |
4454 } | |
4455 } | |
4456 | |
8815 | 4457 void * |
4458 gaim_gtk_blist_get_handle() { | |
4459 static int handle; | |
4460 | |
4461 return &handle; | |
4462 } | |
4463 | |
7620 | 4464 void gaim_gtk_blist_init(void) |
4465 { | |
8815 | 4466 void *gtk_blist_handle = gaim_gtk_blist_get_handle(); |
7620 | 4467 |
4468 gaim_signal_connect(gaim_connections_get_handle(), "signed-on", | |
8815 | 4469 gtk_blist_handle, GAIM_CALLBACK(account_signon_cb), |
7620 | 4470 NULL); |
7731 | 4471 |
4472 /* Initialize prefs */ | |
8819 | 4473 gaim_prefs_add_none("/gaim/gtk/blist"); |
7731 | 4474 gaim_prefs_add_bool("/gaim/gtk/blist/auto_expand_contacts", TRUE); |
8819 | 4475 gaim_prefs_add_int("/gaim/gtk/blist/button_style", GAIM_BUTTON_TEXT_IMAGE); |
4476 gaim_prefs_add_bool("/gaim/gtk/blist/grey_idle_buddies", TRUE); | |
4477 gaim_prefs_add_bool("/gaim/gtk/blist/raise_on_events", FALSE); | |
4478 gaim_prefs_add_bool("/gaim/gtk/blist/show_buddy_icons", TRUE); | |
4479 gaim_prefs_add_bool("/gaim/gtk/blist/show_empty_groups", FALSE); | |
4480 gaim_prefs_add_bool("/gaim/gtk/blist/show_group_count", TRUE); | |
4481 gaim_prefs_add_bool("/gaim/gtk/blist/show_idle_time", TRUE); | |
4482 gaim_prefs_add_bool("/gaim/gtk/blist/show_offline_buddies", FALSE); | |
4483 gaim_prefs_add_bool("/gaim/gtk/blist/show_warning_level", TRUE); | |
4484 gaim_prefs_add_string("/gaim/gtk/blist/sort_type", ""); | |
4485 gaim_prefs_add_int("/gaim/gtk/blist/x", 0); | |
4486 gaim_prefs_add_int("/gaim/gtk/blist/y", 0); | |
4487 gaim_prefs_add_int("/gaim/gtk/blist/width", 0); | |
4488 gaim_prefs_add_int("/gaim/gtk/blist/height", 0); | |
4489 gaim_prefs_add_int("/gaim/gtk/blist/tooltip_delay", 500); | |
7731 | 4490 |
8815 | 4491 /* Register our signals */ |
4492 gaim_signal_register(gtk_blist_handle, "drawing-menu", | |
8819 | 4493 gaim_marshal_VOID__POINTER_POINTER, NULL, 2, |
4494 gaim_value_new(GAIM_TYPE_BOXED, "GtkMenu"), | |
4495 gaim_value_new(GAIM_TYPE_SUBTYPE, | |
4496 GAIM_SUBTYPE_BLIST_BUDDY)); | |
8815 | 4497 |
4498 gaim_signal_register(gtk_blist_handle, "gtkblist-created", | |
8819 | 4499 gaim_marshal_VOID__POINTER, NULL, 1, |
4500 gaim_value_new(GAIM_TYPE_SUBTYPE, | |
4501 GAIM_SUBTYPE_BLIST)); | |
4502 | |
4503 gaim_signal_register(gtk_blist_handle, "drawing-tooltip", | |
4504 gaim_marshal_VOID__POINTER_POINTER, NULL, 2, | |
4505 gaim_value_new(GAIM_TYPE_SUBTYPE, GAIM_SUBTYPE_BLIST_NODE), | |
4506 gaim_value_new_outgoing(GAIM_TYPE_STRING)); | |
7620 | 4507 } |
4508 | |
8815 | 4509 void |
4510 gaim_gtk_blist_uninit(void) { | |
4511 gaim_signals_unregister_by_instance(gaim_gtk_blist_get_handle()); | |
4512 } | |
5228 | 4513 |
4514 /********************************************************************* | |
4515 * Public utility functions * | |
4516 *********************************************************************/ | |
4517 | |
4518 GdkPixbuf * | |
7620 | 4519 create_prpl_icon(GaimAccount *account) |
5228 | 4520 { |
4521 GaimPlugin *prpl; | |
4522 GaimPluginProtocolInfo *prpl_info = NULL; | |
4523 GdkPixbuf *status = NULL; | |
4524 char *filename = NULL; | |
4525 const char *protoname = NULL; | |
4526 char buf[256]; | |
4527 | |
7956 | 4528 prpl = gaim_find_prpl(gaim_account_get_protocol_id(account)); |
5228 | 4529 |
4530 if (prpl != NULL) { | |
4531 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(prpl); | |
4532 | |
4533 if (prpl_info->list_icon != NULL) | |
4534 protoname = prpl_info->list_icon(account, NULL); | |
4535 } | |
4536 | |
4537 if (protoname == NULL) | |
4538 return NULL; | |
4539 | |
4540 /* | |
4541 * Status icons will be themeable too, and then it will look up | |
4542 * protoname from the theme | |
4543 */ | |
4544 g_snprintf(buf, sizeof(buf), "%s.png", protoname); | |
4545 | |
4546 filename = g_build_filename(DATADIR, "pixmaps", "gaim", "status", | |
4547 "default", buf, NULL); | |
4548 status = gdk_pixbuf_new_from_file(filename, NULL); | |
4549 g_free(filename); | |
4550 | |
4551 return status; | |
4552 } | |
4553 | |
5422 | 4554 |
4555 /********************************************************************* | |
4556 * Buddy List sorting functions * | |
4557 *********************************************************************/ | |
4558 | |
7620 | 4559 void gaim_gtk_blist_sort_method_reg(const char *id, const char *name, gaim_gtk_blist_sort_function func) |
5422 | 4560 { |
4561 struct gaim_gtk_blist_sort_method *method = g_new0(struct gaim_gtk_blist_sort_method, 1); | |
7620 | 4562 method->id = g_strdup(id); |
5422 | 4563 method->name = g_strdup(name); |
7620 | 4564 method->func = func;; |
5422 | 4565 gaim_gtk_blist_sort_methods = g_slist_append(gaim_gtk_blist_sort_methods, method); |
4566 } | |
4567 | |
7620 | 4568 void gaim_gtk_blist_sort_method_unreg(const char *id){ |
4569 GSList *l = gaim_gtk_blist_sort_methods; | |
4570 | |
4571 while(l) { | |
4572 struct gaim_gtk_blist_sort_method *method = l->data; | |
4573 if(!strcmp(method->id, id)) { | |
4574 gaim_gtk_blist_sort_methods = g_slist_remove(gaim_gtk_blist_sort_methods, method); | |
4575 g_free(method->id); | |
4576 g_free(method->name); | |
4577 g_free(method); | |
4578 break; | |
4579 } | |
4580 } | |
5422 | 4581 } |
4582 | |
7620 | 4583 void gaim_gtk_blist_sort_method_set(const char *id){ |
5422 | 4584 GSList *l = gaim_gtk_blist_sort_methods; |
7620 | 4585 |
4586 if(!id) | |
4587 id = "none"; | |
4588 | |
4589 while (l && strcmp(((struct gaim_gtk_blist_sort_method*)l->data)->id, id)) | |
5422 | 4590 l = l->next; |
7620 | 4591 |
5422 | 4592 if (l) { |
4593 current_sort_method = l->data; | |
4594 } else if (!current_sort_method) { | |
7620 | 4595 gaim_gtk_blist_sort_method_set("none"); |
5422 | 4596 return; |
4597 } | |
4598 redo_buddy_list(gaim_get_blist(), TRUE); | |
4599 | |
4600 } | |
4601 | |
4602 /****************************************** | |
4603 ** Sort Methods | |
4604 ******************************************/ | |
4605 | |
7620 | 4606 static GtkTreeIter sort_method_none(GaimBlistNode *node, GaimBuddyList *blist, GtkTreeIter parent_iter, GtkTreeIter *cur) |
5422 | 4607 { |
7620 | 4608 GtkTreeIter iter; |
4609 GaimBlistNode *sibling = node->prev; | |
4610 GtkTreeIter sibling_iter; | |
4611 | |
4612 if(cur) | |
5422 | 4613 return *cur; |
7620 | 4614 |
4615 while (sibling && !get_iter_from_node(sibling, &sibling_iter)) { | |
4616 sibling = sibling->prev; | |
5422 | 4617 } |
7620 | 4618 |
4619 gtk_tree_store_insert_after(gtkblist->treemodel, &iter, | |
4620 node->parent ? &parent_iter : NULL, | |
4621 sibling ? &sibling_iter : NULL); | |
4622 | |
5422 | 4623 return iter; |
4624 } | |
4625 | |
7620 | 4626 #if GTK_CHECK_VERSION(2,2,1) |
4627 | |
4628 static GtkTreeIter sort_method_alphabetical(GaimBlistNode *node, GaimBuddyList *blist, GtkTreeIter groupiter, GtkTreeIter *cur) | |
5422 | 4629 { |
4630 GtkTreeIter more_z, iter; | |
4631 GaimBlistNode *n; | |
4632 GValue val = {0,}; | |
7620 | 4633 |
4634 const char *my_name; | |
4635 | |
4636 if(GAIM_BLIST_NODE_IS_CONTACT(node)) { | |
4637 my_name = gaim_contact_get_alias((GaimContact*)node); | |
4638 } else if(GAIM_BLIST_NODE_IS_CHAT(node)) { | |
4639 my_name = gaim_chat_get_name((GaimChat*)node); | |
4640 } else { | |
4641 return sort_method_none(node, blist, groupiter, cur); | |
4642 } | |
4643 | |
5422 | 4644 |
4645 if (!gtk_tree_model_iter_children(GTK_TREE_MODEL(gtkblist->treemodel), &more_z, &groupiter)) { | |
4646 gtk_tree_store_insert(gtkblist->treemodel, &iter, &groupiter, 0); | |
7620 | 4647 return iter; |
4648 } | |
4649 | |
4650 do { | |
4651 const char *this_name; | |
4652 int cmp; | |
4653 | |
4654 gtk_tree_model_get_value (GTK_TREE_MODEL(gtkblist->treemodel), &more_z, NODE_COLUMN, &val); | |
4655 n = g_value_get_pointer(&val); | |
4656 | |
4657 if(GAIM_BLIST_NODE_IS_CONTACT(n)) { | |
4658 this_name = gaim_contact_get_alias((GaimContact*)n); | |
4659 } else if(GAIM_BLIST_NODE_IS_CHAT(n)) { | |
4660 this_name = gaim_chat_get_name((GaimChat*)n); | |
4661 } else { | |
4662 this_name = NULL; | |
4663 } | |
4664 | |
4665 cmp = gaim_utf8_strcasecmp(my_name, this_name); | |
4666 | |
4667 if(this_name && (cmp < 0 || (cmp == 0 && node < n))) { | |
4668 if(cur) { | |
4669 gtk_tree_store_move_before(gtkblist->treemodel, cur, &more_z); | |
4670 return *cur; | |
4671 } else { | |
4672 gtk_tree_store_insert_before(gtkblist->treemodel, &iter, | |
4673 &groupiter, &more_z); | |
4674 return iter; | |
4675 } | |
4676 } | |
4677 g_value_unset(&val); | |
4678 } while (gtk_tree_model_iter_next (GTK_TREE_MODEL(gtkblist->treemodel), &more_z)); | |
4679 | |
4680 if(cur) { | |
4681 gtk_tree_store_move_before(gtkblist->treemodel, cur, NULL); | |
4682 return *cur; | |
4683 } else { | |
4684 gtk_tree_store_append(gtkblist->treemodel, &iter, &groupiter); | |
4685 return iter; | |
4686 } | |
4687 } | |
4688 | |
4689 static GtkTreeIter sort_method_status(GaimBlistNode *node, GaimBuddyList *blist, GtkTreeIter groupiter, GtkTreeIter *cur) | |
4690 { | |
4691 GtkTreeIter more_z, iter; | |
4692 GaimBlistNode *n; | |
4693 GValue val = {0,}; | |
4694 | |
4695 GaimBuddy *my_buddy, *this_buddy; | |
4696 | |
4697 if(GAIM_BLIST_NODE_IS_CONTACT(node)) { | |
4698 my_buddy = gaim_contact_get_priority_buddy((GaimContact*)node); | |
4699 } else if(GAIM_BLIST_NODE_IS_CHAT(node)) { | |
4700 if(cur) | |
4701 return *cur; | |
4702 | |
4703 gtk_tree_store_append(gtkblist->treemodel, &iter, &groupiter); | |
4704 return iter; | |
4705 } else { | |
4706 return sort_method_none(node, blist, groupiter, cur); | |
4707 } | |
4708 | |
4709 | |
4710 if (!gtk_tree_model_iter_children(GTK_TREE_MODEL(gtkblist->treemodel), &more_z, &groupiter)) { | |
4711 gtk_tree_store_insert(gtkblist->treemodel, &iter, &groupiter, 0); | |
5422 | 4712 return iter; |
4713 } | |
4714 | |
4715 do { | |
7620 | 4716 int cmp; |
4717 | |
5422 | 4718 gtk_tree_model_get_value (GTK_TREE_MODEL(gtkblist->treemodel), &more_z, NODE_COLUMN, &val); |
4719 n = g_value_get_pointer(&val); | |
7620 | 4720 |
4721 if(GAIM_BLIST_NODE_IS_CONTACT(n)) { | |
4722 this_buddy = gaim_contact_get_priority_buddy((GaimContact*)n); | |
4723 } else { | |
4724 this_buddy = NULL; | |
4725 } | |
4726 | |
4727 cmp = gaim_utf8_strcasecmp(my_buddy ? | |
4728 gaim_contact_get_alias(gaim_buddy_get_contact(my_buddy)) | |
4729 : NULL, this_buddy ? | |
4730 gaim_contact_get_alias(gaim_buddy_get_contact(this_buddy)) | |
4731 : NULL); | |
4732 | |
4733 /* Hideous */ | |
4734 if(!this_buddy || | |
4735 ((my_buddy->present > this_buddy->present) || | |
4736 (my_buddy->present == this_buddy->present && | |
4737 (((my_buddy->uc & UC_UNAVAILABLE) < (this_buddy->uc & UC_UNAVAILABLE)) || | |
4738 (((my_buddy->uc & UC_UNAVAILABLE) == (this_buddy->uc & UC_UNAVAILABLE)) && | |
4739 (((my_buddy->idle == 0) && (this_buddy->idle != 0)) || | |
4740 (this_buddy->idle && (my_buddy->idle > this_buddy->idle)) || | |
4741 ((my_buddy->idle == this_buddy->idle) && | |
4742 (cmp < 0 || (cmp == 0 && node < n))))))))) { | |
4743 if(cur) { | |
4744 gtk_tree_store_move_before(gtkblist->treemodel, cur, &more_z); | |
4745 return *cur; | |
4746 } else { | |
4747 gtk_tree_store_insert_before(gtkblist->treemodel, &iter, | |
4748 &groupiter, &more_z); | |
4749 return iter; | |
4750 } | |
5422 | 4751 } |
4752 g_value_unset(&val); | |
4753 } while (gtk_tree_model_iter_next (GTK_TREE_MODEL(gtkblist->treemodel), &more_z)); | |
7620 | 4754 |
4755 if(cur) { | |
4756 gtk_tree_store_move_before(gtkblist->treemodel, cur, NULL); | |
4757 return *cur; | |
4758 } else { | |
4759 gtk_tree_store_append(gtkblist->treemodel, &iter, &groupiter); | |
4760 return iter; | |
4761 } | |
5422 | 4762 } |
4763 | |
7620 | 4764 static GtkTreeIter sort_method_log(GaimBlistNode *node, GaimBuddyList *blist, GtkTreeIter groupiter, GtkTreeIter *cur) |
5422 | 4765 { |
4766 GtkTreeIter more_z, iter; | |
7620 | 4767 GaimBlistNode *n = NULL, *n2; |
5422 | 4768 GValue val = {0,}; |
7620 | 4769 |
4770 int log_size = 0, this_log_size = 0; | |
4771 const char *buddy_name, *this_buddy_name; | |
4772 | |
4773 if(cur && (gtk_tree_model_iter_n_children(GTK_TREE_MODEL(gtkblist->treemodel), &groupiter) == 1)) | |
4774 return *cur; | |
4775 | |
4776 if(GAIM_BLIST_NODE_IS_CONTACT(node)) { | |
4777 for (n = node->child; n; n = n->next) | |
4778 log_size += gaim_log_get_total_size(((GaimBuddy*)(n))->name, ((GaimBuddy*)(n))->account); | |
4779 buddy_name = gaim_contact_get_alias((GaimContact*)node); | |
4780 } else if(GAIM_BLIST_NODE_IS_CHAT(node)) { | |
4781 /* we don't have a reliable way of getting the log filename | |
4782 * from the chat info in the blist, yet */ | |
4783 if(cur) | |
4784 return *cur; | |
4785 | |
4786 gtk_tree_store_append(gtkblist->treemodel, &iter, &groupiter); | |
4787 return iter; | |
4788 } else { | |
4789 return sort_method_none(node, blist, groupiter, cur); | |
4790 } | |
4791 | |
4792 | |
5422 | 4793 if (!gtk_tree_model_iter_children(GTK_TREE_MODEL(gtkblist->treemodel), &more_z, &groupiter)) { |
4794 gtk_tree_store_insert(gtkblist->treemodel, &iter, &groupiter, 0); | |
4795 return iter; | |
4796 } | |
4797 | |
4798 do { | |
7620 | 4799 int cmp; |
4800 | |
5422 | 4801 gtk_tree_model_get_value (GTK_TREE_MODEL(gtkblist->treemodel), &more_z, NODE_COLUMN, &val); |
4802 n = g_value_get_pointer(&val); | |
7620 | 4803 this_log_size = 0; |
4804 | |
4805 if(GAIM_BLIST_NODE_IS_CONTACT(n)) { | |
4806 for (n2 = n->child; n2; n2 = n2->next) | |
4807 this_log_size += gaim_log_get_total_size(((GaimBuddy*)(n2))->name, ((GaimBuddy*)(n2))->account); | |
4808 this_buddy_name = gaim_contact_get_alias((GaimContact*)n); | |
4809 } else { | |
4810 this_buddy_name = NULL; | |
5422 | 4811 } |
7620 | 4812 |
4813 cmp = gaim_utf8_strcasecmp(buddy_name, this_buddy_name); | |
4814 | |
4815 if (!GAIM_BLIST_NODE_IS_CONTACT(n) || log_size > this_log_size || | |
4816 ((log_size == this_log_size) && | |
4817 (cmp < 0 || (cmp == 0 && node < n)))) { | |
4818 if(cur) { | |
4819 gtk_tree_store_move_before(gtkblist->treemodel, cur, &more_z); | |
4820 return *cur; | |
4821 } else { | |
4822 gtk_tree_store_insert_before(gtkblist->treemodel, &iter, | |
4823 &groupiter, &more_z); | |
4824 return iter; | |
4825 } | |
5422 | 4826 } |
4827 g_value_unset(&val); | |
4828 } while (gtk_tree_model_iter_next (GTK_TREE_MODEL(gtkblist->treemodel), &more_z)); | |
7620 | 4829 |
4830 if(cur) { | |
4831 gtk_tree_store_move_before(gtkblist->treemodel, cur, NULL); | |
4832 return *cur; | |
4833 } else { | |
4834 gtk_tree_store_append(gtkblist->treemodel, &iter, &groupiter); | |
4835 return iter; | |
4836 } | |
4837 } | |
4838 | |
4839 #endif | |
4840 | |
4841 static void | |
4842 proto_act(GtkObject *obj, struct proto_actions_menu *pam) | |
4843 { | |
4844 if (pam->callback && pam->gc) | |
4845 pam->callback(pam->gc); | |
5422 | 4846 } |
7620 | 4847 |
4848 void | |
4849 gaim_gtk_blist_update_protocol_actions(void) | |
4850 { | |
4851 GtkWidget *menuitem; | |
4852 GtkWidget *submenu; | |
4853 GaimPluginProtocolInfo *prpl_info = NULL; | |
4854 GList *l; | |
4855 GList *c; | |
4856 struct proto_actions_menu *pam; | |
4857 GaimConnection *gc = NULL; | |
4858 int count = 0; | |
4859 char buf[256]; | |
4860 | |
4861 if (!protomenu) | |
4862 return; | |
4863 | |
4864 for (l = gtk_container_get_children(GTK_CONTAINER(protomenu)); | |
4865 l != NULL; | |
4866 l = l->next) { | |
4867 | |
4868 menuitem = l->data; | |
4869 pam = g_object_get_data(G_OBJECT(menuitem), "proto_actions_menu"); | |
4870 | |
4871 if (pam) | |
4872 g_free(pam); | |
4873 | |
4874 gtk_container_remove(GTK_CONTAINER(protomenu), GTK_WIDGET(menuitem)); | |
4875 } | |
4876 | |
4877 for (c = gaim_connections_get_all(); c != NULL; c = c->next) { | |
4878 gc = c->data; | |
4879 | |
4880 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(gc->prpl); | |
4881 | |
4882 if (prpl_info->actions && gc->login_time) | |
4883 count++; | |
4884 } | |
4885 | |
4886 if (!count) { | |
4887 g_snprintf(buf, sizeof(buf), _("No actions available")); | |
4888 menuitem = gtk_menu_item_new_with_label(buf); | |
4889 gtk_menu_shell_append(GTK_MENU_SHELL(protomenu), menuitem); | |
4890 gtk_widget_show(menuitem); | |
4891 return; | |
4892 } | |
4893 | |
4894 if (count == 1) { | |
4895 GList *act; | |
4896 | |
4897 for (c = gaim_connections_get_all(); c != NULL; c = c->next) { | |
4898 gc = c->data; | |
4899 | |
4900 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(gc->prpl); | |
4901 | |
4902 if (prpl_info->actions && gc->login_time) | |
4903 break; | |
4904 } | |
4905 | |
4906 for (act = prpl_info->actions(gc); act != NULL; act = act->next) { | |
4907 if (act->data) { | |
4908 struct proto_actions_menu *pam = act->data; | |
4909 menuitem = gtk_menu_item_new_with_label(pam->label); | |
4910 gtk_menu_shell_append(GTK_MENU_SHELL(protomenu), menuitem); | |
4911 g_signal_connect(G_OBJECT(menuitem), "activate", | |
4912 G_CALLBACK(proto_act), pam); | |
4913 g_object_set_data(G_OBJECT(menuitem), "proto_actions_menu", pam); | |
4914 gtk_widget_show(menuitem); | |
4915 } | |
4916 else | |
4917 gaim_separator(protomenu); | |
4918 } | |
4919 } | |
4920 else { | |
4921 for (c = gaim_connections_get_all(); c != NULL; c = c->next) { | |
4922 GaimAccount *account; | |
4923 GList *act; | |
4924 GdkPixbuf *pixbuf, *scale; | |
4925 GtkWidget *image; | |
4926 | |
4927 gc = c->data; | |
4928 | |
4929 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(gc->prpl); | |
4930 | |
4931 if (!prpl_info->actions || !gc->login_time) | |
4932 continue; | |
4933 | |
4934 account = gaim_connection_get_account(gc); | |
4935 | |
4936 g_snprintf(buf, sizeof(buf), "%s (%s)", | |
4937 gaim_account_get_username(account), | |
4938 gc->prpl->info->name); | |
4939 | |
4940 menuitem = gtk_image_menu_item_new_with_label(buf); | |
4941 | |
4942 pixbuf = create_prpl_icon(gc->account); | |
4943 if(pixbuf) { | |
4944 scale = gdk_pixbuf_scale_simple(pixbuf, 16, 16, | |
4945 GDK_INTERP_BILINEAR); | |
4946 image = gtk_image_new_from_pixbuf(scale); | |
4947 g_object_unref(G_OBJECT(pixbuf)); | |
4948 g_object_unref(G_OBJECT(scale)); | |
4949 gtk_widget_show(image); | |
4950 gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(menuitem), | |
4951 image); | |
4952 } | |
4953 | |
4954 gtk_menu_shell_append(GTK_MENU_SHELL(protomenu), menuitem); | |
4955 gtk_widget_show(menuitem); | |
4956 | |
4957 submenu = gtk_menu_new(); | |
4958 gtk_menu_item_set_submenu(GTK_MENU_ITEM(menuitem), submenu); | |
4959 gtk_widget_show(submenu); | |
4960 | |
4961 for (act = prpl_info->actions(gc); act != NULL; act = act->next) { | |
4962 if (act->data) { | |
4963 struct proto_actions_menu *pam = act->data; | |
4964 menuitem = gtk_menu_item_new_with_label(pam->label); | |
4965 gtk_menu_shell_append(GTK_MENU_SHELL(submenu), menuitem); | |
4966 g_signal_connect(G_OBJECT(menuitem), "activate", | |
4967 G_CALLBACK(proto_act), pam); | |
4968 g_object_set_data(G_OBJECT(menuitem), "proto_actions_menu", | |
4969 pam); | |
4970 gtk_widget_show(menuitem); | |
4971 } | |
4972 else | |
4973 gaim_separator(submenu); | |
4974 } | |
4975 } | |
4976 } | |
4977 } |