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