Mercurial > pidgin
annotate src/gtkconv.c @ 4931:d80bc307e2c8
[gaim-migrate @ 5265]
I never liked that thing.
committer: Tailor Script <tailor@pidgin.im>
| author | Sean Egan <seanegan@gmail.com> |
|---|---|
| date | Mon, 31 Mar 2003 23:15:25 +0000 |
| parents | 3c649fe22e2c |
| children | 4d50e125b0fa |
| rev | line source |
|---|---|
| 4359 | 1 /* |
| 2 * gaim | |
| 3 * | |
| 4 * Copyright (C) 2002-2003, Christian Hammond <chipx86@gnupdate.org> | |
| 5 * | |
| 6 * This program is free software; you can redistribute it and/or modify | |
| 7 * it under the terms of the GNU General Public License as published by | |
| 8 * the Free Software Foundation; either version 2 of the License, or | |
| 9 * (at your option) any later version. | |
| 10 * | |
| 11 * This program is distributed in the hope that it will be useful, | |
| 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 14 * GNU General Public License for more details. | |
| 15 * | |
| 16 * You should have received a copy of the GNU General Public License | |
| 17 * along with this program; if not, write to the Free Software | |
| 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 19 * | |
| 20 */ | |
| 21 #ifdef HAVE_CONFIG_H | |
| 22 #include <config.h> | |
| 23 #endif | |
| 24 #include <string.h> | |
| 25 #ifndef _WIN32 | |
| 26 #include <sys/time.h> | |
| 27 #include <unistd.h> | |
| 28 #include <gdk/gdkx.h> | |
| 29 #include <X11/Xlib.h> | |
| 30 #endif /*_WIN32*/ | |
| 31 #include <sys/types.h> | |
| 32 #include <sys/stat.h> | |
| 33 #include <stdio.h> | |
| 34 #include <stdlib.h> | |
| 35 #include <errno.h> | |
| 36 #include <ctype.h> | |
| 37 #include <gtk/gtk.h> | |
| 38 #ifdef USE_GTKSPELL | |
| 39 #include <gtkspell/gtkspell.h> | |
| 40 #endif | |
| 41 #include "gtkimhtml.h" | |
| 42 #include <gdk/gdkkeysyms.h> | |
| 43 #include "prpl.h" | |
| 44 #include "gtkimhtml.h" | |
| 45 #include "dnd-hints.h" | |
| 4561 | 46 #include "sound.h" |
|
4689
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
47 #include "gtklist.h" |
| 4359 | 48 |
|
4373
dcc6c130c6d9
[gaim-migrate @ 4639]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4370
diff
changeset
|
49 #ifdef _WIN32 |
|
dcc6c130c6d9
[gaim-migrate @ 4639]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4370
diff
changeset
|
50 #include "win32dep.h" |
|
4859
a9a831508b43
[gaim-migrate @ 5186]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4851
diff
changeset
|
51 #include "wspell.h" |
|
4373
dcc6c130c6d9
[gaim-migrate @ 4639]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4370
diff
changeset
|
52 #endif |
|
dcc6c130c6d9
[gaim-migrate @ 4639]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4370
diff
changeset
|
53 |
| 4359 | 54 static char nick_colors[][8] = { |
| 55 "#ba55d3", /* Medium Orchid */ | |
| 56 "#ee82ee", /* Violet */ | |
| 57 "#c715b4", /* Medium Violet Red */ | |
| 58 "#ff69b4", /* Hot Pink */ | |
| 59 "#ff6347", /* Tomato */ | |
| 60 "#fa8c00", /* Dark Orange */ | |
| 61 "#fa8072", /* Salmon */ | |
| 62 "#b22222", /* Fire Brick */ | |
| 63 "#f4a460", /* Sandy Brown */ | |
| 64 "#cd5c5c", /* Indian Red */ | |
| 65 "#bc8f8f", /* Rosy Brown */ | |
| 66 "#f0e68c", /* Khaki */ | |
| 67 "#bdb76b", /* Dark Khaki */ | |
| 68 "#228b22", /* Forest Green */ | |
| 69 "#9acd32", /* Yellow Green */ | |
| 70 "#32cd32", /* Lime Green */ | |
| 71 "#3cb371", /* Medium Sea Green */ | |
| 72 "#2e8b57", /* Sea Green */ | |
| 73 "#8fbc8f", /* Dark Sea Green */ | |
| 74 "#66cdaa", /* Medium Aquamarine */ | |
| 75 "#5f9ea0", /* Cadet Blue */ | |
| 76 "#48d1cc", /* Medium Turquoise */ | |
| 77 "#00ced1", /* Dark Turquoise */ | |
| 78 "#4682b4", /* Stell Blue */ | |
| 79 "#00bfff", /* Deep Sky Blue */ | |
| 80 "#1690ff", /* Dodger Blue */ | |
| 81 "#4169ff", /* Royal Blue */ | |
| 82 "#6a5acd", /* Slate Blue */ | |
| 83 "#6495ed", /* Cornflower Blue */ | |
| 84 "#708090", /* Slate gray */ | |
| 85 "#ffdead", /* Navajo White */ | |
| 86 }; | |
| 87 #define NUM_NICK_COLORS (sizeof(nick_colors) / sizeof(*nick_colors)) | |
| 88 | |
| 89 #define SCALE(x) \ | |
| 90 ((gdk_pixbuf_animation_get_width(x) <= 48 && \ | |
| 91 gdk_pixbuf_animation_get_height(x) <= 48) ? 48 : 50) | |
| 92 | |
| 93 struct InviteBuddyInfo | |
| 94 { | |
| 95 GtkWidget *window; | |
| 96 | |
| 97 GtkWidget *entry; | |
| 98 GtkWidget *message; | |
| 99 | |
| 100 struct gaim_conversation *conv; | |
| 101 }; | |
| 102 | |
| 103 char fontface[128] = { 0 }; | |
| 104 int fontsize = 3; | |
| 105 | |
| 106 static GtkWidget *invite_dialog = NULL; | |
| 107 | |
| 108 /* Prototypes. <-- because Paco-Paco hates this comment. */ | |
| 109 static void check_everything(GtkTextBuffer *buffer); | |
| 4685 | 110 static void set_toggle(GtkWidget *tb, gboolean active); |
| 4359 | 111 static void move_next_tab(struct gaim_conversation *conv); |
| 112 static void do_bold(GtkWidget *bold, struct gaim_gtk_conversation *gtkconv); | |
| 113 static void do_italic(GtkWidget *italic, struct gaim_gtk_conversation *gtkconv); | |
| 114 static void do_underline(GtkWidget *underline, struct gaim_gtk_conversation *gtkconv); | |
| 115 static void do_small(GtkWidget *small, struct gaim_gtk_conversation *gtkconv); | |
| 116 static void do_normal(GtkWidget *small, struct gaim_gtk_conversation *gtkconv); | |
| 117 static void do_big(GtkWidget *small, struct gaim_gtk_conversation *gtkconv); | |
| 118 static void toggle_font(GtkWidget *font, struct gaim_conversation *conv); | |
| 119 static void toggle_fg_color(GtkWidget *color, struct gaim_conversation *conv); | |
| 120 static void toggle_bg_color(GtkWidget *color, struct gaim_conversation *conv); | |
| 121 static void got_typing_keypress(struct gaim_conversation *conv, gboolean first); | |
| 122 static GList *generate_invite_user_names(struct gaim_connection *gc); | |
| 123 static void add_chat_buddy_common(struct gaim_conversation *conv, | |
| 124 const char *name, int pos); | |
| 125 static void tab_complete(struct gaim_conversation *conv); | |
| 4736 | 126 static void update_typing_icon(struct gaim_conversation *conv); |
| 4685 | 127 static gboolean update_send_as_selection(struct gaim_window *win); |
|
4602
4128761bacb8
[gaim-migrate @ 4889]
Christian Hammond <chipx86@chipx86.com>
parents:
4598
diff
changeset
|
128 static char *item_factory_translate_func (const char *path, gpointer func_data); |
| 4359 | 129 |
| 130 /************************************************************************** | |
| 131 * Callbacks | |
| 132 **************************************************************************/ | |
| 133 static void | |
| 134 do_insert_image_cb(GObject *obj, GtkWidget *wid) | |
| 135 { | |
| 136 struct gaim_conversation *conv; | |
| 137 struct gaim_gtk_conversation *gtkconv; | |
| 138 struct gaim_im *im; | |
| 139 const char *name; | |
| 140 const char *filename; | |
| 141 char *buf; | |
| 142 struct stat st; | |
| 143 int id; | |
| 144 | |
| 145 conv = g_object_get_data(obj, "user_data"); | |
| 146 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 147 im = GAIM_IM(conv); | |
| 148 name = gtk_file_selection_get_filename(GTK_FILE_SELECTION(wid)); | |
| 149 id = g_slist_length(im->images) + 1; | |
| 150 | |
| 151 if (file_is_dir(name, wid)) | |
| 152 return; | |
| 153 | |
| 154 gtk_widget_destroy(wid); | |
| 155 | |
| 156 if (!name) | |
| 157 return; | |
| 158 | |
| 159 if (stat(name, &st) != 0) { | |
| 160 debug_printf("Could not stat %s\n", name); | |
| 161 return; | |
| 162 } | |
| 163 | |
| 164 filename = name; | |
| 165 while (strchr(filename, '/')) | |
| 166 filename = strchr(filename, '/') + 1; | |
| 167 | |
| 168 buf = g_strdup_printf("<IMG SRC=\"file://%s\" ID=\"%d\" DATASIZE=\"%d\">", | |
| 169 filename, id, (int)st.st_size); | |
| 170 im->images = g_slist_append(im->images, g_strdup(name)); | |
| 171 gtk_text_buffer_insert_at_cursor(GTK_TEXT_BUFFER(gtkconv->entry_buffer), | |
| 172 buf, -1); | |
| 173 g_free(buf); | |
| 174 } | |
| 175 | |
| 176 static gint | |
| 177 close_win_cb(GtkWidget *w, GdkEventAny *e, gpointer d) | |
| 178 { | |
| 179 struct gaim_window *win = (struct gaim_window *)d; | |
| 180 | |
| 181 gaim_window_destroy(win); | |
|
4361
25d5b2a7545f
[gaim-migrate @ 4627]
Christian Hammond <chipx86@chipx86.com>
parents:
4360
diff
changeset
|
182 |
|
25d5b2a7545f
[gaim-migrate @ 4627]
Christian Hammond <chipx86@chipx86.com>
parents:
4360
diff
changeset
|
183 return TRUE; |
| 4359 | 184 } |
| 185 | |
| 186 static gint | |
| 187 close_conv_cb(GtkWidget *w, gpointer d) | |
| 188 { | |
| 189 struct gaim_conversation *conv = (struct gaim_conversation *)d; | |
| 190 | |
| 191 gaim_conversation_destroy(conv); | |
|
4361
25d5b2a7545f
[gaim-migrate @ 4627]
Christian Hammond <chipx86@chipx86.com>
parents:
4360
diff
changeset
|
192 |
|
25d5b2a7545f
[gaim-migrate @ 4627]
Christian Hammond <chipx86@chipx86.com>
parents:
4360
diff
changeset
|
193 return TRUE; |
| 4359 | 194 } |
| 195 | |
| 196 static void | |
| 197 insert_image_cb(GtkWidget *save, struct gaim_conversation *conv) | |
| 198 { | |
| 199 struct gaim_gtk_conversation *gtkconv; | |
| 200 char buf[BUF_LONG]; | |
| 201 GtkWidget *window; | |
| 202 | |
| 203 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 204 | |
| 205 window = gtk_file_selection_new(_("Gaim - Insert Image")); | |
| 206 g_snprintf(buf, sizeof(buf), "%s" G_DIR_SEPARATOR_S, gaim_home_dir()); | |
| 207 gtk_file_selection_set_filename(GTK_FILE_SELECTION(window), buf); | |
| 208 | |
| 209 g_object_set_data(G_OBJECT(GTK_FILE_SELECTION(window)->ok_button), | |
| 210 "user_data", conv); | |
| 211 g_signal_connect(G_OBJECT(GTK_FILE_SELECTION(window)->ok_button), | |
| 212 "clicked", G_CALLBACK(do_insert_image_cb), window); | |
| 213 g_signal_connect_swapped( | |
| 214 G_OBJECT(GTK_FILE_SELECTION(window)->cancel_button), | |
| 215 "clicked", G_CALLBACK(gtk_widget_destroy), window); | |
| 216 | |
| 217 gtk_widget_show(window); | |
| 4895 | 218 /* |
| 4635 | 219 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(gtkconv->toolbar.image), |
| 4359 | 220 FALSE); |
| 4895 | 221 */ |
| 4359 | 222 } |
| 223 | |
| 224 static void | |
| 225 insert_link_cb(GtkWidget *w, struct gaim_conversation *conv) | |
| 226 { | |
| 227 struct gaim_gtk_conversation *gtkconv; | |
| 228 | |
| 229 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 230 | |
| 231 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(gtkconv->toolbar.link))) | |
| 232 show_insert_link(gtkconv->toolbar.link, conv); | |
| 233 else if (gtkconv->dialogs.link) | |
| 234 cancel_link(gtkconv->toolbar.link, conv); | |
| 235 else | |
| 236 gaim_gtk_advance_past(gtkconv, "<A HREF>", "</A>"); | |
| 237 | |
| 238 gtk_widget_grab_focus(gtkconv->entry); | |
| 239 } | |
| 240 | |
| 241 static void | |
| 242 insert_smiley_cb(GtkWidget *smiley, struct gaim_conversation *conv) | |
| 243 { | |
| 244 struct gaim_gtk_conversation *gtkconv; | |
| 245 | |
| 246 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 247 | |
| 248 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(smiley))) | |
| 249 show_smiley_dialog(conv, smiley); | |
| 250 else if (gtkconv->dialogs.smiley) | |
| 251 close_smiley_dialog(smiley, conv); | |
| 252 | |
| 253 gtk_widget_grab_focus(gtkconv->entry); | |
| 254 } | |
| 255 | |
| 256 static void | |
| 257 menu_save_as_cb(gpointer data, guint action, GtkWidget *widget) | |
| 258 { | |
| 259 struct gaim_window *win = (struct gaim_window *)data; | |
| 260 | |
| 261 save_convo(NULL, gaim_window_get_active_conversation(win)); | |
| 262 } | |
| 263 | |
| 264 static void | |
| 265 menu_view_history_cb(gpointer data, guint action, GtkWidget *widget) | |
| 266 { | |
| 267 struct gaim_window *win = (struct gaim_window *)data; | |
|
4387
a3fd5fe57a0b
[gaim-migrate @ 4653]
Christian Hammond <chipx86@chipx86.com>
parents:
4383
diff
changeset
|
268 struct gaim_conversation *conv; |
|
a3fd5fe57a0b
[gaim-migrate @ 4653]
Christian Hammond <chipx86@chipx86.com>
parents:
4383
diff
changeset
|
269 |
|
a3fd5fe57a0b
[gaim-migrate @ 4653]
Christian Hammond <chipx86@chipx86.com>
parents:
4383
diff
changeset
|
270 conv = gaim_window_get_active_conversation(win); |
|
a3fd5fe57a0b
[gaim-migrate @ 4653]
Christian Hammond <chipx86@chipx86.com>
parents:
4383
diff
changeset
|
271 |
|
a3fd5fe57a0b
[gaim-migrate @ 4653]
Christian Hammond <chipx86@chipx86.com>
parents:
4383
diff
changeset
|
272 conv_show_log(NULL, (char *)gaim_conversation_get_name(conv)); |
| 4359 | 273 } |
| 274 static void | |
| 275 menu_insert_link_cb(gpointer data, guint action, GtkWidget *widget) | |
| 276 { | |
| 277 struct gaim_window *win = (struct gaim_window *)data; | |
| 278 struct gaim_conversation *conv; | |
| 279 struct gaim_gtk_conversation *gtkconv; | |
| 280 | |
| 281 conv = gaim_window_get_active_conversation(win); | |
| 282 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 283 | |
| 284 show_insert_link(gtkconv->toolbar.link, conv); | |
| 285 } | |
| 286 | |
| 287 static void | |
| 288 menu_insert_image_cb(gpointer data, guint action, GtkWidget *widget) | |
| 289 { | |
| 290 struct gaim_window *win = (struct gaim_window *)data; | |
| 291 | |
| 292 insert_image_cb(NULL, gaim_window_get_active_conversation(win)); | |
| 293 } | |
| 294 | |
| 295 static void | |
| 296 menu_close_conv_cb(gpointer data, guint action, GtkWidget *widget) | |
| 297 { | |
| 298 struct gaim_window *win = (struct gaim_window *)data; | |
| 299 | |
| 300 close_conv_cb(NULL, gaim_window_get_active_conversation(win)); | |
| 301 } | |
| 302 | |
| 303 static void | |
| 304 menu_logging_cb(gpointer data, guint action, GtkWidget *widget) | |
| 305 { | |
| 306 struct gaim_window *win = (struct gaim_window *)data; | |
| 307 struct gaim_conversation *conv; | |
| 308 | |
| 309 conv = gaim_window_get_active_conversation(win); | |
| 310 | |
| 311 gaim_conversation_set_logging(conv, !gaim_conversation_is_logging(conv)); | |
| 312 } | |
| 313 | |
| 314 static void | |
| 315 menu_sounds_cb(gpointer data, guint action, GtkWidget *widget) | |
| 316 { | |
| 317 struct gaim_window *win = (struct gaim_window *)data; | |
| 318 struct gaim_conversation *conv; | |
| 319 struct gaim_gtk_conversation *gtkconv; | |
| 320 | |
|
4803
6f04901ef729
[gaim-migrate @ 5123]
Christian Hammond <chipx86@chipx86.com>
parents:
4793
diff
changeset
|
321 conv = gaim_window_get_active_conversation(win); |
|
6f04901ef729
[gaim-migrate @ 5123]
Christian Hammond <chipx86@chipx86.com>
parents:
4793
diff
changeset
|
322 |
|
6f04901ef729
[gaim-migrate @ 5123]
Christian Hammond <chipx86@chipx86.com>
parents:
4793
diff
changeset
|
323 if (!conv) |
| 4359 | 324 return; |
| 325 | |
| 326 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 327 | |
| 328 gtkconv->make_sound = !gtkconv->make_sound; | |
| 329 } | |
| 330 | |
| 331 static gboolean | |
| 332 entry_key_pressed_cb_1(GtkTextBuffer *buffer) | |
| 333 { | |
| 334 check_everything(buffer); | |
| 335 | |
| 336 return FALSE; | |
| 337 } | |
| 338 | |
| 339 static void | |
| 340 send_cb(GtkWidget *widget, struct gaim_conversation *conv) | |
| 341 { | |
| 342 struct gaim_gtk_conversation *gtkconv; | |
| 343 char *buf, *buf2; | |
| 344 GtkTextIter start_iter, end_iter; | |
| 345 int limit; | |
| 4505 | 346 struct gaim_connection *gc = gaim_conversation_get_gc(conv); |
| 4359 | 347 |
| 348 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 349 | |
| 350 gtk_text_buffer_get_start_iter(gtkconv->entry_buffer, &start_iter); | |
| 351 gtk_text_buffer_get_end_iter(gtkconv->entry_buffer, &end_iter); | |
| 352 buf2 = gtk_text_buffer_get_text(gtkconv->entry_buffer, | |
| 353 &start_iter, &end_iter, FALSE); | |
| 354 | |
| 4685 | 355 set_toggle(gtkconv->toolbar.bold, FALSE); |
| 356 set_toggle(gtkconv->toolbar.italic, FALSE); | |
| 357 set_toggle(gtkconv->toolbar.underline, FALSE); | |
| 358 set_toggle(gtkconv->toolbar.normal_size, FALSE); | |
| 359 set_toggle(gtkconv->toolbar.font, FALSE); | |
| 360 set_toggle(gtkconv->toolbar.fgcolor, FALSE); | |
| 361 set_toggle(gtkconv->toolbar.bgcolor, FALSE); | |
| 362 set_toggle(gtkconv->toolbar.link, FALSE); | |
| 4359 | 363 |
| 364 gtk_widget_grab_focus(gtkconv->entry); | |
| 365 | |
| 366 limit = 32 * 1024; /* This will be done again in gaim_im_send. *shrug* */ | |
| 367 | |
| 368 buf = g_malloc(limit); | |
| 369 strncpy(buf, buf2, limit); | |
| 370 | |
| 371 g_free(buf2); | |
| 372 | |
| 373 if (strlen(buf) == 0) { | |
| 374 g_free(buf); | |
| 375 | |
| 376 return; | |
| 377 } | |
| 378 | |
| 379 buf2 = g_malloc(limit); | |
| 380 | |
| 4505 | 381 if (gc && gc->flags & OPT_CONN_HTML) { |
| 4359 | 382 if (font_options & OPT_FONT_BOLD) { |
| 383 g_snprintf(buf2, limit, "<B>%s</B>", buf); | |
| 384 strcpy(buf, buf2); | |
| 385 } | |
| 386 | |
| 387 if (font_options & OPT_FONT_ITALIC) { | |
| 388 g_snprintf(buf2, limit, "<I>%s</I>", buf); | |
| 389 strcpy(buf, buf2); | |
| 390 } | |
| 391 | |
| 392 if (font_options & OPT_FONT_UNDERLINE) { | |
| 393 g_snprintf(buf2, limit, "<U>%s</U>", buf); | |
| 394 strcpy(buf, buf2); | |
| 395 } | |
| 396 | |
| 397 if (font_options & OPT_FONT_STRIKE) { | |
| 398 g_snprintf(buf2, limit, "<STRIKE>%s</STRIKE>", buf); | |
| 399 strcpy(buf, buf2); | |
| 400 } | |
| 401 | |
| 402 if ((font_options & OPT_FONT_FACE) || gtkconv->has_font) { | |
| 403 g_snprintf(buf2, limit, | |
| 404 "<FONT FACE=\"%s\">%s</FONT>", gtkconv->fontface, buf); | |
| 405 strcpy(buf, buf2); | |
| 406 } | |
| 407 | |
| 408 if (font_options & OPT_FONT_SIZE) { | |
| 409 g_snprintf(buf2, limit, | |
| 410 "<FONT SIZE=\"%d\">%s</FONT>", fontsize, buf); | |
| 411 strcpy(buf, buf2); | |
| 412 } | |
| 413 | |
| 4421 | 414 if (font_options & OPT_FONT_FGCOL) { |
| 4359 | 415 g_snprintf(buf2, limit, |
| 416 "<FONT COLOR=\"#%02X%02X%02X\">%s</FONT>", | |
| 417 gtkconv->fg_color.red / 256, | |
| 418 gtkconv->fg_color.green / 256, | |
| 419 gtkconv->fg_color.blue / 256, buf); | |
| 420 strcpy(buf, buf2); | |
| 421 } | |
| 422 | |
| 4421 | 423 if (font_options & OPT_FONT_BGCOL) { |
| 4359 | 424 g_snprintf(buf2, limit, |
| 425 "<BODY BGCOLOR=\"#%02X%02X%02X\">%s</BODY>", | |
| 4421 | 426 gtkconv->bg_color.red / 256, |
| 427 gtkconv->bg_color.green / 256, | |
| 428 gtkconv->bg_color.blue / 256, buf); | |
| 4359 | 429 strcpy(buf, buf2); |
| 430 } | |
| 431 } | |
| 432 | |
| 433 g_free(buf2); | |
| 434 | |
| 435 if (gaim_conversation_get_type(conv) == GAIM_CONV_IM) | |
| 436 gaim_im_send(GAIM_IM(conv), buf); | |
| 437 else | |
| 438 gaim_chat_send(GAIM_CHAT(conv), buf); | |
| 439 | |
| 440 g_free(buf); | |
| 441 | |
| 442 gtk_text_buffer_set_text(gtkconv->entry_buffer, "", -1); | |
| 443 } | |
| 444 | |
| 445 static void | |
| 446 add_cb(GtkWidget *widget, struct gaim_conversation *conv) | |
| 447 { | |
| 448 struct gaim_connection *gc; | |
| 449 struct buddy *b; | |
| 450 const char *name; | |
| 451 | |
| 452 gc = gaim_conversation_get_gc(conv); | |
| 453 name = gaim_conversation_get_name(conv); | |
| 4687 | 454 b = gaim_find_buddy(gc->account, name); |
| 4359 | 455 |
| 456 if (b != NULL) | |
| 457 show_confirm_del(gc, (char *)name); | |
| 458 else if (gc != NULL) | |
| 459 show_add_buddy(gc, (char *)name, NULL, NULL); | |
| 460 | |
| 461 gtk_widget_grab_focus(GAIM_GTK_CONVERSATION(conv)->entry); | |
| 462 } | |
| 463 | |
| 464 static void | |
| 465 info_cb(GtkWidget *widget, struct gaim_conversation *conv) | |
| 466 { | |
| 467 struct gaim_gtk_conversation *gtkconv; | |
| 468 | |
| 469 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 470 | |
| 471 if (gaim_conversation_get_type(conv) == GAIM_CONV_CHAT) { | |
| 472 struct gaim_gtk_chat_pane *gtkchat; | |
| 473 GtkTreeIter iter; | |
| 474 GtkTreeModel *model; | |
| 475 GtkTreeSelection *sel; | |
| 476 const char *name; | |
| 477 | |
| 478 gtkchat = gtkconv->u.chat; | |
| 479 | |
| 480 model = gtk_tree_view_get_model(GTK_TREE_VIEW(gtkchat->list)); | |
| 481 sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(gtkchat->list)); | |
| 482 | |
| 483 if (gtk_tree_selection_get_selected(sel, NULL, &iter)) | |
| 484 gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, 1, &name, -1); | |
| 485 else | |
| 486 return; | |
| 487 | |
| 488 serv_get_info(gaim_conversation_get_gc(conv), (char *)name); | |
| 489 } | |
| 490 else { | |
| 491 serv_get_info(gaim_conversation_get_gc(conv), | |
| 492 (char *)gaim_conversation_get_name(conv)); | |
| 493 | |
| 494 gtk_widget_grab_focus(gtkconv->entry); | |
| 495 } | |
| 496 } | |
| 497 | |
| 498 static void | |
| 499 warn_cb(GtkWidget *widget, struct gaim_conversation *conv) | |
| 500 { | |
| 501 show_warn_dialog(gaim_conversation_get_gc(conv), | |
| 502 (char *)gaim_conversation_get_name(conv)); | |
| 503 | |
| 504 gtk_widget_grab_focus(GAIM_GTK_CONVERSATION(conv)->entry); | |
| 505 } | |
| 506 | |
| 507 static void | |
| 508 block_cb(GtkWidget *widget, struct gaim_conversation *conv) | |
| 509 { | |
| 510 struct gaim_connection *gc; | |
| 511 | |
| 512 gc = gaim_conversation_get_gc(conv); | |
| 513 | |
| 514 if (gc != NULL) | |
| 515 show_add_perm(gc, (char *)gaim_conversation_get_name(conv), FALSE); | |
| 516 | |
| 517 gtk_widget_grab_focus(GAIM_GTK_CONVERSATION(conv)->entry); | |
| 518 } | |
| 519 | |
| 520 void | |
| 521 im_cb(GtkWidget *widget, struct gaim_conversation *conv) | |
| 522 { | |
| 523 struct gaim_conversation *conv2; | |
| 524 struct gaim_gtk_conversation *gtkconv; | |
| 525 struct gaim_gtk_chat_pane *gtkchat; | |
| 4491 | 526 struct gaim_account *account; |
| 4359 | 527 GtkTreeIter iter; |
| 528 GtkTreeModel *model; | |
| 529 GtkTreeSelection *sel; | |
| 530 const char *name; | |
| 531 | |
| 532 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 533 gtkchat = gtkconv->u.chat; | |
| 534 | |
| 535 model = gtk_tree_view_get_model(GTK_TREE_VIEW(gtkchat->list)); | |
| 536 sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(gtkchat->list)); | |
| 537 | |
| 538 if (gtk_tree_selection_get_selected(sel, NULL, &iter)) | |
| 539 gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, 1, &name, -1); | |
| 540 else | |
| 541 return; | |
| 542 | |
| 543 if (*name == '@') name++; | |
|
4621
69f028a6f357
[gaim-migrate @ 4912]
Christian Hammond <chipx86@chipx86.com>
parents:
4608
diff
changeset
|
544 if (*name == '%') name++; |
| 4359 | 545 if (*name == '+') name++; |
| 546 | |
| 4491 | 547 account = gaim_conversation_get_account(conv); |
|
4476
62c1e5e656d0
[gaim-migrate @ 4751]
Christian Hammond <chipx86@chipx86.com>
parents:
4466
diff
changeset
|
548 |
| 4359 | 549 conv2 = gaim_find_conversation(name); |
| 550 | |
|
4476
62c1e5e656d0
[gaim-migrate @ 4751]
Christian Hammond <chipx86@chipx86.com>
parents:
4466
diff
changeset
|
551 if (conv2 != NULL) { |
| 4359 | 552 gaim_window_raise(gaim_conversation_get_window(conv2)); |
| 4491 | 553 gaim_conversation_set_account(conv2, account); |
|
4476
62c1e5e656d0
[gaim-migrate @ 4751]
Christian Hammond <chipx86@chipx86.com>
parents:
4466
diff
changeset
|
554 } |
| 4359 | 555 else |
| 4491 | 556 conv2 = gaim_conversation_new(GAIM_CONV_IM, account, name); |
| 4359 | 557 } |
| 558 | |
| 559 static void | |
| 560 ignore_cb(GtkWidget *w, struct gaim_conversation *conv) | |
| 561 { | |
| 562 struct gaim_gtk_conversation *gtkconv; | |
| 563 struct gaim_gtk_chat_pane *gtkchat; | |
| 564 struct gaim_chat *chat; | |
| 565 GtkTreeIter iter; | |
| 566 GtkTreeModel *model; | |
| 567 GtkTreeSelection *sel; | |
| 568 const char *name; | |
| 569 int pos; | |
| 570 | |
| 571 chat = GAIM_CHAT(conv); | |
| 572 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 573 gtkchat = gtkconv->u.chat; | |
| 574 | |
| 575 model = gtk_tree_view_get_model(GTK_TREE_VIEW(gtkchat->list)); | |
| 576 sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(gtkchat->list)); | |
| 577 | |
| 578 if (gtk_tree_selection_get_selected(sel, NULL, &iter)) { | |
| 579 gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, 1, &name, -1); | |
| 580 gtk_list_store_remove(GTK_LIST_STORE(model), &iter); | |
| 581 } | |
| 582 else | |
| 583 return; | |
| 584 | |
| 585 pos = g_list_index(gaim_chat_get_users(chat), name); | |
| 586 | |
| 587 if (gaim_chat_is_user_ignored(chat, name)) | |
| 588 gaim_chat_unignore(chat, name); | |
| 589 else | |
| 590 gaim_chat_ignore(chat, name); | |
| 591 | |
| 592 add_chat_buddy_common(conv, name, pos); | |
| 593 } | |
| 594 | |
| 595 static void | |
| 596 menu_im_cb(GtkWidget *w, struct gaim_conversation *conv) | |
| 597 { | |
| 598 const char *who; | |
| 599 struct gaim_conversation *conv2; | |
| 4491 | 600 struct gaim_account *account; |
| 4359 | 601 |
| 602 who = g_object_get_data(G_OBJECT(w), "user_data"); | |
| 603 | |
| 4491 | 604 account = gaim_conversation_get_account(conv); |
|
4476
62c1e5e656d0
[gaim-migrate @ 4751]
Christian Hammond <chipx86@chipx86.com>
parents:
4466
diff
changeset
|
605 |
| 4359 | 606 conv2 = gaim_find_conversation(who); |
| 607 | |
| 608 if (conv2 != NULL) | |
| 609 gaim_window_show(gaim_conversation_get_window(conv2)); | |
|
4476
62c1e5e656d0
[gaim-migrate @ 4751]
Christian Hammond <chipx86@chipx86.com>
parents:
4466
diff
changeset
|
610 else |
| 4491 | 611 conv2 = gaim_conversation_new(GAIM_CONV_IM, account, who); |
| 4359 | 612 } |
| 613 | |
| 614 static void | |
| 615 menu_info_cb(GtkWidget *w, struct gaim_conversation *conv) | |
| 616 { | |
| 617 struct gaim_connection *gc; | |
| 618 char *who; | |
| 619 | |
| 620 gc = gaim_conversation_get_gc(conv); | |
| 621 who = g_object_get_data(G_OBJECT(w), "user_data"); | |
| 622 | |
| 623 if (gc != NULL) { | |
| 624 /* | |
| 625 * If there are special needs for getting info on users in | |
| 626 * buddy chat "rooms"... | |
| 627 */ | |
| 628 if (gc->prpl->get_cb_info != NULL) | |
| 629 gc->prpl->get_cb_info(gc, gaim_chat_get_id(GAIM_CHAT(conv)), who); | |
| 630 else | |
| 631 gc->prpl->get_info(gc, who); | |
| 632 } | |
| 633 } | |
| 634 | |
| 635 static void | |
| 636 menu_away_cb(GtkWidget *w, struct gaim_conversation *conv) | |
| 637 { | |
| 638 struct gaim_connection *gc; | |
| 639 char *who; | |
| 640 | |
| 641 gc = gaim_conversation_get_gc(conv); | |
| 642 who = g_object_get_data(G_OBJECT(w), "user_data"); | |
| 643 | |
| 644 if (gc != NULL) { | |
| 645 /* | |
| 646 * May want to expand this to work similarly to menu_info_cb? | |
| 647 */ | |
| 648 | |
| 649 if (gc->prpl->get_cb_away != NULL) | |
| 650 gc->prpl->get_cb_away(gc, gaim_chat_get_id(GAIM_CHAT(conv)), who); | |
| 651 } | |
| 652 } | |
| 653 | |
| 654 static void | |
| 655 menu_add_cb(GtkWidget *w, struct gaim_conversation *conv) | |
| 656 { | |
| 657 struct gaim_connection *gc; | |
| 658 struct buddy *b; | |
| 659 char *name; | |
| 660 | |
| 661 gc = gaim_conversation_get_gc(conv); | |
| 662 name = g_object_get_data(G_OBJECT(w), "user_data"); | |
| 4687 | 663 b = gaim_find_buddy(gc->account, name); |
| 4359 | 664 |
| 665 if (b != NULL) | |
| 666 show_confirm_del(gc, name); | |
| 667 else if (gc != NULL) | |
| 668 show_add_buddy(gc, name, NULL, NULL); | |
| 669 | |
| 670 gtk_widget_grab_focus(GAIM_GTK_CONVERSATION(conv)->entry); | |
| 671 } | |
| 672 | |
| 673 static gint | |
| 674 right_click_chat_cb(GtkWidget *widget, GdkEventButton *event, | |
| 675 struct gaim_conversation *conv) | |
| 676 { | |
| 677 struct gaim_gtk_conversation *gtkconv; | |
| 678 struct gaim_gtk_chat_pane *gtkchat; | |
| 679 struct gaim_connection *gc; | |
| 4491 | 680 struct gaim_account *account; |
| 4359 | 681 GtkTreePath *path; |
| 682 GtkTreeIter iter; | |
| 683 GtkTreeModel *model; | |
| 684 GtkTreeViewColumn *column; | |
| 685 gchar *who; | |
| 686 int x, y; | |
| 687 | |
| 688 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 689 gtkchat = gtkconv->u.chat; | |
| 4491 | 690 account = gaim_conversation_get_account(conv); |
| 691 gc = account->gc; | |
| 4359 | 692 |
| 693 model = gtk_tree_view_get_model(GTK_TREE_VIEW(gtkchat->list)); | |
| 4685 | 694 |
| 4359 | 695 gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(gtkchat->list), |
| 696 event->x, event->y, &path, &column, &x, &y); | |
| 697 | |
| 698 if (path == NULL) | |
| 699 return FALSE; | |
| 700 | |
| 701 gtk_tree_selection_select_path(GTK_TREE_SELECTION( | |
| 702 gtk_tree_view_get_selection(GTK_TREE_VIEW(gtkchat->list))), path); | |
| 703 | |
| 704 gtk_tree_model_get_iter(GTK_TREE_MODEL(model), &iter, path); | |
| 705 gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, 1, &who, -1); | |
| 706 | |
|
4621
69f028a6f357
[gaim-migrate @ 4912]
Christian Hammond <chipx86@chipx86.com>
parents:
4608
diff
changeset
|
707 if (*who == '@') who++; |
|
69f028a6f357
[gaim-migrate @ 4912]
Christian Hammond <chipx86@chipx86.com>
parents:
4608
diff
changeset
|
708 if (*who == '%') who++; |
|
69f028a6f357
[gaim-migrate @ 4912]
Christian Hammond <chipx86@chipx86.com>
parents:
4608
diff
changeset
|
709 if (*who == '+') who++; |
|
69f028a6f357
[gaim-migrate @ 4912]
Christian Hammond <chipx86@chipx86.com>
parents:
4608
diff
changeset
|
710 |
| 4359 | 711 if (event->button == 1 && event->type == GDK_2BUTTON_PRESS) { |
| 712 struct gaim_conversation *c; | |
| 713 | |
| 714 if ((c = gaim_find_conversation(who)) == NULL) | |
| 4491 | 715 c = gaim_conversation_new(GAIM_CONV_IM, account, who); |
|
4476
62c1e5e656d0
[gaim-migrate @ 4751]
Christian Hammond <chipx86@chipx86.com>
parents:
4466
diff
changeset
|
716 else |
| 4491 | 717 gaim_conversation_set_account(c, account); |
| 4359 | 718 } |
| 719 else if (event->button == 3 && event->type == GDK_BUTTON_PRESS) { | |
| 720 static GtkWidget *menu = NULL; | |
| 721 GtkWidget *button; | |
| 722 | |
| 723 /* | |
| 724 * If a menu already exists, destroy it before creating a new one, | |
| 725 * thus freeing-up the memory it occupied. | |
| 726 */ | |
| 727 | |
| 728 if (menu) | |
| 729 gtk_widget_destroy(menu); | |
| 730 | |
| 731 menu = gtk_menu_new(); | |
| 732 | |
| 733 button = gtk_menu_item_new_with_label(_("IM")); | |
| 734 g_signal_connect(G_OBJECT(button), "activate", | |
| 735 G_CALLBACK(menu_im_cb), conv); | |
| 736 g_object_set_data(G_OBJECT(button), "user_data", who); | |
| 4635 | 737 gtk_menu_shell_append(GTK_MENU_SHELL(menu), button); |
| 4359 | 738 gtk_widget_show(button); |
| 739 | |
| 740 if (gaim_chat_is_user_ignored(GAIM_CHAT(conv), who)) | |
| 741 button = gtk_menu_item_new_with_label(_("Un-Ignore")); | |
| 742 else | |
| 743 button = gtk_menu_item_new_with_label(_("Ignore")); | |
| 744 | |
| 745 g_signal_connect(G_OBJECT(button), "activate", | |
| 746 G_CALLBACK(ignore_cb), conv); | |
| 747 g_object_set_data(G_OBJECT(button), "user_data", who); | |
| 4635 | 748 gtk_menu_shell_append(GTK_MENU_SHELL(menu), button); |
| 4359 | 749 gtk_widget_show(button); |
| 750 | |
| 751 if (gc && gc->prpl->get_info) { | |
| 752 button = gtk_menu_item_new_with_label(_("Info")); | |
| 753 g_signal_connect(G_OBJECT(button), "activate", | |
| 754 G_CALLBACK(menu_info_cb), conv); | |
| 755 g_object_set_data(G_OBJECT(button), "user_data", who); | |
| 4635 | 756 gtk_menu_shell_append(GTK_MENU_SHELL(menu), button); |
| 4359 | 757 gtk_widget_show(button); |
| 758 } | |
| 759 | |
| 760 if (gc && gc->prpl->get_cb_away) { | |
| 761 button = gtk_menu_item_new_with_label(_("Get Away Msg")); | |
| 762 g_signal_connect(G_OBJECT(button), "activate", | |
| 763 G_CALLBACK(menu_away_cb), conv); | |
| 764 g_object_set_data(G_OBJECT(button), "user_data", who); | |
| 4635 | 765 gtk_menu_shell_append(GTK_MENU_SHELL(menu), button); |
| 4359 | 766 gtk_widget_show(button); |
| 767 } | |
| 768 | |
| 769 /* Added by Jonas <jonas@birme.se> */ | |
| 770 if (gc) { | |
| 4687 | 771 if (gaim_find_buddy(gc->account, who)) |
| 4359 | 772 button = gtk_menu_item_new_with_label(_("Remove")); |
| 773 else | |
| 774 button = gtk_menu_item_new_with_label(_("Add")); | |
| 775 | |
| 776 g_signal_connect(G_OBJECT(button), "activate", | |
| 777 G_CALLBACK(menu_add_cb), conv); | |
| 778 | |
| 779 g_object_set_data(G_OBJECT(button), "user_data", who); | |
| 4635 | 780 gtk_menu_shell_append(GTK_MENU_SHELL(menu), button); |
| 4359 | 781 gtk_widget_show(button); |
| 782 } | |
| 783 /* End Jonas */ | |
| 4635 | 784 |
| 4359 | 785 gtk_menu_popup(GTK_MENU(menu), NULL, NULL, NULL, NULL, |
| 786 event->button, event->time); | |
| 787 } | |
| 788 | |
| 789 return TRUE; | |
| 790 } | |
| 791 | |
| 792 static void | |
| 793 do_invite(GtkWidget *w, int resp, struct InviteBuddyInfo *info) | |
| 794 { | |
| 795 const char *buddy, *message; | |
| 796 struct gaim_gtk_conversation *gtkconv; | |
| 797 | |
| 798 gtkconv = GAIM_GTK_CONVERSATION(info->conv); | |
| 799 | |
| 800 if (resp == GTK_RESPONSE_OK) { | |
| 801 buddy = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(info->entry)->entry)); | |
| 802 message = gtk_entry_get_text(GTK_ENTRY(info->message)); | |
| 803 | |
| 4793 | 804 if (!g_ascii_strcasecmp(buddy, "")) { |
| 4359 | 805 g_free(info); |
| 806 | |
| 807 return; | |
| 808 } | |
| 809 | |
| 810 serv_chat_invite(gaim_conversation_get_gc(info->conv), | |
| 811 gaim_chat_get_id(GAIM_CHAT(info->conv)), | |
| 812 message, buddy); | |
| 813 } | |
| 814 | |
| 815 gtk_widget_destroy(invite_dialog); | |
| 816 invite_dialog = NULL; | |
| 817 | |
| 818 g_free(info); | |
| 819 } | |
| 820 | |
| 821 static void | |
| 822 invite_cb(GtkWidget *widget, struct gaim_conversation *conv) | |
| 823 { | |
| 824 struct InviteBuddyInfo *info = NULL; | |
| 825 | |
| 826 if (invite_dialog == NULL) { | |
| 827 struct gaim_connection *gc; | |
| 828 struct gaim_window *win; | |
| 829 struct gaim_gtk_window *gtkwin; | |
| 830 char *filename; | |
| 831 GtkWidget *label; | |
| 832 GtkWidget *vbox, *hbox; | |
| 833 GtkWidget *table; | |
| 834 GtkWidget *img; | |
| 835 | |
| 836 filename = g_build_filename(DATADIR, "pixmaps", "gaim", "dialogs", | |
| 837 "gaim_question.png", NULL); | |
| 838 | |
| 839 img = gtk_image_new_from_file(filename); | |
| 840 | |
| 841 g_free(filename); | |
| 842 | |
| 843 | |
| 844 info = g_new0(struct InviteBuddyInfo, 1); | |
| 845 info->conv = conv; | |
| 846 | |
| 847 gc = gaim_conversation_get_gc(conv); | |
| 848 win = gaim_conversation_get_window(conv); | |
| 849 gtkwin = GAIM_GTK_WINDOW(win); | |
| 850 | |
| 851 /* Create the new dialog. */ | |
| 852 invite_dialog = gtk_dialog_new_with_buttons( | |
| 853 _("Gaim - Invite Buddy Into Chat Room"), | |
| 854 GTK_WINDOW(gtkwin->window), | |
| 855 GTK_DIALOG_MODAL, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, | |
| 856 GTK_STOCK_OK, GTK_RESPONSE_OK, NULL); | |
| 857 | |
| 858 gtk_dialog_set_default_response(GTK_DIALOG(invite_dialog), | |
| 859 GTK_RESPONSE_OK); | |
| 860 gtk_container_set_border_width(GTK_CONTAINER(invite_dialog), 6); | |
| 861 gtk_window_set_resizable(GTK_WINDOW(invite_dialog), FALSE); | |
| 862 gtk_dialog_set_has_separator(GTK_DIALOG(invite_dialog), FALSE); | |
| 863 | |
| 864 /* Setup the outside spacing. */ | |
| 865 vbox = GTK_DIALOG(invite_dialog)->vbox; | |
| 866 | |
| 867 gtk_box_set_spacing(GTK_BOX(vbox), 12); | |
| 868 gtk_container_set_border_width(GTK_CONTAINER(vbox), 6); | |
| 869 | |
| 870 /* Setup the inner hbox and put the dialog's icon in it. */ | |
| 871 hbox = gtk_hbox_new(FALSE, 12); | |
| 872 gtk_container_add(GTK_CONTAINER(vbox), hbox); | |
| 873 gtk_box_pack_start(GTK_BOX(hbox), img, FALSE, FALSE, 0); | |
| 874 gtk_misc_set_alignment(GTK_MISC(img), 0, 0); | |
| 875 | |
| 876 /* Setup the right vbox. */ | |
| 877 vbox = gtk_vbox_new(FALSE, 0); | |
| 878 gtk_container_add(GTK_CONTAINER(hbox), vbox); | |
| 879 | |
| 880 /* Put our happy label in it. */ | |
| 881 label = gtk_label_new(_("Please enter the name of the user you wish " | |
| 882 "to invite, along with an optional invite " | |
| 883 "message.")); | |
| 884 gtk_widget_set_size_request(label, 350, -1); | |
| 885 gtk_label_set_line_wrap(GTK_LABEL(label), TRUE); | |
| 886 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
| 887 gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0); | |
| 888 | |
| 889 /* hbox for the table, and to give it some spacing on the left. */ | |
| 890 hbox = gtk_hbox_new(FALSE, 6); | |
| 891 gtk_container_add(GTK_CONTAINER(vbox), hbox); | |
| 892 | |
| 893 /* Setup the table we're going to use to lay stuff out. */ | |
| 894 table = gtk_table_new(2, 2, FALSE); | |
| 895 gtk_table_set_row_spacings(GTK_TABLE(table), 6); | |
| 896 gtk_table_set_col_spacings(GTK_TABLE(table), 6); | |
| 897 gtk_container_set_border_width(GTK_CONTAINER(table), 12); | |
| 898 gtk_box_pack_start(GTK_BOX(vbox), table, FALSE, FALSE, 0); | |
| 899 | |
| 900 /* Now the Buddy label */ | |
| 901 label = gtk_label_new(NULL); | |
| 902 gtk_label_set_markup_with_mnemonic(GTK_LABEL(label), _("_Buddy:")); | |
| 903 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
| 904 gtk_table_attach_defaults(GTK_TABLE(table), label, 0, 1, 0, 1); | |
| 905 | |
| 906 /* Now the Buddy drop-down entry field. */ | |
| 907 info->entry = gtk_combo_new(); | |
| 908 gtk_combo_set_case_sensitive(GTK_COMBO(info->entry), FALSE); | |
| 909 gtk_entry_set_activates_default( | |
| 910 GTK_ENTRY(GTK_COMBO(info->entry)->entry), TRUE); | |
| 911 | |
| 912 gtk_table_attach_defaults(GTK_TABLE(table), info->entry, 1, 2, 0, 1); | |
| 913 gtk_label_set_mnemonic_widget(GTK_LABEL(label), info->entry); | |
| 914 | |
| 915 /* Fill in the names. */ | |
| 916 gtk_combo_set_popdown_strings(GTK_COMBO(info->entry), | |
| 917 generate_invite_user_names(gc)); | |
| 918 | |
| 919 | |
| 920 /* Now the label for "Message" */ | |
| 921 label = gtk_label_new(NULL); | |
| 922 gtk_label_set_markup_with_mnemonic(GTK_LABEL(label), _("_Message:")); | |
| 923 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
| 924 gtk_table_attach_defaults(GTK_TABLE(table), label, 0, 1, 1, 2); | |
| 925 | |
| 926 | |
| 927 /* And finally, the Message entry field. */ | |
| 928 info->message = gtk_entry_new(); | |
| 929 gtk_entry_set_activates_default(GTK_ENTRY(info->message), TRUE); | |
| 930 | |
| 931 gtk_table_attach_defaults(GTK_TABLE(table), info->message, 1, 2, 1, 2); | |
| 932 gtk_label_set_mnemonic_widget(GTK_LABEL(label), info->message); | |
| 933 | |
| 934 /* Connect the signals. */ | |
| 935 g_signal_connect(G_OBJECT(invite_dialog), "response", | |
| 936 G_CALLBACK(do_invite), info); | |
| 937 } | |
| 938 | |
| 939 gtk_widget_show_all(invite_dialog); | |
| 940 | |
| 941 if (info != NULL) | |
| 942 gtk_widget_grab_focus(GTK_COMBO(info->entry)->entry); | |
| 943 } | |
| 944 | |
| 945 static gboolean | |
| 946 entry_key_pressed_cb_2(GtkWidget *entry, GdkEventKey *event, gpointer data) | |
| 947 { | |
| 948 struct gaim_window *win; | |
| 949 struct gaim_conversation *conv; | |
| 950 struct gaim_gtk_conversation *gtkconv; | |
| 4362 | 951 struct gaim_gtk_window *gtkwin; |
| 4359 | 952 |
| 953 conv = (struct gaim_conversation *)data; | |
| 954 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 955 win = gaim_conversation_get_window(conv); | |
| 4362 | 956 gtkwin = GAIM_GTK_WINDOW(win); |
| 4359 | 957 |
| 958 if (event->keyval == GDK_Escape) { | |
| 959 if (convo_options & OPT_CONVO_ESC_CAN_CLOSE) { | |
| 960 g_signal_stop_emission_by_name(G_OBJECT(entry), "key_press_event"); | |
| 961 gaim_conversation_destroy(conv); | |
| 962 } | |
| 963 } | |
| 964 else if (event->keyval == GDK_Page_Up) { | |
| 965 g_signal_stop_emission_by_name(G_OBJECT(entry), "key_press_event"); | |
| 966 | |
| 967 if (!(event->state & GDK_CONTROL_MASK)) | |
| 968 gtk_imhtml_page_up(GTK_IMHTML(gtkconv->imhtml)); | |
| 969 } | |
| 970 else if (event->keyval == GDK_Page_Down) { | |
| 971 g_signal_stop_emission_by_name(G_OBJECT(entry), "key_press_event"); | |
| 972 | |
| 973 if (!(event->state & GDK_CONTROL_MASK)) | |
| 974 gtk_imhtml_page_down(GTK_IMHTML(gtkconv->imhtml)); | |
| 975 } | |
| 976 else if ((event->keyval == GDK_F2) && | |
| 977 (convo_options & OPT_CONVO_F2_TOGGLES)) { | |
| 978 gtk_imhtml_show_comments(GTK_IMHTML(gtkconv->imhtml), | |
| 979 !GTK_IMHTML(gtkconv->imhtml)->comments); | |
| 980 } | |
| 981 else if (event->keyval == GDK_Return || event->keyval == GDK_KP_Enter) { | |
| 982 if ((event->state & GDK_CONTROL_MASK) && | |
| 983 (convo_options & OPT_CONVO_CTL_ENTER)) { | |
| 984 | |
| 985 send_cb(NULL, conv); | |
| 986 g_signal_stop_emission_by_name(G_OBJECT(entry), "key_press_event"); | |
| 987 | |
| 988 return TRUE; | |
| 989 } | |
| 990 else if (!(event->state & (GDK_SHIFT_MASK | GDK_CONTROL_MASK)) && | |
| 991 (convo_options & OPT_CONVO_ENTER_SENDS)) { | |
| 992 | |
| 993 send_cb(NULL, conv); | |
| 994 g_signal_stop_emission_by_name(G_OBJECT(entry), "key_press_event"); | |
| 995 | |
| 996 return TRUE; | |
| 997 } | |
| 998 | |
| 999 return FALSE; | |
| 1000 } | |
| 1001 else if ((event->state & GDK_CONTROL_MASK) && (event->keyval == 'm')) { | |
| 1002 g_signal_stop_emission_by_name(G_OBJECT(entry), "key_press_event"); | |
| 1003 gtk_text_buffer_insert_at_cursor(gtkconv->entry_buffer, "\n", 1); | |
| 1004 } | |
| 1005 else if (event->state & GDK_CONTROL_MASK) { | |
| 1006 switch (event->keyval) { | |
| 1007 case GDK_Up: | |
| 1008 if (!conv->send_history) | |
| 1009 break; | |
| 1010 | |
| 1011 if (!conv->send_history->prev) { | |
| 1012 GtkTextIter start, end; | |
| 1013 | |
| 1014 if (conv->send_history->data) | |
| 1015 g_free(conv->send_history->data); | |
| 1016 | |
| 1017 gtk_text_buffer_get_start_iter(gtkconv->entry_buffer, | |
| 1018 &start); | |
| 1019 gtk_text_buffer_get_end_iter(gtkconv->entry_buffer, &end); | |
| 1020 | |
| 1021 conv->send_history->data = | |
| 1022 gtk_text_buffer_get_text(gtkconv->entry_buffer, | |
| 1023 &start, &end, FALSE); | |
| 1024 } | |
| 1025 | |
| 1026 if (conv->send_history->next && | |
| 1027 conv->send_history->next->data) { | |
| 1028 | |
| 1029 conv->send_history = conv->send_history->next; | |
| 1030 gtk_text_buffer_set_text(gtkconv->entry_buffer, | |
| 1031 conv->send_history->data, -1); | |
| 1032 } | |
| 1033 | |
| 1034 break; | |
| 1035 | |
| 1036 case GDK_Down: | |
| 1037 if (!conv->send_history) | |
| 1038 break; | |
| 1039 | |
| 1040 if (conv->send_history->prev) { | |
| 1041 conv->send_history = conv->send_history->prev; | |
| 1042 | |
| 1043 if (conv->send_history->data) | |
| 1044 gtk_text_buffer_set_text(gtkconv->entry_buffer, | |
| 1045 conv->send_history->data, -1); | |
| 1046 } | |
| 1047 | |
| 1048 break; | |
| 1049 } | |
| 1050 | |
| 1051 if (convo_options & OPT_CONVO_CTL_CHARS) { | |
| 1052 switch (event->keyval) { | |
| 1053 case 'i': | |
| 1054 case 'I': | |
| 4685 | 1055 set_toggle(gtkconv->toolbar.italic, |
| 4359 | 1056 !gtk_toggle_button_get_active( |
| 1057 GTK_TOGGLE_BUTTON(gtkconv->toolbar.italic))); | |
| 1058 | |
| 1059 g_signal_stop_emission_by_name(G_OBJECT(entry), | |
| 1060 "key_press_event"); | |
| 1061 break; | |
| 1062 | |
| 1063 case 'u': /* ctrl-u is GDK_Clear, which clears the line. */ | |
| 1064 case 'U': | |
| 4685 | 1065 set_toggle(gtkconv->toolbar.underline, |
| 4359 | 1066 !gtk_toggle_button_get_active( |
| 1067 GTK_TOGGLE_BUTTON(gtkconv->toolbar.underline))); | |
| 1068 | |
| 1069 g_signal_stop_emission_by_name(G_OBJECT(entry), | |
| 1070 "key_press_event"); | |
| 1071 break; | |
| 1072 | |
| 1073 case 'b': /* ctrl-b is GDK_Left, which moves backwards. */ | |
| 1074 case 'B': | |
| 4685 | 1075 set_toggle(gtkconv->toolbar.bold, |
| 4359 | 1076 !gtk_toggle_button_get_active( |
| 1077 GTK_TOGGLE_BUTTON(gtkconv->toolbar.bold))); | |
| 1078 | |
| 1079 g_signal_stop_emission_by_name(G_OBJECT(entry), | |
| 1080 "key_press_event"); | |
| 1081 break; | |
| 1082 | |
| 1083 case '-': | |
| 1084 do_small(NULL, gtkconv); | |
| 1085 | |
| 1086 g_signal_stop_emission_by_name(G_OBJECT(entry), | |
| 1087 "key_press_event"); | |
| 1088 break; | |
| 1089 | |
| 1090 case '=': | |
| 1091 case '+': | |
| 1092 do_big(NULL, gtkconv); | |
| 1093 | |
| 1094 g_signal_stop_emission_by_name(G_OBJECT(entry), | |
| 1095 "key_press_event"); | |
| 1096 break; | |
| 1097 | |
| 1098 case '0': | |
| 4685 | 1099 set_toggle(gtkconv->toolbar.normal_size, |
| 1100 !gtk_toggle_button_get_active( | |
| 1101 GTK_TOGGLE_BUTTON(gtkconv->toolbar.normal_size))); | |
| 4359 | 1102 |
| 1103 g_signal_stop_emission_by_name(G_OBJECT(entry), | |
| 1104 "key_press_event"); | |
| 1105 break; | |
| 1106 | |
| 1107 case 'f': | |
| 1108 case 'F': | |
| 4685 | 1109 set_toggle(gtkconv->toolbar.font, |
| 4359 | 1110 !gtk_toggle_button_get_active( |
| 4685 | 1111 GTK_TOGGLE_BUTTON(gtkconv->toolbar.font))); |
| 4359 | 1112 |
| 1113 g_signal_stop_emission_by_name(G_OBJECT(entry), | |
| 1114 "key_press_event"); | |
| 1115 break; | |
| 1116 } | |
| 1117 } | |
| 1118 | |
| 1119 if (convo_options & OPT_CONVO_CTL_SMILEYS) { | |
| 1120 char buf[7]; | |
| 1121 | |
| 1122 *buf = '\0'; | |
| 1123 | |
| 1124 switch (event->keyval) { | |
| 1125 case '1': strcpy(buf, ":-)"); break; | |
| 1126 case '2': strcpy(buf, ":-("); break; | |
| 1127 case '3': strcpy(buf, ";-)"); break; | |
| 1128 case '4': strcpy(buf, ":-P"); break; | |
| 1129 case '5': strcpy(buf, "=-O"); break; | |
| 1130 case '6': strcpy(buf, ":-*"); break; | |
| 1131 case '7': strcpy(buf, ">:o"); break; | |
| 1132 case '8': strcpy(buf, "8-)"); break; | |
| 1133 case '!': strcpy(buf, ":-$"); break; | |
| 1134 case '@': strcpy(buf, ":-!"); break; | |
| 1135 case '#': strcpy(buf, ":-["); break; | |
| 1136 case '$': strcpy(buf, "O:-)"); break; | |
| 1137 case '%': strcpy(buf, ":-/"); break; | |
| 1138 case '^': strcpy(buf, ":'("); break; | |
| 1139 case '&': strcpy(buf, ":-X"); break; | |
| 1140 case '*': strcpy(buf, ":-D"); break; | |
| 1141 default: break; | |
| 1142 } | |
| 1143 | |
| 1144 if (*buf) { | |
| 1145 gtk_text_buffer_insert_at_cursor(gtkconv->entry_buffer, | |
| 1146 buf, -1); | |
| 1147 g_signal_stop_emission_by_name(G_OBJECT(entry), "key_press_event"); | |
| 1148 } | |
| 1149 } | |
| 1150 | |
| 1151 if (event->keyval == 'l') { | |
| 1152 gtk_imhtml_clear(GTK_IMHTML(gtkconv->imhtml)); | |
| 1153 g_string_free(conv->history, TRUE); | |
| 1154 conv->history = g_string_new(""); | |
| 1155 } | |
| 1156 else if ((event->keyval == 'w') && | |
| 1157 (convo_options & OPT_CONVO_CTL_W_CLOSES)) { | |
| 1158 | |
| 1159 g_signal_stop_emission_by_name(G_OBJECT(entry), "key_press_event"); | |
| 1160 gaim_conversation_destroy(conv); | |
| 1161 return TRUE; | |
| 1162 } | |
| 1163 else if (event->keyval == 'n') { | |
| 1164 g_signal_stop_emission_by_name(G_OBJECT(entry), "key_press_event"); | |
| 1165 | |
| 1166 show_im_dialog(); | |
| 1167 } | |
| 1168 else if (event->keyval == 'z') { | |
| 1169 g_signal_stop_emission_by_name(G_OBJECT(entry), "key_press_event"); | |
| 1170 | |
|
4361
25d5b2a7545f
[gaim-migrate @ 4627]
Christian Hammond <chipx86@chipx86.com>
parents:
4360
diff
changeset
|
1171 #ifndef _WIN32 |
| 4359 | 1172 XIconifyWindow(GDK_DISPLAY(), |
| 1173 GDK_WINDOW_XWINDOW(gtkwin->window->window), | |
| 4362 | 1174 ((_XPrivDisplay)GDK_DISPLAY())->default_screen); |
| 4359 | 1175 #endif |
| 1176 } | |
| 1177 else if (event->keyval == '[') { | |
| 1178 gaim_window_switch_conversation(win, | |
| 1179 gaim_conversation_get_index(conv) - 1); | |
| 1180 | |
| 1181 g_signal_stop_emission_by_name(G_OBJECT(entry), "key_press_event"); | |
| 1182 } | |
| 1183 else if (event->keyval == ']') { | |
| 1184 gaim_window_switch_conversation(win, | |
| 1185 gaim_conversation_get_index(conv) + 1); | |
| 1186 | |
| 1187 g_signal_stop_emission_by_name(G_OBJECT(entry), "key_press_event"); | |
| 1188 } | |
| 1189 else if (event->keyval == GDK_Tab) { | |
| 1190 move_next_tab(conv); | |
| 1191 | |
| 1192 g_signal_stop_emission_by_name(G_OBJECT(entry), "key_press_event"); | |
| 1193 | |
| 1194 return TRUE; | |
| 1195 } | |
| 1196 } | |
| 1197 else if ((event->keyval == GDK_Tab) && | |
| 1198 gaim_conversation_get_type(conv) == GAIM_CONV_CHAT && | |
| 1199 (chat_options & OPT_CHAT_TAB_COMPLETE)) { | |
| 1200 | |
| 1201 tab_complete(conv); | |
| 1202 | |
| 1203 g_signal_stop_emission_by_name(G_OBJECT(entry), "key_press_event"); | |
| 1204 | |
| 1205 return TRUE; | |
| 1206 } | |
| 1207 else if ((event->state & GDK_MOD1_MASK) && | |
| 1208 event->keyval > '0' && event->keyval <= '9') { | |
| 1209 | |
| 1210 gaim_window_switch_conversation(win, event->keyval - '1'); | |
| 1211 | |
| 1212 g_signal_stop_emission_by_name(G_OBJECT(entry), "key_press_event"); | |
| 1213 } | |
| 1214 | |
| 1215 return FALSE; | |
| 1216 } | |
| 1217 | |
| 1218 /* | |
| 1219 * NOTE: | |
| 1220 * This guy just kills a single right click from being propagated any | |
| 1221 * further. I have no idea *why* we need this, but we do ... It | |
| 1222 * prevents right clicks on the GtkTextView in a convo dialog from | |
| 1223 * going all the way down to the notebook. I suspect a bug in | |
| 1224 * GtkTextView, but I'm not ready to point any fingers yet. | |
| 1225 */ | |
| 1226 static gboolean | |
| 1227 entry_stop_rclick_cb(GtkWidget *widget, GdkEventButton *event, gpointer data) | |
| 1228 { | |
| 1229 if (event->button == 3 && event->type == GDK_BUTTON_PRESS) { | |
| 1230 /* Right single click */ | |
| 1231 g_signal_stop_emission_by_name(G_OBJECT(widget), "button_press_event"); | |
| 1232 | |
| 1233 return TRUE; | |
| 1234 } | |
| 1235 | |
| 1236 return FALSE; | |
| 1237 } | |
| 1238 | |
| 1239 static void | |
| 4673 | 1240 menu_conv_sel_send_cb(GObject *m, gpointer data) |
| 4359 | 1241 { |
| 1242 struct gaim_window *win = g_object_get_data(m, "user_data"); | |
| 4673 | 1243 struct gaim_account *account = g_object_get_data(m, "gaim_account"); |
| 4359 | 1244 struct gaim_conversation *conv; |
| 1245 | |
| 1246 conv = gaim_window_get_active_conversation(win); | |
| 1247 | |
| 4491 | 1248 gaim_conversation_set_account(conv, account); |
| 4359 | 1249 } |
| 1250 | |
| 1251 static void | |
| 1252 insert_text_cb(GtkTextBuffer *textbuffer, GtkTextIter *position, | |
| 1253 gchar *new_text, gint new_text_length, gpointer user_data) | |
| 1254 { | |
| 1255 struct gaim_conversation *conv = (struct gaim_conversation *)user_data; | |
| 1256 | |
| 1257 if (conv == NULL) | |
| 1258 return; | |
| 1259 | |
| 1260 if (misc_options & OPT_MISC_STEALTH_TYPING) | |
| 1261 return; | |
| 1262 | |
| 1263 got_typing_keypress(conv, (gtk_text_iter_is_start(position) && | |
| 1264 gtk_text_iter_is_end(position))); | |
| 1265 } | |
| 1266 | |
| 1267 static void | |
| 1268 delete_text_cb(GtkTextBuffer *textbuffer, GtkTextIter *start_pos, | |
| 1269 GtkTextIter *end_pos, gpointer user_data) | |
| 1270 { | |
| 1271 struct gaim_conversation *conv = (struct gaim_conversation *)user_data; | |
| 1272 struct gaim_im *im; | |
| 1273 | |
| 1274 if (conv == NULL) | |
| 1275 return; | |
| 1276 | |
| 1277 if (misc_options & OPT_MISC_STEALTH_TYPING) | |
| 1278 return; | |
| 1279 | |
| 1280 im = GAIM_IM(conv); | |
| 1281 | |
| 1282 if (gtk_text_iter_is_start(start_pos) && gtk_text_iter_is_end(end_pos)) { | |
| 1283 | |
| 1284 /* We deleted all the text, so turn off typing. */ | |
| 1285 if (gaim_im_get_type_again_timeout(im)) | |
| 1286 gaim_im_stop_type_again_timeout(im); | |
| 1287 | |
| 1288 /* XXX The (char *) should go away! Somebody add consts to stuff! */ | |
| 1289 serv_send_typing(gaim_conversation_get_gc(conv), | |
| 1290 (char *)gaim_conversation_get_name(conv), | |
| 1291 NOT_TYPING); | |
| 1292 } | |
| 1293 else { | |
| 1294 /* We're deleting, but not all of it, so it counts as typing. */ | |
| 1295 got_typing_keypress(conv, FALSE); | |
| 1296 } | |
| 1297 } | |
| 1298 | |
| 1299 static void | |
| 1300 notebook_init_grab(struct gaim_gtk_window *gtkwin, GtkWidget *widget) | |
| 1301 { | |
| 1302 static GdkCursor *cursor = NULL; | |
| 1303 | |
| 1304 gtkwin->in_drag = TRUE; | |
| 1305 | |
| 1306 if (gtkwin->drag_leave_signal) { | |
| 1307 g_signal_handler_disconnect(G_OBJECT(widget), | |
| 1308 gtkwin->drag_leave_signal); | |
| 1309 | |
| 1310 gtkwin->drag_leave_signal = 0; | |
| 1311 } | |
| 1312 | |
| 1313 if (cursor == NULL) | |
| 1314 cursor = gdk_cursor_new(GDK_FLEUR); | |
| 1315 | |
| 1316 /* Grab the pointer */ | |
| 1317 gtk_grab_add(gtkwin->notebook); | |
|
4803
6f04901ef729
[gaim-migrate @ 5123]
Christian Hammond <chipx86@chipx86.com>
parents:
4793
diff
changeset
|
1318 |
|
6f04901ef729
[gaim-migrate @ 5123]
Christian Hammond <chipx86@chipx86.com>
parents:
4793
diff
changeset
|
1319 if (!gdk_pointer_is_grabbed()) |
|
6f04901ef729
[gaim-migrate @ 5123]
Christian Hammond <chipx86@chipx86.com>
parents:
4793
diff
changeset
|
1320 gdk_pointer_grab(gtkwin->notebook->window, FALSE, |
|
6f04901ef729
[gaim-migrate @ 5123]
Christian Hammond <chipx86@chipx86.com>
parents:
4793
diff
changeset
|
1321 GDK_BUTTON1_MOTION_MASK | GDK_BUTTON_RELEASE_MASK, |
|
6f04901ef729
[gaim-migrate @ 5123]
Christian Hammond <chipx86@chipx86.com>
parents:
4793
diff
changeset
|
1322 NULL, cursor, GDK_CURRENT_TIME); |
| 4359 | 1323 } |
| 1324 | |
| 1325 static gboolean | |
| 1326 notebook_motion_cb(GtkWidget *widget, GdkEventButton *e, | |
| 1327 struct gaim_window *win) | |
| 1328 { | |
| 1329 struct gaim_gtk_window *gtkwin; | |
| 1330 | |
| 1331 gtkwin = GAIM_GTK_WINDOW(win); | |
| 1332 | |
| 1333 /* | |
| 1334 * Make sure the user moved the mouse far enough for the | |
| 1335 * drag to be initiated. | |
| 1336 */ | |
| 1337 if (gtkwin->in_predrag) { | |
| 1338 if (e->x_root < gtkwin->drag_min_x || | |
| 1339 e->x_root >= gtkwin->drag_max_x || | |
| 1340 e->y_root < gtkwin->drag_min_y || | |
| 1341 e->y_root >= gtkwin->drag_max_y) { | |
| 1342 | |
| 1343 gtkwin->in_predrag = FALSE; | |
| 1344 notebook_init_grab(gtkwin, widget); | |
| 1345 } | |
| 1346 } | |
| 1347 else { /* Otherwise, draw the arrows. */ | |
| 1348 struct gaim_window *dest_win; | |
| 1349 struct gaim_gtk_window *dest_gtkwin; | |
| 1350 GtkNotebook *dest_notebook; | |
| 1351 GtkWidget *tab, *last_vis_tab = NULL; | |
| 1352 gint nb_x, nb_y, page_num, i, last_vis_tab_loc = -1; | |
| 1353 gint arrow1_x, arrow1_y, arrow2_x, arrow2_y; | |
| 1354 gboolean horiz_tabs = FALSE, tab_found = FALSE; | |
| 1355 GList *l; | |
| 1356 | |
| 1357 /* Get the window that the cursor is over. */ | |
| 1358 dest_win = gaim_gtkwin_get_at_xy(e->x_root, e->y_root); | |
| 1359 | |
| 1360 if (dest_win == NULL) { | |
| 1361 dnd_hints_hide_all(); | |
| 1362 | |
| 1363 return TRUE; | |
| 1364 } | |
| 1365 | |
| 1366 dest_gtkwin = GAIM_GTK_WINDOW(dest_win); | |
| 1367 | |
| 1368 dest_notebook = GTK_NOTEBOOK(dest_gtkwin->notebook); | |
| 1369 | |
| 1370 gdk_window_get_origin(GTK_WIDGET(dest_notebook)->window, &nb_x, &nb_y); | |
| 1371 | |
| 1372 arrow1_x = arrow2_x = nb_x; | |
| 1373 arrow1_y = arrow2_y = nb_y; | |
| 1374 | |
| 1375 page_num = gaim_gtkconv_get_dest_tab_at_xy(dest_win, | |
| 1376 e->x_root, e->y_root); | |
| 1377 | |
| 1378 if (gtk_notebook_get_tab_pos(dest_notebook) == GTK_POS_TOP || | |
| 1379 gtk_notebook_get_tab_pos(dest_notebook) == GTK_POS_BOTTOM) { | |
| 1380 | |
| 1381 horiz_tabs = TRUE; | |
| 1382 } | |
| 1383 | |
| 1384 /* Find out where to put the arrows. */ | |
| 1385 for (l = gaim_window_get_conversations(dest_win), i = 0; | |
| 1386 l != NULL; | |
| 1387 l = l->next, i++) { | |
| 1388 | |
| 1389 struct gaim_conversation *conv = l->data; | |
| 1390 | |
| 1391 tab = GAIM_GTK_CONVERSATION(conv)->tabby; | |
| 1392 | |
| 1393 /* | |
| 1394 * If this is the correct tab, record the positions | |
| 1395 * for the arrows. | |
| 1396 */ | |
| 1397 if (i == page_num) { | |
| 1398 if (horiz_tabs) { | |
| 1399 arrow1_x = arrow2_x = nb_x + tab->allocation.x; | |
| 1400 arrow1_y = nb_y + tab->allocation.y; | |
| 1401 arrow2_y = nb_y + tab->allocation.y + | |
| 1402 tab->allocation.height; | |
| 1403 } | |
| 1404 else { | |
| 1405 arrow1_x = nb_x + tab->allocation.x; | |
| 1406 arrow2_x = nb_x + tab->allocation.x + | |
| 1407 tab->allocation.width; | |
| 1408 arrow1_y = arrow2_y = nb_y + tab->allocation.y; | |
| 1409 } | |
| 1410 | |
| 1411 tab_found = TRUE; | |
| 1412 break; | |
| 1413 } | |
| 1414 else { /* Keep track of the right-most tab that we see. */ | |
| 1415 if (horiz_tabs && tab->allocation.x > last_vis_tab_loc) { | |
| 1416 last_vis_tab = tab; | |
| 1417 last_vis_tab_loc = tab->allocation.x; | |
| 1418 } | |
| 1419 else if (!horiz_tabs && tab->allocation.y > last_vis_tab_loc) { | |
| 1420 last_vis_tab = tab; | |
| 1421 last_vis_tab_loc = tab->allocation.y; | |
| 1422 } | |
| 1423 } | |
| 1424 } | |
| 1425 | |
| 1426 /* | |
| 1427 * If we didn't find the tab, then we'll just place the | |
| 1428 * arrows to the right/bottom of the last visible tab. | |
| 1429 */ | |
| 1430 if (!tab_found && last_vis_tab) { | |
| 1431 if (horiz_tabs) { | |
| 1432 arrow1_x = arrow2_x = nb_x + last_vis_tab->allocation.x + | |
| 1433 last_vis_tab->allocation.width; | |
| 1434 arrow1_y = nb_y + last_vis_tab->allocation.y; | |
| 1435 arrow2_y = nb_y + last_vis_tab->allocation.y + | |
| 1436 last_vis_tab->allocation.height; | |
| 1437 } | |
| 1438 else { | |
| 1439 arrow1_x = nb_x + last_vis_tab->allocation.x; | |
| 1440 arrow2_x = nb_x + last_vis_tab->allocation.x + | |
| 1441 last_vis_tab->allocation.width; | |
| 1442 arrow1_y = arrow2_y = nb_y + last_vis_tab->allocation.y + | |
| 1443 last_vis_tab->allocation.height; | |
| 1444 } | |
| 1445 } | |
| 1446 | |
| 1447 if (horiz_tabs) { | |
| 1448 dnd_hints_show(HINT_ARROW_DOWN, arrow1_x, arrow1_y); | |
| 1449 dnd_hints_show(HINT_ARROW_UP, arrow2_x, arrow2_y); | |
| 1450 } | |
| 1451 else { | |
| 1452 dnd_hints_show(HINT_ARROW_RIGHT, arrow1_x, arrow1_y); | |
| 1453 dnd_hints_show(HINT_ARROW_LEFT, arrow2_x, arrow2_y); | |
| 1454 } | |
| 1455 } | |
| 1456 | |
| 1457 return TRUE; | |
| 1458 } | |
| 1459 | |
| 1460 static gboolean | |
| 1461 notebook_leave_cb(GtkWidget *widget, GdkEventCrossing *e, | |
| 1462 struct gaim_window *win) | |
| 1463 { | |
| 1464 struct gaim_gtk_window *gtkwin; | |
| 1465 | |
| 1466 gtkwin = GAIM_GTK_WINDOW(win); | |
| 1467 | |
| 1468 if (gtkwin->in_drag) | |
| 1469 return FALSE; | |
| 1470 | |
| 1471 if (e->x_root < gtkwin->drag_min_x || | |
| 1472 e->x_root >= gtkwin->drag_max_x || | |
| 1473 e->y_root < gtkwin->drag_min_y || | |
| 1474 e->y_root >= gtkwin->drag_max_y) { | |
| 1475 | |
| 1476 gtkwin->in_predrag = FALSE; | |
| 1477 notebook_init_grab(gtkwin, widget); | |
| 1478 } | |
| 1479 | |
| 1480 return TRUE; | |
| 1481 } | |
| 1482 | |
| 1483 /* | |
| 1484 * THANK YOU GALEON! | |
| 1485 */ | |
| 1486 static gboolean | |
| 1487 notebook_press_cb(GtkWidget *widget, GdkEventButton *e, | |
| 1488 struct gaim_window *win) | |
| 1489 { | |
| 1490 struct gaim_gtk_window *gtkwin; | |
| 1491 gint nb_x, nb_y, x_rel, y_rel; | |
| 1492 GList *l; | |
| 1493 int tab_clicked; | |
| 1494 | |
| 1495 if (e->button != 1 || e->type != GDK_BUTTON_PRESS) | |
| 1496 return FALSE; | |
| 1497 | |
| 1498 gtkwin = GAIM_GTK_WINDOW(win); | |
| 1499 | |
| 1500 if (gtkwin->in_drag) { | |
| 1501 debug_printf("Already in the middle of a window " | |
|
4803
6f04901ef729
[gaim-migrate @ 5123]
Christian Hammond <chipx86@chipx86.com>
parents:
4793
diff
changeset
|
1502 "drag at tab_press_cb\n"); |
|
6f04901ef729
[gaim-migrate @ 5123]
Christian Hammond <chipx86@chipx86.com>
parents:
4793
diff
changeset
|
1503 return TRUE; |
| 4359 | 1504 } |
| 1505 | |
| 1506 /* | |
| 1507 * Make sure a tab was actually clicked. The arrow buttons | |
| 1508 * mess things up. | |
| 1509 */ | |
| 1510 tab_clicked = gaim_gtkconv_get_tab_at_xy(win, e->x_root, e->y_root); | |
| 1511 | |
| 1512 if (tab_clicked == -1) | |
| 1513 return FALSE; | |
| 1514 | |
| 1515 /* | |
| 1516 * Get the relative position of the press event, with regards to | |
| 1517 * the position of the notebook. | |
| 1518 */ | |
| 1519 gdk_window_get_origin(gtkwin->notebook->window, &nb_x, &nb_y); | |
| 1520 | |
| 1521 x_rel = e->x_root - nb_x; | |
| 1522 y_rel = e->y_root - nb_y; | |
| 1523 | |
| 1524 /* Reset the min/max x/y */ | |
| 1525 gtkwin->drag_min_x = 0; | |
| 1526 gtkwin->drag_min_y = 0; | |
| 1527 gtkwin->drag_max_x = 0; | |
| 1528 gtkwin->drag_max_y = 0; | |
| 1529 | |
| 1530 /* Find out which tab was dragged. */ | |
| 1531 for (l = gaim_window_get_conversations(win); l != NULL; l = l->next) { | |
| 1532 struct gaim_conversation *conv = l->data; | |
| 1533 GtkWidget *tab = GAIM_GTK_CONVERSATION(conv)->tabby; | |
| 1534 | |
| 1535 if (!GTK_WIDGET_VISIBLE(tab)) | |
| 1536 continue; | |
| 1537 | |
| 1538 if (tab->allocation.x > x_rel || tab->allocation.y > y_rel) | |
| 1539 break; | |
| 1540 | |
| 1541 /* Save the borders of the tab. */ | |
| 1542 gtkwin->drag_min_x = tab->allocation.x + nb_x; | |
| 1543 gtkwin->drag_min_y = tab->allocation.y + nb_y; | |
| 1544 gtkwin->drag_max_x = tab->allocation.width + gtkwin->drag_min_x; | |
| 1545 gtkwin->drag_max_y = tab->allocation.height + gtkwin->drag_min_y; | |
| 1546 } | |
| 1547 | |
| 1548 /* Make sure the click occurred in the tab. */ | |
| 1549 if (e->x_root < gtkwin->drag_min_x || | |
| 1550 e->x_root >= gtkwin->drag_max_x || | |
| 1551 e->y_root < gtkwin->drag_min_y || | |
| 1552 e->y_root >= gtkwin->drag_max_y) { | |
| 1553 | |
| 1554 return FALSE; | |
| 1555 } | |
| 1556 | |
| 1557 gtkwin->in_predrag = TRUE; | |
| 1558 | |
| 1559 /* Connect the new motion signals. */ | |
| 1560 gtkwin->drag_motion_signal = | |
| 1561 g_signal_connect(G_OBJECT(widget), "motion_notify_event", | |
| 1562 G_CALLBACK(notebook_motion_cb), win); | |
| 1563 | |
| 1564 gtkwin->drag_leave_signal = | |
| 1565 g_signal_connect(G_OBJECT(widget), "leave_notify_event", | |
| 1566 G_CALLBACK(notebook_leave_cb), win); | |
| 1567 | |
| 1568 return FALSE; | |
| 1569 } | |
| 1570 | |
| 1571 static gboolean | |
| 1572 notebook_release_cb(GtkWidget *widget, GdkEventButton *e, | |
| 1573 struct gaim_window *win) | |
| 1574 { | |
| 1575 struct gaim_window *dest_win; | |
| 1576 struct gaim_gtk_window *gtkwin; | |
| 1577 struct gaim_gtk_window *dest_gtkwin; | |
| 1578 struct gaim_conversation *conv; | |
| 1579 GtkNotebook *dest_notebook; | |
| 1580 gint dest_page_num; | |
| 1581 | |
| 1582 /* | |
| 1583 * Don't check to make sure that the event's window matches the | |
| 1584 * widget's, because we may be getting an event passed on from the | |
| 1585 * close button. | |
| 1586 */ | |
| 1587 if (e->button != 1 && e->type != GDK_BUTTON_RELEASE) | |
| 1588 return FALSE; | |
| 1589 | |
| 1590 if (gdk_pointer_is_grabbed()) { | |
| 1591 gdk_pointer_ungrab(GDK_CURRENT_TIME); | |
| 1592 gtk_grab_remove(widget); | |
| 1593 } | |
| 1594 | |
| 1595 gtkwin = GAIM_GTK_WINDOW(win); | |
| 1596 | |
|
4803
6f04901ef729
[gaim-migrate @ 5123]
Christian Hammond <chipx86@chipx86.com>
parents:
4793
diff
changeset
|
1597 if (!gtkwin->in_predrag && !gtkwin->in_drag) |
|
6f04901ef729
[gaim-migrate @ 5123]
Christian Hammond <chipx86@chipx86.com>
parents:
4793
diff
changeset
|
1598 return FALSE; |
| 4359 | 1599 |
| 1600 /* Disconnect the motion signal. */ | |
| 1601 if (gtkwin->drag_motion_signal) { | |
| 1602 g_signal_handler_disconnect(G_OBJECT(widget), | |
| 1603 gtkwin->drag_motion_signal); | |
| 1604 | |
| 1605 gtkwin->drag_motion_signal = 0; | |
| 1606 } | |
| 1607 | |
| 1608 /* | |
| 1609 * If we're in a pre-drag, we'll also need to disconnect the leave | |
| 1610 * signal. | |
| 1611 */ | |
| 1612 if (gtkwin->in_predrag) { | |
| 1613 gtkwin->in_predrag = FALSE; | |
| 1614 | |
| 1615 if (gtkwin->drag_leave_signal) { | |
| 1616 g_signal_handler_disconnect(G_OBJECT(widget), | |
| 1617 gtkwin->drag_leave_signal); | |
| 1618 | |
| 1619 gtkwin->drag_leave_signal = 0; | |
| 1620 } | |
| 1621 } | |
| 1622 | |
| 1623 /* If we're not in drag... */ | |
| 1624 /* We're perfectly normal people! */ | |
|
4803
6f04901ef729
[gaim-migrate @ 5123]
Christian Hammond <chipx86@chipx86.com>
parents:
4793
diff
changeset
|
1625 if (!gtkwin->in_drag) |
| 4359 | 1626 return FALSE; |
| 1627 | |
| 1628 gtkwin->in_drag = FALSE; | |
| 1629 | |
| 1630 dnd_hints_hide_all(); | |
| 1631 | |
|
4369
7e1fb422e5fd
[gaim-migrate @ 4635]
Christian Hammond <chipx86@chipx86.com>
parents:
4368
diff
changeset
|
1632 dest_win = gaim_gtkwin_get_at_xy(e->x_root, e->y_root); |
| 4359 | 1633 |
| 1634 conv = gaim_window_get_active_conversation(win); | |
| 1635 | |
| 1636 if (dest_win == NULL) { | |
| 1637 if (gaim_window_get_conversation_count(win) < 2) | |
| 1638 return FALSE; | |
| 1639 | |
| 1640 if (gaim_window_get_conversation_count(win) > 1) { | |
| 1641 /* Make a new window to stick this to. */ | |
| 1642 struct gaim_window *new_win; | |
|
4748
d3c09ddfd3aa
[gaim-migrate @ 5063]
Christian Hammond <chipx86@chipx86.com>
parents:
4736
diff
changeset
|
1643 struct gaim_gtk_window *new_gtkwin; |
|
d3c09ddfd3aa
[gaim-migrate @ 5063]
Christian Hammond <chipx86@chipx86.com>
parents:
4736
diff
changeset
|
1644 gint win_width, win_height; |
| 4359 | 1645 |
| 1646 new_win = gaim_window_new(); | |
| 1647 gaim_window_remove_conversation(win, | |
| 1648 gaim_conversation_get_index(conv)); | |
| 1649 gaim_window_add_conversation(new_win, conv); | |
|
4748
d3c09ddfd3aa
[gaim-migrate @ 5063]
Christian Hammond <chipx86@chipx86.com>
parents:
4736
diff
changeset
|
1650 |
|
d3c09ddfd3aa
[gaim-migrate @ 5063]
Christian Hammond <chipx86@chipx86.com>
parents:
4736
diff
changeset
|
1651 new_gtkwin = GAIM_GTK_WINDOW(new_win); |
|
d3c09ddfd3aa
[gaim-migrate @ 5063]
Christian Hammond <chipx86@chipx86.com>
parents:
4736
diff
changeset
|
1652 |
|
d3c09ddfd3aa
[gaim-migrate @ 5063]
Christian Hammond <chipx86@chipx86.com>
parents:
4736
diff
changeset
|
1653 gtk_window_get_size(GTK_WINDOW(new_gtkwin->window), |
|
d3c09ddfd3aa
[gaim-migrate @ 5063]
Christian Hammond <chipx86@chipx86.com>
parents:
4736
diff
changeset
|
1654 &win_width, &win_height); |
|
d3c09ddfd3aa
[gaim-migrate @ 5063]
Christian Hammond <chipx86@chipx86.com>
parents:
4736
diff
changeset
|
1655 |
|
d3c09ddfd3aa
[gaim-migrate @ 5063]
Christian Hammond <chipx86@chipx86.com>
parents:
4736
diff
changeset
|
1656 gtk_window_move(GTK_WINDOW(new_gtkwin->window), |
|
d3c09ddfd3aa
[gaim-migrate @ 5063]
Christian Hammond <chipx86@chipx86.com>
parents:
4736
diff
changeset
|
1657 e->x_root - (win_width / 2), |
|
d3c09ddfd3aa
[gaim-migrate @ 5063]
Christian Hammond <chipx86@chipx86.com>
parents:
4736
diff
changeset
|
1658 e->y_root - (win_height / 2)); |
|
d3c09ddfd3aa
[gaim-migrate @ 5063]
Christian Hammond <chipx86@chipx86.com>
parents:
4736
diff
changeset
|
1659 |
| 4359 | 1660 gaim_window_show(new_win); |
| 1661 } | |
| 1662 | |
| 1663 return TRUE; | |
| 1664 } | |
| 1665 | |
|
4369
7e1fb422e5fd
[gaim-migrate @ 4635]
Christian Hammond <chipx86@chipx86.com>
parents:
4368
diff
changeset
|
1666 dest_gtkwin = GAIM_GTK_WINDOW(dest_win); |
|
7e1fb422e5fd
[gaim-migrate @ 4635]
Christian Hammond <chipx86@chipx86.com>
parents:
4368
diff
changeset
|
1667 |
| 4359 | 1668 /* Get the destination notebook. */ |
| 1669 dest_notebook = GTK_NOTEBOOK(gtkwin->notebook); | |
| 1670 | |
| 1671 /* Get the destination page number. */ | |
| 1672 dest_page_num = gaim_gtkconv_get_dest_tab_at_xy(dest_win, | |
| 1673 e->x_root, e->y_root); | |
| 1674 | |
| 1675 if (win == dest_win) { | |
| 1676 gaim_window_move_conversation(win, | |
| 1677 gaim_conversation_get_index(conv), dest_page_num); | |
| 1678 } | |
| 1679 else { | |
| 1680 size_t pos; | |
| 1681 | |
| 1682 gaim_window_remove_conversation(win, | |
| 1683 gaim_conversation_get_index(conv)); | |
| 1684 | |
| 1685 pos = gaim_window_add_conversation(dest_win, conv); | |
| 1686 | |
| 1687 gaim_window_move_conversation(dest_win, pos, dest_page_num); | |
| 1688 | |
| 1689 gaim_window_switch_conversation(dest_win, dest_page_num); | |
| 1690 } | |
| 1691 | |
| 1692 gtk_widget_grab_focus(GAIM_GTK_CONVERSATION(conv)->entry); | |
| 1693 | |
| 1694 return TRUE; | |
| 1695 } | |
| 1696 | |
| 1697 static void | |
| 1698 switch_conv_cb(GtkNotebook *notebook, GtkWidget *page, gint page_num, | |
| 1699 gpointer user_data) | |
| 1700 { | |
| 1701 struct gaim_window *win; | |
| 1702 struct gaim_conversation *conv; | |
| 1703 struct gaim_gtk_conversation *gtkconv; | |
| 1704 struct gaim_gtk_window *gtkwin; | |
| 1705 struct gaim_connection *gc; | |
| 1706 | |
| 1707 win = (struct gaim_window *)user_data; | |
| 1708 | |
|
4598
a064e437d5eb
[gaim-migrate @ 4883]
Christian Hammond <chipx86@chipx86.com>
parents:
4596
diff
changeset
|
1709 conv = gaim_window_get_conversation_at(win, page_num); |
|
a064e437d5eb
[gaim-migrate @ 4883]
Christian Hammond <chipx86@chipx86.com>
parents:
4596
diff
changeset
|
1710 |
|
a064e437d5eb
[gaim-migrate @ 4883]
Christian Hammond <chipx86@chipx86.com>
parents:
4596
diff
changeset
|
1711 if (conv == NULL) |
|
a064e437d5eb
[gaim-migrate @ 4883]
Christian Hammond <chipx86@chipx86.com>
parents:
4596
diff
changeset
|
1712 return; |
|
a064e437d5eb
[gaim-migrate @ 4883]
Christian Hammond <chipx86@chipx86.com>
parents:
4596
diff
changeset
|
1713 |
| 4359 | 1714 gc = gaim_conversation_get_gc(conv); |
| 1715 gtkwin = GAIM_GTK_WINDOW(win); | |
| 1716 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 1717 | |
| 1718 gaim_conversation_set_unseen(conv, GAIM_UNSEEN_NONE); | |
| 1719 | |
|
4364
fa56829b9587
[gaim-migrate @ 4630]
Christian Hammond <chipx86@chipx86.com>
parents:
4363
diff
changeset
|
1720 if (gc != NULL) { |
|
fa56829b9587
[gaim-migrate @ 4630]
Christian Hammond <chipx86@chipx86.com>
parents:
4363
diff
changeset
|
1721 gtk_widget_set_sensitive(gtkwin->menu.insert_link, TRUE); |
|
fa56829b9587
[gaim-migrate @ 4630]
Christian Hammond <chipx86@chipx86.com>
parents:
4363
diff
changeset
|
1722 } |
|
fa56829b9587
[gaim-migrate @ 4630]
Christian Hammond <chipx86@chipx86.com>
parents:
4363
diff
changeset
|
1723 |
| 4359 | 1724 /* Update the menubar */ |
| 1725 if (gaim_conversation_get_type(conv) == GAIM_CONV_IM) { | |
| 1726 gtk_widget_set_sensitive(gtkwin->menu.view_history, TRUE); | |
| 1727 gtk_widget_set_sensitive(gtkwin->menu.insert_image, | |
| 1728 (gc && gc->prpl->options & OPT_PROTO_IM_IMAGE)); | |
| 1729 | |
| 1730 if (gtkwin->menu.send_as != NULL) | |
| 4685 | 1731 g_timeout_add(0, (GSourceFunc)update_send_as_selection, win); |
| 4359 | 1732 } |
| 1733 else { | |
| 1734 gtk_widget_set_sensitive(gtkwin->menu.view_history, FALSE); | |
| 1735 gtk_widget_set_sensitive(gtkwin->menu.insert_image, FALSE); | |
| 1736 | |
| 1737 if (gtkwin->menu.send_as != NULL) | |
| 1738 gtk_widget_hide(gtkwin->menu.send_as); | |
| 1739 } | |
| 1740 | |
| 4736 | 1741 update_typing_icon(conv); |
| 1742 | |
| 4359 | 1743 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(gtkwin->menu.logging), |
| 1744 gaim_conversation_is_logging(conv)); | |
| 1745 | |
| 1746 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(gtkwin->menu.sounds), | |
| 1747 gtkconv->make_sound); | |
| 1748 | |
| 1749 gtk_widget_grab_focus(gtkconv->entry); | |
| 4681 | 1750 |
| 1751 gtk_window_set_title(GTK_WINDOW(gtkwin->window), | |
| 1752 gtk_label_get_text(GTK_LABEL(gtkconv->tab_label))); | |
| 4359 | 1753 } |
| 1754 | |
| 1755 /************************************************************************** | |
| 1756 * Utility functions | |
| 1757 **************************************************************************/ | |
| 1758 static void | |
| 1759 do_bold(GtkWidget *bold, struct gaim_gtk_conversation *gtkconv) | |
| 1760 { | |
| 1761 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(bold))) | |
| 1762 gaim_gtk_surround(gtkconv, "<B>", "</B>"); | |
| 1763 else | |
| 1764 gaim_gtk_advance_past(gtkconv, "<B>", "</B>"); | |
| 1765 | |
| 1766 gtk_widget_grab_focus(gtkconv->entry); | |
| 1767 } | |
| 1768 | |
| 1769 static void | |
| 1770 do_italic(GtkWidget *italic, struct gaim_gtk_conversation *gtkconv) | |
| 1771 { | |
| 1772 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(italic))) | |
| 1773 gaim_gtk_surround(gtkconv, "<I>", "</I>"); | |
| 1774 else | |
| 1775 gaim_gtk_advance_past(gtkconv, "<I>", "</I>"); | |
| 1776 | |
| 1777 gtk_widget_grab_focus(gtkconv->entry); | |
| 1778 } | |
| 1779 | |
| 1780 static void | |
| 1781 do_underline(GtkWidget *underline, struct gaim_gtk_conversation *gtkconv) | |
| 1782 { | |
| 1783 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(underline))) | |
| 1784 gaim_gtk_surround(gtkconv, "<U>", "</U>"); | |
| 1785 else | |
| 1786 gaim_gtk_advance_past(gtkconv, "<U>", "</U>"); | |
| 1787 | |
| 1788 gtk_widget_grab_focus(gtkconv->entry); | |
| 1789 } | |
| 1790 | |
| 1791 static void | |
| 1792 do_small(GtkWidget *small, struct gaim_gtk_conversation *gtkconv) | |
| 1793 { | |
| 1794 gaim_gtk_surround(gtkconv, "<FONT SIZE=\"1\">", "</FONT>"); | |
| 1795 | |
| 1796 gtk_widget_grab_focus(gtkconv->entry); | |
| 1797 } | |
| 1798 | |
| 1799 static void | |
| 1800 do_normal(GtkWidget *small, struct gaim_gtk_conversation *gtkconv) | |
| 1801 { | |
| 1802 gaim_gtk_surround(gtkconv, "<FONT SIZE=\"3\">", "</FONT>"); | |
| 1803 | |
| 1804 gtk_widget_grab_focus(gtkconv->entry); | |
| 1805 } | |
| 1806 | |
| 1807 static void | |
| 1808 do_big(GtkWidget *small, struct gaim_gtk_conversation *gtkconv) | |
| 1809 { | |
| 1810 gaim_gtk_surround(gtkconv, "<FONT SIZE=\"5\">", "</FONT>"); | |
| 1811 | |
| 1812 gtk_widget_grab_focus(gtkconv->entry); | |
| 1813 } | |
| 1814 | |
| 1815 static void | |
| 1816 toggle_font(GtkWidget *font, struct gaim_conversation *conv) | |
| 1817 { | |
| 1818 struct gaim_gtk_conversation *gtkconv; | |
| 1819 | |
| 1820 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 1821 | |
| 1822 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(font))) | |
| 1823 show_font_dialog(conv, font); | |
| 1824 else if (gtkconv->dialogs.fg_color != NULL) | |
| 1825 cancel_font(font, conv); | |
| 1826 else | |
| 1827 gaim_gtk_advance_past(gtkconv, "<FONT FACE>", "</FONT>"); | |
| 1828 } | |
| 1829 | |
| 1830 static void | |
| 1831 toggle_fg_color(GtkWidget *color, struct gaim_conversation *conv) | |
| 1832 { | |
| 1833 struct gaim_gtk_conversation *gtkconv; | |
| 1834 | |
| 1835 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 1836 | |
| 1837 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(color))) | |
| 1838 show_fgcolor_dialog(conv, color); | |
| 1839 else if (gtkconv->dialogs.fg_color != NULL) | |
| 1840 cancel_fgcolor(color, conv); | |
| 1841 else | |
| 1842 gaim_gtk_advance_past(gtkconv, "<FONT COLOR>", "</FONT>"); | |
| 1843 } | |
| 1844 | |
| 1845 static void | |
| 1846 toggle_bg_color(GtkWidget *color, struct gaim_conversation *conv) | |
| 1847 { | |
| 1848 struct gaim_gtk_conversation *gtkconv; | |
| 1849 | |
| 1850 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 1851 | |
| 1852 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(color))) | |
| 1853 show_bgcolor_dialog(conv, color); | |
| 1854 else if (gtkconv->dialogs.bg_color != NULL) | |
| 1855 cancel_bgcolor(color, conv); | |
| 1856 else | |
| 1857 gaim_gtk_advance_past(gtkconv, "<BODY BGCOLOR>", "</BODY>"); | |
| 1858 } | |
| 1859 | |
| 1860 static void | |
| 1861 check_everything(GtkTextBuffer *buffer) | |
| 1862 { | |
| 1863 struct gaim_conversation *conv; | |
| 1864 struct gaim_gtk_conversation *gtkconv; | |
| 1865 | |
| 1866 conv = (struct gaim_conversation *)g_object_get_data(G_OBJECT(buffer), | |
| 1867 "user_data"); | |
| 1868 | |
| 1869 if (conv == NULL) | |
| 1870 return; | |
| 1871 | |
| 1872 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 1873 | |
| 1874 /* CONV TODO */ | |
| 1875 } | |
| 1876 | |
| 1877 static void | |
| 4685 | 1878 set_toggle(GtkWidget *tb, gboolean active) |
| 4359 | 1879 { |
| 1880 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(tb), active); | |
| 1881 } | |
| 1882 | |
| 1883 static void | |
| 1884 got_typing_keypress(struct gaim_conversation *conv, gboolean first) | |
| 1885 { | |
| 1886 struct gaim_im *im; | |
| 4685 | 1887 |
| 4359 | 1888 /* |
| 1889 * We know we got something, so we at least have to make sure we don't | |
| 1890 * send TYPED any time soon. | |
| 1891 */ | |
| 1892 | |
| 1893 im = GAIM_IM(conv); | |
| 1894 | |
| 1895 if (gaim_im_get_type_again_timeout(im)) | |
| 1896 gaim_im_stop_type_again_timeout(im); | |
| 1897 | |
| 1898 gaim_im_start_type_again_timeout(im); | |
| 1899 | |
| 1900 if (first || (gaim_im_get_type_again(im) != 0 && | |
| 1901 time(NULL) > gaim_im_get_type_again(im))) { | |
| 1902 | |
| 1903 int timeout = serv_send_typing(gaim_conversation_get_gc(conv), | |
| 1904 (char *)gaim_conversation_get_name(conv), | |
| 1905 TYPING); | |
| 1906 | |
| 1907 if (timeout) | |
| 1908 gaim_im_set_type_again(im, time(NULL) + timeout); | |
| 1909 else | |
| 1910 gaim_im_set_type_again(im, 0); | |
| 1911 } | |
| 1912 } | |
| 1913 | |
| 4736 | 1914 static void |
| 1915 update_typing_icon(struct gaim_conversation *conv) | |
| 1916 { | |
| 1917 struct gaim_gtk_window *gtkwin; | |
| 1918 struct gaim_im *im = NULL; | |
| 4757 | 1919 struct gaim_gtk_conversation *gtkconv = GAIM_GTK_CONVERSATION(conv); |
| 4736 | 1920 |
| 1921 gtkwin = GAIM_GTK_WINDOW(gaim_conversation_get_window(conv)); | |
| 1922 | |
| 1923 if(gaim_conversation_get_type(conv) == GAIM_CONV_IM) | |
| 1924 im = GAIM_IM(conv); | |
| 1925 | |
| 1926 if(gtkwin->menu.typing_icon) { | |
| 1927 gtk_widget_destroy(gtkwin->menu.typing_icon); | |
| 1928 gtkwin->menu.typing_icon = NULL; | |
| 1929 } | |
| 1930 if(im && gaim_im_get_typing_state(im) == TYPING) { | |
| 1931 gtkwin->menu.typing_icon = gtk_image_menu_item_new(); | |
| 1932 gtk_image_menu_item_set_image( | |
| 1933 GTK_IMAGE_MENU_ITEM(gtkwin->menu.typing_icon), | |
| 1934 gtk_image_new_from_stock(GAIM_STOCK_TYPING, | |
| 1935 GTK_ICON_SIZE_MENU)); | |
| 4757 | 1936 gtk_tooltips_set_tip(gtkconv->tooltips, gtkwin->menu.typing_icon, |
| 4736 | 1937 _("User is typing..."), NULL); |
| 1938 } else if(im && gaim_im_get_typing_state(im) == TYPED) { | |
| 1939 gtkwin->menu.typing_icon = gtk_image_menu_item_new(); | |
| 1940 gtk_image_menu_item_set_image( | |
| 1941 GTK_IMAGE_MENU_ITEM(gtkwin->menu.typing_icon), | |
| 1942 gtk_image_new_from_stock(GAIM_STOCK_TYPED, | |
| 1943 GTK_ICON_SIZE_MENU)); | |
| 4757 | 1944 gtk_tooltips_set_tip(gtkconv->tooltips, gtkwin->menu.typing_icon, |
| 4736 | 1945 _("User has typed something and paused"), NULL); |
| 1946 } | |
| 1947 | |
| 1948 if(gtkwin->menu.typing_icon) { | |
| 1949 gtk_menu_item_set_right_justified( | |
| 1950 GTK_MENU_ITEM(gtkwin->menu.typing_icon), TRUE); | |
| 1951 gtk_widget_show_all(gtkwin->menu.typing_icon); | |
| 1952 gtk_menu_shell_append(GTK_MENU_SHELL(gtkwin->menu.menubar), | |
| 1953 gtkwin->menu.typing_icon); | |
| 1954 } | |
| 1955 } | |
| 1956 | |
| 4685 | 1957 static gboolean |
| 4359 | 1958 update_send_as_selection(struct gaim_window *win) |
| 1959 { | |
| 4491 | 1960 struct gaim_account *account; |
| 4359 | 1961 struct gaim_conversation *conv; |
| 1962 struct gaim_gtk_window *gtkwin; | |
| 1963 GtkWidget *menu; | |
| 1964 GList *child; | |
| 1965 | |
| 4849 | 1966 if (g_list_find(gaim_get_windows(), win) == NULL) |
| 1967 return FALSE; | |
| 1968 | |
| 4359 | 1969 conv = gaim_window_get_active_conversation(win); |
| 1970 | |
| 4786 | 1971 |
| 4359 | 1972 if (conv == NULL) |
| 4685 | 1973 return FALSE; |
| 4359 | 1974 |
| 4491 | 1975 account = gaim_conversation_get_account(conv); |
| 4359 | 1976 gtkwin = GAIM_GTK_WINDOW(win); |
| 1977 | |
| 4491 | 1978 if (account == NULL) |
| 4685 | 1979 return FALSE; |
|
4466
473de7371a97
[gaim-migrate @ 4741]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1980 |
|
4364
fa56829b9587
[gaim-migrate @ 4630]
Christian Hammond <chipx86@chipx86.com>
parents:
4363
diff
changeset
|
1981 if (gtkwin->menu.send_as == NULL) |
| 4685 | 1982 return FALSE; |
|
4364
fa56829b9587
[gaim-migrate @ 4630]
Christian Hammond <chipx86@chipx86.com>
parents:
4363
diff
changeset
|
1983 |
| 4359 | 1984 gtk_widget_show(gtkwin->menu.send_as); |
| 1985 | |
| 1986 menu = gtk_menu_item_get_submenu( | |
| 1987 GTK_MENU_ITEM(gtkwin->menu.send_as)); | |
| 1988 | |
| 1989 for (child = gtk_container_get_children(GTK_CONTAINER(menu)); | |
| 1990 child != NULL; | |
| 1991 child = child->next) { | |
| 1992 | |
| 1993 GtkWidget *item = child->data; | |
| 4673 | 1994 struct gaim_account *item_account = g_object_get_data(G_OBJECT(item), |
| 1995 "gaim_account"); | |
| 1996 | |
| 1997 if (account == item_account) { | |
| 4359 | 1998 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(item), TRUE); |
| 1999 break; | |
| 2000 } | |
| 2001 } | |
| 4685 | 2002 return FALSE; |
| 4359 | 2003 } |
| 2004 | |
| 2005 static void | |
|
4360
c435a29370b8
[gaim-migrate @ 4626]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
2006 generate_send_as_items(struct gaim_window *win, |
|
c435a29370b8
[gaim-migrate @ 4626]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
2007 struct gaim_conversation *deleted_conv) |
| 4359 | 2008 { |
| 2009 struct gaim_gtk_window *gtkwin; | |
| 2010 GtkWidget *menu; | |
| 2011 GtkWidget *menuitem; | |
| 2012 GSList *gcs; | |
| 2013 GList *convs; | |
| 2014 GSList *group = NULL; | |
| 2015 gboolean first_offline = TRUE; | |
| 2016 gboolean found_online = FALSE; | |
|
4669
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2017 GtkSizeGroup *sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); |
| 4359 | 2018 |
| 2019 gtkwin = GAIM_GTK_WINDOW(win); | |
| 2020 | |
| 2021 if (gtkwin->menu.send_as != NULL) | |
| 2022 gtk_widget_destroy(gtkwin->menu.send_as); | |
| 2023 | |
| 2024 /* See if we have > 1 connection active. */ | |
| 2025 if (g_slist_length(connections) < 2) { | |
| 2026 /* Now make sure we don't have any Offline entries. */ | |
| 2027 gboolean found_offline = FALSE; | |
| 2028 | |
| 2029 for (convs = gaim_get_conversations(); | |
| 2030 convs != NULL; | |
| 2031 convs = convs->next) { | |
| 2032 | |
| 2033 struct gaim_conversation *conv; | |
| 4491 | 2034 struct gaim_account *account; |
| 2035 | |
| 4359 | 2036 conv = (struct gaim_conversation *)convs->data; |
| 4491 | 2037 account = gaim_conversation_get_account(conv); |
| 2038 | |
| 2039 if (account->gc == NULL) { | |
| 4359 | 2040 found_offline = TRUE; |
| 2041 break; | |
| 2042 } | |
| 2043 } | |
| 2044 | |
| 2045 if (!found_offline) { | |
| 2046 gtkwin->menu.send_as = NULL; | |
| 2047 return; | |
| 2048 } | |
| 2049 } | |
| 2050 | |
| 2051 /* Build the Send As menu */ | |
| 2052 gtkwin->menu.send_as = gtk_menu_item_new_with_mnemonic(_("_Send As")); | |
| 2053 gtk_widget_show(gtkwin->menu.send_as); | |
| 2054 | |
| 2055 menu = gtk_menu_new(); | |
| 2056 | |
| 2057 gtk_menu_shell_append(GTK_MENU_SHELL(gtkwin->menu.menubar), | |
| 2058 gtkwin->menu.send_as); | |
| 2059 gtk_menu_item_set_submenu(GTK_MENU_ITEM(gtkwin->menu.send_as), menu); | |
| 2060 | |
| 2061 gtk_widget_show(menu); | |
| 2062 | |
| 2063 /* Fill it with entries. */ | |
| 2064 for (gcs = connections; gcs != NULL; gcs = gcs->next) { | |
|
4668
6e7196dcfd37
[gaim-migrate @ 4979]
Christian Hammond <chipx86@chipx86.com>
parents:
4640
diff
changeset
|
2065 |
| 4359 | 2066 struct gaim_connection *gc; |
|
4669
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2067 GtkWidget *box; |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2068 GtkWidget *label; |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2069 GtkWidget *image; |
|
4689
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
2070 GdkPixbuf *pixbuf, *scale; |
| 4359 | 2071 |
| 2072 found_online = TRUE; | |
| 2073 | |
| 2074 gc = (struct gaim_connection *)gcs->data; | |
| 2075 | |
|
4669
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2076 /* Create a pixmap for the protocol icon. */ |
|
4689
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
2077 pixbuf = create_prpl_icon(gc->account); |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
2078 scale = gdk_pixbuf_scale_simple(pixbuf, 16, 16, GDK_INTERP_BILINEAR); |
|
4669
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2079 |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2080 /* Now convert it to GtkImage */ |
|
4689
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
2081 if (pixbuf == NULL) |
|
4669
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2082 image = gtk_image_new(); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2083 else |
|
4689
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
2084 image = gtk_image_new_from_pixbuf(scale); |
|
4669
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2085 |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2086 gtk_size_group_add_widget(sg, image); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2087 |
|
4689
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
2088 g_object_unref(G_OBJECT(scale)); |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
2089 g_object_unref(G_OBJECT(pixbuf)); |
|
4669
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2090 |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2091 /* Make our menu item */ |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2092 menuitem = gtk_radio_menu_item_new_with_label(group, gc->username); |
| 4793 | 2093 group = gtk_radio_menu_item_get_group(GTK_RADIO_MENU_ITEM(menuitem)); |
| 4359 | 2094 |
|
4669
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2095 /* Do some evil, see some evil, speak some evil. */ |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2096 box = gtk_hbox_new(FALSE, 0); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2097 |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2098 label = gtk_bin_get_child(GTK_BIN(menuitem)); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2099 g_object_ref(label); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2100 gtk_container_remove(GTK_CONTAINER(menuitem), label); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2101 |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2102 gtk_box_pack_start(GTK_BOX(box), image, FALSE, FALSE, 0); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2103 gtk_box_pack_start(GTK_BOX(box), label, TRUE, TRUE, 4); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2104 |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2105 g_object_unref(label); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2106 |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2107 gtk_container_add(GTK_CONTAINER(menuitem), box); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2108 |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2109 gtk_widget_show(label); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2110 gtk_widget_show(image); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2111 gtk_widget_show(box); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2112 |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2113 /* Set our data and callbacks. */ |
| 4359 | 2114 g_object_set_data(G_OBJECT(menuitem), "user_data", win); |
| 4673 | 2115 g_object_set_data(G_OBJECT(menuitem), "gaim_account", gc->account); |
| 4359 | 2116 |
| 4786 | 2117 g_signal_connect(G_OBJECT(menuitem), "activate", |
| 4673 | 2118 G_CALLBACK(menu_conv_sel_send_cb), NULL); |
| 4359 | 2119 |
| 2120 gtk_widget_show(menuitem); | |
| 2121 gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem); | |
| 2122 } | |
| 2123 | |
| 2124 /* | |
| 2125 * Fill it with any accounts that still has an open (yet disabled) window | |
| 2126 * (signed off accounts with a window open). | |
| 2127 */ | |
| 2128 for (convs = gaim_get_conversations(); | |
| 2129 convs != NULL; | |
| 2130 convs = convs->next) { | |
| 2131 | |
| 2132 struct gaim_conversation *conv; | |
| 4491 | 2133 struct gaim_account *account; |
|
4669
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2134 GtkWidget *box; |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2135 GtkWidget *label; |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2136 GtkWidget *image; |
|
4689
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
2137 GdkPixbuf *pixbuf, *scale; |
| 4359 | 2138 |
| 2139 conv = (struct gaim_conversation *)convs->data; | |
|
4360
c435a29370b8
[gaim-migrate @ 4626]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
2140 |
|
c435a29370b8
[gaim-migrate @ 4626]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
2141 if (conv == deleted_conv) |
|
c435a29370b8
[gaim-migrate @ 4626]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
2142 continue; |
|
c435a29370b8
[gaim-migrate @ 4626]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
2143 |
| 4491 | 2144 account = gaim_conversation_get_account(conv); |
| 2145 | |
| 4786 | 2146 |
| 4491 | 2147 if (account->gc == NULL) { |
| 4359 | 2148 if (first_offline && found_online) { |
| 2149 menuitem = gtk_separator_menu_item_new(); | |
| 2150 gtk_widget_show(menuitem); | |
| 2151 gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem); | |
| 2152 | |
| 2153 first_offline = FALSE; | |
| 2154 } | |
| 2155 | |
|
4669
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2156 /* Create a pixmap for the protocol icon. */ |
|
4689
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
2157 pixbuf = create_prpl_icon(account); |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
2158 scale = gdk_pixbuf_scale_simple(pixbuf, 16, 16, |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
2159 GDK_INTERP_BILINEAR); |
|
4669
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2160 |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2161 /* Now convert it to GtkImage */ |
|
4689
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
2162 if (pixbuf == NULL) |
|
4669
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2163 image = gtk_image_new(); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2164 else |
|
4689
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
2165 image = gtk_image_new_from_pixbuf(scale); |
|
4669
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2166 |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2167 gtk_size_group_add_widget(sg, image); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2168 |
|
4689
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
2169 if (scale != NULL) g_object_unref(scale); |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
2170 if (pixbuf != NULL) g_object_unref(pixbuf); |
|
4669
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2171 |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2172 /* Make our menu item */ |
| 4359 | 2173 menuitem = gtk_radio_menu_item_new_with_label(group, |
| 4491 | 2174 account->username); |
| 4793 | 2175 group = gtk_radio_menu_item_get_group(GTK_RADIO_MENU_ITEM(menuitem)); |
| 4359 | 2176 |
|
4669
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2177 /* Do some evil, see some evil, speak some evil. */ |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2178 box = gtk_hbox_new(FALSE, 0); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2179 |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2180 label = gtk_bin_get_child(GTK_BIN(menuitem)); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2181 g_object_ref(label); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2182 gtk_container_remove(GTK_CONTAINER(menuitem), label); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2183 |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2184 gtk_box_pack_start(GTK_BOX(box), image, FALSE, FALSE, 0); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2185 gtk_box_pack_start(GTK_BOX(box), label, TRUE, TRUE, 4); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2186 |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2187 g_object_unref(label); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2188 |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2189 gtk_container_add(GTK_CONTAINER(menuitem), box); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2190 |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2191 gtk_widget_show(label); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2192 gtk_widget_show(image); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2193 gtk_widget_show(box); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2194 |
| 4359 | 2195 gtk_widget_set_sensitive(menuitem, FALSE); |
| 4786 | 2196 g_object_set_data(G_OBJECT(menuitem), "user_data", win); |
| 4674 | 2197 g_object_set_data(G_OBJECT(menuitem), "gaim_account", account); |
| 4359 | 2198 |
| 4786 | 2199 g_signal_connect(G_OBJECT(menuitem), "activate", |
| 2200 G_CALLBACK(menu_conv_sel_send_cb), NULL); | |
| 2201 | |
| 4359 | 2202 gtk_widget_show(menuitem); |
| 2203 gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem); | |
| 2204 } | |
| 2205 } | |
| 2206 | |
|
4669
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2207 g_object_unref(sg); |
|
d715736164ae
[gaim-migrate @ 4980]
Christian Hammond <chipx86@chipx86.com>
parents:
4668
diff
changeset
|
2208 |
| 4359 | 2209 gtk_widget_show(gtkwin->menu.send_as); |
| 2210 update_send_as_selection(win); | |
| 2211 } | |
| 2212 | |
| 2213 static GList * | |
| 2214 generate_invite_user_names(struct gaim_connection *gc) | |
| 2215 { | |
| 4785 | 2216 GaimBlistNode *gnode,*bnode; |
| 4359 | 2217 struct group *g; |
| 2218 struct buddy *buddy; | |
| 2219 static GList *tmp = NULL; | |
| 2220 | |
| 2221 if (tmp) | |
| 2222 g_list_free(tmp); | |
| 2223 | |
| 2224 tmp = g_list_append(NULL, ""); | |
| 2225 | |
| 2226 if (gc != NULL) { | |
| 4785 | 2227 for(gnode = gaim_get_blist()->root; gnode; gnode = gnode->next) { |
| 2228 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
| 2229 continue; | |
| 2230 g = (struct group *)gnode; | |
| 2231 for(bnode = gnode->child; bnode; bnode = bnode->next) { | |
| 2232 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
| 2233 continue; | |
| 2234 buddy = (struct buddy *)bnode; | |
| 2235 | |
| 2236 if (buddy->account == gc->account && buddy->present) | |
| 4359 | 2237 tmp = g_list_append(tmp, buddy->name); |
| 2238 } | |
| 2239 } | |
| 2240 } | |
| 2241 | |
| 2242 return tmp; | |
| 2243 } | |
| 2244 | |
| 2245 static void | |
| 2246 add_chat_buddy_common(struct gaim_conversation *conv, const char *name, | |
| 2247 int pos) | |
| 2248 { | |
| 2249 struct gaim_gtk_conversation *gtkconv; | |
| 2250 struct gaim_gtk_chat_pane *gtkchat; | |
| 2251 struct gaim_chat *chat; | |
| 2252 GtkTreeIter iter; | |
| 2253 GtkListStore *ls; | |
| 2254 | |
| 2255 chat = GAIM_CHAT(conv); | |
| 2256 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 2257 gtkchat = gtkconv->u.chat; | |
| 2258 | |
| 2259 ls = GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(gtkchat->list))); | |
| 2260 | |
| 2261 gtk_list_store_append(ls, &iter); | |
| 2262 gtk_list_store_set(ls, &iter, 0, | |
| 2263 (gaim_chat_is_user_ignored(chat, name) ? "X" : " "), | |
| 2264 1, name, -1); | |
| 2265 gtk_tree_sortable_set_sort_column_id(GTK_TREE_SORTABLE(ls), 1, | |
| 2266 GTK_SORT_ASCENDING); | |
| 2267 } | |
| 2268 | |
| 2269 static void | |
| 2270 tab_complete(struct gaim_conversation *conv) | |
| 2271 { | |
| 2272 struct gaim_gtk_conversation *gtkconv; | |
| 2273 struct gaim_chat *chat; | |
| 2274 GtkTextIter cursor, word_start, start_buffer; | |
| 2275 int start; | |
| 2276 int most_matched = -1; | |
| 2277 char *entered, *partial = NULL; | |
| 2278 char *text; | |
| 2279 GList *matches = NULL; | |
| 2280 GList *nicks = NULL; | |
| 2281 | |
| 2282 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 2283 chat = GAIM_CHAT(conv); | |
| 2284 | |
| 2285 gtk_text_buffer_get_start_iter(gtkconv->entry_buffer, &start_buffer); | |
| 2286 gtk_text_buffer_get_iter_at_mark(gtkconv->entry_buffer, &cursor, | |
| 2287 gtk_text_buffer_get_insert(gtkconv->entry_buffer)); | |
| 2288 | |
| 2289 word_start = cursor; | |
| 2290 | |
| 2291 /* if there's nothing there just return */ | |
| 2292 if (!gtk_text_iter_compare(&cursor, &start_buffer)) | |
| 2293 return; | |
| 2294 | |
| 2295 text = gtk_text_buffer_get_text(gtkconv->entry_buffer, &start_buffer, | |
| 2296 &cursor, FALSE); | |
| 2297 | |
| 2298 /* if we're at the end of ": " we need to move back 2 spaces */ | |
| 2299 start = strlen(text) - 1; | |
| 2300 | |
| 2301 if (strlen(text) >= 2 && !strncmp(&text[start-1], ": ", 2)) | |
| 2302 gtk_text_iter_backward_chars(&word_start, 2); | |
| 2303 | |
| 2304 /* find the start of the word that we're tabbing */ | |
| 2305 while (start >= 0 && text[start] != ' ') { | |
| 2306 gtk_text_iter_backward_char(&word_start); | |
| 2307 start--; | |
| 2308 } | |
| 2309 | |
| 2310 g_free(text); | |
| 2311 | |
| 2312 entered = gtk_text_buffer_get_text(gtkconv->entry_buffer, &word_start, | |
| 2313 &cursor, FALSE); | |
| 2314 | |
| 2315 if (chat_options & OPT_CHAT_OLD_STYLE_TAB) { | |
| 2316 if (strlen(entered) >= 2 && | |
| 2317 !strncmp(": ", entered + strlen(entered) - 2, 2)) { | |
| 2318 | |
| 2319 entered[strlen(entered) - 2] = 0; | |
| 2320 } | |
| 2321 } | |
| 2322 | |
| 2323 if (!strlen(entered)) { | |
| 2324 g_free(entered); | |
| 2325 return; | |
| 2326 } | |
| 2327 | |
| 2328 for (nicks = gaim_chat_get_users(chat); | |
| 2329 nicks != NULL; | |
| 2330 nicks = nicks->next) { | |
| 2331 | |
| 2332 char *nick = nicks->data; | |
| 2333 /* this checks to see if the current nick could be a completion */ | |
| 4793 | 2334 if (g_ascii_strncasecmp(nick, entered, strlen(entered))) { |
|
4621
69f028a6f357
[gaim-migrate @ 4912]
Christian Hammond <chipx86@chipx86.com>
parents:
4608
diff
changeset
|
2335 if (*nick != '+' && *nick != '@' && *nick != '%') |
| 4359 | 2336 continue; |
| 2337 | |
| 4793 | 2338 if (g_ascii_strncasecmp(nick + 1, entered, strlen(entered))) { |
| 4359 | 2339 if (nick[0] != '@' || nick[1] != '+') |
| 2340 continue; | |
| 2341 | |
| 4793 | 2342 if (g_ascii_strncasecmp(nick + 2, entered, strlen(entered))) |
| 4359 | 2343 continue; |
| 2344 else | |
| 2345 nick += 2; | |
| 2346 } | |
| 2347 else | |
| 2348 nick++; | |
| 2349 } | |
| 2350 | |
| 2351 /* if we're here, it's a possible completion */ | |
| 2352 | |
| 2353 /* if we're doing old-style, just fill in the completion */ | |
| 2354 if (chat_options & OPT_CHAT_OLD_STYLE_TAB) { | |
| 2355 gtk_text_buffer_delete(gtkconv->entry_buffer, | |
| 2356 &word_start, &cursor); | |
| 2357 | |
| 2358 if (strlen(nick) == strlen(entered)) { | |
| 2359 nicks = (nicks->next | |
| 2360 ? nicks->next | |
| 2361 : gaim_chat_get_users(chat)); | |
| 2362 | |
| 2363 nick = nicks->data; | |
| 2364 | |
| 2365 if (*nick == '@') nick++; | |
|
4621
69f028a6f357
[gaim-migrate @ 4912]
Christian Hammond <chipx86@chipx86.com>
parents:
4608
diff
changeset
|
2366 if (*nick == '%') nick++; |
| 4359 | 2367 if (*nick == '+') nick++; |
| 2368 } | |
| 2369 | |
| 2370 gtk_text_buffer_get_start_iter(gtkconv->entry_buffer, | |
| 2371 &start_buffer); | |
| 2372 gtk_text_buffer_get_iter_at_mark(gtkconv->entry_buffer, &cursor, | |
| 2373 gtk_text_buffer_get_insert(gtkconv->entry_buffer)); | |
| 2374 | |
| 2375 if (!gtk_text_iter_compare(&cursor, &start_buffer)) { | |
| 2376 char *tmp = g_strdup_printf("%s: ", nick); | |
| 2377 gtk_text_buffer_insert_at_cursor(gtkconv->entry_buffer, | |
| 2378 tmp, -1); | |
| 2379 g_free(tmp); | |
| 2380 } | |
| 2381 else | |
| 2382 gtk_text_buffer_insert_at_cursor(gtkconv->entry_buffer, | |
| 2383 nick, -1); | |
| 2384 | |
| 2385 g_free(entered); | |
| 2386 | |
| 2387 return; | |
| 2388 } | |
| 2389 | |
| 2390 /* we're only here if we're doing new style */ | |
| 2391 if (most_matched == -1) { | |
| 2392 /* | |
| 2393 * this will only get called once, since from now | |
| 2394 * on most_matched is >= 0 | |
| 2395 */ | |
| 2396 most_matched = strlen(nick); | |
| 2397 partial = g_strdup(nick); | |
| 2398 } | |
| 2399 else if (most_matched) { | |
| 4793 | 2400 while (g_ascii_strncasecmp(nick, partial, most_matched)) |
| 4359 | 2401 most_matched--; |
| 2402 | |
| 2403 partial[most_matched] = 0; | |
| 2404 } | |
| 2405 | |
| 2406 matches = g_list_append(matches, nick); | |
| 2407 } | |
| 2408 | |
| 2409 /* we're only here if we're doing new style */ | |
| 2410 | |
| 2411 /* if there weren't any matches, return */ | |
| 2412 if (!matches) { | |
| 2413 /* if matches isn't set partials won't be either */ | |
| 2414 g_free(entered); | |
| 2415 return; | |
| 2416 } | |
| 2417 | |
| 2418 gtk_text_buffer_delete(gtkconv->entry_buffer, &word_start, &cursor); | |
| 2419 | |
| 2420 if (!matches->next) { | |
| 2421 /* there was only one match. fill it in. */ | |
| 2422 gtk_text_buffer_get_start_iter(gtkconv->entry_buffer, &start_buffer); | |
| 2423 gtk_text_buffer_get_iter_at_mark(gtkconv->entry_buffer, &cursor, | |
| 2424 gtk_text_buffer_get_insert(gtkconv->entry_buffer)); | |
| 2425 | |
| 2426 if (!gtk_text_iter_compare(&cursor, &start_buffer)) { | |
| 2427 char *tmp = g_strdup_printf("%s: ", (char *)matches->data); | |
| 2428 gtk_text_buffer_insert_at_cursor(gtkconv->entry_buffer, tmp, -1); | |
| 2429 g_free(tmp); | |
| 2430 } | |
| 2431 else | |
| 2432 gtk_text_buffer_insert_at_cursor(gtkconv->entry_buffer, | |
| 2433 matches->data, -1); | |
| 2434 | |
| 2435 matches = g_list_remove(matches, matches->data); | |
| 2436 } | |
| 2437 else { | |
| 2438 /* | |
| 2439 * there were lots of matches, fill in as much as possible | |
| 2440 * and display all of them | |
| 2441 */ | |
| 2442 char *addthis = g_malloc0(1); | |
| 2443 | |
| 2444 while (matches) { | |
| 2445 char *tmp = addthis; | |
| 2446 addthis = g_strconcat(tmp, matches->data, " ", NULL); | |
| 2447 g_free(tmp); | |
| 2448 matches = g_list_remove(matches, matches->data); | |
| 2449 } | |
| 2450 | |
| 2451 gaim_conversation_write(conv, NULL, addthis, -1, WFLAG_NOLOG, | |
| 2452 time(NULL)); | |
| 2453 gtk_text_buffer_insert_at_cursor(gtkconv->entry_buffer, partial, -1); | |
| 2454 g_free(addthis); | |
| 2455 } | |
| 2456 | |
| 2457 g_free(entered); | |
| 2458 g_free(partial); | |
| 2459 } | |
| 2460 | |
| 2461 static gboolean | |
| 2462 meify(char *message, size_t len) | |
| 2463 { | |
| 2464 /* | |
| 2465 * Read /me-ify: If the message (post-HTML) starts with /me, | |
| 2466 * remove the "/me " part of it (including that space) and return TRUE. | |
| 2467 */ | |
| 2468 char *c; | |
| 2469 gboolean inside_html = 0; | |
| 2470 | |
| 2471 if (message == NULL) | |
| 2472 return FALSE; /* Umm.. this would be very bad if this happens. */ | |
| 2473 | |
| 2474 if (len == -1) | |
| 2475 len = strlen(message); | |
| 2476 | |
| 2477 for (c = message; *c != '\0'; c++, len--) { | |
| 2478 if (inside_html) { | |
| 2479 if (*c == '>') | |
| 2480 inside_html = FALSE; | |
| 2481 } | |
| 2482 else { | |
| 2483 if (*c == '<') | |
| 2484 inside_html = TRUE; | |
| 2485 else | |
| 2486 break; | |
| 2487 } | |
| 2488 } | |
| 2489 | |
| 4793 | 2490 if (*c != '\0' && !g_ascii_strncasecmp(c, "/me ", 4)) { |
| 4359 | 2491 memmove(c, c + 4, len - 3); |
| 2492 | |
| 2493 return TRUE; | |
| 2494 } | |
| 2495 | |
| 2496 return FALSE; | |
| 2497 } | |
| 2498 | |
| 2499 static GtkItemFactoryEntry menu_items[] = | |
| 2500 { | |
| 2501 /* Conversation menu */ | |
| 4596 | 2502 { N_("/_Conversation"), NULL, NULL, 0, "<Branch>" }, |
| 2503 { N_("/Conversation/_Save As..."), NULL, menu_save_as_cb, 0, | |
| 4359 | 2504 "<StockItem>", GTK_STOCK_SAVE_AS }, |
| 4596 | 2505 { N_("/Conversation/View _History..."), NULL, menu_view_history_cb, 0, NULL }, |
| 4359 | 2506 { "/Conversation/sep1", NULL, NULL, 0, "<Separator>" }, |
| 4596 | 2507 { N_("/Conversation/Insert _URL..."), NULL, menu_insert_link_cb, 0, |
| 4359 | 2508 "<StockItem>", GAIM_STOCK_LINK }, |
| 4596 | 2509 { N_("/Conversation/Insert _Image..."), NULL, menu_insert_image_cb, 0, |
| 4359 | 2510 "<StockItem>", GAIM_STOCK_IMAGE }, |
| 2511 { "/Conversation/sep2", NULL, NULL, 0, "<Separator>" }, | |
| 4596 | 2512 { N_("/Conversation/_Close"), NULL, menu_close_conv_cb, 0, |
| 4359 | 2513 "<StockItem>", GTK_STOCK_CLOSE }, |
| 2514 | |
| 2515 /* Options */ | |
| 4596 | 2516 { N_("/_Options"), NULL, NULL, 0, "<Branch>" }, |
| 2517 { N_("/Options/Enable _Logging"), NULL, menu_logging_cb, 0, "<CheckItem>" }, | |
| 2518 { N_("/Options/Enable _Sounds"), NULL, menu_sounds_cb, 0, "<CheckItem>" }, | |
| 4359 | 2519 }; |
| 2520 | |
|
4602
4128761bacb8
[gaim-migrate @ 4889]
Christian Hammond <chipx86@chipx86.com>
parents:
4598
diff
changeset
|
2521 static const int menu_item_count = |
| 4359 | 2522 sizeof(menu_items) / sizeof(*menu_items); |
| 2523 | |
|
4602
4128761bacb8
[gaim-migrate @ 4889]
Christian Hammond <chipx86@chipx86.com>
parents:
4598
diff
changeset
|
2524 static char * |
|
4128761bacb8
[gaim-migrate @ 4889]
Christian Hammond <chipx86@chipx86.com>
parents:
4598
diff
changeset
|
2525 item_factory_translate_func (const char *path, gpointer func_data) |
|
4128761bacb8
[gaim-migrate @ 4889]
Christian Hammond <chipx86@chipx86.com>
parents:
4598
diff
changeset
|
2526 { |
|
4128761bacb8
[gaim-migrate @ 4889]
Christian Hammond <chipx86@chipx86.com>
parents:
4598
diff
changeset
|
2527 return _(path); |
|
4128761bacb8
[gaim-migrate @ 4889]
Christian Hammond <chipx86@chipx86.com>
parents:
4598
diff
changeset
|
2528 } |
|
4128761bacb8
[gaim-migrate @ 4889]
Christian Hammond <chipx86@chipx86.com>
parents:
4598
diff
changeset
|
2529 |
| 4359 | 2530 static GtkWidget * |
| 2531 setup_menubar(struct gaim_window *win) | |
| 2532 { | |
| 2533 struct gaim_gtk_window *gtkwin; | |
| 2534 gtkwin = GAIM_GTK_WINDOW(win); | |
| 2535 | |
| 4630 | 2536 gtkwin->menu.item_factory = gtk_item_factory_new(GTK_TYPE_MENU_BAR, |
| 2537 "<main>", NULL); | |
| 2538 | |
| 2539 gtk_item_factory_set_translate_func (gtkwin->menu.item_factory, | |
|
4602
4128761bacb8
[gaim-migrate @ 4889]
Christian Hammond <chipx86@chipx86.com>
parents:
4598
diff
changeset
|
2540 item_factory_translate_func, |
|
4128761bacb8
[gaim-migrate @ 4889]
Christian Hammond <chipx86@chipx86.com>
parents:
4598
diff
changeset
|
2541 NULL, NULL); |
| 4630 | 2542 |
| 2543 gtk_item_factory_create_items(gtkwin->menu.item_factory, menu_item_count, | |
| 4359 | 2544 menu_items, win); |
| 2545 | |
| 4630 | 2546 gtkwin->menu.menubar = gtk_item_factory_get_widget(gtkwin->menu.item_factory, |
| 2547 "<main>"); | |
| 2548 gtkwin->menu.view_history = gtk_item_factory_get_widget(gtkwin->menu.item_factory, | |
| 4834 | 2549 N_("/Conversation/View History...")); |
| 4630 | 2550 gtkwin->menu.insert_link = gtk_item_factory_get_widget(gtkwin->menu.item_factory, |
| 4834 | 2551 N_("/Conversation/Insert URL...")); |
| 4630 | 2552 gtkwin->menu.insert_image = gtk_item_factory_get_widget(gtkwin->menu.item_factory, |
| 4834 | 2553 N_("/Conversation/Insert Image...")); |
| 4630 | 2554 gtkwin->menu.logging = gtk_item_factory_get_widget(gtkwin->menu.item_factory, |
| 4834 | 2555 N_("/Options/Enable Logging")); |
| 4630 | 2556 gtkwin->menu.sounds = gtk_item_factory_get_widget(gtkwin->menu.item_factory, |
| 4834 | 2557 N_("/Options/Enable Sounds")); |
| 4359 | 2558 |
|
4360
c435a29370b8
[gaim-migrate @ 4626]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
2559 generate_send_as_items(win, NULL); |
| 4359 | 2560 |
| 2561 gtk_widget_show(gtkwin->menu.menubar); | |
| 4931 | 2562 |
| 2563 return gtkwin->menu.menubar; | |
| 4359 | 2564 } |
| 2565 | |
| 2566 static void | |
| 2567 setup_im_buttons(struct gaim_conversation *conv, GtkWidget *parent) | |
| 2568 { | |
| 2569 struct gaim_connection *gc; | |
| 2570 struct gaim_gtk_conversation *gtkconv; | |
| 2571 struct gaim_gtk_im_pane *gtkim; | |
| 2572 GaimConversationType type = GAIM_CONV_IM; | |
| 2573 | |
| 2574 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 2575 gtkim = gtkconv->u.im; | |
| 2576 gc = gaim_conversation_get_gc(conv); | |
| 2577 | |
| 2578 /* From right to left... */ | |
| 2579 | |
| 2580 /* Send button */ | |
| 2581 gtkconv->send = gaim_gtk_change_text(_("Send"), gtkconv->send, | |
| 2582 GAIM_STOCK_SEND, type); | |
| 2583 gtk_tooltips_set_tip(gtkconv->tooltips, gtkconv->send, _("Send"), NULL); | |
| 2584 | |
| 2585 gtk_box_pack_end(GTK_BOX(parent), gtkconv->send, FALSE, FALSE, 0); | |
| 2586 | |
| 2587 /* Separator */ | |
| 2588 if (gtkim->sep2 != NULL) | |
| 2589 gtk_widget_destroy(gtkim->sep2); | |
| 2590 | |
| 2591 gtkim->sep2 = gtk_vseparator_new(); | |
| 2592 gtk_box_pack_end(GTK_BOX(parent), gtkim->sep2, FALSE, TRUE, 0); | |
| 2593 gtk_widget_show(gtkim->sep2); | |
| 2594 | |
| 2595 /* Now, um, just kind of all over the place. Huh? */ | |
| 2596 | |
| 2597 /* Add button */ | |
|
4689
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
2598 if (gaim_find_buddy(gaim_conversation_get_account(conv), |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
2599 gaim_conversation_get_name(conv)) == NULL) { |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
2600 |
| 4359 | 2601 gtkim->add = gaim_gtk_change_text(_("Add"), gtkim->add, |
| 2602 GTK_STOCK_ADD, type); | |
| 2603 gtk_tooltips_set_tip(gtkconv->tooltips, gtkim->add, | |
|
4370
d856987c72ca
[gaim-migrate @ 4636]
Christian Hammond <chipx86@chipx86.com>
parents:
4369
diff
changeset
|
2604 _("Add the user to your buddy list"), NULL); |
| 4359 | 2605 } |
| 2606 else { | |
| 2607 gtkim->add = gaim_gtk_change_text(_("Remove"), gtkim->add, | |
| 2608 GTK_STOCK_REMOVE, type); | |
| 2609 gtk_tooltips_set_tip(gtkconv->tooltips, gtkim->add, | |
|
4370
d856987c72ca
[gaim-migrate @ 4636]
Christian Hammond <chipx86@chipx86.com>
parents:
4369
diff
changeset
|
2610 _("Remove the user from your buddy list"), NULL); |
| 4359 | 2611 } |
| 2612 | |
| 2613 gtk_box_pack_start(GTK_BOX(parent), gtkim->add, | |
| 2614 FALSE, FALSE, 0); | |
| 2615 | |
| 2616 /* Warn button */ | |
| 2617 gtkim->warn = gaim_gtk_change_text(_("Warn"), gtkim->warn, | |
| 2618 GAIM_STOCK_WARN, type); | |
| 2619 gtk_box_pack_start(GTK_BOX(parent), gtkim->warn, FALSE, FALSE, 0); | |
|
4370
d856987c72ca
[gaim-migrate @ 4636]
Christian Hammond <chipx86@chipx86.com>
parents:
4369
diff
changeset
|
2620 gtk_tooltips_set_tip(gtkconv->tooltips, gtkim->warn, |
|
d856987c72ca
[gaim-migrate @ 4636]
Christian Hammond <chipx86@chipx86.com>
parents:
4369
diff
changeset
|
2621 _("Warn the user"), NULL); |
| 4359 | 2622 |
| 2623 /* Info button */ | |
| 2624 gtkconv->info = gaim_gtk_change_text(_("Info"), gtkconv->info, | |
| 2625 GAIM_STOCK_INFO, type); | |
| 2626 gtk_box_pack_start(GTK_BOX(parent), gtkconv->info, FALSE, FALSE, 0); | |
| 2627 gtk_tooltips_set_tip(gtkconv->tooltips, gtkconv->info, | |
|
4370
d856987c72ca
[gaim-migrate @ 4636]
Christian Hammond <chipx86@chipx86.com>
parents:
4369
diff
changeset
|
2628 _("Get the user's information"), NULL); |
| 4359 | 2629 |
| 2630 /* Block button */ | |
| 2631 gtkim->block = gaim_gtk_change_text(_("Block"), gtkim->block, | |
| 2632 GAIM_STOCK_BLOCK, type); | |
| 2633 gtk_box_pack_start(GTK_BOX(parent), gtkim->block, FALSE, FALSE, 0); | |
| 2634 gtk_tooltips_set_tip(gtkconv->tooltips, gtkim->block, | |
|
4370
d856987c72ca
[gaim-migrate @ 4636]
Christian Hammond <chipx86@chipx86.com>
parents:
4369
diff
changeset
|
2635 _("Block the user"), NULL); |
| 4359 | 2636 |
| 2637 gtk_button_set_relief(GTK_BUTTON(gtkconv->info), GTK_RELIEF_NONE); | |
| 2638 gtk_button_set_relief(GTK_BUTTON(gtkim->add), GTK_RELIEF_NONE); | |
| 2639 gtk_button_set_relief(GTK_BUTTON(gtkim->warn), GTK_RELIEF_NONE); | |
| 2640 gtk_button_set_relief(GTK_BUTTON(gtkconv->send), GTK_RELIEF_NONE); | |
| 2641 gtk_button_set_relief(GTK_BUTTON(gtkim->block), GTK_RELIEF_NONE); | |
| 2642 | |
| 2643 gtk_size_group_add_widget(gtkconv->sg, gtkconv->info); | |
| 2644 gtk_size_group_add_widget(gtkconv->sg, gtkim->add); | |
| 2645 gtk_size_group_add_widget(gtkconv->sg, gtkim->warn); | |
| 2646 gtk_size_group_add_widget(gtkconv->sg, gtkconv->send); | |
| 2647 gtk_size_group_add_widget(gtkconv->sg, gtkim->block); | |
| 2648 | |
| 2649 gtk_box_reorder_child(GTK_BOX(parent), gtkim->warn, 1); | |
| 2650 gtk_box_reorder_child(GTK_BOX(parent), gtkim->block, 2); | |
|
4370
d856987c72ca
[gaim-migrate @ 4636]
Christian Hammond <chipx86@chipx86.com>
parents:
4369
diff
changeset
|
2651 gtk_box_reorder_child(GTK_BOX(parent), gtkim->add, 3); |
| 4359 | 2652 gtk_box_reorder_child(GTK_BOX(parent), gtkconv->info, 4); |
| 2653 | |
| 2654 gaim_gtkconv_update_buttons_by_protocol(conv); | |
| 2655 | |
| 2656 g_signal_connect(G_OBJECT(gtkconv->send), "clicked", | |
| 2657 G_CALLBACK(send_cb), conv); | |
| 2658 g_signal_connect(G_OBJECT(gtkconv->info), "clicked", | |
| 2659 G_CALLBACK(info_cb), conv); | |
| 2660 g_signal_connect(G_OBJECT(gtkim->warn), "clicked", | |
| 2661 G_CALLBACK(warn_cb), conv); | |
| 2662 g_signal_connect(G_OBJECT(gtkim->block), "clicked", | |
| 2663 G_CALLBACK(block_cb), conv); | |
| 2664 } | |
| 2665 | |
| 2666 static void | |
| 2667 setup_chat_buttons(struct gaim_conversation *conv, GtkWidget *parent) | |
| 2668 { | |
| 2669 struct gaim_connection *gc; | |
| 2670 struct gaim_gtk_conversation *gtkconv; | |
| 2671 struct gaim_gtk_chat_pane *gtkchat; | |
| 2672 struct gaim_gtk_window *gtkwin; | |
| 2673 GtkWidget *sep; | |
| 2674 | |
| 2675 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 2676 gtkchat = gtkconv->u.chat; | |
| 2677 gtkwin = GAIM_GTK_WINDOW(gaim_conversation_get_window(conv)); | |
| 2678 gc = gaim_conversation_get_gc(conv); | |
| 2679 | |
| 2680 /* Send button */ | |
| 2681 gtkconv->send = gaim_gtk_change_text(_("Send"), gtkconv->send, | |
| 2682 GAIM_STOCK_SEND, GAIM_CONV_CHAT); | |
| 2683 gtk_tooltips_set_tip(gtkconv->tooltips, gtkconv->send, _("Send"), NULL); | |
| 2684 | |
| 2685 gtk_box_pack_end(GTK_BOX(parent), gtkconv->send, FALSE, FALSE, 0); | |
| 2686 | |
| 2687 /* Separator */ | |
| 2688 sep = gtk_vseparator_new(); | |
| 2689 gtk_box_pack_end(GTK_BOX(parent), sep, FALSE, TRUE, 0); | |
| 2690 gtk_widget_show(sep); | |
| 2691 | |
| 2692 /* Invite */ | |
| 2693 gtkchat->invite = gaim_gtk_change_text(_("Invite"), gtkchat->invite, | |
| 2694 GAIM_STOCK_INVITE, GAIM_CONV_CHAT); | |
| 2695 gtk_tooltips_set_tip(gtkconv->tooltips, gtkchat->invite, | |
| 2696 _("Invite a user"), NULL); | |
| 2697 gtk_box_pack_end(GTK_BOX(parent), gtkchat->invite, FALSE, FALSE, 0); | |
| 2698 | |
| 2699 /* Set the relief on these. */ | |
| 2700 gtk_button_set_relief(GTK_BUTTON(gtkchat->invite), GTK_RELIEF_NONE); | |
| 2701 gtk_button_set_relief(GTK_BUTTON(gtkconv->send), GTK_RELIEF_NONE); | |
| 2702 | |
| 2703 /* Callbacks */ | |
| 2704 g_signal_connect(G_OBJECT(gtkconv->send), "clicked", | |
| 2705 G_CALLBACK(send_cb), conv); | |
| 2706 g_signal_connect(G_OBJECT(gtkchat->invite), "clicked", | |
| 2707 G_CALLBACK(invite_cb), conv); | |
| 2708 } | |
| 2709 | |
| 2710 static GtkWidget * | |
| 2711 build_conv_toolbar(struct gaim_conversation *conv) | |
| 2712 { | |
| 2713 struct gaim_gtk_conversation *gtkconv; | |
| 2714 GtkWidget *vbox; | |
| 2715 GtkWidget *hbox; | |
| 2716 GtkWidget *button; | |
| 2717 GtkWidget *sep; | |
| 2718 GtkSizeGroup *sg; | |
| 2719 | |
| 2720 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 2721 | |
| 2722 sg = gtk_size_group_new(GTK_SIZE_GROUP_BOTH); | |
| 2723 | |
| 2724 vbox = gtk_vbox_new(FALSE, 0); | |
| 2725 sep = gtk_hseparator_new(); | |
| 2726 gtk_box_pack_start(GTK_BOX(vbox), sep, FALSE, FALSE, 0); | |
| 2727 | |
| 2728 hbox = gtk_hbox_new(FALSE, 5); | |
| 2729 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); | |
| 2730 | |
| 2731 /* Bold */ | |
| 2732 button = gaim_pixbuf_toolbar_button_from_stock(GTK_STOCK_BOLD); | |
| 2733 gtk_size_group_add_widget(sg, button); | |
| 2734 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
| 2735 gtk_tooltips_set_tip(gtkconv->tooltips, button, _("Bold"), NULL); | |
| 2736 | |
| 2737 g_signal_connect(G_OBJECT(button), "clicked", | |
| 2738 G_CALLBACK(do_bold), gtkconv); | |
| 2739 | |
| 2740 gtkconv->toolbar.bold = button; | |
| 2741 | |
| 2742 /* Italic */ | |
| 2743 button = gaim_pixbuf_toolbar_button_from_stock(GTK_STOCK_ITALIC); | |
| 2744 gtk_size_group_add_widget(sg, button); | |
| 2745 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
| 2746 gtk_tooltips_set_tip(gtkconv->tooltips, button, _("Italic"), NULL); | |
| 2747 | |
| 2748 g_signal_connect(G_OBJECT(button), "clicked", | |
| 2749 G_CALLBACK(do_italic), gtkconv); | |
| 2750 | |
| 2751 gtkconv->toolbar.italic = button; | |
| 2752 | |
| 2753 /* Underline */ | |
| 2754 button = gaim_pixbuf_toolbar_button_from_stock(GTK_STOCK_UNDERLINE); | |
| 2755 gtk_size_group_add_widget(sg, button); | |
| 2756 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
| 2757 gtk_tooltips_set_tip(gtkconv->tooltips, button, _("Underline"), NULL); | |
| 2758 | |
| 2759 g_signal_connect(G_OBJECT(button), "clicked", | |
| 2760 G_CALLBACK(do_underline), gtkconv); | |
| 2761 | |
| 2762 gtkconv->toolbar.underline = button; | |
| 2763 | |
| 2764 /* Sep */ | |
| 2765 sep = gtk_vseparator_new(); | |
| 2766 gtk_box_pack_start(GTK_BOX(hbox), sep, FALSE, FALSE, 0); | |
| 2767 | |
| 2768 /* Increase font size */ | |
| 2769 button = gaim_pixbuf_toolbar_button_from_stock(GAIM_STOCK_TEXT_BIGGER); | |
| 2770 gtk_size_group_add_widget(sg, button); | |
| 2771 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
| 2772 gtk_tooltips_set_tip(gtkconv->tooltips, button, | |
| 2773 _("Larger font size"), NULL); | |
| 2774 | |
| 2775 g_signal_connect(G_OBJECT(button), "clicked", | |
| 2776 G_CALLBACK(do_big), gtkconv); | |
| 2777 | |
| 2778 /* Normal font size */ | |
| 2779 button = gaim_pixbuf_toolbar_button_from_stock(GAIM_STOCK_TEXT_NORMAL); | |
| 2780 gtk_size_group_add_widget(sg, button); | |
| 2781 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
| 2782 gtk_tooltips_set_tip(gtkconv->tooltips, button, | |
| 2783 _("Normal font size"), NULL); | |
| 2784 | |
| 2785 g_signal_connect(G_OBJECT(button), "clicked", | |
| 2786 G_CALLBACK(do_normal), gtkconv); | |
| 2787 | |
| 2788 gtkconv->toolbar.normal_size = button; | |
| 2789 | |
| 2790 /* Decrease font size */ | |
| 2791 button = gaim_pixbuf_toolbar_button_from_stock(GAIM_STOCK_TEXT_SMALLER); | |
| 2792 gtk_size_group_add_widget(sg, button); | |
| 2793 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
| 2794 gtk_tooltips_set_tip(gtkconv->tooltips, button, | |
| 2795 _("Smaller font size"), NULL); | |
| 2796 | |
| 2797 g_signal_connect(G_OBJECT(button), "clicked", | |
| 2798 G_CALLBACK(do_small), gtkconv); | |
| 2799 | |
| 2800 /* Sep */ | |
| 2801 sep = gtk_vseparator_new(); | |
| 2802 gtk_box_pack_start(GTK_BOX(hbox), sep, FALSE, FALSE, 0); | |
| 2803 | |
| 4685 | 2804 /* Font Face */ |
| 2805 | |
| 2806 button = gaim_pixbuf_toolbar_button_from_stock(GTK_STOCK_SELECT_FONT); | |
| 2807 gtk_size_group_add_widget(sg, button); | |
| 2808 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
| 2809 gtk_tooltips_set_tip(gtkconv->tooltips, button, | |
| 2810 _("Font Face"), NULL); | |
| 2811 | |
| 2812 g_signal_connect(G_OBJECT(button), "clicked", | |
| 2813 G_CALLBACK(toggle_font), conv); | |
| 2814 | |
| 2815 gtkconv->toolbar.font = button; | |
| 2816 | |
| 4359 | 2817 /* Foreground Color */ |
| 2818 button = gaim_pixbuf_toolbar_button_from_stock(GAIM_STOCK_FGCOLOR); | |
| 2819 gtk_size_group_add_widget(sg, button); | |
| 2820 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
| 2821 gtk_tooltips_set_tip(gtkconv->tooltips, button, | |
| 2822 _("Foreground font color"), NULL); | |
| 2823 | |
| 2824 g_signal_connect(G_OBJECT(button), "clicked", | |
| 2825 G_CALLBACK(toggle_fg_color), conv); | |
| 2826 | |
| 2827 gtkconv->toolbar.fgcolor = button; | |
| 2828 | |
| 2829 /* Background Color */ | |
| 2830 button = gaim_pixbuf_toolbar_button_from_stock(GAIM_STOCK_BGCOLOR); | |
| 2831 gtk_size_group_add_widget(sg, button); | |
| 2832 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
| 2833 gtk_tooltips_set_tip(gtkconv->tooltips, button, | |
| 2834 _("Background color"), NULL); | |
| 2835 | |
| 2836 g_signal_connect(G_OBJECT(button), "clicked", | |
| 2837 G_CALLBACK(toggle_bg_color), conv); | |
| 2838 | |
| 2839 gtkconv->toolbar.bgcolor = button; | |
| 2840 | |
| 2841 /* Sep */ | |
| 2842 sep = gtk_vseparator_new(); | |
| 2843 gtk_box_pack_start(GTK_BOX(hbox), sep, FALSE, FALSE, 0); | |
| 2844 | |
| 2845 /* Insert IM Image */ | |
| 2846 button = gaim_pixbuf_toolbar_button_from_stock(GAIM_STOCK_IMAGE); | |
| 2847 gtk_size_group_add_widget(sg, button); | |
| 2848 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
| 2849 gtk_tooltips_set_tip(gtkconv->tooltips, button, _("Insert image"), NULL); | |
| 2850 | |
| 2851 g_signal_connect(G_OBJECT(button), "clicked", | |
| 2852 G_CALLBACK(insert_image_cb), conv); | |
| 2853 | |
| 2854 gtkconv->toolbar.image = button; | |
| 2855 | |
| 2856 /* Insert Link */ | |
| 2857 button = gaim_pixbuf_toolbar_button_from_stock(GAIM_STOCK_LINK); | |
| 2858 gtk_size_group_add_widget(sg, button); | |
| 2859 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
| 2860 gtk_tooltips_set_tip(gtkconv->tooltips, button, _("Insert link"), NULL); | |
| 2861 | |
| 2862 g_signal_connect(G_OBJECT(button), "clicked", | |
| 2863 G_CALLBACK(insert_link_cb), conv); | |
| 2864 | |
| 2865 gtkconv->toolbar.link = button; | |
| 2866 | |
| 2867 /* Insert Smiley */ | |
| 2868 button = gaim_pixbuf_toolbar_button_from_stock(GAIM_STOCK_SMILEY); | |
| 2869 gtk_size_group_add_widget(sg, button); | |
| 2870 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
| 2871 gtk_tooltips_set_tip(gtkconv->tooltips, button, _("Insert smiley"), NULL); | |
| 2872 | |
| 2873 g_signal_connect(G_OBJECT(button), "clicked", | |
| 2874 G_CALLBACK(insert_smiley_cb), conv); | |
| 2875 | |
| 2876 gtkconv->toolbar.smiley = button; | |
| 2877 | |
| 2878 | |
| 2879 sep = gtk_hseparator_new(); | |
| 2880 gtk_box_pack_start(GTK_BOX(vbox), sep, FALSE, FALSE, 0); | |
| 2881 | |
| 2882 gtk_widget_show_all(vbox); | |
| 2883 | |
| 2884 return vbox; | |
| 2885 } | |
| 2886 | |
| 2887 static GtkWidget * | |
| 2888 setup_chat_pane(struct gaim_conversation *conv) | |
| 2889 { | |
| 2890 struct gaim_gtk_conversation *gtkconv; | |
| 2891 struct gaim_gtk_chat_pane *gtkchat; | |
| 2892 struct gaim_connection *gc; | |
| 2893 GtkWidget *vpaned, *hpaned; | |
| 2894 GtkWidget *vbox, *hbox; | |
| 2895 GtkWidget *lbox, *bbox; | |
| 2896 GtkWidget *label; | |
| 2897 GtkWidget *sw2; | |
| 2898 GtkWidget *list; | |
| 2899 GtkWidget *button; | |
| 2900 GtkWidget *frame; | |
| 2901 GtkListStore *ls; | |
| 2902 GtkCellRenderer *rend; | |
| 2903 GtkTreeViewColumn *col; | |
| 2904 | |
| 2905 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 2906 gtkchat = gtkconv->u.chat; | |
| 2907 gc = gaim_conversation_get_gc(conv); | |
| 2908 | |
| 2909 /* Setup the outer pane. */ | |
| 2910 vpaned = gtk_vpaned_new(); | |
| 2911 gtk_widget_show(vpaned); | |
| 2912 | |
| 2913 /* Setup the top part of the pane. */ | |
| 2914 vbox = gtk_vbox_new(FALSE, 5); | |
| 2915 gtk_paned_pack1(GTK_PANED(vpaned), vbox, TRUE, FALSE); | |
| 2916 gtk_widget_show(vbox); | |
| 2917 | |
| 2918 if (gc->prpl->options & OPT_PROTO_CHAT_TOPIC) | |
| 2919 { | |
| 2920 hbox = gtk_hbox_new(FALSE, 0); | |
| 2921 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 5); | |
| 2922 gtk_widget_show(hbox); | |
| 2923 | |
| 2924 label = gtk_label_new(_("Topic:")); | |
| 2925 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 5); | |
| 2926 gtk_widget_show(label); | |
| 2927 | |
| 2928 gtkchat->topic_text = gtk_entry_new(); | |
| 4635 | 2929 gtk_editable_set_editable(GTK_EDITABLE(gtkchat->topic_text), FALSE); |
| 4359 | 2930 gtk_box_pack_start(GTK_BOX(hbox), gtkchat->topic_text, TRUE, TRUE, 5); |
| 2931 gtk_widget_show(gtkchat->topic_text); | |
| 2932 } | |
| 2933 | |
| 2934 /* Setup the horizontal pane. */ | |
| 2935 hpaned = gtk_hpaned_new(); | |
| 2936 gtk_box_pack_start(GTK_BOX(vbox), hpaned, TRUE, TRUE, 5); | |
| 2937 gtk_widget_show(hpaned); | |
| 2938 | |
| 2939 /* Setup the scrolled window to put gtkimhtml in. */ | |
| 2940 gtkconv->sw = gtk_scrolled_window_new(NULL, NULL); | |
| 2941 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(gtkconv->sw), | |
| 2942 GTK_POLICY_NEVER, GTK_POLICY_ALWAYS); | |
| 2943 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(gtkconv->sw), | |
| 2944 GTK_SHADOW_IN); | |
| 2945 gtk_paned_pack1(GTK_PANED(hpaned), gtkconv->sw, TRUE, TRUE); | |
| 2946 | |
| 2947 gtk_widget_set_size_request(gtkconv->sw, | |
| 2948 buddy_chat_size.width, buddy_chat_size.height); | |
| 2949 gtk_widget_show(gtkconv->sw); | |
| 2950 | |
| 2951 /* Setup gtkihmtml. */ | |
| 2952 gtkconv->imhtml = gtk_imhtml_new(NULL, NULL); | |
| 2953 gtk_container_add(GTK_CONTAINER(gtkconv->sw), gtkconv->imhtml); | |
| 2954 | |
| 2955 gtk_imhtml_show_comments(GTK_IMHTML(gtkconv->imhtml), | |
| 2956 (convo_options & OPT_CONVO_SHOW_TIME)); | |
| 2957 | |
| 2958 g_signal_connect_after(G_OBJECT(gtkconv->imhtml), "button_press_event", | |
| 2959 G_CALLBACK(entry_stop_rclick_cb), NULL); | |
| 2960 | |
| 2961 gaim_setup_imhtml(gtkconv->imhtml); | |
| 2962 | |
| 2963 gtk_widget_show(gtkconv->imhtml); | |
| 2964 | |
| 2965 /* Build the right pane. */ | |
| 2966 lbox = gtk_vbox_new(FALSE, 5); | |
|
4409
0521eec12c33
[gaim-migrate @ 4682]
Christian Hammond <chipx86@chipx86.com>
parents:
4398
diff
changeset
|
2967 gtk_paned_pack2(GTK_PANED(hpaned), lbox, FALSE, TRUE); |
| 4359 | 2968 gtk_widget_show(lbox); |
| 2969 | |
| 2970 /* Setup the label telling how many people are in the room. */ | |
| 2971 gtkchat->count = gtk_label_new(_("0 people in room")); | |
| 2972 gtk_box_pack_start(GTK_BOX(lbox), gtkchat->count, FALSE, FALSE, 0); | |
| 2973 gtk_widget_show(gtkchat->count); | |
| 2974 | |
| 2975 /* Setup the list of users. */ | |
| 2976 sw2 = gtk_scrolled_window_new(NULL, NULL); | |
| 2977 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw2), | |
| 2978 GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); | |
| 2979 gtk_box_pack_start(GTK_BOX(lbox), sw2, TRUE, TRUE, 0); | |
| 2980 gtk_widget_show(sw2); | |
| 2981 | |
| 2982 ls = gtk_list_store_new(2, G_TYPE_STRING, G_TYPE_STRING); | |
| 2983 gtk_tree_sortable_set_sort_column_id(GTK_TREE_SORTABLE(ls), 1, | |
| 2984 GTK_SORT_ASCENDING); | |
| 2985 | |
| 2986 list = gtk_tree_view_new_with_model(GTK_TREE_MODEL(ls)); | |
| 2987 | |
| 2988 rend = gtk_cell_renderer_text_new(); | |
| 2989 col = gtk_tree_view_column_new_with_attributes(NULL, rend, | |
| 2990 "text", 0, NULL); | |
| 2991 gtk_tree_view_column_set_clickable(GTK_TREE_VIEW_COLUMN(col), TRUE); | |
| 2992 | |
| 2993 g_signal_connect(G_OBJECT(list), "button_press_event", | |
| 2994 G_CALLBACK(right_click_chat_cb), conv); | |
| 2995 | |
| 2996 gtk_tree_view_append_column(GTK_TREE_VIEW(list), col); | |
| 2997 | |
| 2998 col = gtk_tree_view_column_new_with_attributes(NULL, rend, | |
| 2999 "text", 1, NULL); | |
| 3000 gtk_tree_view_column_set_clickable(GTK_TREE_VIEW_COLUMN(col), TRUE); | |
| 3001 | |
| 3002 #if 0 | |
| 3003 g_signal_connect(G_OBJECT(list), "button_press_event", | |
| 3004 G_CALLBACK(right_click_chat), conv); | |
| 3005 #endif | |
| 3006 | |
| 3007 gtk_tree_view_append_column(GTK_TREE_VIEW(list), col); | |
| 3008 | |
| 3009 gtk_widget_set_size_request(list, 150, -1); | |
| 3010 | |
| 3011 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(list), FALSE); | |
| 3012 gtk_widget_show(list); | |
| 3013 | |
| 3014 gtkchat->list = list; | |
| 3015 | |
| 3016 gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(sw2), list); | |
| 3017 | |
| 3018 /* Setup the user list toolbar. */ | |
| 3019 bbox = gtk_hbox_new(TRUE, 5); | |
| 3020 gtk_box_pack_start(GTK_BOX(lbox), bbox, FALSE, FALSE, 0); | |
| 3021 gtk_widget_show(bbox); | |
| 3022 | |
| 3023 /* IM */ | |
| 3024 button = gaim_pixbuf_button_from_stock(NULL, GTK_STOCK_REDO, | |
| 3025 GAIM_BUTTON_VERTICAL); | |
| 3026 gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE); | |
| 3027 gtk_box_pack_start(GTK_BOX(bbox), button, FALSE, FALSE, 0); | |
|
4370
d856987c72ca
[gaim-migrate @ 4636]
Christian Hammond <chipx86@chipx86.com>
parents:
4369
diff
changeset
|
3028 gtk_tooltips_set_tip(gtkconv->tooltips, button, _("IM the user"), NULL); |
| 4359 | 3029 g_signal_connect(G_OBJECT(button), "clicked", |
| 3030 G_CALLBACK(im_cb), conv); | |
| 3031 | |
| 3032 gtk_widget_show(button); | |
| 3033 | |
| 3034 /* Ignore */ | |
| 3035 button = gaim_pixbuf_button_from_stock(NULL, GAIM_STOCK_IGNORE, | |
| 3036 GAIM_BUTTON_VERTICAL); | |
| 3037 gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE); | |
| 3038 gtk_box_pack_start(GTK_BOX(bbox), button, FALSE, FALSE, 0); | |
|
4370
d856987c72ca
[gaim-migrate @ 4636]
Christian Hammond <chipx86@chipx86.com>
parents:
4369
diff
changeset
|
3039 gtk_tooltips_set_tip(gtkconv->tooltips, button, |
|
d856987c72ca
[gaim-migrate @ 4636]
Christian Hammond <chipx86@chipx86.com>
parents:
4369
diff
changeset
|
3040 _("Ignore the user"), NULL); |
| 4359 | 3041 g_signal_connect(G_OBJECT(button), "clicked", |
| 3042 G_CALLBACK(ignore_cb), conv); | |
| 3043 gtk_widget_show(button); | |
| 3044 | |
| 3045 /* Info */ | |
| 3046 button = gaim_pixbuf_button_from_stock(NULL, GAIM_STOCK_INFO, | |
| 3047 GAIM_BUTTON_VERTICAL); | |
| 3048 gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE); | |
| 3049 gtk_box_pack_start(GTK_BOX(bbox), button, FALSE, FALSE, 0); | |
| 3050 gtk_tooltips_set_tip(gtkconv->tooltips, button, | |
|
4370
d856987c72ca
[gaim-migrate @ 4636]
Christian Hammond <chipx86@chipx86.com>
parents:
4369
diff
changeset
|
3051 _("Get the user's information"), NULL); |
| 4359 | 3052 g_signal_connect(G_OBJECT(button), "clicked", |
| 3053 G_CALLBACK(info_cb), conv); | |
| 3054 | |
| 3055 gtk_widget_show(button); | |
| 3056 | |
| 3057 gtkconv->info = button; | |
| 3058 | |
| 3059 /* Build the toolbar. */ | |
| 3060 vbox = gtk_vbox_new(FALSE, 5); | |
|
4409
0521eec12c33
[gaim-migrate @ 4682]
Christian Hammond <chipx86@chipx86.com>
parents:
4398
diff
changeset
|
3061 gtk_paned_pack2(GTK_PANED(vpaned), vbox, FALSE, FALSE); |
| 4359 | 3062 gtk_widget_show(vbox); |
| 3063 | |
| 3064 gtkconv->toolbar.toolbar = build_conv_toolbar(conv); | |
| 3065 gtk_box_pack_start(GTK_BOX(vbox), gtkconv->toolbar.toolbar, | |
| 3066 FALSE, FALSE, 0); | |
| 3067 | |
| 3068 /* Setup the entry widget. */ | |
| 3069 frame = gtk_frame_new(NULL); | |
| 3070 gtk_frame_set_shadow_type(GTK_FRAME(frame), GTK_SHADOW_IN); | |
| 3071 gtk_box_pack_start(GTK_BOX(vbox), frame, TRUE, TRUE, 0); | |
| 3072 gtk_widget_show(frame); | |
| 3073 | |
| 3074 gtkconv->entry_buffer = gtk_text_buffer_new(NULL); | |
| 3075 g_object_set_data(G_OBJECT(gtkconv->entry_buffer), "user_data", conv); | |
| 3076 gtkconv->entry = gtk_text_view_new_with_buffer(gtkconv->entry_buffer); | |
| 3077 | |
| 3078 gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(gtkconv->entry), GTK_WRAP_WORD); | |
| 4851 | 3079 gtk_widget_set_size_request(gtkconv->entry, -1, |
| 4359 | 3080 MAX(buddy_chat_size.entry_height, 25)); |
| 3081 | |
| 3082 /* Connect the signal handlers. */ | |
| 3083 g_signal_connect_swapped(G_OBJECT(gtkconv->entry), "key_press_event", | |
| 3084 G_CALLBACK(entry_key_pressed_cb_1), | |
| 3085 gtkconv->entry_buffer); | |
| 3086 g_signal_connect_after(G_OBJECT(gtkconv->entry), "button_press_event", | |
| 3087 G_CALLBACK(entry_stop_rclick_cb), NULL); | |
| 3088 g_signal_connect(G_OBJECT(gtkconv->entry), "key_press_event", | |
| 3089 G_CALLBACK(entry_key_pressed_cb_2), conv); | |
| 3090 | |
| 3091 #ifdef USE_GTKSPELL | |
| 3092 if (convo_options & OPT_CONVO_CHECK_SPELLING) | |
| 3093 gtkspell_new_attach(GTK_TEXT_VIEW(gtkconv->entry), NULL, NULL); | |
| 3094 #endif | |
| 3095 | |
| 3096 gtk_container_add(GTK_CONTAINER(frame), GTK_WIDGET(gtkconv->entry)); | |
| 3097 gtk_widget_show(gtkconv->entry); | |
| 3098 | |
| 3099 /* Setup the bottom button box. */ | |
| 3100 gtkconv->bbox = gtk_hbox_new(FALSE, 5); | |
| 3101 gtk_box_pack_start(GTK_BOX(vbox), gtkconv->bbox, FALSE, FALSE, 0); | |
| 3102 gtk_widget_show(gtkconv->bbox); | |
| 3103 | |
| 3104 setup_chat_buttons(conv, gtkconv->bbox); | |
| 3105 | |
| 3106 return vpaned; | |
| 3107 } | |
| 3108 | |
| 3109 static GtkWidget * | |
| 3110 setup_im_pane(struct gaim_conversation *conv) | |
| 3111 { | |
| 3112 struct gaim_gtk_conversation *gtkconv; | |
| 3113 struct gaim_gtk_im_pane *gtkim; | |
| 3114 GtkWidget *paned; | |
| 3115 GtkWidget *vbox; | |
| 3116 GtkWidget *vbox2; | |
| 3117 GtkWidget *frame; | |
| 3118 | |
| 3119 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 3120 gtkim = gtkconv->u.im; | |
| 3121 | |
| 3122 /* Setup the outer pane. */ | |
| 3123 paned = gtk_vpaned_new(); | |
| 3124 gtk_widget_show(paned); | |
| 3125 | |
| 3126 /* Setup the top part of the pane. */ | |
| 3127 vbox = gtk_vbox_new(FALSE, 5); | |
|
4409
0521eec12c33
[gaim-migrate @ 4682]
Christian Hammond <chipx86@chipx86.com>
parents:
4398
diff
changeset
|
3128 gtk_paned_pack1(GTK_PANED(paned), vbox, TRUE, TRUE); |
| 4359 | 3129 gtk_widget_show(vbox); |
| 3130 | |
| 3131 /* Setup the gtkimhtml widget. */ | |
| 3132 gtkconv->sw = gtk_scrolled_window_new(NULL, NULL); | |
| 3133 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(gtkconv->sw), | |
| 3134 GTK_POLICY_NEVER, GTK_POLICY_ALWAYS); | |
| 3135 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(gtkconv->sw), | |
| 3136 GTK_SHADOW_IN); | |
| 3137 gtk_box_pack_start(GTK_BOX(vbox), gtkconv->sw, TRUE, TRUE, 0); | |
| 4851 | 3138 |
| 4359 | 3139 gtk_widget_set_size_request(gtkconv->sw, conv_size.width, conv_size.height); |
| 3140 gtk_widget_show(gtkconv->sw); | |
| 3141 | |
| 3142 gtkconv->imhtml = gtk_imhtml_new(NULL, NULL); | |
| 3143 gtk_container_add(GTK_CONTAINER(gtkconv->sw), gtkconv->imhtml); | |
| 3144 | |
| 3145 g_signal_connect_after(G_OBJECT(gtkconv->imhtml), "button_press_event", | |
| 3146 G_CALLBACK(entry_stop_rclick_cb), NULL); | |
| 3147 | |
| 3148 gtk_imhtml_show_comments(GTK_IMHTML(gtkconv->imhtml), | |
| 3149 (convo_options & OPT_CONVO_SHOW_TIME)); | |
| 3150 | |
| 3151 gaim_setup_imhtml(gtkconv->imhtml); | |
| 3152 | |
| 3153 gtk_widget_show(gtkconv->imhtml); | |
| 3154 | |
| 3155 vbox2 = gtk_vbox_new(FALSE, 5); | |
| 3156 gtk_paned_pack2(GTK_PANED(paned), vbox2, FALSE, FALSE); | |
| 3157 gtk_widget_show(vbox2); | |
| 3158 | |
| 3159 /* Build the toolbar. */ | |
| 3160 gtkconv->toolbar.toolbar = build_conv_toolbar(conv); | |
| 3161 gtk_box_pack_start(GTK_BOX(vbox2), gtkconv->toolbar.toolbar, | |
| 3162 FALSE, FALSE, 0); | |
| 3163 | |
| 3164 /* Setup the entry widget. */ | |
| 3165 frame = gtk_frame_new(NULL); | |
| 3166 gtk_frame_set_shadow_type(GTK_FRAME(frame), GTK_SHADOW_IN); | |
| 3167 gtk_box_pack_start(GTK_BOX(vbox2), frame, TRUE, TRUE, 0); | |
| 3168 gtk_widget_show(frame); | |
| 3169 | |
| 3170 gtkconv->entry_buffer = gtk_text_buffer_new(NULL); | |
| 3171 g_object_set_data(G_OBJECT(gtkconv->entry_buffer), "user_data", conv); | |
| 3172 gtkconv->entry = gtk_text_view_new_with_buffer(gtkconv->entry_buffer); | |
| 3173 | |
| 3174 gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(gtkconv->entry), GTK_WRAP_WORD); | |
| 4851 | 3175 gtk_widget_set_size_request(gtkconv->entry, -1, |
| 4359 | 3176 MAX(conv_size.entry_height, 25)); |
| 3177 | |
| 3178 /* Connect the signal handlers. */ | |
| 3179 g_signal_connect_swapped(G_OBJECT(gtkconv->entry), "key_press_event", | |
| 3180 G_CALLBACK(entry_key_pressed_cb_1), | |
| 3181 gtkconv->entry_buffer); | |
| 3182 g_signal_connect(G_OBJECT(gtkconv->entry), "key_press_event", | |
| 3183 G_CALLBACK(entry_key_pressed_cb_2), conv); | |
| 3184 g_signal_connect_after(G_OBJECT(gtkconv->entry), "button_press_event", | |
| 3185 G_CALLBACK(entry_stop_rclick_cb), NULL); | |
| 3186 | |
| 3187 g_signal_connect(G_OBJECT(gtkconv->entry_buffer), "insert_text", | |
| 3188 G_CALLBACK(insert_text_cb), conv); | |
| 3189 g_signal_connect(G_OBJECT(gtkconv->entry_buffer), "delete_range", | |
| 3190 G_CALLBACK(delete_text_cb), conv); | |
| 3191 | |
| 3192 #ifdef USE_GTKSPELL | |
| 3193 if (convo_options & OPT_CONVO_CHECK_SPELLING) | |
| 3194 gtkspell_new_attach(GTK_TEXT_VIEW(gtkconv->entry), NULL, NULL); | |
| 3195 #endif | |
| 3196 | |
| 3197 gtk_container_add(GTK_CONTAINER(frame), GTK_WIDGET(gtkconv->entry)); | |
| 3198 gtk_widget_show(gtkconv->entry); | |
| 3199 | |
| 3200 gtkconv->bbox = gtk_hbox_new(FALSE, 5); | |
| 3201 gtk_box_pack_start(GTK_BOX(vbox2), gtkconv->bbox, FALSE, FALSE, 0); | |
| 3202 gtk_widget_show(gtkconv->bbox); | |
| 3203 | |
| 3204 setup_im_buttons(conv, gtkconv->bbox); | |
| 3205 | |
| 3206 return paned; | |
| 3207 } | |
| 3208 | |
| 3209 static void | |
| 3210 move_next_tab(struct gaim_conversation *conv) | |
| 3211 { | |
| 3212 struct gaim_conversation *next_conv = NULL; | |
| 3213 struct gaim_window *win; | |
| 3214 GList *l; | |
| 3215 int index, i; | |
| 3216 | |
| 3217 win = gaim_conversation_get_window(conv); | |
| 3218 index = gaim_conversation_get_index(conv); | |
| 3219 | |
| 3220 /* First check the tabs after this position. */ | |
| 3221 for (l = g_list_nth(gaim_window_get_conversations(win), index); | |
| 3222 l != NULL; | |
| 3223 l = l->next) { | |
| 3224 | |
| 3225 next_conv = (struct gaim_conversation *)l->data; | |
| 3226 | |
| 3227 if (gaim_conversation_get_unseen(next_conv) > 0) | |
| 3228 break; | |
| 3229 | |
| 3230 next_conv = NULL; | |
| 3231 } | |
| 3232 | |
| 3233 if (next_conv == NULL) { | |
| 3234 | |
| 3235 /* Now check before this position. */ | |
| 3236 for (l = gaim_window_get_conversations(win), i = 0; | |
| 3237 l != NULL && i < index; | |
| 3238 l = l->next) { | |
| 3239 | |
| 3240 next_conv = (struct gaim_conversation *)l->data; | |
| 3241 | |
| 3242 if (gaim_conversation_get_unseen(next_conv) > 0) | |
| 3243 break; | |
| 3244 | |
| 3245 next_conv = NULL; | |
| 3246 } | |
| 3247 | |
| 3248 if (next_conv == NULL) { | |
| 3249 /* Okay, just grab the next conversation tab. */ | |
| 3250 if (index == gaim_window_get_conversation_count(win) - 1) | |
| 3251 next_conv = gaim_window_get_conversation_at(win, 0); | |
| 3252 else | |
| 3253 next_conv = gaim_window_get_conversation_at(win, index + 1); | |
| 3254 } | |
| 3255 } | |
| 3256 | |
| 3257 if (next_conv != NULL && next_conv != conv) { | |
| 3258 gaim_window_switch_conversation(win, | |
| 3259 gaim_conversation_get_index(next_conv)); | |
| 3260 } | |
| 3261 } | |
| 3262 | |
|
4689
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3263 static void |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3264 conv_dnd_recv(GtkWidget *widget, GdkDragContext *dc, guint x, guint y, |
| 4781 | 3265 GtkSelectionData *sd, guint info, guint t, struct gaim_conversation *conv) |
|
4689
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3266 { |
| 4781 | 3267 struct gaim_window *win = conv->window; |
| 3268 struct gaim_conversation *c; | |
| 3269 if (sd->target == gdk_atom_intern("GAIM_BLIST_NODE", FALSE)) { | |
| 3270 GaimBlistNode *n = NULL; | |
| 3271 memcpy(&n, sd->data, sizeof(n)); | |
| 3272 if (!GAIM_BLIST_NODE_IS_BUDDY(n)) | |
| 3273 return; | |
| 3274 c = gaim_conversation_new(GAIM_CONV_IM, ((struct buddy*)n)->account, ((struct buddy*)n)->name); | |
| 3275 gaim_window_add_conversation (win, c); | |
| 4702 | 3276 } |
| 3277 | |
| 3278 /* do_error_dialog("MWAHAHAHA! I AM A TROLL! I AM GOING TO EAT YOU!", | |
| 3279 NULL, GAIM_WARNING); */ | |
|
4689
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3280 } |
| 4359 | 3281 |
| 3282 /************************************************************************** | |
| 3283 * GTK+ window ops | |
| 3284 **************************************************************************/ | |
|
4465
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4454
diff
changeset
|
3285 static struct gaim_conversation_ui_ops * |
|
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4454
diff
changeset
|
3286 gaim_gtk_get_conversation_ui_ops(void) |
| 4359 | 3287 { |
|
4465
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4454
diff
changeset
|
3288 return gaim_get_gtk_conversation_ui_ops(); |
| 4359 | 3289 } |
| 3290 | |
| 3291 static void | |
| 3292 gaim_gtk_new_window(struct gaim_window *win) | |
| 3293 { | |
| 3294 struct gaim_gtk_window *gtkwin; | |
| 3295 GtkPositionType pos; | |
| 3296 GtkWidget *testidea; | |
| 3297 GtkWidget *menubar; | |
| 3298 | |
| 3299 gtkwin = g_malloc0(sizeof(struct gaim_gtk_window)); | |
| 3300 | |
| 3301 win->ui_data = gtkwin; | |
| 3302 | |
| 3303 /* Create the window. */ | |
| 3304 gtkwin->window = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
| 3305 gtk_window_set_role(GTK_WINDOW(gtkwin->window), "conversation"); | |
| 4635 | 3306 gtk_window_set_resizable(GTK_WINDOW(gtkwin->window), TRUE); |
|
4510
4c394222c732
[gaim-migrate @ 4786]
Christian Hammond <chipx86@chipx86.com>
parents:
4505
diff
changeset
|
3307 gtk_container_set_border_width(GTK_CONTAINER(gtkwin->window), 0); |
| 4359 | 3308 gtk_widget_realize(gtkwin->window); |
| 3309 | |
| 3310 g_signal_connect(G_OBJECT(gtkwin->window), "delete_event", | |
| 3311 G_CALLBACK(close_win_cb), win); | |
| 3312 | |
| 3313 /* Create the notebook. */ | |
| 3314 gtkwin->notebook = gtk_notebook_new(); | |
| 3315 | |
| 3316 pos = ((im_options & OPT_IM_SIDE_TAB) | |
| 3317 ? ((im_options & OPT_IM_BR_TAB) ? GTK_POS_RIGHT : GTK_POS_LEFT) | |
| 3318 : ((im_options & OPT_IM_BR_TAB) ? GTK_POS_BOTTOM : GTK_POS_TOP)); | |
| 3319 | |
| 3320 #if 0 | |
| 3321 gtk_notebook_set_tab_hborder(GTK_NOTEBOOK(gtkwin->notebook), 0); | |
| 3322 gtk_notebook_set_tab_vborder(GTK_NOTEBOOK(gtkwin->notebook), 0); | |
| 3323 #endif | |
| 3324 gtk_notebook_set_tab_pos(GTK_NOTEBOOK(gtkwin->notebook), pos); | |
| 3325 gtk_notebook_set_scrollable(GTK_NOTEBOOK(gtkwin->notebook), TRUE); | |
| 3326 gtk_notebook_popup_enable(GTK_NOTEBOOK(gtkwin->notebook)); | |
| 4818 | 3327 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gtkwin->notebook), FALSE); |
| 3328 | |
| 4359 | 3329 gtk_widget_show(gtkwin->notebook); |
| 3330 | |
| 3331 g_signal_connect_after(G_OBJECT(gtkwin->notebook), "switch_page", | |
| 3332 G_CALLBACK(switch_conv_cb), win); | |
| 3333 | |
| 3334 /* Setup the tab drag and drop signals. */ | |
| 4486 | 3335 gtk_widget_add_events(gtkwin->notebook, |
| 3336 GDK_BUTTON1_MOTION_MASK | GDK_LEAVE_NOTIFY_MASK); | |
| 3337 g_signal_connect(G_OBJECT(gtkwin->notebook), "button_press_event", | |
|
4572
06084165a966
[gaim-migrate @ 4853]
Christian Hammond <chipx86@chipx86.com>
parents:
4571
diff
changeset
|
3338 G_CALLBACK(notebook_press_cb), win); |
| 4486 | 3339 g_signal_connect(G_OBJECT(gtkwin->notebook), "button_release_event", |
|
4572
06084165a966
[gaim-migrate @ 4853]
Christian Hammond <chipx86@chipx86.com>
parents:
4571
diff
changeset
|
3340 G_CALLBACK(notebook_release_cb), win); |
|
06084165a966
[gaim-migrate @ 4853]
Christian Hammond <chipx86@chipx86.com>
parents:
4571
diff
changeset
|
3341 |
| 4359 | 3342 testidea = gtk_vbox_new(FALSE, 0); |
|
4572
06084165a966
[gaim-migrate @ 4853]
Christian Hammond <chipx86@chipx86.com>
parents:
4571
diff
changeset
|
3343 |
| 4359 | 3344 /* Setup the menubar. */ |
| 3345 menubar = setup_menubar(win); | |
| 3346 gtk_box_pack_start(GTK_BOX(testidea), menubar, FALSE, TRUE, 0); | |
| 3347 | |
| 3348 gtk_box_pack_start(GTK_BOX(testidea), gtkwin->notebook, TRUE, TRUE, 0); | |
| 3349 | |
| 3350 gtk_container_add(GTK_CONTAINER(gtkwin->window), testidea); | |
| 3351 | |
| 3352 gtk_widget_show(testidea); | |
| 3353 } | |
| 3354 | |
| 3355 static void | |
| 3356 gaim_gtk_destroy_window(struct gaim_window *win) | |
| 3357 { | |
| 3358 struct gaim_gtk_window *gtkwin = GAIM_GTK_WINDOW(win); | |
| 3359 | |
| 3360 gtk_widget_destroy(gtkwin->window); | |
| 3361 | |
| 4630 | 3362 g_object_unref(G_OBJECT(gtkwin->menu.item_factory)); |
| 3363 | |
| 4359 | 3364 g_free(gtkwin); |
| 3365 win->ui_data = NULL; | |
| 3366 } | |
| 3367 | |
| 3368 static void | |
| 3369 gaim_gtk_show(struct gaim_window *win) | |
| 3370 { | |
| 3371 struct gaim_gtk_window *gtkwin = GAIM_GTK_WINDOW(win); | |
| 3372 | |
| 3373 gtk_widget_show(gtkwin->window); | |
| 3374 } | |
| 3375 | |
| 3376 static void | |
| 3377 gaim_gtk_hide(struct gaim_window *win) | |
| 3378 { | |
| 3379 struct gaim_gtk_window *gtkwin = GAIM_GTK_WINDOW(win); | |
| 3380 | |
| 3381 gtk_widget_hide(gtkwin->window); | |
| 3382 } | |
| 3383 | |
| 3384 static void | |
| 3385 gaim_gtk_raise(struct gaim_window *win) | |
| 3386 { | |
| 3387 struct gaim_gtk_window *gtkwin = GAIM_GTK_WINDOW(win); | |
| 3388 | |
| 4526 | 3389 gdk_window_raise(gtkwin->window->window); |
| 4359 | 3390 } |
| 3391 | |
| 3392 static void | |
| 3393 gaim_gtk_flash(struct gaim_window *win) | |
| 3394 { | |
| 3395 #ifdef _WIN32 | |
| 3396 struct gaim_gtk_window *gtkwin = GAIM_GTK_WINDOW(win); | |
| 3397 | |
| 3398 wgaim_im_blink(gtkwin->window); | |
| 3399 #endif | |
| 3400 } | |
| 3401 | |
| 3402 static void | |
| 3403 gaim_gtk_switch_conversation(struct gaim_window *win, unsigned int index) | |
| 3404 { | |
| 3405 struct gaim_gtk_window *gtkwin; | |
| 3406 | |
| 3407 gtkwin = GAIM_GTK_WINDOW(win); | |
| 3408 | |
| 3409 gtk_notebook_set_current_page(GTK_NOTEBOOK(gtkwin->notebook), index); | |
| 3410 } | |
| 3411 | |
|
4689
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3412 static const GtkTargetEntry te[] = |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3413 { |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3414 {"text/plain", 0, 0}, |
| 4702 | 3415 {"text/uri-list", 0, 1}, |
| 4781 | 3416 {"GAIM_BLIST_NODE", 0, 2}, |
| 4702 | 3417 {"STRING", 0, 3} |
|
4689
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3418 }; |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3419 |
| 4359 | 3420 static void |
| 3421 gaim_gtk_add_conversation(struct gaim_window *win, | |
| 3422 struct gaim_conversation *conv) | |
| 3423 { | |
| 3424 struct gaim_gtk_window *gtkwin; | |
| 3425 struct gaim_gtk_conversation *gtkconv; | |
| 3426 GtkWidget *pane = NULL; | |
| 3427 GtkWidget *tab_cont; | |
| 3428 GtkWidget *tabby; | |
| 3429 gboolean new_ui; | |
|
4383
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3430 GaimConversationType conv_type; |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3431 const char *name; |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3432 |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3433 name = gaim_conversation_get_name(conv); |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3434 conv_type = gaim_conversation_get_type(conv); |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3435 gtkwin = GAIM_GTK_WINDOW(win); |
| 4359 | 3436 |
| 3437 if (conv->ui_data != NULL) { | |
| 3438 gtkconv = (struct gaim_gtk_conversation *)conv->ui_data; | |
| 3439 | |
| 3440 tab_cont = gtkconv->tab_cont; | |
| 3441 | |
| 3442 new_ui = FALSE; | |
| 3443 } | |
| 3444 else { | |
| 3445 gtkconv = g_malloc0(sizeof(struct gaim_gtk_conversation)); | |
| 3446 conv->ui_data = gtkconv; | |
| 3447 | |
| 3448 /* Setup some initial variables. */ | |
| 3449 gtkconv->sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); | |
| 3450 gtkconv->tooltips = gtk_tooltips_new(); | |
| 3451 | |
| 4421 | 3452 /* Setup the foreground and background colors */ |
| 3453 gaim_gtkconv_update_font_colors(conv); | |
| 3454 | |
|
4438
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
3455 /* Setup the font face */ |
|
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
3456 gaim_gtkconv_update_font_face(conv); |
|
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
3457 |
|
4383
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3458 if (conv_type == GAIM_CONV_CHAT) { |
| 4359 | 3459 gtkconv->u.chat = g_malloc0(sizeof(struct gaim_gtk_chat_pane)); |
| 3460 | |
| 3461 pane = setup_chat_pane(conv); | |
| 3462 } | |
|
4383
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3463 else if (conv_type == GAIM_CONV_IM) { |
| 4359 | 3464 gtkconv->u.im = g_malloc0(sizeof(struct gaim_gtk_im_pane)); |
| 3465 gtkconv->u.im->a_virgin = TRUE; | |
| 3466 | |
| 3467 pane = setup_im_pane(conv); | |
| 3468 } | |
| 3469 | |
| 3470 if (pane == NULL) { | |
|
4572
06084165a966
[gaim-migrate @ 4853]
Christian Hammond <chipx86@chipx86.com>
parents:
4571
diff
changeset
|
3471 if (conv_type == GAIM_CONV_CHAT) g_free(gtkconv->u.chat); |
|
06084165a966
[gaim-migrate @ 4853]
Christian Hammond <chipx86@chipx86.com>
parents:
4571
diff
changeset
|
3472 else if (conv_type == GAIM_CONV_IM) g_free(gtkconv->u.im); |
| 4359 | 3473 |
| 3474 g_free(gtkconv); | |
| 3475 conv->ui_data = NULL; | |
| 3476 | |
| 3477 return; | |
| 3478 } | |
| 3479 | |
|
4689
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3480 /* Setup drag-and-drop */ |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3481 gtk_drag_dest_set(pane, |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3482 GTK_DEST_DEFAULT_MOTION | |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3483 GTK_DEST_DEFAULT_DROP, |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3484 te, sizeof(te) / sizeof(GtkTargetEntry), |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3485 GDK_ACTION_COPY); |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3486 gtk_drag_dest_set(gtkconv->imhtml, |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3487 GTK_DEST_DEFAULT_MOTION | |
| 4702 | 3488 GTK_DEST_DEFAULT_DROP, |
|
4689
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3489 te, sizeof(te) / sizeof(GtkTargetEntry), |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3490 GDK_ACTION_DEFAULT | GDK_ACTION_COPY | GDK_ACTION_MOVE); |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3491 gtk_drag_dest_set(gtkconv->entry, |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3492 GTK_DEST_DEFAULT_MOTION | |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3493 GTK_DEST_DEFAULT_DROP, |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3494 te, sizeof(te) / sizeof(GtkTargetEntry), |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3495 GDK_ACTION_COPY); |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3496 |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3497 g_signal_connect(G_OBJECT(pane), "drag_data_received", |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3498 G_CALLBACK(conv_dnd_recv), conv); |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3499 g_signal_connect(G_OBJECT(gtkconv->imhtml), "drag_data_received", |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3500 G_CALLBACK(conv_dnd_recv), conv); |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3501 #if 0 |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3502 g_signal_connect(G_OBJECT(gtkconv->entry), "drag_data_received", |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3503 G_CALLBACK(conv_dnd_recv), conv); |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3504 #endif |
|
69b19e132df0
[gaim-migrate @ 5000]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3505 |
|
4383
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3506 /* |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3507 * Write the New Conversation log string. |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3508 * |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3509 * This should probably be elsewhere, but then, logging should |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3510 * be moved out in some way, either via plugin or via a new API. |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3511 */ |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3512 if (gaim_conversation_is_logging(conv) && |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3513 conv_type != GAIM_CONV_MISC) { |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3514 |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3515 FILE *fd; |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3516 char filename[256]; |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3517 |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3518 g_snprintf(filename, sizeof(filename), "%s%s", name, |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3519 (conv_type == GAIM_CONV_CHAT ? ".chat" : "")); |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3520 |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3521 fd = open_log_file(filename, (conv_type == GAIM_CONV_CHAT)); |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3522 |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3523 if (fd) { |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3524 if (!(logging_options & OPT_LOG_STRIP_HTML)) |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3525 fprintf(fd, |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3526 "<HR><BR><H3 Align=Center> " |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3527 "---- New Conversation @ %s ----</H3><BR>\n", |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3528 full_date()); |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3529 else |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3530 fprintf(fd, "---- New Conversation @ %s ----\n", |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3531 full_date()); |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3532 |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3533 fclose(fd); |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3534 } |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3535 } |
|
f7a84034f97f
[gaim-migrate @ 4649]
Christian Hammond <chipx86@chipx86.com>
parents:
4382
diff
changeset
|
3536 |
| 4359 | 3537 /* Setup the container for the tab. */ |
| 3538 gtkconv->tab_cont = tab_cont = gtk_vbox_new(FALSE, 5); | |
| 3539 gtk_container_set_border_width(GTK_CONTAINER(tab_cont), 5); | |
| 3540 gtk_container_add(GTK_CONTAINER(tab_cont), pane); | |
| 3541 gtk_widget_show(pane); | |
| 3542 | |
| 3543 new_ui = TRUE; | |
| 4636 | 3544 |
| 4359 | 3545 gtkconv->make_sound = TRUE; |
| 3546 } | |
| 3547 | |
| 3548 gtkconv->tabby = tabby = gtk_hbox_new(FALSE, 5); | |
| 3549 | |
| 3550 /* Close button. */ | |
| 3551 gtkconv->close = gtk_button_new(); | |
| 3552 gtk_widget_set_size_request(GTK_WIDGET(gtkconv->close), 16, 16); | |
| 3553 gtk_container_add(GTK_CONTAINER(gtkconv->close), | |
| 4445 | 3554 gtk_image_new_from_stock(GTK_STOCK_CLOSE, |
| 3555 GTK_ICON_SIZE_MENU)); | |
| 4359 | 3556 gtk_button_set_relief(GTK_BUTTON(gtkconv->close), GTK_RELIEF_NONE); |
| 3557 gtk_tooltips_set_tip(gtkconv->tooltips, gtkconv->close, | |
|
4572
06084165a966
[gaim-migrate @ 4853]
Christian Hammond <chipx86@chipx86.com>
parents:
4571
diff
changeset
|
3558 _("Close conversation"), NULL); |
| 4359 | 3559 |
| 3560 g_signal_connect(G_OBJECT(gtkconv->close), "clicked", | |
|
4571
51e988d015ed
[gaim-migrate @ 4852]
Christian Hammond <chipx86@chipx86.com>
parents:
4561
diff
changeset
|
3561 G_CALLBACK(close_conv_cb), conv); |
| 4359 | 3562 |
| 3563 /* Tab label. */ | |
| 3564 gtkconv->tab_label = gtk_label_new(gaim_conversation_get_title(conv)); | |
| 3565 #if 0 | |
| 3566 gtk_misc_set_alignment(GTK_MISC(gtkconv->tab_label), 0.00, 0.5); | |
| 3567 gtk_misc_set_padding(GTK_MISC(gtkconv->tab_label), 4, 0); | |
| 3568 #endif | |
| 3569 | |
| 3570 /* Pack it all together. */ | |
| 3571 gtk_box_pack_start(GTK_BOX(tabby), gtkconv->tab_label, TRUE, TRUE, 0); | |
| 4445 | 3572 gtk_widget_show(gtkconv->tab_label); |
| 3573 gtk_box_pack_start(GTK_BOX(tabby), gtkconv->close, FALSE, FALSE, 0); | |
| 3574 if (!(convo_options & OPT_CONVO_NO_X_ON_TAB)) | |
| 3575 gtk_widget_show_all(gtkconv->close); | |
| 3576 gtk_widget_show(tabby); | |
| 4359 | 3577 |
| 3578 | |
| 3579 /* Add this pane to the conversations notebook. */ | |
| 3580 gtk_notebook_append_page(GTK_NOTEBOOK(gtkwin->notebook), tab_cont, tabby); | |
| 3581 gtk_notebook_set_menu_label_text(GTK_NOTEBOOK(gtkwin->notebook), tab_cont, | |
| 3582 gaim_conversation_get_title(conv)); | |
| 3583 | |
| 3584 gtk_widget_show(tab_cont); | |
| 3585 | |
| 4818 | 3586 if (gaim_window_get_conversation_count(win) == 1) { |
| 3587 /* Er, bug in notebooks? Switch to the page manually. */ | |
| 4359 | 3588 gtk_notebook_set_current_page(GTK_NOTEBOOK(gtkwin->notebook), 0); |
| 4851 | 3589 |
| 3590 if(conv_type == GAIM_CONV_IM) { | |
| 3591 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gtkwin->notebook), | |
| 3592 (im_options & OPT_IM_ONE_WINDOW)); | |
| 3593 } else if(conv_type == GAIM_CONV_CHAT) { | |
| 3594 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gtkwin->notebook), | |
| 3595 (chat_options & OPT_CHAT_ONE_WINDOW)); | |
| 3596 } | |
| 4818 | 3597 } else { |
| 3598 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gtkwin->notebook), TRUE); | |
| 3599 } | |
| 4359 | 3600 |
| 3601 if ((gtk_notebook_get_current_page(GTK_NOTEBOOK(gtkwin->notebook)) == 0) || | |
| 3602 (conv == g_list_nth_data(gaim_window_get_conversations(win), 0))) { | |
| 3603 | |
| 3604 gtk_widget_grab_focus(gtkconv->entry); | |
| 3605 } | |
| 3606 | |
| 3607 gaim_gtkconv_update_buddy_icon(conv); | |
| 3608 | |
| 3609 if (!new_ui) | |
| 3610 g_object_unref(gtkconv->tab_cont); | |
| 3611 | |
| 3612 if (gaim_window_get_conversation_count(win) == 1) | |
| 4685 | 3613 g_timeout_add(0, (GSourceFunc)update_send_as_selection, win); |
| 4359 | 3614 } |
| 3615 | |
| 3616 static void | |
| 3617 gaim_gtk_remove_conversation(struct gaim_window *win, | |
| 3618 struct gaim_conversation *conv) | |
| 3619 { | |
| 3620 struct gaim_gtk_window *gtkwin; | |
| 3621 struct gaim_gtk_conversation *gtkconv; | |
| 3622 unsigned int index; | |
| 4818 | 3623 GaimConversationType conv_type; |
| 3624 | |
| 3625 conv_type = gaim_conversation_get_type(conv); | |
| 4359 | 3626 index = gaim_conversation_get_index(conv); |
| 3627 | |
| 3628 gtkwin = GAIM_GTK_WINDOW(win); | |
| 3629 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 3630 | |
| 3631 g_object_ref(gtkconv->tab_cont); | |
| 3632 gtk_object_sink(GTK_OBJECT(gtkconv->tab_cont)); | |
| 3633 | |
| 3634 gtk_notebook_remove_page(GTK_NOTEBOOK(gtkwin->notebook), index); | |
| 3635 | |
| 4818 | 3636 /* go back to tabless if need be */ |
| 3637 if (gaim_window_get_conversation_count(win) <= 2) { | |
| 3638 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gtkwin->notebook), | |
| 3639 ((conv_type == GAIM_CONV_IM && im_options & OPT_IM_ONE_WINDOW) || | |
| 3640 (conv_type == GAIM_CONV_CHAT && im_options & OPT_CHAT_ONE_WINDOW))); | |
| 3641 } | |
| 3642 | |
| 3643 | |
| 4359 | 3644 /* If this window is setup with an inactive gc, regenerate the menu. */ |
| 4818 | 3645 if (conv_type == GAIM_CONV_IM && |
| 4359 | 3646 gaim_conversation_get_gc(conv) == NULL) { |
| 3647 | |
|
4360
c435a29370b8
[gaim-migrate @ 4626]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
3648 generate_send_as_items(win, conv); |
| 4359 | 3649 } |
| 3650 } | |
| 3651 | |
| 3652 static void | |
| 3653 gaim_gtk_move_conversation(struct gaim_window *win, | |
| 3654 struct gaim_conversation *conv, | |
| 3655 unsigned int new_index) | |
| 3656 { | |
| 3657 struct gaim_gtk_window *gtkwin; | |
| 3658 struct gaim_gtk_conversation *gtkconv; | |
| 3659 | |
| 3660 gtkwin = GAIM_GTK_WINDOW(win); | |
| 3661 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 3662 | |
|
4415
c90039137172
[gaim-migrate @ 4688]
Christian Hammond <chipx86@chipx86.com>
parents:
4409
diff
changeset
|
3663 if (new_index > gaim_conversation_get_index(conv)) |
|
c90039137172
[gaim-migrate @ 4688]
Christian Hammond <chipx86@chipx86.com>
parents:
4409
diff
changeset
|
3664 new_index--; |
|
c90039137172
[gaim-migrate @ 4688]
Christian Hammond <chipx86@chipx86.com>
parents:
4409
diff
changeset
|
3665 |
| 4359 | 3666 gtk_notebook_reorder_child(GTK_NOTEBOOK(gtkwin->notebook), |
| 3667 gtkconv->tab_cont, new_index); | |
| 3668 } | |
| 3669 | |
| 3670 static int | |
| 3671 gaim_gtk_get_active_index(const struct gaim_window *win) | |
| 3672 { | |
| 3673 struct gaim_gtk_window *gtkwin; | |
| 3674 | |
| 3675 gtkwin = GAIM_GTK_WINDOW(win); | |
| 3676 | |
| 3677 return gtk_notebook_get_current_page(GTK_NOTEBOOK(gtkwin->notebook)); | |
| 3678 } | |
| 3679 | |
|
4465
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4454
diff
changeset
|
3680 static struct gaim_window_ui_ops window_ui_ops = |
| 4359 | 3681 { |
|
4465
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4454
diff
changeset
|
3682 gaim_gtk_get_conversation_ui_ops, |
| 4359 | 3683 gaim_gtk_new_window, |
| 3684 gaim_gtk_destroy_window, | |
| 3685 gaim_gtk_show, | |
| 3686 gaim_gtk_hide, | |
| 3687 gaim_gtk_raise, | |
| 3688 gaim_gtk_flash, | |
| 3689 gaim_gtk_switch_conversation, | |
| 3690 gaim_gtk_add_conversation, | |
| 3691 gaim_gtk_remove_conversation, | |
| 3692 gaim_gtk_move_conversation, | |
| 3693 gaim_gtk_get_active_index | |
| 3694 }; | |
| 3695 | |
| 3696 static void | |
| 3697 update_convo_add_button(struct gaim_conversation *conv) | |
| 3698 { | |
| 3699 struct gaim_gtk_conversation *gtkconv; | |
| 3700 struct gaim_connection *gc; | |
| 3701 GaimConversationType type; | |
| 3702 GtkWidget *parent; | |
| 3703 | |
| 3704 type = gaim_conversation_get_type(conv); | |
| 3705 gc = gaim_conversation_get_gc(conv); | |
| 3706 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 3707 parent = gtk_widget_get_parent(gtkconv->u.im->add); | |
| 3708 | |
| 4687 | 3709 if (gaim_find_buddy(gc->account, gaim_conversation_get_name(conv))) { |
|
4397
ce3a0eba91ef
[gaim-migrate @ 4666]
Christian Hammond <chipx86@chipx86.com>
parents:
4387
diff
changeset
|
3710 gtkconv->u.im->add = |
|
ce3a0eba91ef
[gaim-migrate @ 4666]
Christian Hammond <chipx86@chipx86.com>
parents:
4387
diff
changeset
|
3711 gaim_gtk_change_text(_("Remove"), gtkconv->u.im->add, |
|
ce3a0eba91ef
[gaim-migrate @ 4666]
Christian Hammond <chipx86@chipx86.com>
parents:
4387
diff
changeset
|
3712 GTK_STOCK_REMOVE, type); |
|
ce3a0eba91ef
[gaim-migrate @ 4666]
Christian Hammond <chipx86@chipx86.com>
parents:
4387
diff
changeset
|
3713 gtk_tooltips_set_tip(gtkconv->tooltips, gtkconv->u.im->add, |
|
ce3a0eba91ef
[gaim-migrate @ 4666]
Christian Hammond <chipx86@chipx86.com>
parents:
4387
diff
changeset
|
3714 _("Remove the user from your buddy list"), NULL); |
|
ce3a0eba91ef
[gaim-migrate @ 4666]
Christian Hammond <chipx86@chipx86.com>
parents:
4387
diff
changeset
|
3715 |
| 4359 | 3716 gtk_widget_set_sensitive(gtkconv->u.im->add, |
| 3717 (gc != NULL && gc->prpl->remove_buddy != NULL)); | |
| 3718 } else { | |
|
4397
ce3a0eba91ef
[gaim-migrate @ 4666]
Christian Hammond <chipx86@chipx86.com>
parents:
4387
diff
changeset
|
3719 gtkconv->u.im->add = |
|
ce3a0eba91ef
[gaim-migrate @ 4666]
Christian Hammond <chipx86@chipx86.com>
parents:
4387
diff
changeset
|
3720 gaim_gtk_change_text(_("Add"), gtkconv->u.im->add, |
|
ce3a0eba91ef
[gaim-migrate @ 4666]
Christian Hammond <chipx86@chipx86.com>
parents:
4387
diff
changeset
|
3721 GTK_STOCK_ADD, type); |
|
ce3a0eba91ef
[gaim-migrate @ 4666]
Christian Hammond <chipx86@chipx86.com>
parents:
4387
diff
changeset
|
3722 gtk_tooltips_set_tip(gtkconv->tooltips, gtkconv->u.im->add, |
|
ce3a0eba91ef
[gaim-migrate @ 4666]
Christian Hammond <chipx86@chipx86.com>
parents:
4387
diff
changeset
|
3723 _("Add the user to your buddy list"), NULL); |
| 4359 | 3724 |
| 3725 gtk_widget_set_sensitive(gtkconv->u.im->add, | |
| 3726 (gc != NULL && gc->prpl->add_buddy != NULL)); | |
| 3727 } | |
| 3728 | |
|
4397
ce3a0eba91ef
[gaim-migrate @ 4666]
Christian Hammond <chipx86@chipx86.com>
parents:
4387
diff
changeset
|
3729 g_signal_connect(G_OBJECT(gtkconv->u.im->add), "clicked", |
|
ce3a0eba91ef
[gaim-migrate @ 4666]
Christian Hammond <chipx86@chipx86.com>
parents:
4387
diff
changeset
|
3730 G_CALLBACK(add_cb), conv); |
|
ce3a0eba91ef
[gaim-migrate @ 4666]
Christian Hammond <chipx86@chipx86.com>
parents:
4387
diff
changeset
|
3731 |
|
ce3a0eba91ef
[gaim-migrate @ 4666]
Christian Hammond <chipx86@chipx86.com>
parents:
4387
diff
changeset
|
3732 gtk_box_pack_start(GTK_BOX(parent), gtkconv->u.im->add, |
|
ce3a0eba91ef
[gaim-migrate @ 4666]
Christian Hammond <chipx86@chipx86.com>
parents:
4387
diff
changeset
|
3733 FALSE, FALSE, 0); |
|
ce3a0eba91ef
[gaim-migrate @ 4666]
Christian Hammond <chipx86@chipx86.com>
parents:
4387
diff
changeset
|
3734 gtk_box_reorder_child(GTK_BOX(parent), gtkconv->u.im->add, 3); |
|
ce3a0eba91ef
[gaim-migrate @ 4666]
Christian Hammond <chipx86@chipx86.com>
parents:
4387
diff
changeset
|
3735 gtk_button_set_relief(GTK_BUTTON(gtkconv->u.im->add), GTK_RELIEF_NONE); |
|
ce3a0eba91ef
[gaim-migrate @ 4666]
Christian Hammond <chipx86@chipx86.com>
parents:
4387
diff
changeset
|
3736 gtk_size_group_add_widget(gtkconv->sg, gtkconv->u.im->add); |
| 4359 | 3737 } |
| 3738 | |
|
4465
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4454
diff
changeset
|
3739 struct gaim_window_ui_ops * |
|
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4454
diff
changeset
|
3740 gaim_get_gtk_window_ui_ops(void) |
| 4359 | 3741 { |
|
4465
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4454
diff
changeset
|
3742 return &window_ui_ops; |
| 4359 | 3743 } |
| 3744 | |
| 3745 /************************************************************************** | |
|
4465
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4454
diff
changeset
|
3746 * Conversation UI operations |
| 4359 | 3747 **************************************************************************/ |
| 3748 static void | |
| 3749 gaim_gtkconv_destroy(struct gaim_conversation *conv) | |
| 3750 { | |
| 3751 struct gaim_gtk_conversation *gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 3752 | |
| 3753 if (gtkconv->dialogs.fg_color != NULL) | |
| 3754 gtk_widget_destroy(gtkconv->dialogs.fg_color); | |
| 3755 | |
| 3756 if (gtkconv->dialogs.bg_color != NULL) | |
| 3757 gtk_widget_destroy(gtkconv->dialogs.bg_color); | |
| 3758 | |
| 3759 if (gtkconv->dialogs.font != NULL) | |
| 3760 gtk_widget_destroy(gtkconv->dialogs.font); | |
| 3761 | |
| 3762 if (gtkconv->dialogs.smiley != NULL) | |
| 3763 gtk_widget_destroy(gtkconv->dialogs.smiley); | |
| 3764 | |
| 3765 if (gtkconv->dialogs.link != NULL) | |
| 3766 gtk_widget_destroy(gtkconv->dialogs.link); | |
| 3767 | |
| 3768 if (gtkconv->dialogs.log != NULL) | |
| 3769 gtk_widget_destroy(gtkconv->dialogs.log); | |
| 3770 | |
|
4571
51e988d015ed
[gaim-migrate @ 4852]
Christian Hammond <chipx86@chipx86.com>
parents:
4561
diff
changeset
|
3771 gtk_widget_destroy(gtkconv->tab_cont); |
| 4892 | 3772 g_object_unref(gtkconv->tab_cont); |
|
4571
51e988d015ed
[gaim-migrate @ 4852]
Christian Hammond <chipx86@chipx86.com>
parents:
4561
diff
changeset
|
3773 |
| 4359 | 3774 if (gaim_conversation_get_type(conv) == GAIM_CONV_IM) { |
| 4755 | 3775 if (gtkconv->u.im->icon_timer != 0) |
| 3776 g_source_remove(gtkconv->u.im->icon_timer); | |
| 3777 | |
| 4359 | 3778 if (gtkconv->u.im->save_icon != NULL) |
| 3779 gtk_widget_destroy(gtkconv->u.im->save_icon); | |
| 3780 | |
| 3781 if (gtkconv->u.im->anim != NULL) | |
| 4793 | 3782 g_object_unref(G_OBJECT(gtkconv->u.im->anim)); |
| 4359 | 3783 |
| 3784 g_free(gtkconv->u.im); | |
| 3785 } | |
| 3786 else if (gaim_conversation_get_type(conv) == GAIM_CONV_CHAT) { | |
| 3787 g_free(gtkconv->u.chat); | |
| 3788 } | |
| 3789 | |
| 4633 | 3790 gtk_object_sink(GTK_OBJECT(gtkconv->tooltips)); |
| 3791 | |
| 4359 | 3792 g_free(gtkconv); |
| 3793 } | |
| 3794 | |
| 3795 static void | |
| 3796 gaim_gtkconv_write_im(struct gaim_conversation *conv, const char *who, | |
| 3797 const char *message, size_t len, int flags, time_t mtime) | |
| 3798 { | |
| 3799 struct gaim_gtk_conversation *gtkconv; | |
| 3800 | |
| 3801 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 3802 | |
|
4382
76223649765b
[gaim-migrate @ 4648]
Christian Hammond <chipx86@chipx86.com>
parents:
4378
diff
changeset
|
3803 /* Play a sound, if specified in prefs. */ |
| 4359 | 3804 if (gtkconv->make_sound) { |
| 3805 if (flags & WFLAG_RECV) { | |
| 3806 if (gtkconv->u.im->a_virgin && | |
| 3807 (sound_options & OPT_SOUND_FIRST_RCV)) { | |
| 3808 | |
| 4561 | 3809 gaim_sound_play_event(GAIM_SOUND_FIRST_RECEIVE); |
| 4359 | 3810 } |
| 3811 else | |
| 4561 | 3812 gaim_sound_play_event(GAIM_SOUND_RECEIVE); |
| 4359 | 3813 } |
| 3814 else { | |
| 4561 | 3815 gaim_sound_play_event(GAIM_SOUND_SEND); |
| 4359 | 3816 } |
| 3817 } | |
| 3818 | |
| 3819 gtkconv->u.im->a_virgin = FALSE; | |
| 3820 | |
| 3821 gaim_conversation_write(conv, who, message, len, flags, mtime); | |
| 3822 } | |
| 3823 | |
| 3824 static void | |
| 3825 gaim_gtkconv_write_chat(struct gaim_conversation *conv, const char *who, | |
| 3826 const char *message, int flags, time_t mtime) | |
| 3827 { | |
| 3828 struct gaim_gtk_conversation *gtkconv; | |
| 3829 | |
| 3830 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 3831 | |
|
4382
76223649765b
[gaim-migrate @ 4648]
Christian Hammond <chipx86@chipx86.com>
parents:
4378
diff
changeset
|
3832 /* Play a sound, if specified in prefs. */ |
| 4359 | 3833 if (gtkconv->make_sound) { |
| 3834 if (!(flags & WFLAG_WHISPER) && (flags & WFLAG_SEND)) | |
| 4561 | 3835 gaim_sound_play_event(GAIM_SOUND_CHAT_YOU_SAY); |
| 4359 | 3836 else if (flags & WFLAG_RECV) { |
| 3837 if ((flags & WFLAG_NICK) && (sound_options & OPT_SOUND_CHAT_NICK)) | |
| 4561 | 3838 gaim_sound_play_event(GAIM_SOUND_CHAT_NICK); |
| 4359 | 3839 else |
| 4561 | 3840 gaim_sound_play_event(GAIM_SOUND_CHAT_SAY); |
| 4359 | 3841 } |
| 3842 } | |
| 3843 | |
| 3844 if (chat_options & OPT_CHAT_COLORIZE) | |
| 3845 flags |= WFLAG_COLORIZE; | |
| 3846 | |
| 3847 gaim_conversation_write(conv, who, message, -1, flags, mtime); | |
| 3848 } | |
| 3849 | |
| 3850 static void | |
| 3851 gaim_gtkconv_write_conv(struct gaim_conversation *conv, const char *who, | |
| 3852 const char *message, size_t length, int flags, | |
| 3853 time_t mtime) | |
| 3854 { | |
| 3855 struct gaim_gtk_conversation *gtkconv; | |
| 3856 struct gaim_connection *gc; | |
| 3857 int gtk_font_options = 0; | |
| 3858 GString *log_str; | |
| 3859 FILE *fd; | |
| 3860 char buf[BUF_LONG]; | |
| 3861 char buf2[BUF_LONG]; | |
| 3862 char mdate[64]; | |
| 3863 char color[10]; | |
| 3864 char *str; | |
| 3865 char *with_font_tag; | |
| 4896 | 3866 char *sml_attrib = NULL; |
| 4895 | 3867 |
| 3868 if(length == -1) | |
| 3869 length = strlen(message) + 1; | |
| 3870 | |
| 4359 | 3871 gtkconv = GAIM_GTK_CONVERSATION(conv); |
| 3872 gc = gaim_conversation_get_gc(conv); | |
| 3873 | |
| 3874 strftime(mdate, sizeof(mdate), "%H:%M:%S", localtime(&mtime)); | |
| 3875 | |
| 4896 | 3876 if(gc) |
| 3877 sml_attrib = g_strdup_printf("sml=\"%s\"", gc->prpl->name); | |
| 3878 | |
| 4359 | 3879 gtk_font_options ^= GTK_IMHTML_NO_COMMENTS; |
| 3880 | |
| 3881 if (convo_options & OPT_CONVO_IGNORE_COLOUR) | |
| 3882 gtk_font_options ^= GTK_IMHTML_NO_COLOURS; | |
| 3883 | |
| 3884 if (convo_options & OPT_CONVO_IGNORE_FONTS) | |
| 3885 gtk_font_options ^= GTK_IMHTML_NO_FONTS; | |
| 3886 | |
| 3887 if (convo_options & OPT_CONVO_IGNORE_SIZES) | |
| 3888 gtk_font_options ^= GTK_IMHTML_NO_SIZES; | |
| 3889 | |
| 3890 if (!(logging_options & OPT_LOG_STRIP_HTML)) | |
| 3891 gtk_font_options ^= GTK_IMHTML_RETURN_LOG; | |
| 3892 | |
| 3893 if (flags & WFLAG_SYSTEM) { | |
| 3894 if (convo_options & OPT_CONVO_SHOW_TIME) | |
| 3895 g_snprintf(buf, BUF_LONG, "<FONT SIZE=\"2\">(%s) </FONT><B>%s</B>", | |
| 3896 mdate, message); | |
| 3897 else | |
| 3898 g_snprintf(buf, BUF_LONG, "<B>%s</B>", message); | |
| 3899 | |
| 3900 g_snprintf(buf2, sizeof(buf2), | |
| 3901 "<FONT SIZE=\"2\"><!--(%s) --></FONT><B>%s</B><BR>", | |
| 3902 mdate, message); | |
| 3903 | |
| 3904 gtk_imhtml_append_text(GTK_IMHTML(gtkconv->imhtml), buf2, -1, 0); | |
| 3905 | |
| 3906 if (logging_options & OPT_LOG_STRIP_HTML) { | |
| 3907 char *t1 = strip_html(buf); | |
| 3908 | |
| 3909 conv->history = g_string_append(conv->history, t1); | |
| 3910 conv->history = g_string_append(conv->history, "\n"); | |
| 3911 | |
| 3912 g_free(t1); | |
| 3913 } | |
| 3914 else { | |
| 3915 conv->history = g_string_append(conv->history, buf); | |
| 3916 conv->history = g_string_append(conv->history, "<BR>\n"); | |
| 3917 } | |
| 3918 | |
| 3919 if (!(flags & WFLAG_NOLOG) && gaim_conversation_is_logging(conv)) { | |
| 3920 | |
| 3921 char *t1; | |
| 3922 char nm[256]; | |
| 3923 | |
| 3924 if (logging_options & OPT_LOG_STRIP_HTML) | |
| 3925 t1 = strip_html(buf); | |
| 3926 else | |
| 3927 t1 = buf; | |
| 3928 | |
| 3929 if (gaim_conversation_get_type(conv) == GAIM_CONV_CHAT) | |
| 3930 g_snprintf(nm, sizeof(nm), "%s.chat", | |
| 3931 gaim_conversation_get_name(conv)); | |
| 3932 else | |
| 3933 strncpy(nm, gaim_conversation_get_name(conv), sizeof(nm)); | |
| 3934 | |
| 3935 fd = open_log_file(nm, | |
| 3936 (gaim_conversation_get_type(conv) == GAIM_CONV_CHAT)); | |
| 3937 | |
| 3938 if (fd) { | |
| 3939 if (logging_options & OPT_LOG_STRIP_HTML) | |
| 3940 fprintf(fd, "%s\n", t1); | |
| 3941 else | |
| 3942 fprintf(fd, "%s<BR>\n", t1); | |
| 3943 | |
| 3944 fclose(fd); | |
| 3945 } | |
| 3946 | |
| 3947 if (logging_options & OPT_LOG_STRIP_HTML) | |
| 3948 g_free(t1); | |
| 3949 } | |
| 3950 } | |
| 3951 else if (flags & WFLAG_NOLOG) { | |
| 3952 g_snprintf(buf, BUF_LONG, | |
| 3953 "<B><FONT COLOR=\"#777777\">%s</FONT></B><BR>", | |
| 3954 message); | |
| 3955 | |
| 3956 gtk_imhtml_append_text(GTK_IMHTML(gtkconv->imhtml), buf, -1, 0); | |
| 3957 } | |
| 3958 else { | |
| 4895 | 3959 char *new_message = g_memdup(message, length); |
| 3960 | |
| 4359 | 3961 if (flags & WFLAG_WHISPER) { |
| 3962 str = g_malloc(1024); | |
| 3963 | |
| 3964 /* If we're whispering, it's not an autoresponse. */ | |
| 3965 if (meify(new_message, length)) { | |
| 3966 g_snprintf(str, 1024, "***%s", who); | |
| 3967 strcpy(color, "#6C2585"); | |
| 3968 } | |
| 3969 else { | |
| 3970 g_snprintf(str, 1024, "*%s*:", who); | |
| 3971 strcpy(color, "#00FF00"); | |
| 3972 } | |
| 3973 } | |
| 3974 else { | |
| 3975 if (meify(new_message, length)) { | |
| 3976 str = g_malloc(1024); | |
| 3977 | |
| 3978 if (flags & WFLAG_AUTO) | |
| 3979 g_snprintf(str, 1024, "%s ***%s", AUTO_RESPONSE, who); | |
| 3980 else | |
| 3981 g_snprintf(str, 1024, "***%s", who); | |
| 3982 | |
| 3983 if (flags & WFLAG_NICK) | |
| 3984 strcpy(color, "#AF7F00"); | |
| 3985 else | |
| 3986 strcpy(color, "#062585"); | |
| 3987 } | |
| 3988 else { | |
| 3989 str = g_malloc(1024); | |
| 3990 | |
| 3991 if (flags & WFLAG_AUTO) | |
| 3992 g_snprintf(str, 1024, "%s %s", who, AUTO_RESPONSE); | |
| 3993 else | |
| 3994 g_snprintf(str, 1024, "%s:", who); | |
| 3995 | |
| 3996 if (flags & WFLAG_NICK) | |
| 3997 strcpy(color, "#AF7F00"); | |
| 3998 else if (flags & WFLAG_RECV) { | |
| 3999 if (flags & WFLAG_COLORIZE) { | |
| 4000 const char *u; | |
| 4001 int m = 0; | |
| 4002 | |
| 4003 for (u = who; *u != '\0'; u++) | |
| 4004 m += *u; | |
| 4005 | |
| 4006 m = m % NUM_NICK_COLORS; | |
| 4007 | |
| 4008 strcpy(color, nick_colors[m]); | |
| 4009 } | |
| 4010 else | |
| 4011 strcpy(color, "#A82F2F"); | |
| 4012 } | |
| 4013 else if (flags & WFLAG_SEND) | |
| 4014 strcpy(color, "#16569E"); | |
| 4015 } | |
| 4016 } | |
| 4017 | |
| 4018 if (convo_options & OPT_CONVO_SHOW_TIME) | |
| 4019 g_snprintf(buf, BUF_LONG, | |
| 4896 | 4020 "<FONT COLOR=\"%s\" %s><FONT SIZE=\"2\">(%s) </FONT>" |
| 4021 "<B>%s</B></FONT> ", color, | |
| 4022 sml_attrib ? sml_attrib : "", mdate, str); | |
| 4359 | 4023 else |
| 4024 g_snprintf(buf, BUF_LONG, | |
| 4896 | 4025 "<FONT COLOR=\"%s\" %s><B>%s</B></FONT> ", color, |
| 4026 sml_attrib ? sml_attrib : "", str); | |
| 4359 | 4027 |
| 4028 g_snprintf(buf2, BUF_LONG, | |
| 4896 | 4029 "<FONT COLOR=\"%s\" %s><FONT SIZE=\"2\"><!--(%s) --></FONT>" |
| 4359 | 4030 "<B>%s</B></FONT> ", |
| 4896 | 4031 color, sml_attrib ? sml_attrib : "", mdate, str); |
| 4359 | 4032 |
| 4033 g_free(str); | |
| 4034 | |
| 4035 gtk_imhtml_append_text(GTK_IMHTML(gtkconv->imhtml), buf2, -1, 0); | |
| 4036 | |
| 4895 | 4037 if(gc){ |
| 4896 | 4038 char *pre = g_strdup_printf("<font %s>", sml_attrib ? sml_attrib : ""); |
| 4895 | 4039 char *post = "</font>"; |
| 4040 int pre_len = strlen(pre); | |
| 4041 int post_len = strlen(post); | |
| 4042 | |
| 4043 with_font_tag = g_malloc(length + pre_len + post_len + 1); | |
| 4044 | |
| 4045 strcpy(with_font_tag, pre); | |
| 4046 memcpy(with_font_tag + pre_len, new_message, length); | |
| 4047 strcpy(with_font_tag + pre_len + length, post); | |
| 4048 | |
| 4049 length += pre_len + post_len; | |
| 4050 g_free(pre); | |
| 4051 } | |
| 4608 | 4052 else |
| 4895 | 4053 with_font_tag = g_memdup(new_message, length); |
| 4359 | 4054 |
| 4055 log_str = gtk_imhtml_append_text(GTK_IMHTML(gtkconv->imhtml), | |
| 4895 | 4056 with_font_tag, length, gtk_font_options); |
| 4359 | 4057 |
| 4058 gtk_imhtml_append_text(GTK_IMHTML(gtkconv->imhtml), "<BR>", -1, 0); | |
| 4059 | |
| 4060 /* XXX This needs to be updated for the new length argument. */ | |
| 4061 if (logging_options & OPT_LOG_STRIP_HTML) { | |
| 4062 char *t1, *t2; | |
| 4063 | |
| 4064 t1 = strip_html(buf); | |
| 4065 t2 = strip_html(new_message); | |
| 4066 | |
| 4067 conv->history = g_string_append(conv->history, t1); | |
| 4068 conv->history = g_string_append(conv->history, t2); | |
| 4069 conv->history = g_string_append(conv->history, "\n"); | |
| 4070 | |
| 4071 g_free(t1); | |
| 4072 g_free(t2); | |
| 4073 } | |
| 4074 else { | |
| 4075 char *t1, *t2; | |
| 4076 | |
| 4077 t1 = html_logize(buf); | |
| 4078 t2 = html_logize(new_message); | |
| 4079 | |
| 4080 conv->history = g_string_append(conv->history, t1); | |
| 4081 conv->history = g_string_append(conv->history, t2); | |
| 4082 conv->history = g_string_append(conv->history, "\n"); | |
| 4083 conv->history = g_string_append(conv->history, log_str->str); | |
| 4084 conv->history = g_string_append(conv->history, "<BR>\n"); | |
| 4085 | |
| 4086 g_free(t1); | |
| 4087 g_free(t2); | |
| 4088 } | |
| 4089 | |
| 4090 /* XXX This needs to be updated for the new length argument. */ | |
| 4091 if (gaim_conversation_is_logging(conv)) { | |
| 4092 char *t1, *t2; | |
| 4093 char nm[256]; | |
| 4094 | |
| 4095 if (gaim_conversation_get_type(conv) == GAIM_CONV_CHAT) | |
| 4096 g_snprintf(nm, sizeof(nm), "%s.chat", | |
| 4097 gaim_conversation_get_name(conv)); | |
| 4098 else | |
| 4099 strncpy(nm, gaim_conversation_get_name(conv), sizeof(nm)); | |
| 4100 | |
| 4101 if (logging_options & OPT_LOG_STRIP_HTML) { | |
| 4102 t1 = strip_html(buf); | |
| 4103 t2 = strip_html(with_font_tag); | |
| 4104 } | |
| 4105 else { | |
| 4106 t1 = html_logize(buf); | |
| 4107 t2 = html_logize(with_font_tag); | |
| 4108 } | |
| 4109 | |
| 4110 fd = open_log_file(nm, | |
| 4111 (gaim_conversation_get_type(conv) == GAIM_CONV_CHAT)); | |
| 4112 | |
| 4113 if (fd) { | |
| 4114 if (logging_options & OPT_LOG_STRIP_HTML) | |
| 4115 fprintf(fd, "%s%s\n", t1, t2); | |
| 4116 else { | |
| 4117 fprintf(fd, "%s%s%s<BR>\n", t1, t2, log_str->str); | |
| 4118 g_string_free(log_str, TRUE); | |
| 4119 } | |
| 4120 | |
| 4121 fclose(fd); | |
| 4122 } | |
| 4123 | |
| 4124 g_free(t1); | |
| 4125 g_free(t2); | |
| 4126 } | |
| 4127 | |
| 4896 | 4128 if(sml_attrib) |
| 4129 g_free(sml_attrib); | |
| 4359 | 4130 g_free(with_font_tag); |
| 4131 g_free(new_message); | |
| 4132 } | |
| 4133 } | |
| 4134 | |
| 4135 static void | |
| 4136 gaim_gtkconv_chat_add_user(struct gaim_conversation *conv, const char *user) | |
| 4137 { | |
| 4138 struct gaim_chat *chat; | |
| 4139 struct gaim_gtk_conversation *gtkconv; | |
| 4140 struct gaim_gtk_chat_pane *gtkchat; | |
| 4141 char tmp[BUF_LONG]; | |
| 4142 int num_users; | |
| 4143 int pos; | |
| 4144 | |
| 4145 chat = GAIM_CHAT(conv); | |
| 4146 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 4147 gtkchat = gtkconv->u.chat; | |
| 4148 | |
| 4149 num_users = g_list_length(gaim_chat_get_users(chat)); | |
| 4150 | |
| 4151 g_snprintf(tmp, sizeof(tmp), | |
| 4152 ngettext("%d person in room", "%d people in room", | |
| 4153 num_users), | |
| 4154 num_users); | |
| 4155 | |
| 4156 gtk_label_set_text(GTK_LABEL(gtkchat->count), tmp); | |
| 4157 | |
| 4158 if (gtkconv->make_sound) | |
| 4561 | 4159 gaim_sound_play_event(GAIM_SOUND_CHAT_JOIN); |
| 4359 | 4160 |
| 4161 pos = g_list_index(gaim_chat_get_users(chat), user); | |
| 4162 | |
| 4163 add_chat_buddy_common(conv, user, pos); | |
| 4164 } | |
| 4165 | |
| 4166 static void | |
| 4167 gaim_gtkconv_chat_rename_user(struct gaim_conversation *conv, | |
| 4168 const char *old_name, const char *new_name) | |
| 4169 { | |
| 4170 struct gaim_chat *chat; | |
| 4171 struct gaim_gtk_conversation *gtkconv; | |
| 4172 struct gaim_gtk_chat_pane *gtkchat; | |
| 4173 GtkTreeIter iter; | |
| 4174 GtkTreeModel *model; | |
| 4175 GList *names; | |
| 4176 int pos; | |
| 4177 int f = 1; | |
| 4178 | |
| 4179 chat = GAIM_CHAT(conv); | |
| 4180 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 4181 gtkchat = gtkconv->u.chat; | |
| 4182 | |
| 4183 for (names = gaim_chat_get_users(chat); | |
| 4184 names != NULL; | |
| 4185 names = names->next) { | |
| 4186 | |
| 4187 char *u = (char *)names->data; | |
| 4188 | |
| 4793 | 4189 if (!gaim_utf8_strcasecmp(u, old_name)) { |
| 4359 | 4190 model = gtk_tree_view_get_model(GTK_TREE_VIEW(gtkchat->list)); |
| 4191 | |
| 4192 if (!gtk_tree_model_get_iter_first(GTK_TREE_MODEL(model), &iter)) | |
| 4193 break; | |
| 4194 | |
| 4195 while (f != 0) { | |
| 4196 char *val; | |
| 4197 | |
| 4198 gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, 1, &val, -1); | |
| 4199 | |
| 4793 | 4200 if (!gaim_utf8_strcasecmp(old_name, val)) { |
| 4359 | 4201 gtk_list_store_remove(GTK_LIST_STORE(model), &iter); |
| 4640 | 4202 break; |
| 4203 } | |
| 4359 | 4204 |
| 4205 f = gtk_tree_model_iter_next(GTK_TREE_MODEL(model), &iter); | |
| 4206 | |
| 4207 g_free(val); | |
| 4208 } | |
| 4209 | |
| 4210 break; | |
| 4211 } | |
| 4212 } | |
| 4213 | |
| 4214 if (!names) | |
| 4215 return; | |
| 4216 | |
| 4217 pos = g_list_index(gaim_chat_get_users(chat), new_name); | |
| 4218 | |
| 4219 add_chat_buddy_common(conv, new_name, pos); | |
| 4220 } | |
| 4221 | |
| 4222 static void | |
| 4223 gaim_gtkconv_chat_remove_user(struct gaim_conversation *conv, const char *user) | |
| 4224 { | |
| 4225 struct gaim_chat *chat; | |
| 4226 struct gaim_gtk_conversation *gtkconv; | |
| 4227 struct gaim_gtk_chat_pane *gtkchat; | |
| 4228 GtkTreeIter iter; | |
| 4229 GtkTreeModel *model; | |
| 4230 GList *names; | |
| 4231 char tmp[BUF_LONG]; | |
| 4232 int num_users; | |
| 4233 int f = 1; | |
| 4234 | |
| 4235 chat = GAIM_CHAT(conv); | |
| 4236 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 4237 gtkchat = gtkconv->u.chat; | |
| 4238 | |
| 4239 num_users = g_list_length(gaim_chat_get_users(chat)) - 1; | |
| 4240 | |
| 4241 for (names = gaim_chat_get_users(chat); | |
| 4242 names != NULL; | |
| 4243 names = names->next) { | |
| 4244 | |
| 4245 char *u = (char *)names->data; | |
| 4246 | |
| 4793 | 4247 if (!gaim_utf8_strcasecmp(u, user)) { |
| 4359 | 4248 model = gtk_tree_view_get_model(GTK_TREE_VIEW(gtkchat->list)); |
| 4249 | |
| 4250 if (!gtk_tree_model_get_iter_first(GTK_TREE_MODEL(model), &iter)) | |
| 4251 break; | |
| 4252 | |
| 4253 while (f != 0) { | |
| 4254 char *val; | |
| 4255 | |
| 4256 gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, 1, &val, -1); | |
| 4257 | |
| 4793 | 4258 if (!gaim_utf8_strcasecmp(user, val)) |
| 4359 | 4259 gtk_list_store_remove(GTK_LIST_STORE(model), &iter); |
| 4260 | |
| 4261 f = gtk_tree_model_iter_next(GTK_TREE_MODEL(model), &iter); | |
| 4262 | |
| 4263 g_free(val); | |
| 4264 } | |
| 4265 | |
| 4266 break; | |
| 4267 } | |
| 4268 } | |
| 4269 | |
| 4270 if (names == NULL) | |
| 4271 return; | |
| 4272 | |
| 4273 g_snprintf(tmp, sizeof(tmp), | |
| 4274 ngettext("%d person in room", "%d people in room", | |
| 4275 num_users), num_users); | |
| 4276 | |
| 4277 gtk_label_set_text(GTK_LABEL(gtkchat->count), tmp); | |
| 4278 | |
| 4279 if (gtkconv->make_sound) | |
| 4561 | 4280 gaim_sound_play_event(GAIM_SOUND_CHAT_LEAVE); |
| 4359 | 4281 } |
| 4282 | |
| 4283 static void | |
| 4284 gaim_gtkconv_set_title(struct gaim_conversation *conv, const char *title) | |
| 4285 { | |
| 4286 struct gaim_gtk_conversation *gtkconv; | |
| 4681 | 4287 struct gaim_window *win; |
| 4288 struct gaim_gtk_window *gtkwin; | |
| 4289 | |
| 4290 win = gaim_conversation_get_window(conv); | |
| 4291 gtkwin = GAIM_GTK_WINDOW(win); | |
| 4359 | 4292 gtkconv = GAIM_GTK_CONVERSATION(conv); |
| 4293 | |
| 4294 gtk_label_set_text(GTK_LABEL(gtkconv->tab_label), title); | |
| 4681 | 4295 |
| 4296 if(conv == gaim_window_get_active_conversation(win)) | |
| 4297 gtk_window_set_title(GTK_WINDOW(gtkwin->window), title); | |
| 4359 | 4298 } |
| 4299 | |
| 4300 static void | |
| 4301 gaim_gtkconv_updated(struct gaim_conversation *conv, GaimConvUpdateType type) | |
| 4302 { | |
| 4303 struct gaim_window *win; | |
| 4736 | 4304 struct gaim_gtk_window *gtkwin; |
| 4359 | 4305 struct gaim_gtk_conversation *gtkconv; |
| 4306 struct gaim_gtk_chat_pane *gtkchat; | |
| 4307 struct gaim_chat *chat; | |
| 4308 | |
| 4309 win = gaim_conversation_get_window(conv); | |
| 4736 | 4310 gtkwin = GAIM_GTK_WINDOW(win); |
| 4359 | 4311 gtkconv = GAIM_GTK_CONVERSATION(conv); |
| 4312 | |
| 4491 | 4313 if (type == GAIM_CONV_UPDATE_ACCOUNT) { |
| 4359 | 4314 gaim_conversation_autoset_title(conv); |
| 4315 gaim_gtkconv_update_buddy_icon(conv); | |
| 4316 gaim_gtkconv_update_buttons_by_protocol(conv); | |
| 4317 | |
| 4685 | 4318 g_timeout_add(0, (GSourceFunc)update_send_as_selection, win); |
| 4359 | 4319 |
| 4320 smiley_themeize(gtkconv->imhtml); | |
| 4321 } | |
| 4322 else if (type == GAIM_CONV_UPDATE_TYPING || | |
| 4323 type == GAIM_CONV_UPDATE_UNSEEN) { | |
| 4324 GtkStyle *style; | |
| 4325 struct gaim_im *im = NULL; | |
| 4326 | |
| 4736 | 4327 |
| 4359 | 4328 if (gaim_conversation_get_type(conv) == GAIM_CONV_IM) |
| 4329 im = GAIM_IM(conv); | |
| 4330 | |
| 4331 style = gtk_style_new(); | |
| 4332 | |
| 4333 if (!GTK_WIDGET_REALIZED(gtkconv->tab_label)) | |
| 4334 gtk_widget_realize(gtkconv->tab_label); | |
| 4335 | |
| 4757 | 4336 pango_font_description_free(style->font_desc); |
| 4635 | 4337 style->font_desc = pango_font_description_copy( |
| 4338 gtk_widget_get_style(gtkconv->tab_label)->font_desc); | |
| 4359 | 4339 |
| 4340 if (im != NULL && gaim_im_get_typing_state(im) == TYPING) { | |
| 4577 | 4341 style->fg[GTK_STATE_NORMAL].red = 0x4646; |
| 4342 style->fg[GTK_STATE_NORMAL].green = 0xA0A0; | |
| 4343 style->fg[GTK_STATE_NORMAL].blue = 0x4646; | |
| 4344 style->fg[GTK_STATE_ACTIVE] = style->fg[GTK_STATE_NORMAL]; | |
| 4359 | 4345 } |
| 4346 else if (im != NULL && gaim_im_get_typing_state(im) == TYPED) { | |
| 4577 | 4347 style->fg[GTK_STATE_NORMAL].red = 0xD1D1; |
| 4348 style->fg[GTK_STATE_NORMAL].green = 0x9494; | |
| 4349 style->fg[GTK_STATE_NORMAL].blue = 0x0C0C; | |
| 4350 style->fg[GTK_STATE_ACTIVE] = style->fg[GTK_STATE_NORMAL]; | |
| 4359 | 4351 } |
| 4352 else if (gaim_conversation_get_unseen(conv) == GAIM_UNSEEN_NICK) { | |
| 4577 | 4353 style->fg[GTK_STATE_ACTIVE].red = 0x3131; |
| 4354 style->fg[GTK_STATE_ACTIVE].green = 0x4E4E; | |
| 4355 style->fg[GTK_STATE_ACTIVE].blue = 0x6C6C; | |
| 4578 | 4356 style->fg[GTK_STATE_NORMAL] = style->fg[GTK_STATE_ACTIVE]; |
| 4359 | 4357 } |
| 4358 else if (gaim_conversation_get_unseen(conv) == GAIM_UNSEEN_TEXT) { | |
| 4577 | 4359 style->fg[GTK_STATE_ACTIVE].red = 0xDFDF; |
| 4360 style->fg[GTK_STATE_ACTIVE].green = 0x4242; | |
| 4361 style->fg[GTK_STATE_ACTIVE].blue = 0x1E1E; | |
| 4578 | 4362 style->fg[GTK_STATE_NORMAL] = style->fg[GTK_STATE_ACTIVE]; |
| 4359 | 4363 } |
| 4364 | |
| 4365 gtk_widget_set_style(gtkconv->tab_label, style); | |
| 4635 | 4366 g_object_unref(G_OBJECT(style)); |
| 4736 | 4367 |
| 4812 | 4368 if(conv == gaim_window_get_active_conversation(win)) { |
| 4736 | 4369 update_typing_icon(conv); |
| 4370 } | |
| 4371 | |
| 4359 | 4372 } |
| 4373 else if (type == GAIM_CONV_UPDATE_TOPIC) { | |
| 4374 chat = GAIM_CHAT(conv); | |
| 4375 gtkchat = gtkconv->u.chat; | |
| 4376 | |
| 4377 gtk_entry_set_text(GTK_ENTRY(gtkchat->topic_text), | |
| 4378 gaim_chat_get_topic(chat)); | |
| 4379 } | |
| 4380 else if (type == GAIM_CONV_ACCOUNT_ONLINE || | |
| 4381 type == GAIM_CONV_ACCOUNT_OFFLINE) { | |
| 4382 | |
|
4360
c435a29370b8
[gaim-migrate @ 4626]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
4383 generate_send_as_items(win, NULL); |
| 4359 | 4384 } |
|
4397
ce3a0eba91ef
[gaim-migrate @ 4666]
Christian Hammond <chipx86@chipx86.com>
parents:
4387
diff
changeset
|
4385 else if(type == GAIM_CONV_UPDATE_ADD || |
|
ce3a0eba91ef
[gaim-migrate @ 4666]
Christian Hammond <chipx86@chipx86.com>
parents:
4387
diff
changeset
|
4386 type == GAIM_CONV_UPDATE_REMOVE) { |
| 4736 | 4387 |
|
4397
ce3a0eba91ef
[gaim-migrate @ 4666]
Christian Hammond <chipx86@chipx86.com>
parents:
4387
diff
changeset
|
4388 update_convo_add_button(conv); |
|
ce3a0eba91ef
[gaim-migrate @ 4666]
Christian Hammond <chipx86@chipx86.com>
parents:
4387
diff
changeset
|
4389 } |
| 4359 | 4390 } |
| 4391 | |
|
4465
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4454
diff
changeset
|
4392 static struct gaim_conversation_ui_ops conversation_ui_ops = |
| 4359 | 4393 { |
| 4394 gaim_gtkconv_destroy, /* destroy_conversation */ | |
| 4395 gaim_gtkconv_write_chat, /* write_chat */ | |
| 4396 gaim_gtkconv_write_im, /* write_im */ | |
| 4397 gaim_gtkconv_write_conv, /* write_conv */ | |
| 4398 gaim_gtkconv_chat_add_user, /* chat_add_user */ | |
| 4399 gaim_gtkconv_chat_rename_user, /* chat_rename_user */ | |
| 4400 gaim_gtkconv_chat_remove_user, /* chat_remove_user */ | |
| 4401 gaim_gtkconv_set_title, /* set_title */ | |
| 4402 NULL, /* update_progress */ | |
| 4403 gaim_gtkconv_updated /* updated */ | |
| 4404 }; | |
| 4405 | |
|
4465
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4454
diff
changeset
|
4406 struct gaim_conversation_ui_ops * |
|
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4454
diff
changeset
|
4407 gaim_get_gtk_conversation_ui_ops(void) |
| 4359 | 4408 { |
|
4465
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4454
diff
changeset
|
4409 return &conversation_ui_ops; |
| 4359 | 4410 } |
| 4411 | |
| 4412 /************************************************************************** | |
| 4413 * Public conversation utility functions | |
| 4414 **************************************************************************/ | |
| 4415 void | |
| 4416 gaim_gtkconv_toggle_smileys(void) | |
| 4417 { | |
| 4418 GList *cl; | |
| 4419 struct gaim_conversation *conv; | |
| 4420 struct gaim_gtk_conversation *gtkconv; | |
| 4421 | |
| 4422 for (cl = gaim_get_conversations(); cl != NULL; cl = cl->next) { | |
| 4423 | |
| 4424 conv = (struct gaim_conversation *)cl->data; | |
| 4425 | |
|
4398
a8249a5250b6
[gaim-migrate @ 4667]
Christian Hammond <chipx86@chipx86.com>
parents:
4397
diff
changeset
|
4426 if (!GAIM_IS_GTK_CONVERSATION(conv)) |
| 4359 | 4427 continue; |
| 4428 | |
| 4429 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 4430 | |
| 4431 gtk_imhtml_show_smileys(GTK_IMHTML(gtkconv->imhtml), | |
| 4432 (convo_options & OPT_CONVO_SHOW_SMILEY)); | |
| 4433 } | |
| 4434 } | |
| 4435 | |
| 4436 void | |
| 4437 gaim_gtkconv_toggle_timestamps(void) | |
| 4438 { | |
| 4439 GList *cl; | |
| 4440 struct gaim_conversation *conv; | |
| 4441 struct gaim_gtk_conversation *gtkconv; | |
| 4442 | |
| 4443 for (cl = gaim_get_conversations(); cl != NULL; cl = cl->next) { | |
| 4444 | |
| 4445 conv = (struct gaim_conversation *)cl->data; | |
| 4446 | |
|
4398
a8249a5250b6
[gaim-migrate @ 4667]
Christian Hammond <chipx86@chipx86.com>
parents:
4397
diff
changeset
|
4447 if (!GAIM_IS_GTK_CONVERSATION(conv)) |
| 4359 | 4448 continue; |
| 4449 | |
| 4450 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 4451 | |
| 4452 gtk_imhtml_show_comments(GTK_IMHTML(gtkconv->imhtml), | |
| 4453 (convo_options & OPT_CONVO_SHOW_TIME)); | |
| 4454 } | |
| 4455 } | |
| 4456 | |
| 4457 void | |
| 4458 gaim_gtkconv_toggle_spellchk(void) | |
| 4459 { | |
| 4460 #ifdef USE_GTKSPELL | |
| 4461 GList *cl; | |
| 4462 struct gaim_conversation *conv; | |
| 4463 struct gaim_gtk_conversation *gtkconv; | |
| 4464 GtkSpell *spell; | |
| 4465 | |
|
4859
a9a831508b43
[gaim-migrate @ 5186]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4851
diff
changeset
|
4466 debug_printf("gaim_gtkconv_toggle_spellchk\n"); |
| 4359 | 4467 for (cl = gaim_get_conversations(); cl != NULL; cl = cl->next) { |
| 4468 | |
| 4469 conv = (struct gaim_conversation *)cl->data; | |
| 4470 | |
|
4398
a8249a5250b6
[gaim-migrate @ 4667]
Christian Hammond <chipx86@chipx86.com>
parents:
4397
diff
changeset
|
4471 if (!GAIM_IS_GTK_CONVERSATION(conv)) |
| 4359 | 4472 continue; |
| 4473 | |
| 4474 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 4475 | |
| 4476 if (convo_options & OPT_CONVO_CHECK_SPELLING) | |
| 4477 gtkspell_new_attach(GTK_TEXT_VIEW(gtkconv->entry), NULL, NULL); | |
| 4478 else { | |
| 4479 spell = gtkspell_get_from_text_view(GTK_TEXT_VIEW(gtkconv->entry)); | |
| 4480 gtkspell_detach(spell); | |
| 4481 } | |
| 4482 } | |
| 4483 #endif | |
| 4484 } | |
| 4485 | |
| 4445 | 4486 void |
| 4487 gaim_gtkconv_toggle_close_buttons(void) | |
| 4488 { | |
| 4489 GList *cl; | |
| 4490 struct gaim_conversation *conv; | |
| 4491 struct gaim_gtk_conversation *gtkconv; | |
| 4492 | |
| 4493 for (cl = gaim_get_conversations(); cl != NULL; cl = cl->next) { | |
| 4494 conv = (struct gaim_conversation *)cl->data; | |
| 4495 if (!GAIM_IS_GTK_CONVERSATION(conv)) | |
| 4496 continue; | |
| 4497 | |
| 4498 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 4499 | |
| 4500 if (convo_options & OPT_CONVO_NO_X_ON_TAB) | |
| 4501 gtk_widget_hide(gtkconv->close); | |
| 4502 else | |
| 4503 gtk_widget_show_all(gtkconv->close); | |
| 4504 } | |
| 4505 } | |
| 4506 | |
| 4359 | 4507 static void |
| 4508 remove_icon(struct gaim_gtk_conversation *gtkconv) | |
| 4509 { | |
| 4510 if (gtkconv == NULL) | |
| 4511 return; | |
| 4512 | |
| 4513 if (gtkconv->u.im->icon != NULL) | |
| 4514 gtk_container_remove(GTK_CONTAINER(gtkconv->bbox), | |
| 4515 gtkconv->u.im->icon->parent->parent); | |
| 4516 | |
| 4517 if (gtkconv->u.im->anim != NULL) | |
| 4793 | 4518 g_object_unref(G_OBJECT(gtkconv->u.im->anim)); |
| 4359 | 4519 |
| 4520 if (gtkconv->u.im->icon_timer != 0) | |
| 4521 g_source_remove(gtkconv->u.im->icon_timer); | |
| 4522 | |
| 4523 if (gtkconv->u.im->iter != NULL) | |
| 4524 g_object_unref(G_OBJECT(gtkconv->u.im->iter)); | |
| 4525 | |
| 4526 gtkconv->u.im->icon_timer = 0; | |
| 4527 gtkconv->u.im->icon = NULL; | |
| 4528 gtkconv->u.im->anim = NULL; | |
| 4529 gtkconv->u.im->iter = NULL; | |
| 4530 } | |
| 4531 | |
| 4532 static gboolean | |
| 4533 redraw_icon(gpointer data) | |
| 4534 { | |
| 4535 struct gaim_conversation *conv = (struct gaim_conversation *)data; | |
| 4536 struct gaim_gtk_conversation *gtkconv; | |
| 4537 | |
| 4538 GdkPixbuf *buf; | |
| 4539 GdkPixbuf *scale; | |
| 4540 GdkPixmap *pm; | |
| 4541 GdkBitmap *bm; | |
| 4542 gint delay; | |
| 4543 | |
| 4544 if (!g_list_find(gaim_get_ims(), conv)) { | |
| 4545 debug_printf("I think this is a bug.\n"); | |
| 4546 return FALSE; | |
| 4547 } | |
| 4548 | |
| 4549 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 4550 | |
| 4551 gdk_pixbuf_animation_iter_advance(gtkconv->u.im->iter, NULL); | |
| 4552 buf = gdk_pixbuf_animation_iter_get_pixbuf(gtkconv->u.im->iter); | |
| 4553 | |
| 4554 scale = gdk_pixbuf_scale_simple(buf, | |
| 4555 MAX(gdk_pixbuf_get_width(buf) * SCALE(gtkconv->u.im->anim) / | |
| 4556 gdk_pixbuf_animation_get_width(gtkconv->u.im->anim), 1), | |
| 4557 MAX(gdk_pixbuf_get_height(buf) * SCALE(gtkconv->u.im->anim) / | |
| 4558 gdk_pixbuf_animation_get_height(gtkconv->u.im->anim), 1), | |
| 4559 GDK_INTERP_NEAREST); | |
| 4560 | |
| 4561 gdk_pixbuf_render_pixmap_and_mask(scale, &pm, &bm, 100); | |
| 4793 | 4562 g_object_unref(G_OBJECT(scale)); |
| 4635 | 4563 gtk_image_set_from_pixmap(GTK_IMAGE(gtkconv->u.im->icon), pm, bm); |
| 4793 | 4564 g_object_unref(G_OBJECT(pm)); |
| 4359 | 4565 gtk_widget_queue_draw(gtkconv->u.im->icon); |
| 4566 | |
| 4567 if (bm) | |
| 4793 | 4568 g_object_unref(G_OBJECT(bm)); |
| 4359 | 4569 |
| 4570 delay = gdk_pixbuf_animation_iter_get_delay_time(gtkconv->u.im->iter) / 10; | |
| 4571 | |
| 4572 gtkconv->u.im->icon_timer = g_timeout_add(delay * 10, redraw_icon, conv); | |
| 4573 | |
| 4574 return FALSE; | |
| 4575 } | |
| 4576 | |
| 4577 static void | |
| 4578 start_anim(GtkObject *obj, struct gaim_conversation *conv) | |
| 4579 { | |
| 4580 struct gaim_gtk_conversation *gtkconv; | |
| 4581 int delay; | |
| 4582 | |
|
4398
a8249a5250b6
[gaim-migrate @ 4667]
Christian Hammond <chipx86@chipx86.com>
parents:
4397
diff
changeset
|
4583 if (!GAIM_IS_GTK_CONVERSATION(conv)) |
| 4359 | 4584 return; |
| 4585 | |
| 4586 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 4587 | |
| 4588 delay = gdk_pixbuf_animation_iter_get_delay_time(gtkconv->u.im->iter) / 10; | |
| 4589 | |
| 4590 if (gtkconv->u.im->anim) | |
| 4591 gtkconv->u.im->icon_timer = g_timeout_add(delay * 10, redraw_icon, | |
| 4592 conv); | |
| 4593 } | |
| 4594 | |
| 4595 static void | |
| 4596 stop_anim(GtkObject *obj, struct gaim_conversation *conv) | |
| 4597 { | |
| 4598 struct gaim_gtk_conversation *gtkconv; | |
| 4599 | |
|
4398
a8249a5250b6
[gaim-migrate @ 4667]
Christian Hammond <chipx86@chipx86.com>
parents:
4397
diff
changeset
|
4600 if (!GAIM_IS_GTK_CONVERSATION(conv)) |
| 4359 | 4601 return; |
| 4602 | |
| 4603 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 4604 | |
| 4605 if (gtkconv->u.im->icon_timer != 0) | |
| 4606 g_source_remove(gtkconv->u.im->icon_timer); | |
| 4607 | |
| 4608 gtkconv->u.im->icon_timer = 0; | |
| 4609 } | |
| 4610 | |
| 4611 static gboolean | |
| 4612 icon_menu(GtkObject *obj, GdkEventButton *e, struct gaim_conversation *conv) | |
| 4613 { | |
| 4614 struct gaim_gtk_conversation *gtkconv; | |
| 4615 static GtkWidget *menu = NULL; | |
| 4616 GtkWidget *button; | |
| 4617 | |
| 4618 if (e->button != 3 || e->type != GDK_BUTTON_PRESS) | |
| 4619 return FALSE; | |
| 4620 | |
| 4621 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 4622 | |
| 4623 /* | |
| 4624 * If a menu already exists, destroy it before creating a new one, | |
| 4625 * thus freeing-up the memory it occupied. | |
| 4626 */ | |
| 4627 if (menu != NULL) | |
| 4628 gtk_widget_destroy(menu); | |
| 4629 | |
| 4630 menu = gtk_menu_new(); | |
| 4631 | |
| 4632 if (gtkconv->u.im->icon_timer) { | |
| 4633 button = gtk_menu_item_new_with_label(_("Disable Animation")); | |
| 4634 g_signal_connect(GTK_OBJECT(button), "activate", | |
| 4635 G_CALLBACK(stop_anim), conv); | |
| 4636 gtk_menu_shell_append(GTK_MENU_SHELL(menu), button); | |
| 4637 gtk_widget_show(button); | |
| 4638 } | |
| 4639 else if (gtkconv->u.im->anim && | |
| 4640 !(gdk_pixbuf_animation_is_static_image(gtkconv->u.im->anim))) | |
| 4641 { | |
| 4642 button = gtk_menu_item_new_with_label(_("Enable Animation")); | |
| 4643 g_signal_connect(GTK_OBJECT(button), "activate", | |
| 4644 G_CALLBACK(start_anim), conv); | |
| 4645 gtk_menu_shell_append(GTK_MENU_SHELL(menu), button); | |
| 4646 gtk_widget_show(button); | |
| 4647 } | |
| 4648 | |
| 4649 button = gtk_menu_item_new_with_label(_("Hide Icon")); | |
| 4650 g_signal_connect_swapped(GTK_OBJECT(button), "activate", | |
|
4515
9b9737a00a96
[gaim-migrate @ 4793]
Christian Hammond <chipx86@chipx86.com>
parents:
4513
diff
changeset
|
4651 G_CALLBACK(remove_icon), gtkconv); |
| 4359 | 4652 gtk_menu_shell_append(GTK_MENU_SHELL(menu), button); |
| 4653 gtk_widget_show(button); | |
| 4654 | |
| 4655 button = gtk_menu_item_new_with_label(_("Save Icon As...")); | |
| 4656 g_signal_connect(GTK_OBJECT(button), "activate", | |
| 4657 G_CALLBACK(gaim_gtk_save_icon_dialog), conv); | |
| 4658 gtk_menu_shell_append(GTK_MENU_SHELL(menu), button); | |
| 4659 gtk_widget_show(button); | |
| 4660 | |
| 4661 gtk_menu_popup(GTK_MENU(menu), NULL, NULL, NULL, NULL, e->button, e->time); | |
| 4662 | |
| 4663 return TRUE; | |
| 4664 } | |
| 4665 | |
| 4666 void | |
| 4667 gaim_gtkconv_update_buddy_icon(struct gaim_conversation *conv) | |
| 4668 { | |
| 4669 struct gaim_gtk_conversation *gtkconv; | |
| 4670 | |
| 4671 char filename[256]; | |
| 4672 FILE *file; | |
| 4673 GError *err = NULL; | |
| 4674 | |
| 4757 | 4675 struct buddy *buddy; |
| 4676 | |
| 4359 | 4677 void *data; |
| 4678 int len, delay; | |
| 4679 | |
| 4680 GdkPixbuf *buf; | |
| 4681 | |
| 4682 GtkWidget *event; | |
| 4683 GtkWidget *frame; | |
| 4684 GdkPixbuf *scale; | |
| 4685 GdkPixmap *pm; | |
| 4686 GdkBitmap *bm; | |
| 4687 int sf = 0; | |
| 4688 | |
|
4398
a8249a5250b6
[gaim-migrate @ 4667]
Christian Hammond <chipx86@chipx86.com>
parents:
4397
diff
changeset
|
4689 if (conv == NULL || !GAIM_IS_GTK_CONVERSATION(conv) || |
| 4359 | 4690 gaim_conversation_get_type(conv) != GAIM_CONV_IM) { |
| 4691 | |
| 4692 return; | |
| 4693 } | |
| 4694 | |
| 4695 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 4696 | |
| 4697 remove_icon(gtkconv); | |
| 4698 | |
| 4699 if (im_options & OPT_IM_HIDE_ICONS) | |
| 4700 return; | |
| 4701 | |
| 4702 if (gaim_conversation_get_gc(conv) == NULL) | |
| 4703 return; | |
| 4704 | |
| 4793 | 4705 if(gtkconv->u.im->anim) |
| 4706 g_object_unref(G_OBJECT(gtkconv->u.im->anim)); | |
| 4707 | |
| 4757 | 4708 if((buddy = gaim_find_buddy(gaim_conversation_get_account(conv), |
| 4709 gaim_conversation_get_name(conv))) != NULL) { | |
| 4710 char *file = gaim_buddy_get_setting(buddy, "buddy_icon"); | |
| 4711 if(file) { | |
| 4712 gtkconv->u.im->anim = gdk_pixbuf_animation_new_from_file(file, &err); | |
| 4713 g_free(file); | |
| 4714 } | |
| 4715 } else { | |
| 4716 data = get_icon_data(gaim_conversation_get_gc(conv), | |
| 4717 normalize(gaim_conversation_get_name(conv)), | |
| 4718 &len); | |
| 4719 | |
| 4720 if (!data) | |
| 4721 return; | |
| 4722 | |
| 4723 /* this is such an evil hack, i don't know why i'm even considering it. | |
| 4724 * we'll do it differently when gdk-pixbuf-loader isn't leaky anymore. */ | |
| 4725 g_snprintf(filename, sizeof(filename), | |
| 4726 "%s" G_DIR_SEPARATOR_S "gaimicon-%s.%d", | |
| 4727 g_get_tmp_dir(), gaim_conversation_get_name(conv), getpid()); | |
| 4728 | |
| 4729 if (!(file = fopen(filename, "wb"))) | |
| 4730 return; | |
| 4731 | |
| 4732 fwrite(data, 1, len, file); | |
| 4733 fclose(file); | |
| 4734 | |
| 4735 gtkconv->u.im->anim = gdk_pixbuf_animation_new_from_file(filename, &err); | |
| 4736 /* make sure we remove the file as soon as possible */ | |
| 4737 unlink(filename); | |
| 4738 } | |
| 4359 | 4739 |
| 4740 if (err) { | |
| 4741 debug_printf("Buddy icon error: %s\n", err->message); | |
| 4742 g_error_free(err); | |
| 4743 } | |
| 4744 | |
| 4745 | |
| 4746 if (!gtkconv->u.im->anim) | |
| 4747 return; | |
| 4748 | |
| 4793 | 4749 if(gtkconv->u.im->iter) |
| 4750 g_object_unref(G_OBJECT(gtkconv->u.im->iter)); | |
| 4751 | |
| 4359 | 4752 if (gdk_pixbuf_animation_is_static_image(gtkconv->u.im->anim)) { |
| 4753 gtkconv->u.im->iter = NULL; | |
| 4754 delay = 0; | |
| 4755 buf = gdk_pixbuf_animation_get_static_image(gtkconv->u.im->anim); | |
| 4756 } else { | |
| 4757 gtkconv->u.im->iter = | |
| 4758 gdk_pixbuf_animation_get_iter(gtkconv->u.im->anim, NULL); | |
| 4759 buf = gdk_pixbuf_animation_iter_get_pixbuf(gtkconv->u.im->iter); | |
| 4760 delay = gdk_pixbuf_animation_iter_get_delay_time(gtkconv->u.im->iter); | |
| 4761 delay = delay / 10; | |
| 4762 } | |
| 4763 | |
| 4764 sf = SCALE(gtkconv->u.im->anim); | |
| 4765 scale = gdk_pixbuf_scale_simple(buf, | |
| 4766 MAX(gdk_pixbuf_get_width(buf) * sf / | |
| 4767 gdk_pixbuf_animation_get_width(gtkconv->u.im->anim), 1), | |
| 4768 MAX(gdk_pixbuf_get_height(buf) * sf / | |
| 4769 gdk_pixbuf_animation_get_height(gtkconv->u.im->anim), 1), | |
| 4770 GDK_INTERP_NEAREST); | |
| 4771 | |
| 4772 if (delay) | |
| 4773 gtkconv->u.im->icon_timer = g_timeout_add(delay * 10, redraw_icon, | |
| 4774 conv); | |
| 4775 | |
| 4776 gdk_pixbuf_render_pixmap_and_mask(scale, &pm, &bm, 100); | |
| 4793 | 4777 g_object_unref(G_OBJECT(scale)); |
| 4359 | 4778 |
| 4779 frame = gtk_frame_new(NULL); | |
| 4780 gtk_frame_set_shadow_type(GTK_FRAME(frame), | |
| 4781 (bm ? GTK_SHADOW_NONE : GTK_SHADOW_IN)); | |
| 4782 gtk_box_pack_start(GTK_BOX(gtkconv->bbox), frame, FALSE, FALSE, 5); | |
| 4783 gtk_box_reorder_child(GTK_BOX(gtkconv->bbox), frame, 0); | |
| 4784 gtk_widget_show(frame); | |
| 4785 | |
| 4786 event = gtk_event_box_new(); | |
| 4787 gtk_container_add(GTK_CONTAINER(frame), event); | |
| 4788 g_signal_connect(GTK_OBJECT(event), "button-press-event", | |
| 4789 G_CALLBACK(icon_menu), conv); | |
| 4790 gtk_widget_show(event); | |
| 4791 | |
| 4635 | 4792 gtkconv->u.im->icon = gtk_image_new_from_pixmap(pm, bm); |
| 4359 | 4793 gtk_widget_set_size_request(gtkconv->u.im->icon, sf, sf); |
| 4794 gtk_container_add(GTK_CONTAINER(event), gtkconv->u.im->icon); | |
| 4795 gtk_widget_show(gtkconv->u.im->icon); | |
| 4796 | |
| 4797 if(im_options & OPT_IM_NO_ANIMATION) | |
| 4798 stop_anim(NULL, conv); | |
| 4799 | |
| 4793 | 4800 g_object_unref(G_OBJECT(pm)); |
| 4359 | 4801 |
| 4802 if (bm) | |
| 4793 | 4803 g_object_unref(G_OBJECT(bm)); |
| 4359 | 4804 } |
| 4805 | |
| 4806 void | |
| 4807 gaim_gtkconv_hide_buddy_icons(void) | |
| 4808 { | |
| 4809 gaim_conversation_foreach(gaim_gtkconv_update_buddy_icon); | |
| 4810 } | |
| 4811 | |
| 4812 void | |
| 4813 gaim_gtkconv_set_anim(void) | |
| 4814 { | |
| 4815 GList *l; | |
| 4816 | |
| 4817 if (im_options & OPT_IM_HIDE_ICONS) | |
| 4818 return; | |
| 4819 | |
| 4820 if (im_options & OPT_IM_NO_ANIMATION) { | |
| 4821 for (l = gaim_get_ims(); l != NULL; l = l->next) | |
| 4822 stop_anim(NULL, (struct gaim_conversation *)l->data); | |
| 4823 } else { | |
| 4824 for (l = gaim_get_ims(); l != NULL; l = l->next) | |
| 4825 start_anim(NULL, (struct gaim_conversation *)l->data); | |
| 4826 } | |
| 4827 } | |
| 4828 | |
| 4829 void | |
| 4830 gaim_gtkconv_update_font_buttons(void) | |
| 4831 { | |
| 4832 GList *l; | |
| 4833 struct gaim_conversation *conv; | |
| 4834 struct gaim_gtk_conversation *gtkconv; | |
| 4835 | |
| 4836 for (l = gaim_get_ims(); l != NULL; l = l->next) { | |
| 4837 conv = (struct gaim_conversation *)l->data; | |
| 4838 | |
|
4398
a8249a5250b6
[gaim-migrate @ 4667]
Christian Hammond <chipx86@chipx86.com>
parents:
4397
diff
changeset
|
4839 if (!GAIM_IS_GTK_CONVERSATION(conv)) |
| 4359 | 4840 continue; |
| 4841 | |
| 4842 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 4843 | |
| 4844 if (gtkconv->toolbar.bold != NULL) | |
| 4845 gtk_widget_set_sensitive(gtkconv->toolbar.bold, | |
| 4846 (!(font_options & OPT_FONT_BOLD))); | |
| 4847 | |
| 4848 if (gtkconv->toolbar.italic != NULL) | |
| 4849 gtk_widget_set_sensitive(gtkconv->toolbar.italic, | |
| 4850 (!(font_options & OPT_FONT_ITALIC))); | |
| 4851 | |
| 4852 if (gtkconv->toolbar.underline != NULL) | |
| 4853 gtk_widget_set_sensitive(gtkconv->toolbar.underline, | |
| 4854 (!(font_options & OPT_FONT_UNDERLINE))); | |
| 4855 } | |
| 4856 } | |
| 4857 | |
| 4858 void | |
| 4421 | 4859 gaim_gtkconv_update_font_colors(struct gaim_conversation *conv) |
| 4860 { | |
|
4438
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
4861 struct gaim_gtk_conversation *gtkconv; |
|
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
4862 |
|
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
4863 if (!GAIM_IS_GTK_CONVERSATION(conv)) |
|
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
4864 return; |
|
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
4865 |
|
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
4866 gtkconv = GAIM_GTK_CONVERSATION(conv); |
| 4421 | 4867 |
|
4438
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
4868 gtkconv->fg_color.red = fgcolor.red; |
|
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
4869 gtkconv->fg_color.blue = fgcolor.blue; |
|
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
4870 gtkconv->fg_color.green = fgcolor.green; |
|
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
4871 |
|
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
4872 gtkconv->bg_color.red = bgcolor.red; |
|
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
4873 gtkconv->bg_color.blue = bgcolor.blue; |
|
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
4874 gtkconv->bg_color.green = bgcolor.green; |
|
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
4875 } |
|
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
4876 |
|
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
4877 void |
|
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
4878 gaim_gtkconv_update_font_face(struct gaim_conversation *conv) |
|
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
4879 { |
|
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
4880 struct gaim_gtk_conversation *gtkconv; |
|
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
4881 |
|
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
4882 if (!GAIM_IS_GTK_CONVERSATION(conv)) |
|
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
4883 return; |
|
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
4884 |
|
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
4885 gtkconv = GAIM_GTK_CONVERSATION(conv); |
|
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
4886 |
|
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
4887 strncpy(gtkconv->fontface, fontface, 128); |
| 4421 | 4888 } |
| 4889 | |
| 4890 void | |
| 4359 | 4891 gaim_gtkconv_update_tabs(void) |
| 4892 { | |
| 4893 GList *l; | |
| 4894 GtkPositionType pos; | |
| 4895 struct gaim_window *win; | |
| 4896 struct gaim_gtk_window *gtkwin; | |
| 4897 | |
| 4898 pos = ((im_options & OPT_IM_SIDE_TAB) | |
| 4899 ? ((im_options & OPT_IM_BR_TAB) ? GTK_POS_RIGHT : GTK_POS_LEFT) | |
| 4900 : ((im_options & OPT_IM_BR_TAB) ? GTK_POS_BOTTOM : GTK_POS_TOP)); | |
| 4901 | |
| 4902 for (l = gaim_get_windows(); l != NULL; l = l->next) { | |
| 4903 win = (struct gaim_window *)l->data; | |
| 4904 | |
|
4398
a8249a5250b6
[gaim-migrate @ 4667]
Christian Hammond <chipx86@chipx86.com>
parents:
4397
diff
changeset
|
4905 if (!GAIM_IS_GTK_WINDOW(win)) |
| 4359 | 4906 continue; |
| 4907 | |
| 4908 gtkwin = GAIM_GTK_WINDOW(win); | |
| 4909 | |
| 4910 gtk_notebook_set_tab_pos(GTK_NOTEBOOK(gtkwin->notebook), pos); | |
| 4911 } | |
| 4912 } | |
| 4913 | |
| 4914 void | |
| 4915 gaim_gtkconv_update_chat_button_style() | |
| 4916 { | |
| 4917 GSList *l; | |
| 4918 struct gaim_connection *g; | |
| 4919 GtkWidget *parent; | |
| 4920 GaimConversationType type = GAIM_CONV_CHAT; | |
| 4921 | |
| 4922 for (l = connections; l != NULL; l = l->next) { | |
| 4923 GSList *bcs; | |
| 4924 struct gaim_conversation *conv; | |
| 4925 struct gaim_gtk_conversation *gtkconv; | |
| 4926 struct gaim_gtk_window *gtkwin; | |
| 4927 | |
| 4928 g = (struct gaim_connection *)l->data; | |
| 4929 | |
| 4930 for (bcs = g->buddy_chats; bcs != NULL; bcs = bcs->next) { | |
| 4931 conv = (struct gaim_conversation *)bcs->data; | |
| 4932 | |
| 4933 if (gaim_conversation_get_type(conv) != GAIM_CONV_CHAT) | |
| 4934 continue; | |
| 4935 | |
|
4398
a8249a5250b6
[gaim-migrate @ 4667]
Christian Hammond <chipx86@chipx86.com>
parents:
4397
diff
changeset
|
4936 if (!GAIM_IS_GTK_CONVERSATION(conv)) |
| 4359 | 4937 continue; |
| 4938 | |
| 4939 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 4940 gtkwin = GAIM_GTK_WINDOW(gaim_conversation_get_window(conv)); | |
| 4941 parent = gtk_widget_get_parent(gtkconv->send); | |
| 4942 | |
| 4943 gtkconv->send = | |
| 4944 gaim_gtk_change_text(_("Send"), | |
| 4945 gtkconv->send, GAIM_STOCK_SEND, type); | |
| 4946 gtkconv->u.chat->invite = | |
| 4947 gaim_gtk_change_text(_("Invite"), | |
| 4948 gtkconv->u.chat->invite, | |
| 4949 GAIM_STOCK_INVITE, type); | |
| 4950 | |
| 4951 gtk_box_pack_end(GTK_BOX(parent), gtkconv->send, FALSE, FALSE, | |
| 4952 type); | |
| 4953 gtk_box_pack_end(GTK_BOX(parent), gtkconv->u.chat->invite, | |
| 4954 FALSE, FALSE, 0); | |
| 4955 | |
| 4956 g_signal_connect(G_OBJECT(gtkconv->send), "clicked", | |
| 4957 G_CALLBACK(send_cb), conv); | |
| 4958 g_signal_connect(G_OBJECT(gtkconv->u.chat->invite), "clicked", | |
| 4959 G_CALLBACK(invite_cb), conv); | |
| 4960 | |
| 4961 gtk_button_set_relief(GTK_BUTTON(gtkconv->send), | |
| 4962 GTK_RELIEF_NONE); | |
| 4963 gtk_button_set_relief(GTK_BUTTON(gtkconv->u.chat->invite), | |
| 4964 GTK_RELIEF_NONE); | |
| 4965 | |
| 4966 gaim_gtkconv_update_buttons_by_protocol(conv); | |
| 4967 } | |
| 4968 } | |
| 4969 } | |
| 4970 | |
| 4971 void | |
| 4972 gaim_gtkconv_update_im_button_style() | |
| 4973 { | |
| 4974 GList *l; | |
| 4975 struct gaim_conversation *conv; | |
| 4976 struct gaim_gtk_conversation *gtkconv; | |
| 4977 | |
| 4978 for (l = gaim_get_ims(); l != NULL; l = l->next) { | |
| 4979 conv = (struct gaim_conversation *)l->data; | |
| 4980 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 4981 | |
| 4982 setup_im_buttons(conv, gtk_widget_get_parent(gtkconv->send)); | |
| 4983 } | |
| 4984 } | |
| 4985 | |
| 4986 void | |
| 4987 gaim_gtkconv_update_buttons_by_protocol(struct gaim_conversation *conv) | |
| 4988 { | |
| 4989 struct gaim_window *win; | |
| 4990 struct gaim_gtk_window *gtkwin = NULL; | |
| 4991 struct gaim_gtk_conversation *gtkconv; | |
| 4992 struct gaim_connection *gc; | |
| 4993 | |
|
4398
a8249a5250b6
[gaim-migrate @ 4667]
Christian Hammond <chipx86@chipx86.com>
parents:
4397
diff
changeset
|
4994 if (!GAIM_IS_GTK_CONVERSATION(conv)) |
| 4359 | 4995 return; |
| 4996 | |
| 4997 gc = gaim_conversation_get_gc(conv); | |
| 4998 win = gaim_conversation_get_window(conv); | |
| 4999 gtkconv = GAIM_GTK_CONVERSATION(conv); | |
| 5000 | |
| 5001 if (win != NULL) | |
| 5002 gtkwin = GAIM_GTK_WINDOW(win); | |
| 5003 | |
| 5004 if (gc == NULL) { | |
| 5005 gtk_widget_set_sensitive(gtkconv->send, FALSE); | |
| 5006 | |
|
4365
6e96ced6fb78
[gaim-migrate @ 4631]
Christian Hammond <chipx86@chipx86.com>
parents:
4364
diff
changeset
|
5007 if (win != NULL && gaim_window_get_active_conversation(win) == conv) { |
| 4359 | 5008 gtk_widget_set_sensitive(gtkwin->menu.insert_link, FALSE); |
| 5009 } | |
| 5010 } | |
|
4364
fa56829b9587
[gaim-migrate @ 4630]
Christian Hammond <chipx86@chipx86.com>
parents:
4363
diff
changeset
|
5011 else { |
| 4674 | 5012 gtk_widget_set_sensitive(gtkconv->send, TRUE); |
|
4365
6e96ced6fb78
[gaim-migrate @ 4631]
Christian Hammond <chipx86@chipx86.com>
parents:
4364
diff
changeset
|
5013 if (win != NULL) { |
|
6e96ced6fb78
[gaim-migrate @ 4631]
Christian Hammond <chipx86@chipx86.com>
parents:
4364
diff
changeset
|
5014 gtk_widget_set_sensitive(gtkwin->menu.insert_link, TRUE); |
|
6e96ced6fb78
[gaim-migrate @ 4631]
Christian Hammond <chipx86@chipx86.com>
parents:
4364
diff
changeset
|
5015 } |
|
4364
fa56829b9587
[gaim-migrate @ 4630]
Christian Hammond <chipx86@chipx86.com>
parents:
4363
diff
changeset
|
5016 } |
| 4359 | 5017 |
| 5018 if (gaim_conversation_get_type(conv) == GAIM_CONV_IM) { | |
| 5019 if (gc == NULL) { | |
| 5020 gtk_widget_set_sensitive(gtkconv->info, FALSE); | |
| 5021 gtk_widget_set_sensitive(gtkconv->u.im->warn, FALSE); | |
| 5022 gtk_widget_set_sensitive(gtkconv->u.im->block, FALSE); | |
| 5023 gtk_widget_set_sensitive(gtkconv->u.im->add, FALSE); | |
| 5024 | |
| 5025 if (win != NULL && | |
| 5026 gaim_window_get_active_conversation(win) == conv) { | |
| 5027 | |
| 5028 gtk_widget_set_sensitive(gtkwin->menu.insert_image, FALSE); | |
| 5029 } | |
| 5030 | |
| 5031 return; | |
| 5032 } | |
| 5033 | |
| 5034 gtk_widget_set_sensitive(gtkconv->info, | |
| 5035 (gc->prpl->get_info != NULL)); | |
| 5036 | |
| 5037 gtk_widget_set_sensitive(gtkconv->toolbar.image, | |
| 5038 (gc->prpl->options & OPT_PROTO_IM_IMAGE)); | |
| 5039 | |
| 5040 if (win != NULL && gaim_window_get_active_conversation(win) == conv) { | |
| 5041 gtk_widget_set_sensitive(gtkwin->menu.insert_image, | |
| 5042 (gc->prpl->options & OPT_PROTO_IM_IMAGE)); | |
| 5043 } | |
| 5044 | |
| 5045 gtk_widget_set_sensitive(gtkconv->u.im->warn, | |
| 5046 (gc->prpl->warn != NULL)); | |
| 5047 | |
| 5048 gtk_widget_set_sensitive(gtkconv->u.im->block, | |
| 5049 (gc->prpl->add_permit != NULL)); | |
| 5050 | |
| 5051 update_convo_add_button(conv); | |
| 5052 } | |
| 5053 else if (gaim_conversation_get_type(conv) == GAIM_CONV_CHAT) { | |
| 5054 if (gc == NULL) { | |
| 5055 gtk_widget_set_sensitive(gtkconv->u.chat->whisper, FALSE); | |
| 5056 gtk_widget_set_sensitive(gtkconv->u.chat->invite, FALSE); | |
| 5057 | |
| 5058 return; | |
| 5059 } | |
| 5060 | |
| 5061 gtk_widget_set_sensitive(gtkconv->send, (gc->prpl->chat_send != NULL)); | |
| 5062 | |
| 5063 gtk_widget_set_sensitive(gtkconv->toolbar.image, FALSE); | |
| 5064 /* gtk_widget_set_sensitive(gtkwin->menu.insert_image, FALSE); */ | |
| 5065 | |
| 5066 gtk_widget_set_sensitive(gtkconv->u.chat->whisper, | |
| 5067 (gc->prpl->chat_whisper != NULL)); | |
| 5068 | |
| 5069 gtk_widget_set_sensitive(gtkconv->u.chat->invite, | |
| 5070 (gc->prpl->chat_invite != NULL)); | |
| 5071 } | |
| 5072 } | |
| 5073 | |
| 5074 struct gaim_window * | |
| 5075 gaim_gtkwin_get_at_xy(int x, int y) | |
| 5076 { | |
| 5077 struct gaim_window *win = NULL; | |
| 5078 struct gaim_gtk_window *gtkwin; | |
| 5079 GdkWindow *gdkwin; | |
| 5080 GList *l; | |
| 5081 | |
| 5082 gdkwin = gdk_window_at_pointer(&x, &y); | |
| 5083 | |
| 5084 if (gdkwin) | |
| 5085 gdkwin = gdk_window_get_toplevel(gdkwin); | |
| 5086 | |
| 5087 for (l = gaim_get_windows(); l != NULL; l = l->next) { | |
| 5088 win = (struct gaim_window *)l->data; | |
| 5089 | |
|
4398
a8249a5250b6
[gaim-migrate @ 4667]
Christian Hammond <chipx86@chipx86.com>
parents:
4397
diff
changeset
|
5090 if (!GAIM_IS_GTK_WINDOW(win)) |
| 4359 | 5091 continue; |
| 5092 | |
| 5093 gtkwin = GAIM_GTK_WINDOW(win); | |
| 5094 | |
| 5095 if (gdkwin == gtkwin->window->window) | |
| 5096 return win; | |
| 5097 } | |
| 5098 | |
| 5099 return NULL; | |
| 5100 } | |
| 5101 | |
| 5102 int | |
| 5103 gaim_gtkconv_get_tab_at_xy(struct gaim_window *win, int x, int y) | |
| 5104 { | |
| 5105 struct gaim_gtk_window *gtkwin; | |
| 5106 GList *l; | |
| 5107 gint nb_x, nb_y, x_rel, y_rel; | |
| 5108 GtkNotebook *notebook; | |
| 5109 GtkWidget *tab; | |
| 5110 gint i, page_num = 0; | |
| 5111 gboolean first_visible = TRUE; | |
| 5112 | |
|
4398
a8249a5250b6
[gaim-migrate @ 4667]
Christian Hammond <chipx86@chipx86.com>
parents:
4397
diff
changeset
|
5113 if (!GAIM_IS_GTK_WINDOW(win)) |
| 4359 | 5114 return -1; |
| 5115 | |
| 5116 gtkwin = GAIM_GTK_WINDOW(win); | |
| 5117 notebook = GTK_NOTEBOOK(gtkwin->notebook); | |
| 5118 | |
| 5119 gdk_window_get_origin(gtkwin->notebook->window, &nb_x, &nb_y); | |
| 5120 x_rel = x - nb_x; | |
| 5121 y_rel = y - nb_y; | |
| 5122 | |
| 5123 for (l = gaim_window_get_conversations(win), i = 0; | |
| 5124 l != NULL; | |
| 5125 l = l->next, i++) { | |
| 5126 | |
| 5127 struct gaim_conversation *conv = l->data; | |
| 5128 tab = GAIM_GTK_CONVERSATION(conv)->tab_label; | |
| 5129 | |
| 5130 if (!GTK_WIDGET_MAPPED(tab)) | |
| 5131 continue; | |
| 5132 | |
| 5133 if (first_visible) { | |
| 5134 first_visible = FALSE; | |
| 5135 | |
| 5136 if (x_rel < tab->allocation.x) x_rel = tab->allocation.x; | |
| 5137 if (y_rel < tab->allocation.y) y_rel = tab->allocation.y; | |
| 5138 } | |
| 5139 | |
| 5140 if (gtk_notebook_get_tab_pos(notebook) == GTK_POS_TOP || | |
| 5141 gtk_notebook_get_tab_pos(notebook) == GTK_POS_BOTTOM) { | |
| 5142 | |
| 5143 if (tab->allocation.x <= x_rel) { | |
| 5144 if (tab->allocation.x + tab->allocation.width <= x_rel) | |
| 5145 page_num = i + 1; | |
| 5146 else | |
| 5147 page_num = i; | |
| 5148 } | |
| 5149 else | |
| 5150 break; | |
| 5151 } | |
| 5152 else { | |
| 5153 if (tab->allocation.y <= y_rel) { | |
| 5154 if (tab->allocation.y + tab->allocation.height <= y_rel) | |
| 5155 page_num = i + 1; | |
| 5156 else | |
| 5157 page_num = i; | |
| 5158 } | |
| 5159 else | |
| 5160 break; | |
| 5161 } | |
| 5162 } | |
| 5163 | |
| 5164 if (i == gaim_window_get_conversation_count(win) + 1) | |
| 5165 return -1; | |
| 5166 | |
| 5167 return page_num; | |
| 5168 } | |
| 5169 | |
| 5170 int | |
| 5171 gaim_gtkconv_get_dest_tab_at_xy(struct gaim_window *win, int x, int y) | |
| 5172 { | |
| 5173 struct gaim_gtk_window *gtkwin; | |
| 5174 GList *l; | |
| 5175 gint nb_x, nb_y, x_rel, y_rel; | |
| 5176 GtkNotebook *notebook; | |
| 5177 GtkWidget *tab; | |
| 5178 gint i, page_num = 0; | |
| 5179 | |
|
4398
a8249a5250b6
[gaim-migrate @ 4667]
Christian Hammond <chipx86@chipx86.com>
parents:
4397
diff
changeset
|
5180 if (!GAIM_IS_GTK_WINDOW(win)) |
| 4359 | 5181 return -1; |
| 5182 | |
| 5183 gtkwin = GAIM_GTK_WINDOW(win); | |
| 5184 notebook = GTK_NOTEBOOK(gtkwin->notebook); | |
| 5185 | |
| 5186 gdk_window_get_origin(gtkwin->notebook->window, &nb_x, &nb_y); | |
| 5187 x_rel = x - nb_x; | |
| 5188 y_rel = y - nb_y; | |
| 5189 | |
| 5190 for (l = gaim_window_get_conversations(win), i = 0; | |
| 5191 l != NULL; | |
| 5192 l = l->next, i++) { | |
| 5193 | |
| 5194 struct gaim_conversation *conv = l->data; | |
| 5195 tab = GAIM_GTK_CONVERSATION(conv)->tab_label; | |
| 5196 | |
| 5197 if (!GTK_WIDGET_MAPPED(tab)) | |
| 5198 continue; | |
| 5199 | |
| 5200 if (gtk_notebook_get_tab_pos(notebook) == GTK_POS_TOP || | |
| 5201 gtk_notebook_get_tab_pos(notebook) == GTK_POS_BOTTOM) { | |
| 5202 | |
| 5203 if (tab->allocation.x <= x_rel) { | |
| 5204 if (tab->allocation.x + (tab->allocation.width / 2) <= x_rel) | |
| 5205 page_num = i + 1; | |
| 5206 else | |
| 5207 page_num = i; | |
| 5208 } | |
| 5209 else | |
| 5210 break; | |
| 5211 } | |
| 5212 else { | |
| 5213 if (tab->allocation.y <= y_rel) { | |
| 5214 if (tab->allocation.y + (tab->allocation.height / 2) <= y_rel) | |
| 5215 page_num = i + 1; | |
| 5216 else | |
| 5217 page_num = i; | |
| 5218 } | |
| 5219 else | |
| 5220 break; | |
| 5221 } | |
| 5222 } | |
| 5223 | |
| 5224 if (i == gaim_window_get_conversation_count(win) + 1) | |
| 5225 return -1; | |
| 5226 | |
| 5227 return page_num; | |
| 5228 } |
