Mercurial > pidgin.yaz
annotate src/prefs.c @ 3432:d40f96a0169b
[gaim-migrate @ 3459]
Cool camels use Gaim! And even cowboys!
Thanks, Etan.
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Sun, 25 Aug 2002 23:06:36 +0000 |
parents | 1b18d4693d32 |
children | 0f6a26952be7 |
rev | line source |
---|---|
1 | 1 /* |
2 * gaim | |
3 * | |
3432 | 4 * Copyright (C) 2002, Sean Egan <bj91704@binghamton.edu> |
1 | 5 * |
6 * This program is free software; you can redistribute it and/or modify | |
7 * it under the terms of the GNU General Public License as published by | |
8 * the Free Software Foundation; either version 2 of the License, or | |
9 * (at your option) any later version. | |
10 * | |
11 * This program is distributed in the hope that it will be useful, | |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 * GNU General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU General Public License | |
17 * along with this program; if not, write to the Free Software | |
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
19 * | |
20 */ | |
21 | |
349
b402a23f35df
[gaim-migrate @ 359]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
340
diff
changeset
|
22 #ifdef HAVE_CONFIG_H |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2074
diff
changeset
|
23 #include <config.h> |
349
b402a23f35df
[gaim-migrate @ 359]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
340
diff
changeset
|
24 #endif |
1 | 25 #include <string.h> |
26 #include <sys/time.h> | |
27 | |
28 #include <sys/types.h> | |
29 #include <sys/stat.h> | |
30 | |
31 #include <unistd.h> | |
32 #include <stdio.h> | |
33 #include <stdlib.h> | |
970 | 34 #include <stdarg.h> |
3379 | 35 #include <ctype.h> |
1 | 36 #include <gtk/gtk.h> |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
37 #include "gtkimhtml.h" |
1 | 38 #include "gaim.h" |
1357
783ba886b6b6
[gaim-migrate @ 1367]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1324
diff
changeset
|
39 #include "prpl.h" |
3366 | 40 #include "proxy.h" |
41 | |
42 /* xpms for gtk1.2 */ | |
43 #if !GTK_CHECK_VERSION (1,3,0) | |
588 | 44 #include "pixmaps/cancel.xpm" |
595 | 45 #include "pixmaps/fontface2.xpm" |
617 | 46 #include "pixmaps/gnome_add.xpm" |
47 #include "pixmaps/gnome_remove.xpm" | |
832
0142b4c66394
[gaim-migrate @ 842]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
830
diff
changeset
|
48 #include "pixmaps/gnome_preferences.xpm" |
855
82673bb41e2f
[gaim-migrate @ 865]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
834
diff
changeset
|
49 #include "pixmaps/bgcolor.xpm" |
82673bb41e2f
[gaim-migrate @ 865]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
834
diff
changeset
|
50 #include "pixmaps/fgcolor.xpm" |
821 | 51 #include "pixmaps/save.xpm" |
3366 | 52 #include "pixmaps/ok.xpm" |
53 #include "pixmaps/join.xpm" | |
54 #endif | |
1 | 55 |
56 | |
3366 | 57 /* temporary preferences */ |
58 static guint misc_options_new; | |
59 static guint logging_options_new; | |
60 static guint blist_options_new; | |
61 static guint convo_options_new; | |
62 static guint im_options_new; | |
63 static guint chat_options_new; | |
64 static guint font_options_new; | |
65 static guint sound_options_new; | |
66 static char *sound_file_new[NUM_SOUNDS]; | |
67 static guint away_options_new; | |
68 static guint away_resend_new; | |
69 static int auto_away_new; | |
70 static int report_idle_new; | |
71 static int proxytype_new; | |
72 static struct away_message* default_away_new; | |
73 static int web_browser_new; | |
74 static char sound_cmd_new[2048]; | |
75 static char web_command_new[2048]; | |
76 static int fontsize_new; | |
77 GdkColor fgcolor_new, bgcolor_new; | |
78 static struct window_size conv_size_new, buddy_chat_size_new; | |
79 char fontface_new[128]; | |
80 #if !GTK_CHECK_VERSION(1,3,0) | |
81 char fontxfld_new[256]; | |
82 char fontfacexfld[256]; | |
83 #endif | |
84 char fontface[128]; | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
85 |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
86 GtkWidget *prefs_away_list = NULL; |
1109
c73736fa0b7c
[gaim-migrate @ 1119]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1087
diff
changeset
|
87 GtkWidget *prefs_away_menu = NULL; |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
88 GtkWidget *preftree = NULL; |
3366 | 89 GtkWidget *fontseld = NULL; |
90 | |
91 #if GTK_CHECK_VERSION(1,3,0) | |
3379 | 92 GtkListStore *prefs_away_store = NULL; |
3366 | 93 #endif |
94 | |
95 static int sound_row_sel = 0; | |
96 static char *last_sound_dir = NULL; | |
97 | |
98 static GtkWidget *sounddialog = NULL; | |
99 static GtkWidget *browser_entry = NULL; | |
100 static GtkWidget *sound_entry = NULL; | |
101 static GtkWidget *away_text = NULL; | |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
102 GtkCTreeNode *general_node = NULL; |
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
103 GtkCTreeNode *deny_node = NULL; |
2254 | 104 GtkWidget *prefs_proxy_frame = NULL; |
3366 | 105 static GtkWidget *gaim_button(const char *, guint *, int, GtkWidget *); |
3427 | 106 GtkWidget *gaim_labeled_spin_button(GtkWidget *, const gchar *, int*, int, int, GtkSizeGroup *); |
3366 | 107 static GtkWidget *gaim_dropdown(GtkWidget *, const gchar *, int *, int, ...); |
108 static GtkWidget *show_color_pref(GtkWidget *, gboolean); | |
109 static void delete_prefs(GtkWidget *, void *); | |
110 void set_default_away(GtkWidget *, gpointer); | |
1026 | 111 |
3366 | 112 struct debug_window *dw = NULL; |
113 static GtkWidget *prefs = NULL; | |
114 GtkWidget *debugbutton = NULL; | |
1525
ba8e6e211af5
[gaim-migrate @ 1535]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1455
diff
changeset
|
115 |
3366 | 116 void delete_prefs(GtkWidget *asdf, void *gdsa) { |
117 int v; | |
118 | |
119 prefs = NULL; | |
120 for (v = 0; v < NUM_SOUNDS; v++) { | |
121 if (sound_file_new[v]) | |
122 g_free(sound_file_new[v]); | |
123 sound_file_new[v] = NULL; | |
124 } | |
125 sound_entry = NULL; | |
126 browser_entry = NULL; | |
127 debugbutton=NULL; | |
3379 | 128 if(sounddialog) |
129 gtk_widget_destroy(sounddialog); | |
3366 | 130 #if GTK_CHECK_VERSION(1,3,0) |
131 g_object_unref(G_OBJECT(prefs_away_store)); | |
132 #endif | |
1525
ba8e6e211af5
[gaim-migrate @ 1535]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1455
diff
changeset
|
133 } |
ba8e6e211af5
[gaim-migrate @ 1535]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1455
diff
changeset
|
134 |
3366 | 135 GtkWidget *preflabel; |
136 GtkWidget *prefsnotebook; | |
137 #if GTK_CHECK_VERSION(1,3,0) | |
138 GtkTreeStore *prefstree; | |
139 #else | |
140 GtkWidget *prefstree; | |
1750
d2eca7a46cfd
[gaim-migrate @ 1760]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1711
diff
changeset
|
141 #endif |
d2eca7a46cfd
[gaim-migrate @ 1760]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1711
diff
changeset
|
142 |
3366 | 143 static void set_misc_options(); |
144 static void set_logging_options(); | |
145 static void set_blist_options(); | |
146 static void set_convo_options(); | |
147 static void set_im_options(); | |
148 static void set_chat_options(); | |
149 static void set_font_options(); | |
150 static void set_sound_options(); | |
151 static void set_away_options(); | |
1750
d2eca7a46cfd
[gaim-migrate @ 1760]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1711
diff
changeset
|
152 |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
153 #define PROXYHOST 0 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
154 #define PROXYPORT 1 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
155 #define PROXYTYPE 2 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
156 #define PROXYUSER 3 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
157 #define PROXYPASS 4 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
158 static void proxy_print_option(GtkEntry *entry, int entrynum) |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
159 { |
2372
2927c2c26fe6
[gaim-migrate @ 2385]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2323
diff
changeset
|
160 if (entrynum == PROXYHOST) |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
161 g_snprintf(proxyhost, sizeof(proxyhost), "%s", gtk_entry_get_text(entry)); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
162 else if (entrynum == PROXYPORT) |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
163 proxyport = atoi(gtk_entry_get_text(entry)); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
164 else if (entrynum == PROXYUSER) |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
165 g_snprintf(proxyuser, sizeof(proxyuser), "%s", gtk_entry_get_text(entry)); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
166 else if (entrynum == PROXYPASS) |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
167 g_snprintf(proxypass, sizeof(proxypass), "%s", gtk_entry_get_text(entry)); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
168 save_prefs(); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
169 } |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
170 |
3366 | 171 |
3427 | 172 static GtkWidget *make_frame(GtkWidget *ret, char *text) { |
173 GtkWidget *vbox, *label, *hbox; | |
174 char labeltext[256]; | |
175 | |
176 vbox = gtk_vbox_new(FALSE, 6); | |
177 gtk_box_pack_start(GTK_BOX(ret), vbox, FALSE, FALSE, 0); | |
178 label = gtk_label_new(NULL); | |
179 g_snprintf(labeltext, sizeof(labeltext), "<span weight=\"bold\">%s</span>", text); | |
180 gtk_label_set_markup(GTK_LABEL(label), labeltext); | |
181 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
182 gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0); | |
183 hbox = gtk_hbox_new(FALSE, 6); | |
184 gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0); | |
185 label = gtk_label_new(" "); | |
186 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); | |
187 vbox = gtk_vbox_new(FALSE, 6); | |
188 gtk_box_pack_start(GTK_BOX(hbox), vbox, FALSE, FALSE, 0); | |
189 return vbox; | |
190 } | |
191 | |
3366 | 192 /* OK, Apply and Cancel */ |
193 | |
194 static void apply_cb(GtkWidget *button, void *data) | |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
195 { |
3366 | 196 int r; |
197 if (misc_options != misc_options_new) | |
198 set_misc_options(); | |
199 if (logging_options != logging_options_new) | |
200 set_logging_options(); | |
201 if (blist_options != blist_options_new) | |
202 set_blist_options(); | |
203 if (convo_options != convo_options_new) | |
204 set_convo_options(); | |
205 if (im_options != im_options_new) | |
206 set_im_options(); | |
207 if (chat_options != chat_options_new) | |
208 set_chat_options(); | |
209 chat_options = chat_options_new; | |
210 if (font_options != font_options_new) | |
211 set_font_options(); | |
212 if (sound_options != sound_options_new) | |
213 set_sound_options(); | |
214 for (r = 0; r < NUM_SOUNDS; r++) { | |
215 if (sound_file[r]) | |
216 g_free(sound_file[r]); | |
217 sound_file[r] = sound_file_new[r]; | |
218 } | |
219 if (away_options != away_options_new) | |
220 set_away_options(); | |
221 away_resend = away_resend_new; | |
222 auto_away = auto_away_new; | |
223 report_idle = report_idle_new; | |
224 web_browser = web_browser_new; | |
225 proxytype = proxytype_new; | |
226 default_away = default_away_new; | |
227 fontsize = fontsize_new; | |
228 g_snprintf(sound_cmd, sizeof(sound_cmd), "%s", sound_cmd_new); | |
229 g_snprintf(web_command, sizeof(web_command), "%s", web_command_new); | |
230 memcpy(&conv_size, &conv_size_new, sizeof(struct window_size)); | |
231 memcpy(&conv_size, &conv_size_new, sizeof(struct window_size)); | |
232 memcpy(&fgcolor, &fgcolor_new, sizeof(GdkColor)); | |
233 memcpy(&bgcolor, &bgcolor_new, sizeof(GdkColor)); | |
2254 | 234 |
3366 | 235 |
236 g_snprintf(fontface, sizeof(fontface), fontface_new); | |
237 #if !GTK_CHECK_VERSION(1,3,0) | |
238 g_snprintf(fontxfld, sizeof(fontxfld), fontxfld_new); | |
239 #endif | |
240 update_convo_font(); | |
241 update_convo_color(); | |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
242 save_prefs(); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
243 } |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
244 |
3366 | 245 |
246 static void ok_cb(GtkWidget *button, void *data) | |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
247 { |
3366 | 248 apply_cb(button, data); |
249 gtk_widget_destroy(prefs); | |
250 } | |
3427 | 251 |
3366 | 252 static void pref_nb_select(GtkTreeSelection *sel, GtkNotebook *nb) { |
253 GtkTreeIter iter; | |
3427 | 254 char text[128]; |
3366 | 255 GValue val = { 0, }; |
256 GtkTreeModel *model = GTK_TREE_MODEL(prefstree); | |
257 | |
258 if (! gtk_tree_selection_get_selected (sel, &model, &iter)) | |
259 return; | |
260 gtk_tree_model_get_value (model, &iter, 1, &val); | |
3427 | 261 g_snprintf(text, sizeof(text), "<span weight=\"bold\" size=\"larger\">%s</span>", |
262 g_value_get_string(&val)); | |
263 gtk_label_set_markup (GTK_LABEL(preflabel), text); | |
3366 | 264 g_value_unset (&val); |
265 gtk_tree_model_get_value (model, &iter, 2, &val); | |
266 gtk_notebook_set_current_page (GTK_NOTEBOOK (prefsnotebook), g_value_get_int (&val)); | |
267 | |
268 } | |
269 | |
270 | |
271 /* These are the pages in the preferences notebook */ | |
272 GtkWidget *interface_page() { | |
273 GtkWidget *ret; | |
274 GtkWidget *frame; | |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
275 GtkWidget *vbox; |
3427 | 276 ret = gtk_vbox_new(FALSE, 18); |
277 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
3366 | 278 |
3427 | 279 vbox = make_frame(ret, _("Interface Options")); |
280 /* This shouldn't have to wait for user to click OK or APPLY or whatnot */ | |
281 /* This really shouldn't be in preferences at all */ | |
282 debugbutton = gaim_button(_("Show _Debug Window"), &misc_options, OPT_MISC_DEBUG, vbox); | |
3366 | 283 |
284 | |
3427 | 285 gaim_button(_("Use _borderless buttons"), &misc_options_new, OPT_MISC_COOL_LOOK, vbox); |
286 | |
287 gtk_widget_show_all(ret); | |
3366 | 288 return ret; |
289 } | |
290 | |
291 GtkWidget *font_page() { | |
292 GtkWidget *ret; | |
293 GtkWidget *button; | |
294 GtkWidget *vbox, *hbox; | |
295 GtkWidget *select = NULL; | |
3427 | 296 GtkSizeGroup *sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); |
297 | |
298 ret = gtk_vbox_new(FALSE, 18); | |
299 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
3366 | 300 |
3427 | 301 vbox = make_frame(ret, _("Style")); |
302 gaim_button(_("_Bold"), &font_options_new, OPT_FONT_BOLD, vbox); | |
303 gaim_button(_("_Italics"), &font_options_new, OPT_FONT_ITALIC, vbox); | |
304 gaim_button(_("_Underline"), &font_options_new, OPT_FONT_UNDERLINE, vbox); | |
305 gaim_button(_("_Strikethough"), &font_options_new, OPT_FONT_STRIKE, vbox); | |
306 | |
307 vbox = make_frame(ret, _("Face")); | |
308 hbox = gtk_hbox_new(FALSE, 6); | |
309 gtk_container_add(GTK_CONTAINER(vbox), hbox); | |
310 button = gaim_button(_("Use custo_m face"), &font_options_new, OPT_FONT_FACE, hbox); | |
311 gtk_size_group_add_widget(sg, button); | |
312 select = gtk_button_new_from_stock(GTK_STOCK_SELECT_FONT); | |
3366 | 313 |
314 if (!(font_options_new & OPT_FONT_FACE)) | |
315 gtk_widget_set_sensitive(GTK_WIDGET(select), FALSE); | |
316 gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(toggle_sensitive), select); | |
317 gtk_signal_connect(GTK_OBJECT(select), "clicked", GTK_SIGNAL_FUNC(show_font_dialog), NULL); | |
318 gtk_box_pack_start(GTK_BOX(hbox), select, FALSE, FALSE, 0); | |
319 | |
320 hbox = gtk_hbox_new(FALSE, 5); | |
321 gtk_container_add(GTK_CONTAINER(vbox), hbox); | |
3427 | 322 button = gaim_button(_("Use custom si_ze"), &font_options_new, OPT_FONT_SIZE, hbox); |
323 gtk_size_group_add_widget(sg, button); | |
324 select = gaim_labeled_spin_button(hbox, NULL, &fontsize_new, 1, 7, NULL); | |
3366 | 325 if (!(font_options_new & OPT_FONT_SIZE)) |
326 gtk_widget_set_sensitive(GTK_WIDGET(select), FALSE); | |
327 gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(toggle_sensitive), select); | |
328 | |
3427 | 329 vbox = make_frame(ret, _("Color")); |
3366 | 330 hbox = gtk_hbox_new(FALSE, 5); |
331 gtk_container_add(GTK_CONTAINER(vbox), hbox); | |
332 | |
3427 | 333 |
334 button = gaim_button(_("_Text color"), &font_options_new, OPT_FONT_FGCOL, hbox); | |
335 gtk_size_group_add_widget(sg, button); | |
336 | |
337 select = gtk_button_new_from_stock(GTK_STOCK_SELECT_COLOR); | |
338 gtk_box_pack_start(GTK_BOX(hbox), select, FALSE, FALSE, 0); | |
3366 | 339 pref_fg_picture = show_color_pref(hbox, TRUE); |
340 gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(update_color), | |
341 pref_fg_picture); | |
3427 | 342 |
3366 | 343 if (!(font_options_new & OPT_FONT_FGCOL)) |
344 gtk_widget_set_sensitive(GTK_WIDGET(select), FALSE); | |
345 gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(toggle_sensitive), select); | |
346 gtk_signal_connect(GTK_OBJECT(select), "clicked", GTK_SIGNAL_FUNC(show_fgcolor_dialog), NULL); | |
347 hbox = gtk_hbox_new(FALSE, 5); | |
348 gtk_container_add(GTK_CONTAINER(vbox), hbox); | |
3427 | 349 |
350 button = gaim_button(_("Bac_kground color"), &font_options_new, OPT_FONT_BGCOL, hbox); | |
351 gtk_size_group_add_widget(sg, button); | |
352 select = gtk_button_new_from_stock(GTK_STOCK_SELECT_COLOR); | |
353 gtk_box_pack_start(GTK_BOX(hbox), select, FALSE, FALSE, 0); | |
3366 | 354 pref_bg_picture = show_color_pref(hbox, FALSE); |
3427 | 355 gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(update_color), |
3366 | 356 pref_bg_picture); |
357 if (!(font_options_new & OPT_FONT_BGCOL)) | |
358 gtk_widget_set_sensitive(GTK_WIDGET(select), FALSE); | |
359 gtk_signal_connect(GTK_OBJECT(select), "clicked", GTK_SIGNAL_FUNC(show_bgcolor_dialog), NULL); | |
360 gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(toggle_sensitive), select); | |
361 | |
3427 | 362 gtk_widget_show_all(ret); |
3366 | 363 return ret; |
364 } | |
365 | |
366 | |
367 GtkWidget *messages_page() { | |
368 GtkWidget *ret; | |
369 GtkWidget *vbox; | |
3427 | 370 ret = gtk_vbox_new(FALSE, 18); |
371 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
3366 | 372 |
3427 | 373 vbox = make_frame (ret, _("Display")); |
374 gaim_button(_("Show graphical _smileys"), &convo_options_new, OPT_CONVO_SHOW_SMILEY, vbox); | |
375 gaim_button(_("Show _timestamp on messages"), &convo_options_new, OPT_CONVO_SHOW_TIME, vbox); | |
376 gaim_button(_("Show _URLs as links"), &convo_options_new, OPT_CONVO_SEND_LINKS, vbox); | |
377 gaim_button(_("_Highlight misspelled words"), &convo_options_new, OPT_CONVO_CHECK_SPELLING, vbox); | |
378 | |
379 vbox = make_frame (ret, _("Ignore")); | |
380 gaim_button(_("Ignore c_olors"), &convo_options_new, OPT_CONVO_IGNORE_COLOUR, vbox); | |
381 gaim_button(_("Ignore font _faces"), &convo_options_new, OPT_CONVO_IGNORE_FONTS, vbox); | |
382 gaim_button(_("Ignore font si_zes"), &convo_options_new, OPT_CONVO_IGNORE_SIZES, vbox); | |
383 gaim_button(_("Ignore Ti_K Automated Messages"), &away_options_new, OPT_AWAY_TIK_HACK, vbox); | |
384 | |
385 gtk_widget_show_all(ret); | |
3366 | 386 return ret; |
387 } | |
388 | |
389 GtkWidget *hotkeys_page() { | |
390 GtkWidget *ret; | |
391 GtkWidget *vbox; | |
3427 | 392 ret = gtk_vbox_new(FALSE, 18); |
393 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
3366 | 394 |
3427 | 395 vbox = make_frame(ret, _("Send Message")); |
396 gaim_button(_("_Enter sends message"), &convo_options_new, OPT_CONVO_ENTER_SENDS, vbox); | |
397 gaim_button(_("C_ontrol-Enter sends message"), &convo_options_new, OPT_CONVO_CTL_ENTER, vbox); | |
398 | |
399 vbox = make_frame (ret, _("Window Closing")); | |
400 gaim_button(_("E_scape closes window"), &convo_options_new, OPT_CONVO_ESC_CAN_CLOSE, vbox); | |
401 gaim_button(_("Control-_W closes window"), &convo_options_new, OPT_CONVO_CTL_W_CLOSES, vbox); | |
3366 | 402 |
3427 | 403 vbox = make_frame(ret, "Insertions"); |
404 gaim_button(_("Control-{B/I/U/S} inserts _HTML tags"), &convo_options_new, OPT_CONVO_CTL_CHARS, vbox); | |
405 gaim_button(_("Control-(number) inserts _smileys"), &convo_options_new, OPT_CONVO_CTL_SMILEYS, vbox); | |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
406 |
3427 | 407 gtk_widget_show_all(ret); |
3366 | 408 return ret; |
409 } | |
410 | |
411 GtkWidget *list_page() { | |
412 GtkWidget *ret; | |
413 GtkWidget *vbox; | |
3427 | 414 ret = gtk_vbox_new(FALSE, 18); |
415 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
3366 | 416 |
3427 | 417 vbox = make_frame (ret, _("Buttons")); |
418 gaim_button(_("_Hide IM/Info/Chat buttons"), &blist_options_new, OPT_BLIST_NO_BUTTONS, vbox); | |
419 gaim_button(_("Show _pictures on buttons"), &blist_options_new, OPT_BLIST_SHOW_BUTTON_XPM, vbox); | |
3366 | 420 |
3427 | 421 vbox = make_frame (ret, _("Buddy List Window")); |
422 gaim_button(_("_Save Window Size/Position"), &blist_options_new, OPT_BLIST_SAVED_WINDOWS, vbox); | |
423 gaim_button(_("_Raise Window on Events"), &blist_options_new, OPT_BLIST_POPUP, vbox); | |
3366 | 424 |
3427 | 425 vbox = make_frame (ret, _("Group Display")); |
426 gaim_button(_("Hide _groups with no online buddies"), &blist_options_new, OPT_BLIST_NO_MT_GRP, vbox); | |
427 gaim_button(_("Show _numbers in groups"), &blist_options_new, OPT_BLIST_SHOW_GRPNUM, vbox); | |
3366 | 428 |
3427 | 429 vbox = make_frame (ret, _("Buddy Display")); |
430 gaim_button(_("Show buddy type _icons"), &blist_options_new, OPT_BLIST_SHOW_PIXMAPS, vbox); | |
431 gaim_button(_("Show _warning levels"), &blist_options_new, OPT_BLIST_SHOW_WARN, vbox); | |
432 gaim_button(_("Show idle _times"), &blist_options_new, OPT_BLIST_SHOW_IDLETIME, vbox); | |
433 gaim_button(_("Grey i_dle buddies"), &blist_options_new, OPT_BLIST_GREY_IDLERS, vbox); | |
3366 | 434 |
3427 | 435 gtk_widget_show_all(ret); |
3366 | 436 return ret; |
437 } | |
438 | |
439 GtkWidget *im_page() { | |
440 GtkWidget *ret; | |
441 GtkWidget *vbox; | |
3427 | 442 GtkWidget *typingbutton, *widge; |
443 GtkSizeGroup *sg; | |
3366 | 444 |
3427 | 445 ret = gtk_vbox_new(FALSE, 18); |
446 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
447 | |
448 sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); | |
449 | |
450 vbox = make_frame (ret, _("Window")); | |
451 widge = gaim_dropdown(vbox, "Show _buttons as:", &im_options_new, OPT_IM_BUTTON_TEXT | OPT_IM_BUTTON_XPM, | |
3366 | 452 "Pictures", OPT_IM_BUTTON_XPM, |
453 "Text", OPT_IM_BUTTON_TEXT, | |
454 "Pictures and text", OPT_IM_BUTTON_XPM | OPT_IM_BUTTON_TEXT, NULL); | |
3427 | 455 gtk_size_group_add_widget(sg, widge); |
456 gtk_misc_set_alignment(GTK_MISC(widge), 0, 0); | |
457 gaim_labeled_spin_button(vbox, _("New window _width:"), &conv_size_new.width, 25, 9999, sg); | |
458 gaim_labeled_spin_button(vbox, _("New window _height:"), &conv_size_new.height, 25, 9999, sg); | |
459 gaim_labeled_spin_button(vbox, _("_Entry widget height:"), &conv_size_new.entry_height, 25, 9999, sg); | |
460 gaim_button(_("_Raise windows on events"), &im_options_new, OPT_IM_POPUP, vbox); | |
461 gaim_button(_("Hide window on _send"), &im_options_new, OPT_IM_POPDOWN, vbox); | |
3366 | 462 gtk_widget_show (vbox); |
463 | |
3427 | 464 vbox = make_frame (ret, _("Buddy Icons")); |
465 gaim_button(_("Hide Buddy _Icons"), &im_options_new, OPT_IM_HIDE_ICONS, vbox); | |
466 gaim_button(_("Disable Buddy Icon A_nimation"), &im_options_new, OPT_IM_NO_ANIMATION, vbox); | |
3366 | 467 |
3427 | 468 vbox = make_frame (ret, _("Display")); |
469 gaim_button(_("Show _logins in window"), &im_options_new, OPT_IM_LOGON, vbox); | |
3366 | 470 |
3427 | 471 vbox = make_frame (ret, _("Typing Notification")); |
472 typingbutton = gaim_button(_("Notify buddies that you are _typing to them"), &misc_options_new, | |
3366 | 473 OPT_MISC_STEALTH_TYPING, vbox); |
474 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(typingbutton), !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(typingbutton))); | |
3404 | 475 misc_options_new ^= OPT_MISC_STEALTH_TYPING; |
3366 | 476 |
3427 | 477 gtk_widget_show_all(ret); |
3366 | 478 return ret; |
479 } | |
480 | |
481 GtkWidget *chat_page() { | |
482 GtkWidget *ret; | |
483 GtkWidget *vbox; | |
3427 | 484 GtkWidget *dd; |
485 GtkSizeGroup *sg; | |
3366 | 486 |
3427 | 487 ret = gtk_vbox_new(FALSE, 18); |
488 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
489 | |
490 sg = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL); | |
3366 | 491 |
3427 | 492 vbox = make_frame (ret, _("Window")); |
493 dd = gaim_dropdown(vbox, "Show _buttons as:", &chat_options_new, OPT_CHAT_BUTTON_TEXT | OPT_CHAT_BUTTON_XPM, | |
494 "Pictures", OPT_CHAT_BUTTON_XPM, | |
495 "Text", OPT_CHAT_BUTTON_TEXT, | |
496 "Pictures and Text", OPT_CHAT_BUTTON_XPM | OPT_CHAT_BUTTON_TEXT, NULL); | |
497 gtk_size_group_add_widget(sg, dd); | |
498 gtk_misc_set_alignment(GTK_MISC(dd), 0, 0); | |
499 gaim_labeled_spin_button(vbox, _("New window _width:"), &buddy_chat_size_new.width, 25, 9999, sg); | |
500 gaim_labeled_spin_button(vbox, _("New window _height:"), &buddy_chat_size_new.height, 25, 9999, sg); | |
501 gaim_labeled_spin_button(vbox, _("_Entry widget height:"), &buddy_chat_size_new.entry_height, 25, 9999, sg); | |
502 gaim_button(_("_Raise windows on events"), &chat_options_new, OPT_CHAT_POPUP, vbox); | |
3366 | 503 |
3427 | 504 vbox = make_frame (ret, _("Tab Completion")); |
505 gaim_button(_("_Tab-Complete Nicks"), &chat_options_new, OPT_CHAT_TAB_COMPLETE, vbox); | |
506 gaim_button(_("_Old-Style Tab Completion"), &chat_options_new, OPT_CHAT_OLD_STYLE_TAB, vbox); | |
507 | |
508 vbox = make_frame (ret, _("Display")); | |
509 gaim_button(_("_Show people joining/leaving in window"), &chat_options_new, OPT_CHAT_LOGON, vbox); | |
510 gaim_button(_("Co_lorize screennames"), &chat_options_new, OPT_CHAT_COLORIZE, vbox); | |
511 | |
512 gtk_widget_show_all(ret); | |
3366 | 513 return ret; |
514 } | |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
515 |
3366 | 516 GtkWidget *tab_page() { |
517 GtkWidget *ret; | |
518 GtkWidget *vbox; | |
3427 | 519 GtkWidget *dd; |
520 GtkSizeGroup *sg; | |
521 ret = gtk_vbox_new(FALSE, 18); | |
522 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
3366 | 523 |
3427 | 524 sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); |
525 | |
526 vbox = make_frame (ret, _("IM Tabs")); | |
527 dd = gaim_dropdown(vbox, "Tab _Placement:", &im_options_new, OPT_IM_SIDE_TAB | OPT_IM_BR_TAB, | |
3366 | 528 "Top", 0, |
529 "Bottom", OPT_IM_BR_TAB, | |
530 "Left", OPT_IM_SIDE_TAB, | |
531 "Right", OPT_IM_BR_TAB | OPT_IM_SIDE_TAB, NULL); | |
3427 | 532 gtk_size_group_add_widget(sg, dd); |
533 gaim_button(_("Show all _Instant Messages in one tabbed\nwindow"), &im_options_new, OPT_IM_ONE_WINDOW, vbox); | |
534 gaim_button(_("Show a_liases in tabs/titles"), &im_options_new, OPT_IM_ALIAS_TAB, vbox); | |
3366 | 535 |
3427 | 536 vbox = make_frame (ret, _("Chat Tabs")); |
537 dd = gaim_dropdown(vbox, "Tab _Placement:", &chat_options_new, OPT_CHAT_SIDE_TAB | OPT_CHAT_BR_TAB, | |
538 "Top", 0, | |
539 "Bottom", OPT_CHAT_BR_TAB, | |
540 "Left", OPT_CHAT_SIDE_TAB, | |
541 "Right", OPT_CHAT_SIDE_TAB | OPT_CHAT_BR_TAB, NULL); | |
542 gtk_size_group_add_widget(sg, dd); | |
543 gaim_button(_("Show all c_hats in one tabbed window"), &chat_options_new, OPT_CHAT_ONE_WINDOW, | |
3366 | 544 vbox); |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
545 |
3427 | 546 vbox = make_frame (ret, _("Combined Tabs")); |
547 gaim_button(_("Show IMs and chats in _same tabbed\nwindow."), &convo_options_new, OPT_CONVO_COMBINE, vbox); | |
3366 | 548 |
3427 | 549 vbox = make_frame (ret, _("Buddy List Tabs")); |
550 dd = gaim_dropdown(vbox, "Tab _Placement:", &blist_options_new, OPT_BLIST_BOTTOM_TAB, | |
3366 | 551 "Top", 0, |
552 "Bottom", OPT_BLIST_BOTTOM_TAB, NULL); | |
3427 | 553 gtk_size_group_add_widget(sg, dd); |
554 | |
555 gtk_widget_show_all(ret); | |
3366 | 556 return ret; |
557 } | |
558 | |
559 GtkWidget *proxy_page() { | |
560 GtkWidget *ret; | |
561 GtkWidget *vbox; | |
562 GtkWidget *entry; | |
563 GtkWidget *label; | |
564 GtkWidget *hbox; | |
565 GtkWidget *table; | |
566 | |
3427 | 567 ret = gtk_vbox_new(FALSE, 18); |
568 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
3366 | 569 |
3427 | 570 vbox = make_frame (ret, _("Proxy Type")); |
571 gaim_dropdown(vbox, "Proxy _Type:", &proxytype_new, -1, | |
3366 | 572 "No Proxy", PROXY_NONE, |
573 "SOCKS 4", PROXY_SOCKS4, | |
574 "SOCKS 5", PROXY_SOCKS5, | |
575 "HTTP", PROXY_HTTP, NULL); | |
2372
2927c2c26fe6
[gaim-migrate @ 2385]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2323
diff
changeset
|
576 |
2254 | 577 table = gtk_table_new(2, 2, FALSE); |
578 gtk_container_set_border_width(GTK_CONTAINER(table), 5); | |
579 gtk_table_set_col_spacings(GTK_TABLE(table), 5); | |
580 gtk_table_set_row_spacings(GTK_TABLE(table), 5); | |
581 | |
3427 | 582 vbox = make_frame(ret, _("Proxy Server")); |
583 prefs_proxy_frame = vbox; | |
2254 | 584 |
585 if (proxytype == PROXY_NONE) | |
3427 | 586 gtk_widget_set_sensitive(GTK_WIDGET(vbox), FALSE); |
2254 | 587 |
588 table = gtk_table_new(2, 4, FALSE); | |
589 gtk_container_set_border_width(GTK_CONTAINER(table), 5); | |
590 gtk_table_set_col_spacings(GTK_TABLE(table), 5); | |
591 gtk_table_set_row_spacings(GTK_TABLE(table), 10); | |
3427 | 592 gtk_container_add(GTK_CONTAINER(vbox), table); |
2254 | 593 |
594 | |
3427 | 595 label = gtk_label_new_with_mnemonic(_("_Host")); |
2254 | 596 gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); |
597 gtk_table_attach(GTK_TABLE(table), label, 0, 1, 0, 1, GTK_FILL, 0, 0, 0); | |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
598 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
599 entry = gtk_entry_new(); |
3427 | 600 gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry); |
3366 | 601 gtk_table_attach(GTK_TABLE(table), entry, 1, 2, 0, 1, GTK_FILL, 0, 0, 0); |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
602 gtk_signal_connect(GTK_OBJECT(entry), "changed", |
2372
2927c2c26fe6
[gaim-migrate @ 2385]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2323
diff
changeset
|
603 GTK_SIGNAL_FUNC(proxy_print_option), (void *)PROXYHOST); |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
604 gtk_entry_set_text(GTK_ENTRY(entry), proxyhost); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
605 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
606 hbox = gtk_hbox_new(TRUE, 5); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
607 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
608 |
3427 | 609 label = gtk_label_new_with_mnemonic(_("Port")); |
2254 | 610 gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); |
611 gtk_table_attach(GTK_TABLE(table), label, 0, 1, 1, 2, GTK_FILL, 0, 0, 0); | |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
612 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
613 entry = gtk_entry_new(); |
3427 | 614 gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry); |
3366 | 615 gtk_table_attach(GTK_TABLE(table), entry, 1, 2, 1, 2, GTK_FILL, 0, 0, 0); |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
616 gtk_signal_connect(GTK_OBJECT(entry), "changed", |
2372
2927c2c26fe6
[gaim-migrate @ 2385]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2323
diff
changeset
|
617 GTK_SIGNAL_FUNC(proxy_print_option), (void *)PROXYPORT); |
2254 | 618 |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
619 if (proxyport) { |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
620 char buf[128]; |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
621 g_snprintf(buf, sizeof(buf), "%d", proxyport); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
622 gtk_entry_set_text(GTK_ENTRY(entry), buf); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
623 } |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
624 |
3427 | 625 label = gtk_label_new_with_mnemonic(_("_User")); |
2254 | 626 gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); |
627 gtk_table_attach(GTK_TABLE(table), label, 0, 1, 2, 3, GTK_FILL, 0, 0, 0); | |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
628 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
629 entry = gtk_entry_new(); |
3427 | 630 gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry); |
3366 | 631 gtk_table_attach(GTK_TABLE(table), entry, 1, 2, 2, 3, GTK_FILL, 0, 0, 0); |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
632 gtk_signal_connect(GTK_OBJECT(entry), "changed", |
2372
2927c2c26fe6
[gaim-migrate @ 2385]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2323
diff
changeset
|
633 GTK_SIGNAL_FUNC(proxy_print_option), (void *)PROXYUSER); |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
634 gtk_entry_set_text(GTK_ENTRY(entry), proxyuser); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
635 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
636 hbox = gtk_hbox_new(TRUE, 5); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
637 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
638 |
3427 | 639 label = gtk_label_new_with_mnemonic(_("Pa_ssword")); |
2254 | 640 gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); |
641 gtk_table_attach(GTK_TABLE(table), label, 0, 1, 3, 4, GTK_FILL, 0, 0, 0); | |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
642 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
643 entry = gtk_entry_new(); |
3427 | 644 gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry); |
3366 | 645 gtk_table_attach(GTK_TABLE(table), entry, 1, 2, 3, 4, GTK_FILL , 0, 0, 0); |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
646 gtk_entry_set_visibility(GTK_ENTRY(entry), FALSE); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
647 gtk_signal_connect(GTK_OBJECT(entry), "changed", |
2372
2927c2c26fe6
[gaim-migrate @ 2385]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2323
diff
changeset
|
648 GTK_SIGNAL_FUNC(proxy_print_option), (void *)PROXYPASS); |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
649 gtk_entry_set_text(GTK_ENTRY(entry), proxypass); |
3032 | 650 |
3427 | 651 gtk_widget_show_all(ret); |
3366 | 652 return ret; |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
653 } |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
654 |
3432 | 655 static void browser_print_option(GtkEntry *entry, void *nullish) { |
656 g_snprintf(web_command_new, sizeof(web_command_new), "%s", gtk_entry_get_text(entry)); | |
657 } | |
658 | |
3366 | 659 GtkWidget *browser_page() { |
660 GtkWidget *ret; | |
661 GtkWidget *vbox, *hbox; | |
662 GtkWidget *label; | |
3427 | 663 GtkSizeGroup *sg; |
664 | |
665 ret = gtk_vbox_new(FALSE, 18); | |
666 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
667 | |
668 sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); | |
1757
3dfe4aefd366
[gaim-migrate @ 1767]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1755
diff
changeset
|
669 |
3427 | 670 vbox = make_frame (ret, _("Browser Selection")); |
671 label = gaim_dropdown(vbox, "_Browser", &web_browser_new, -1, | |
672 "Netscape", BROWSER_NETSCAPE, | |
673 "Konqueror", BROWSER_KONQ, | |
674 "Mozilla", BROWSER_MOZILLA, | |
675 "Manual", BROWSER_MANUAL, | |
676 "Galeon", BROWSER_GALEON, | |
677 "Opera", BROWSER_OPERA, NULL); | |
678 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
679 gtk_size_group_add_widget(sg, label); | |
915
378c862a2381
[gaim-migrate @ 925]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
910
diff
changeset
|
680 |
3366 | 681 hbox = gtk_hbox_new(FALSE, 5); |
682 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); | |
3427 | 683 label = gtk_label_new_with_mnemonic("_Manual: "); |
3366 | 684 gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0); |
3427 | 685 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); |
686 gtk_size_group_add_widget(sg, label); | |
3366 | 687 browser_entry = gtk_entry_new(); |
3427 | 688 gtk_label_set_mnemonic_widget(GTK_LABEL(label), browser_entry); |
3366 | 689 if (web_browser_new != BROWSER_MANUAL) |
690 gtk_widget_set_sensitive(browser_entry, FALSE); | |
691 gtk_box_pack_start (GTK_BOX (hbox), browser_entry, FALSE, FALSE, 0); | |
1750
d2eca7a46cfd
[gaim-migrate @ 1760]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1711
diff
changeset
|
692 |
3432 | 693 gtk_entry_set_text(GTK_ENTRY(browser_entry), web_command_new); |
694 gtk_signal_connect(GTK_OBJECT(browser_entry), "changed", | |
695 GTK_SIGNAL_FUNC(browser_print_option), NULL); | |
696 | |
3427 | 697 vbox = make_frame (ret, _("Browser Options")); |
698 gaim_button(_("Open new _window by default"), &misc_options_new, OPT_MISC_BROWSER_POPUP, vbox); | |
3366 | 699 |
3427 | 700 gtk_widget_show_all(ret); |
3366 | 701 return ret; |
702 } | |
703 | |
704 GtkWidget *logging_page() { | |
705 GtkWidget *ret; | |
706 GtkWidget *vbox; | |
3427 | 707 ret = gtk_vbox_new(FALSE, 18); |
708 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
915
378c862a2381
[gaim-migrate @ 925]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
910
diff
changeset
|
709 |
3427 | 710 vbox = make_frame (ret, _("Message Logs")); |
711 gaim_button(_("_Log all conversations"), &logging_options_new, OPT_LOG_ALL, vbox); | |
712 gaim_button(_("Strip _HTML from logs"), &logging_options_new, OPT_LOG_STRIP_HTML, vbox); | |
2843
87d11d2a7d59
[gaim-migrate @ 2856]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2839
diff
changeset
|
713 |
3427 | 714 vbox = make_frame (ret, _("System Logs")); |
715 gaim_button(_("Log when buddies _sign on/sign off"), &logging_options_new, OPT_LOG_BUDDY_SIGNON, | |
3366 | 716 vbox); |
3427 | 717 gaim_button(_("Log when buddies become _idle/un-idle"), &logging_options_new, OPT_LOG_BUDDY_IDLE, |
3366 | 718 vbox); |
3427 | 719 gaim_button(_("Log when buddies go away/come _back"), &logging_options_new, OPT_LOG_BUDDY_AWAY, vbox); |
720 gaim_button(_("Log your _own signons/idleness/awayness"), &logging_options_new, OPT_LOG_MY_SIGNON, | |
3366 | 721 vbox); |
3427 | 722 gaim_button(_("I_ndividual log file for each buddy's signons"), &logging_options_new, |
3366 | 723 OPT_LOG_INDIVIDUAL, vbox); |
1757
3dfe4aefd366
[gaim-migrate @ 1767]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1755
diff
changeset
|
724 |
3427 | 725 gtk_widget_show_all(ret); |
3366 | 726 return ret; |
1757
3dfe4aefd366
[gaim-migrate @ 1767]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1755
diff
changeset
|
727 } |
3dfe4aefd366
[gaim-migrate @ 1767]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1755
diff
changeset
|
728 |
3366 | 729 static GtkWidget *sndcmd = NULL; |
1757
3dfe4aefd366
[gaim-migrate @ 1767]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1755
diff
changeset
|
730 |
3366 | 731 static gint sound_cmd_yeah(GtkEntry *entry, GdkEvent *event, gpointer d) |
1813
998a6a032874
[gaim-migrate @ 1823]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1805
diff
changeset
|
732 { |
3366 | 733 g_snprintf(sound_cmd_new, sizeof(sound_cmd_new), "%s", gtk_entry_get_text(GTK_ENTRY(sndcmd))); |
734 return TRUE; | |
1813
998a6a032874
[gaim-migrate @ 1823]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1805
diff
changeset
|
735 } |
998a6a032874
[gaim-migrate @ 1823]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1805
diff
changeset
|
736 |
3366 | 737 GtkWidget *sound_page() { |
738 GtkWidget *ret; | |
1750
d2eca7a46cfd
[gaim-migrate @ 1760]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1711
diff
changeset
|
739 GtkWidget *label; |
3366 | 740 GtkWidget *vbox, *hbox; |
3427 | 741 GtkSizeGroup *sg; |
742 GtkWidget *dd; | |
3366 | 743 |
3427 | 744 ret = gtk_vbox_new(FALSE, 18); |
745 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
746 |
3427 | 747 sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
748 |
3427 | 749 vbox = make_frame (ret, _("Sound Options")); |
750 gaim_button(_("_No sounds when you log in"), &sound_options, OPT_SOUND_SILENT_SIGNON, vbox); | |
751 gaim_button(_("_Sounds while away"), &sound_options, OPT_SOUND_WHEN_AWAY, vbox); | |
2843
87d11d2a7d59
[gaim-migrate @ 2856]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2839
diff
changeset
|
752 |
3427 | 753 vbox = make_frame (ret, _("Sound Method")); |
754 dd = gaim_dropdown(vbox, "_Method", &sound_options_new, OPT_SOUND_BEEP | | |
3366 | 755 OPT_SOUND_ESD | OPT_SOUND_ARTSC | OPT_SOUND_NAS | OPT_SOUND_NORMAL | |
756 OPT_SOUND_CMD, | |
757 "Console Beep", OPT_SOUND_BEEP, | |
758 #ifdef ESD_SOUND | |
759 "ESD", OPT_SOUND_ESD, | |
760 #endif /* ESD_SOUND */ | |
761 #ifdef ARTSC_SOUND | |
762 "ArtsC", OPT_SOUND_ARTSC, | |
763 #endif /* ARTSC_SOUND */ | |
764 #ifdef NAS_SOUND | |
765 "NAS", OPT_SOUND_NAS, | |
766 #endif /* NAS_SOUND */ | |
767 "Internal", OPT_SOUND_NORMAL, | |
768 "Command", OPT_SOUND_CMD, NULL); | |
3427 | 769 gtk_size_group_add_widget(sg, dd); |
770 gtk_misc_set_alignment(GTK_MISC(dd), 0, 0); | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
771 |
1813
998a6a032874
[gaim-migrate @ 1823]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1805
diff
changeset
|
772 hbox = gtk_hbox_new(FALSE, 5); |
998a6a032874
[gaim-migrate @ 1823]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1805
diff
changeset
|
773 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 5); |
3427 | 774 |
3366 | 775 hbox = gtk_hbox_new(FALSE, 5); |
776 gtk_container_add(GTK_CONTAINER(vbox), hbox); | |
3427 | 777 label = gtk_label_new_with_mnemonic(_("Sound c_ommand\n(%s for filename)")); |
778 gtk_size_group_add_widget(sg, label); | |
779 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
3366 | 780 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 5); |
915
378c862a2381
[gaim-migrate @ 925]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
910
diff
changeset
|
781 |
3366 | 782 sndcmd = gtk_entry_new(); |
3427 | 783 gtk_label_set_mnemonic_widget(GTK_LABEL(label), sndcmd); |
1813
998a6a032874
[gaim-migrate @ 1823]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1805
diff
changeset
|
784 |
3366 | 785 gtk_entry_set_editable(GTK_ENTRY(sndcmd), TRUE); |
786 gtk_entry_set_text(GTK_ENTRY(sndcmd), sound_cmd); | |
787 gtk_widget_set_size_request(sndcmd, 75, -1); | |
3427 | 788 |
3366 | 789 gtk_widget_set_sensitive(sndcmd, (sound_options_new & OPT_SOUND_CMD)); |
790 gtk_box_pack_start(GTK_BOX(hbox), sndcmd, TRUE, TRUE, 5); | |
791 gtk_signal_connect(GTK_OBJECT(sndcmd), "focus_out_event", GTK_SIGNAL_FUNC(sound_cmd_yeah), NULL); | |
2746
a0da8be3db45
[gaim-migrate @ 2759]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2745
diff
changeset
|
792 |
3427 | 793 gtk_widget_show_all(ret); |
3366 | 794 return ret; |
2262
9c8f353331e7
[gaim-migrate @ 2272]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2254
diff
changeset
|
795 } |
9c8f353331e7
[gaim-migrate @ 2272]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2254
diff
changeset
|
796 |
3366 | 797 GtkWidget *away_page() { |
798 GtkWidget *ret; | |
2262
9c8f353331e7
[gaim-migrate @ 2272]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2254
diff
changeset
|
799 GtkWidget *vbox; |
9c8f353331e7
[gaim-migrate @ 2272]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2254
diff
changeset
|
800 GtkWidget *hbox; |
3366 | 801 GtkWidget *label; |
2262
9c8f353331e7
[gaim-migrate @ 2272]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2254
diff
changeset
|
802 GtkWidget *button; |
3366 | 803 GtkWidget *select; |
3427 | 804 GtkWidget *dd; |
805 GtkSizeGroup *sg; | |
2262
9c8f353331e7
[gaim-migrate @ 2272]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2254
diff
changeset
|
806 |
3427 | 807 ret = gtk_vbox_new(FALSE, 18); |
808 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
2262
9c8f353331e7
[gaim-migrate @ 2272]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2254
diff
changeset
|
809 |
3427 | 810 sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); |
1813
998a6a032874
[gaim-migrate @ 1823]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1805
diff
changeset
|
811 |
3427 | 812 vbox = make_frame (ret, _("Away")); |
813 gaim_button(_("_Sending messages removes away status"), &away_options_new, OPT_AWAY_BACK_ON_IM, vbox); | |
814 gaim_button(_("_Queue new messages when away"), &away_options_new, OPT_AWAY_QUEUE, vbox); | |
815 gaim_button(_("_Ignore new conversations when away"), &away_options_new, OPT_AWAY_DISCARD, vbox); | |
1813
998a6a032874
[gaim-migrate @ 1823]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1805
diff
changeset
|
816 |
3427 | 817 vbox = make_frame (ret, _("Auto-response")); |
3366 | 818 hbox = gtk_hbox_new(FALSE, 0); |
819 gtk_container_add(GTK_CONTAINER(vbox), hbox); | |
3427 | 820 gaim_labeled_spin_button(hbox, _("Seconds before _resending:"), |
821 &away_resend_new, 1, 24 * 60 * 60, sg); | |
822 gaim_button(_("_Don't send auto-response"), &away_options_new, OPT_AWAY_NO_AUTO_RESP, vbox); | |
823 gaim_button(_("_Only send auto-response when idle"), &away_options_new, OPT_AWAY_IDLE_RESP, vbox); | |
1813
998a6a032874
[gaim-migrate @ 1823]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1805
diff
changeset
|
824 |
3366 | 825 if (away_options_new & OPT_AWAY_NO_AUTO_RESP) |
826 gtk_widget_set_sensitive(hbox, FALSE); | |
3427 | 827 |
828 vbox = make_frame (ret, _("Idle")); | |
829 dd = gaim_dropdown(vbox, "Idle _Time Reporting:", &away_resend_new, -1, | |
830 "None", IDLE_NONE, | |
831 "Gaim Usage", IDLE_GAIM, | |
3366 | 832 #ifdef USE_SCREENSAVER |
3427 | 833 "X Usage", IDLE_SCREENSAVER, |
3366 | 834 #endif |
3427 | 835 NULL); |
836 gtk_size_group_add_widget(sg, dd); | |
837 gtk_misc_set_alignment(GTK_MISC(dd), 0, 0); | |
2385
bdc74764245c
[gaim-migrate @ 2398]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2372
diff
changeset
|
838 |
3427 | 839 vbox = make_frame (ret, _("Auto-away")); |
840 button = gaim_button(_("Set away _when idle"), &away_options_new, OPT_AWAY_AUTO, vbox); | |
841 select = gaim_labeled_spin_button(vbox, "_Minutes before setting away:", &auto_away_new, 1, 24 * 60, sg); | |
3366 | 842 if (!(away_options_new & OPT_AWAY_AUTO)) |
843 gtk_widget_set_sensitive(GTK_WIDGET(select), FALSE); | |
844 gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(toggle_sensitive), select); | |
1 | 845 |
3427 | 846 label = gtk_label_new_with_mnemonic("Away m_essage:"); |
847 gtk_size_group_add_widget(sg, label); | |
848 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
3366 | 849 hbox = gtk_hbox_new(FALSE, 0); |
850 gtk_container_add(GTK_CONTAINER(vbox), hbox); | |
851 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); | |
852 prefs_away_menu = gtk_option_menu_new(); | |
3427 | 853 gtk_label_set_mnemonic_widget(GTK_LABEL(label), prefs_away_menu); |
3366 | 854 if (!(away_options_new & OPT_AWAY_AUTO)) |
855 gtk_widget_set_sensitive(GTK_WIDGET(prefs_away_menu), FALSE); | |
856 gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(toggle_sensitive), prefs_away_menu); | |
857 default_away_menu_init(prefs_away_menu); | |
858 gtk_widget_show(prefs_away_menu); | |
859 gtk_box_pack_start(GTK_BOX(hbox), prefs_away_menu, FALSE, FALSE, 0); | |
860 | |
3427 | 861 gtk_widget_show_all(ret); |
3366 | 862 return ret; |
873
789df4b47508
[gaim-migrate @ 883]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
864
diff
changeset
|
863 } |
789df4b47508
[gaim-migrate @ 883]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
864
diff
changeset
|
864 |
3366 | 865 #if GTK_CHECK_VERSION (1,3,0) |
866 static void event_toggled (GtkCellRendererToggle *cell, gchar *pth, gpointer data) | |
873
789df4b47508
[gaim-migrate @ 883]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
864
diff
changeset
|
867 { |
3366 | 868 GtkTreeModel *model = (GtkTreeModel *)data; |
869 GtkTreeIter iter; | |
870 GtkTreePath *path = gtk_tree_path_new_from_string(pth); | |
871 gint soundnum; | |
872 | |
873 gtk_tree_model_get_iter (model, &iter, path); | |
874 gtk_tree_model_get (model, &iter, 2, &soundnum, -1); | |
873
789df4b47508
[gaim-migrate @ 883]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
864
diff
changeset
|
875 |
3366 | 876 sound_options_new ^= sounds[soundnum].opt; |
877 gtk_list_store_set (GTK_LIST_STORE (model), &iter, 0, sound_options_new & sounds[soundnum].opt, -1); | |
878 } | |
879 #endif | |
880 | |
881 static void test_sound(GtkWidget *button, gpointer i_am_NULL) | |
882 { | |
883 guint32 tmp_sound = sound_options; | |
3401 | 884 char *save_me=NULL; |
3366 | 885 if (!(sound_options & OPT_SOUND_WHEN_AWAY)) |
886 sound_options ^= OPT_SOUND_WHEN_AWAY; | |
887 if (!(sound_options & sounds[sound_row_sel].opt)) | |
888 sound_options ^= sounds[sound_row_sel].opt; | |
3401 | 889 save_me = sound_file[sound_row_sel]; |
890 sound_file[sound_row_sel] = sound_file_new[sound_row_sel]; | |
3366 | 891 play_sound(sound_row_sel); |
3401 | 892 |
893 sound_file[sound_row_sel] = save_me; | |
3366 | 894 sound_options = tmp_sound; |
873
789df4b47508
[gaim-migrate @ 883]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
864
diff
changeset
|
895 } |
789df4b47508
[gaim-migrate @ 883]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
864
diff
changeset
|
896 |
3366 | 897 static void reset_sound(GtkWidget *button, gpointer i_am_also_NULL) |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
898 { |
2372
2927c2c26fe6
[gaim-migrate @ 2385]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2323
diff
changeset
|
899 |
3366 | 900 /* This just resets a sound file back to default */ |
901 sound_file_new[sound_row_sel] = NULL; | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
902 |
3366 | 903 gtk_entry_set_text(GTK_ENTRY(sound_entry), "(default)"); |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
904 } |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
905 |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
906 void close_sounddialog(GtkWidget *w, GtkWidget *w2) |
1170 | 907 { |
908 | |
909 GtkWidget *dest; | |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
910 |
1170 | 911 if (!GTK_IS_WIDGET(w2)) |
912 dest = w; | |
913 else | |
914 dest = w2; | |
915 | |
916 sounddialog = NULL; | |
917 | |
918 gtk_widget_destroy(dest); | |
919 } | |
920 | |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
921 void do_select_sound(GtkWidget *w, int snd) |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
922 { |
1953
f0ff0b367e3d
[gaim-migrate @ 1963]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1930
diff
changeset
|
923 const char *file; |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
924 |
1170 | 925 file = gtk_file_selection_get_filename(GTK_FILE_SELECTION(sounddialog)); |
926 | |
927 /* If they type in a directory, change there */ | |
928 if (file_is_dir(file, sounddialog)) | |
929 return; | |
930 | |
931 /* Let's just be safe */ | |
3366 | 932 if (sound_file_new[snd]) |
933 free(sound_file_new[snd]); | |
1170 | 934 |
935 /* Set it -- and forget it */ | |
3366 | 936 sound_file_new[snd] = g_strdup(file); |
937 | |
1175 | 938 /* Set our text entry */ |
3366 | 939 gtk_entry_set_text(GTK_ENTRY(sound_entry), sound_file_new[snd]); |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
940 |
1170 | 941 /* Close the window! It's getting cold in here! */ |
942 close_sounddialog(NULL, sounddialog); | |
2471
612efbf62c35
[gaim-migrate @ 2484]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2385
diff
changeset
|
943 |
612efbf62c35
[gaim-migrate @ 2484]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2385
diff
changeset
|
944 if (last_sound_dir) |
612efbf62c35
[gaim-migrate @ 2484]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2385
diff
changeset
|
945 g_free(last_sound_dir); |
3429 | 946 last_sound_dir = g_dirname(sound_file_new[snd]); |
1170 | 947 } |
948 | |
3366 | 949 static void sel_sound(GtkWidget *button, gpointer being_NULL_is_fun) |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
950 { |
1170 | 951 char *buf = g_malloc(BUF_LEN); |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
952 |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
953 if (!sounddialog) { |
1170 | 954 sounddialog = gtk_file_selection_new(_("Gaim - Sound Configuration")); |
955 | |
956 gtk_file_selection_hide_fileop_buttons(GTK_FILE_SELECTION(sounddialog)); | |
957 | |
2471
612efbf62c35
[gaim-migrate @ 2484]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2385
diff
changeset
|
958 g_snprintf(buf, BUF_LEN - 1, "%s/", last_sound_dir ? last_sound_dir : g_get_home_dir()); |
1170 | 959 |
960 gtk_file_selection_set_filename(GTK_FILE_SELECTION(sounddialog), buf); | |
961 | |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
962 gtk_signal_connect(GTK_OBJECT(sounddialog), "destroy", |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
963 GTK_SIGNAL_FUNC(close_sounddialog), sounddialog); |
1170 | 964 |
965 gtk_signal_connect(GTK_OBJECT(GTK_FILE_SELECTION(sounddialog)->ok_button), | |
3366 | 966 "clicked", GTK_SIGNAL_FUNC(do_select_sound), (int *)sound_row_sel); |
1170 | 967 |
968 gtk_signal_connect(GTK_OBJECT(GTK_FILE_SELECTION(sounddialog)->cancel_button), | |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
969 "clicked", GTK_SIGNAL_FUNC(close_sounddialog), sounddialog); |
1170 | 970 } |
971 | |
972 g_free(buf); | |
973 gtk_widget_show(sounddialog); | |
974 gdk_window_raise(sounddialog->window); | |
1006
0a4d0ed65e17
[gaim-migrate @ 1016]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1002
diff
changeset
|
975 } |
0a4d0ed65e17
[gaim-migrate @ 1016]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1002
diff
changeset
|
976 |
3366 | 977 |
978 #if GTK_CHECK_VERSION (1,3,0) | |
979 static void prefs_sound_sel (GtkTreeSelection *sel, GtkTreeModel *model) { | |
980 GtkTreeIter iter; | |
981 GValue val = { 0, }; | |
982 | |
983 if (! gtk_tree_selection_get_selected (sel, &model, &iter)) | |
984 return; | |
985 gtk_tree_model_get_value (model, &iter, 2, &val); | |
986 sound_row_sel = g_value_get_uint(&val); | |
987 if (sound_entry) | |
3374 | 988 gtk_entry_set_text(GTK_ENTRY(sound_entry), sound_file_new[sound_row_sel] ? sound_file_new[sound_row_sel] : "(default)"); |
3366 | 989 g_value_unset (&val); |
990 if (sounddialog) | |
991 gtk_widget_destroy(sounddialog); | |
992 } | |
993 #endif | |
994 | |
995 GtkWidget *sound_events_page() { | |
996 | |
997 GtkWidget *ret; | |
998 GtkWidget *sw; | |
999 GtkWidget *button, *hbox; | |
1000 GtkTreeIter iter; | |
1001 GtkWidget *event_view; | |
1002 GtkListStore *event_store; | |
1003 GtkCellRenderer *rend; | |
1004 GtkTreeViewColumn *col; | |
1005 GtkTreeSelection *sel; | |
1006 GtkTreePath *path; | |
1007 int j; | |
1008 | |
3427 | 1009 ret = gtk_vbox_new(FALSE, 18); |
1010 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
3366 | 1011 |
1012 sw = gtk_scrolled_window_new(NULL,NULL); | |
1013 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); | |
3427 | 1014 gtk_box_pack_start(GTK_BOX(ret), sw, TRUE, TRUE, 0); |
3366 | 1015 event_store = gtk_list_store_new (3, G_TYPE_BOOLEAN, G_TYPE_STRING, G_TYPE_UINT); |
1016 | |
1017 for (j=0; j < NUM_SOUNDS; j++) { | |
1018 if (sounds[j].opt == 0) | |
1019 continue; | |
1020 | |
1021 gtk_list_store_append (event_store, &iter); | |
1022 gtk_list_store_set(event_store, &iter, | |
1023 0, sound_options & sounds[j].opt, | |
1024 1, sounds[j].label, | |
1025 2, j, -1); | |
1026 } | |
1027 | |
1028 event_view = gtk_tree_view_new_with_model (GTK_TREE_MODEL(event_store)); | |
1029 | |
1030 rend = gtk_cell_renderer_toggle_new(); | |
1031 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (event_view)); | |
1032 g_signal_connect (G_OBJECT (sel), "changed", | |
1033 G_CALLBACK (prefs_sound_sel), | |
1034 NULL); | |
1035 g_signal_connect (G_OBJECT(rend), "toggled", | |
1036 G_CALLBACK(event_toggled), event_store); | |
1037 path = gtk_tree_path_new_first(); | |
1038 gtk_tree_selection_select_path(sel, path); | |
1039 | |
1040 col = gtk_tree_view_column_new_with_attributes ("Play", | |
1041 rend, | |
1042 "active", 0, | |
1043 NULL); | |
1044 gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col); | |
1045 | |
1046 rend = gtk_cell_renderer_text_new(); | |
1047 col = gtk_tree_view_column_new_with_attributes ("Event", | |
1048 rend, | |
1049 "text", 1, | |
1050 NULL); | |
1051 gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col); | |
1052 g_object_unref(G_OBJECT(event_store)); | |
1053 gtk_container_add(GTK_CONTAINER(sw), event_view); | |
1054 | |
3427 | 1055 hbox = gtk_hbox_new(FALSE, 6); |
1056 gtk_box_pack_start(GTK_BOX(ret), hbox, FALSE, FALSE, 0); | |
3366 | 1057 sound_entry = gtk_entry_new(); |
1058 gtk_entry_set_text(GTK_ENTRY(sound_entry), sound_file_new[0] ? sound_file_new[0] : "(default)"); | |
1059 gtk_entry_set_editable(GTK_ENTRY(sound_entry), FALSE); | |
1060 gtk_box_pack_start(GTK_BOX(hbox), sound_entry, FALSE, FALSE, 5); | |
1006
0a4d0ed65e17
[gaim-migrate @ 1016]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1002
diff
changeset
|
1061 |
3025 | 1062 button = gtk_button_new_with_label(_("Test")); |
3366 | 1063 gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(test_sound), NULL); |
1064 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 1); | |
2759
f26f1d139615
[gaim-migrate @ 2772]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2746
diff
changeset
|
1065 |
1175 | 1066 button = gtk_button_new_with_label(_("Reset")); |
3366 | 1067 gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(reset_sound), NULL); |
1068 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 1); | |
1175 | 1069 |
1381 | 1070 button = gtk_button_new_with_label(_("Choose...")); |
3366 | 1071 gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(sel_sound), NULL); |
1072 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 1); | |
1073 | |
3427 | 1074 gtk_widget_show_all (ret); |
1006
0a4d0ed65e17
[gaim-migrate @ 1016]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1002
diff
changeset
|
1075 |
3366 | 1076 return ret; |
2580
86eaeb064e82
[gaim-migrate @ 2593]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2566
diff
changeset
|
1077 } |
86eaeb064e82
[gaim-migrate @ 2593]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2566
diff
changeset
|
1078 |
3366 | 1079 #if GTK_CHECK_VERSION (1,3,0) |
1080 void away_message_sel(GtkTreeSelection *sel, GtkTreeModel *model) | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1081 { |
3366 | 1082 GtkTreeIter iter; |
1083 GValue val = { 0, }; | |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1084 gchar buffer[BUF_LONG]; |
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1085 char *tmp; |
3374 | 1086 struct away_message *am; |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1087 |
3366 | 1088 if (! gtk_tree_selection_get_selected (sel, &model, &iter)) |
1089 return; | |
1090 gtk_tree_model_get_value (model, &iter, 1, &val); | |
3374 | 1091 am = g_value_get_pointer(&val); |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1092 gtk_imhtml_clear(GTK_IMHTML(away_text)); |
3374 | 1093 strncpy(buffer, am->message, BUF_LONG); |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1094 tmp = stylize(buffer, BUF_LONG); |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2843
diff
changeset
|
1095 gtk_imhtml_append_text(GTK_IMHTML(away_text), tmp, -1, GTK_IMHTML_NO_TITLE | |
2372
2927c2c26fe6
[gaim-migrate @ 2385]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2323
diff
changeset
|
1096 GTK_IMHTML_NO_COMMENTS | GTK_IMHTML_NO_SCROLL); |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2843
diff
changeset
|
1097 gtk_imhtml_append_text(GTK_IMHTML(away_text), "<BR>", -1, GTK_IMHTML_NO_TITLE | |
2372
2927c2c26fe6
[gaim-migrate @ 2385]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2323
diff
changeset
|
1098 GTK_IMHTML_NO_COMMENTS | GTK_IMHTML_NO_SCROLL); |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1099 g_free(tmp); |
3366 | 1100 g_value_unset (&val); |
1101 | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1102 } |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1103 |
3366 | 1104 void remove_away_message(GtkWidget *widget, GtkTreeView *tv) { |
1105 struct away_message *am; | |
1106 GtkTreeIter iter; | |
1107 GtkTreePath *path; | |
1108 GtkTreeStore *ts = GTK_TREE_STORE(gtk_tree_view_get_model(tv)); | |
1109 GtkTreeSelection *sel = gtk_tree_view_get_selection(tv); | |
3379 | 1110 GtkTreeModel *model = GTK_TREE_MODEL(prefs_away_store); |
3366 | 1111 GValue val = { 0, }; |
1112 | |
3379 | 1113 if (! gtk_tree_selection_get_selected (sel, &model, &iter)) |
3366 | 1114 return; |
3379 | 1115 gtk_tree_model_get_value (GTK_TREE_MODEL(prefs_away_store), &iter, 1, &val); |
3366 | 1116 am = g_value_get_pointer (&val); |
1117 gtk_imhtml_clear(GTK_IMHTML(away_text)); | |
1118 rem_away_mess(NULL, am); | |
3379 | 1119 gtk_list_store_remove(GTK_LIST_STORE(ts), &iter); |
1120 path = gtk_tree_path_new_first(); | |
3366 | 1121 gtk_tree_selection_select_path(sel, path); |
1109
c73736fa0b7c
[gaim-migrate @ 1119]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1087
diff
changeset
|
1122 } |
c73736fa0b7c
[gaim-migrate @ 1119]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1087
diff
changeset
|
1123 |
3366 | 1124 #else |
3374 | 1125 static struct away_message *cur_message; |
1126 void away_message_sel(GtkWidget *w, struct away_message *a) { | |
1127 gchar buffer[BUF_LONG]; | |
1128 char *tmp; | |
1129 | |
1130 cur_message = a; | |
1131 | |
1132 /* Clear the Box */ | |
1133 gtk_imhtml_clear(GTK_IMHTML(away_text)); | |
1134 | |
1135 /* Fill the text box with new message */ | |
1136 strncpy(buffer, a->message, BUF_LONG); | |
1137 tmp = stylize(buffer, BUF_LONG); | |
1138 | |
1139 debug_printf("FSD: %s\n", tmp); | |
1140 gtk_imhtml_append_text(GTK_IMHTML(away_text), tmp, -1, GTK_IMHTML_NO_TITLE | | |
1141 GTK_IMHTML_NO_COMMENTS | GTK_IMHTML_NO_SCROLL); | |
1142 gtk_imhtml_append_text(GTK_IMHTML(away_text), "<BR>", -1, GTK_IMHTML_NO_TITLE | | |
1143 GTK_IMHTML_NO_COMMENTS | GTK_IMHTML_NO_SCROLL); | |
1144 g_free(tmp); | |
1145 } | |
1146 void remove_away_message(GtkWidget *widget, GtkWidget *list) { | |
1147 GList *i; | |
1148 struct away_message *a; | |
1149 | |
1150 i = GTK_LIST(prefs_away_list)->selection; | |
1151 | |
1152 if (!i) | |
1153 return; | |
1154 if (!i->next) { | |
1155 gtk_imhtml_clear(GTK_IMHTML(away_text)); | |
1156 } | |
1157 a = gtk_object_get_user_data(GTK_OBJECT(i->data)); | |
1158 rem_away_mess(NULL, a); | |
1159 } | |
3366 | 1160 #endif |
1109
c73736fa0b7c
[gaim-migrate @ 1119]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1087
diff
changeset
|
1161 |
3366 | 1162 GtkWidget *away_message_page() { |
1163 GtkWidget *ret; | |
3427 | 1164 GtkWidget *hbox; |
3379 | 1165 GtkWidget *button; |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1166 GtkWidget *sw; |
3366 | 1167 GtkTreeIter iter; |
1168 GtkWidget *event_view; | |
1169 GtkCellRenderer *rend; | |
1170 GtkTreeViewColumn *col; | |
1171 GtkTreeSelection *sel; | |
1172 GtkTreePath *path; | |
940 | 1173 GSList *awy = away_messages; |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1174 struct away_message *a; |
3366 | 1175 GtkWidget *sw2; |
3427 | 1176 GtkSizeGroup *sg; |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1177 |
3427 | 1178 ret = gtk_vbox_new(FALSE, 18); |
1179 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
1180 | |
1181 sg = gtk_size_group_new(GTK_SIZE_GROUP_BOTH); | |
1182 | |
3366 | 1183 sw = gtk_scrolled_window_new(NULL,NULL); |
1184 away_text = gtk_imhtml_new(NULL, NULL); | |
3427 | 1185 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), GTK_POLICY_NEVER, GTK_POLICY_ALWAYS); |
3379 | 1186 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(sw), |
1187 GTK_SHADOW_IN); | |
3427 | 1188 gtk_box_pack_start(GTK_BOX(ret), sw, TRUE, TRUE, 0); |
3366 | 1189 |
3374 | 1190 prefs_away_store = gtk_list_store_new (2, G_TYPE_STRING, G_TYPE_POINTER); |
3366 | 1191 while (awy) { |
1192 a = (struct away_message *)awy->data; | |
1193 gtk_list_store_append (prefs_away_store, &iter); | |
1194 gtk_list_store_set(prefs_away_store, &iter, | |
3374 | 1195 0, a->name, |
1196 1, a, -1); | |
3366 | 1197 awy = awy->next; |
1198 } | |
1199 event_view = gtk_tree_view_new_with_model (GTK_TREE_MODEL(prefs_away_store)); | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1200 |
2906
538c58b43eff
[gaim-migrate @ 2919]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2856
diff
changeset
|
1201 |
3366 | 1202 rend = gtk_cell_renderer_text_new(); |
1203 col = gtk_tree_view_column_new_with_attributes ("NULL", | |
1204 rend, | |
1205 "text", 0, | |
1206 NULL); | |
1207 gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col); | |
1208 gtk_tree_view_set_headers_visible (GTK_TREE_VIEW(event_view), FALSE); | |
1209 gtk_widget_show(event_view); | |
3427 | 1210 gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(sw), event_view); |
3374 | 1211 |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1212 sw2 = gtk_scrolled_window_new(NULL, NULL); |
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1213 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw2), |
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1214 GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); |
3427 | 1215 gtk_box_pack_start(GTK_BOX(ret), sw2, TRUE, TRUE, 0); |
3366 | 1216 |
3427 | 1217 gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(sw2), away_text); |
2906
538c58b43eff
[gaim-migrate @ 2919]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2856
diff
changeset
|
1218 GTK_LAYOUT(away_text)->hadjustment->step_increment = 10.0; |
538c58b43eff
[gaim-migrate @ 2919]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2856
diff
changeset
|
1219 GTK_LAYOUT(away_text)->vadjustment->step_increment = 10.0; |
1815
f15d449b3167
[gaim-migrate @ 1825]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1813
diff
changeset
|
1220 gaim_setup_imhtml(away_text); |
3366 | 1221 gtk_imhtml_set_defaults(GTK_IMHTML(away_text), NULL, NULL, NULL); |
1222 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (event_view)); | |
1223 path = gtk_tree_path_new_first(); | |
1224 g_signal_connect (G_OBJECT (sel), "changed", | |
1225 G_CALLBACK (away_message_sel), | |
1226 NULL); | |
1227 hbox = gtk_hbox_new(TRUE, 5); | |
3427 | 1228 gtk_box_pack_start(GTK_BOX(ret), hbox, FALSE, FALSE, 0); |
3366 | 1229 button = gtk_button_new_from_stock (GTK_STOCK_ADD); |
1230 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
3427 | 1231 gtk_size_group_add_widget(sg, button); |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1232 gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(create_away_mess), NULL); |
3427 | 1233 |
3366 | 1234 button = gtk_button_new_from_stock (GTK_STOCK_REMOVE); |
3427 | 1235 gtk_size_group_add_widget(sg, button); |
3366 | 1236 gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(remove_away_message), event_view); |
3427 | 1237 |
3366 | 1238 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); |
1239 button = pixbuf_button(_("_Edit"), "edit.png"); | |
3427 | 1240 gtk_size_group_add_widget(sg, button); |
3374 | 1241 gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(create_away_mess), event_view); |
3366 | 1242 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); |
1243 | |
3427 | 1244 gtk_widget_show_all(ret); |
3366 | 1245 return ret; |
1246 } | |
1247 #if GTK_CHECK_VERSION (1,3,0) | |
1248 GtkTreeIter *prefs_notebook_add_page(char *text, | |
1249 GdkPixbuf *pixbuf, | |
1250 GtkWidget *page, | |
1251 GtkTreeIter *iter, | |
1252 GtkTreeIter *parent, | |
1253 int ind) { | |
1254 GdkPixbuf *icon = NULL; | |
1255 | |
1256 if (pixbuf) | |
1257 icon = gdk_pixbuf_scale_simple (pixbuf, 18, 18, GDK_INTERP_BILINEAR); | |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1258 |
3366 | 1259 gtk_tree_store_append (prefstree, iter, parent); |
1260 gtk_tree_store_set (prefstree, iter, 0, icon, 1, text, 2, ind, -1); | |
1261 | |
1262 if (pixbuf) | |
1263 g_object_unref(pixbuf); | |
1264 if (icon) | |
1265 g_object_unref(icon); | |
1266 gtk_notebook_append_page(GTK_NOTEBOOK(prefsnotebook), page, gtk_label_new(text)); | |
1267 return iter; | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1268 } |
3366 | 1269 #else |
1270 GtkCTreeNode *prefs_notebook_add_page(char *text, | |
1271 GdkPixmap *pixmap, | |
1272 GtkWidget *page, | |
1273 GtkCTreeNode **iter, | |
1274 GtkCTreeNode **parent, | |
1275 int ind) { | |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
1276 |
3366 | 1277 GtkCTreeNode *itern; |
1278 char *texts[1]; | |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
1279 |
3366 | 1280 texts[0] = text; |
2074
a4367a6478eb
[gaim-migrate @ 2084]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2048
diff
changeset
|
1281 |
3366 | 1282 *iter = gtk_ctree_insert_node (GTK_CTREE(prefstree), parent ? *parent : NULL, NULL, &text, |
1283 0, NULL, NULL, NULL, NULL, 0, 1); | |
1284 gtk_ctree_node_set_row_data(GTK_CTREE(prefstree), GTK_CTREE_NODE(*iter), (void *)ind); | |
1285 if (pixmap) | |
1286 gdk_pixmap_unref(pixmap); | |
1287 | |
1288 debug_printf("%s\n", texts[0]); | |
2074
a4367a6478eb
[gaim-migrate @ 2084]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2048
diff
changeset
|
1289 |
3366 | 1290 gtk_notebook_append_page(GTK_NOTEBOOK(prefsnotebook), page, gtk_label_new(text)); |
1291 return iter; | |
2074
a4367a6478eb
[gaim-migrate @ 2084]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2048
diff
changeset
|
1292 } |
3366 | 1293 #endif |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
1294 |
3366 | 1295 void prefs_notebook_init() { |
1296 int a = 0; | |
1297 #if GTK_CHECK_VERSION(1,3,0) | |
1298 GtkTreeIter p, c; | |
1299 #else | |
1300 GtkCTreeNode *p = NULL; | |
1301 GtkCTreeNode *c = NULL; | |
1302 #endif | |
3373 | 1303 prefs_notebook_add_page(_("Interface"), NULL, interface_page(), &p, NULL, a++); |
1304 prefs_notebook_add_page(_("Fonts"), NULL, font_page(), &c, &p, a++); | |
1305 prefs_notebook_add_page(_("Message Text"), NULL, messages_page(), &c, &p, a++); | |
1306 prefs_notebook_add_page(_("Shortcuts"), NULL, hotkeys_page(), &c, &p, a++); | |
1307 prefs_notebook_add_page(_("Buddy List"), NULL, list_page(), &c, &p, a++); | |
1308 prefs_notebook_add_page(_("IM Window"), NULL, im_page(), &c, &p, a++); | |
1309 prefs_notebook_add_page(_("Chat Window"), NULL, chat_page(), &c, &p, a++); | |
1310 prefs_notebook_add_page(_("Tabs"), NULL, tab_page(), &c, &p, a++); | |
1311 prefs_notebook_add_page(_("Proxy"), NULL, proxy_page(), &p, NULL, a++); | |
1312 prefs_notebook_add_page(_("Browser"), NULL, browser_page(), &p, NULL, a++); | |
1130
d31fad9abb32
[gaim-migrate @ 1140]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1125
diff
changeset
|
1313 |
3373 | 1314 prefs_notebook_add_page(_("Logging"), NULL, logging_page(), &p, NULL, a++); |
1315 prefs_notebook_add_page(_("Sounds"), NULL, sound_page(), &p, NULL, a++); | |
1316 prefs_notebook_add_page(_("Sound Events"), NULL, sound_events_page(), &c, &p, a++); | |
1317 prefs_notebook_add_page(_("Away / Idle"), NULL, away_page(), &p, NULL, a++); | |
1318 prefs_notebook_add_page(_("Away Messages"), NULL, away_message_page(), &c, &p, a++); | |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
1319 } |
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
1320 |
3366 | 1321 void show_prefs() |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
1322 { |
3366 | 1323 GtkWidget *vbox, *vbox2; |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
1324 GtkWidget *hbox; |
3366 | 1325 GtkWidget *frame; |
1326 #if GTK_CHECK_VERSION (1,3,0) | |
1327 GtkWidget *tree_v; | |
1328 GtkTreeViewColumn *column; | |
1329 GtkCellRenderer *cell; | |
1330 GtkTreeSelection *sel; | |
1331 #endif | |
1332 GtkWidget *notebook; | |
1333 GtkWidget *sep; | |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
1334 GtkWidget *button; |
3366 | 1335 |
1336 int r; | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1337 |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1338 if (prefs) { |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1339 gtk_widget_show(prefs); |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1340 return; |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1341 } |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1342 |
3366 | 1343 /* copy the preferences to tmp values... |
1344 * I liked "take affect immediately" Oh well :-( */ | |
1345 misc_options_new = misc_options; | |
1346 logging_options_new = logging_options; | |
1347 blist_options_new = blist_options; | |
1348 convo_options_new = convo_options; | |
1349 im_options_new = im_options; | |
1350 chat_options_new = chat_options; | |
1351 font_options_new = font_options; | |
1352 sound_options_new = sound_options; | |
1353 for (r = 0; r < NUM_SOUNDS; r++) | |
1354 sound_file_new[r] = g_strdup(sound_file[r]); | |
1355 away_options_new = away_options; | |
1356 away_resend_new = away_resend; | |
1357 report_idle_new = report_idle; | |
1358 auto_away_new = auto_away; | |
1359 default_away_new = default_away; | |
1360 fontsize_new = fontsize; | |
1361 web_browser_new = web_browser; | |
1362 proxytype_new = proxytype; | |
1363 g_snprintf(sound_cmd_new, sizeof(sound_cmd_new), "%s", sound_cmd); | |
3432 | 1364 g_snprintf(web_command_new, sizeof(web_command_new), "%s", |
1365 web_command ? web_command : "xterm -e lynx \"%%s\""); | |
3366 | 1366 g_snprintf(fontface_new, sizeof(fontface_new), fontface); |
1367 #if !GTK_CHECK_VERSION(1,3,0) | |
1368 g_snprintf(fontxfld_new, sizeof(fontxfld_new), fontxfld); | |
1369 #endif | |
1370 memcpy(&conv_size_new, &conv_size, sizeof(struct window_size)); | |
1371 memcpy(&buddy_chat_size_new, &buddy_chat_size, sizeof(struct window_size)); | |
1372 memcpy(&fgcolor_new, &fgcolor, sizeof(GdkColor)); | |
1373 memcpy(&bgcolor_new, &bgcolor, sizeof(GdkColor)); | |
1374 | |
1375 /* Create the window */ | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1376 prefs = gtk_window_new(GTK_WINDOW_TOPLEVEL); |
905 | 1377 gtk_window_set_wmclass(GTK_WINDOW(prefs), "preferences", "Gaim"); |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1378 gtk_widget_realize(prefs); |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1379 aol_icon(prefs->window); |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1380 gtk_window_set_title(GTK_WINDOW(prefs), _("Gaim - Preferences")); |
3366 | 1381 gtk_window_set_policy (GTK_WINDOW(prefs), FALSE, FALSE, TRUE); |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1382 gtk_signal_connect(GTK_OBJECT(prefs), "destroy", GTK_SIGNAL_FUNC(delete_prefs), NULL); |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1383 |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1384 vbox = gtk_vbox_new(FALSE, 5); |
1185 | 1385 gtk_container_border_width(GTK_CONTAINER(vbox), 5); |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1386 gtk_container_add(GTK_CONTAINER(prefs), vbox); |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1387 gtk_widget_show(vbox); |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1388 |
3366 | 1389 hbox = gtk_hbox_new (FALSE, 6); |
1390 gtk_container_set_border_width (GTK_CONTAINER (hbox), 6); | |
1391 gtk_container_add (GTK_CONTAINER(vbox), hbox); | |
1392 gtk_widget_show (hbox); | |
1393 | |
1394 frame = gtk_frame_new (NULL); | |
1395 gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN); | |
1396 gtk_box_pack_start (GTK_BOX (hbox), frame, FALSE, FALSE, 0); | |
1397 gtk_widget_show (frame); | |
1398 | |
1399 /* The tree -- much inspired by the Gimp */ | |
1400 #if GTK_CHECK_VERSION(1,3,0) | |
1401 prefstree = gtk_tree_store_new (3, GDK_TYPE_PIXBUF, G_TYPE_STRING, G_TYPE_INT); | |
1402 tree_v = gtk_tree_view_new_with_model (GTK_TREE_MODEL (prefstree)); | |
1403 gtk_container_add (GTK_CONTAINER (frame), tree_v); | |
1404 | |
1405 gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (tree_v), FALSE); | |
1406 gtk_widget_show(tree_v); | |
1407 /* icons */ | |
1408 cell = gtk_cell_renderer_pixbuf_new (); | |
1409 column = gtk_tree_view_column_new_with_attributes ("icons", cell, "pixbuf", 0, NULL); | |
1410 | |
1411 /* text */ | |
1412 cell = gtk_cell_renderer_text_new (); | |
1413 column = gtk_tree_view_column_new_with_attributes ("text", cell, "text", 1, NULL); | |
1414 | |
1415 gtk_tree_view_append_column (GTK_TREE_VIEW (tree_v), column); | |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1416 |
3366 | 1417 #else |
1418 prefstree = gtk_ctree_new(1,0); | |
1419 gtk_ctree_set_line_style(prefstree, GTK_CTREE_LINES_NONE); | |
1420 gtk_ctree_set_expander_style(GTK_CTREE(prefstree), GTK_CTREE_EXPANDER_TRIANGLE); | |
1421 gtk_container_add(GTK_CONTAINER (frame), prefstree); | |
1422 gtk_widget_set_usize(prefstree, 150, -1); | |
1423 gtk_widget_show(prefstree); | |
1424 #endif /* GTK_CHECK_VERSION */ | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1425 |
3366 | 1426 /* The right side */ |
1427 frame = gtk_frame_new (NULL); | |
1428 gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN); | |
1429 gtk_box_pack_start (GTK_BOX (hbox), frame, TRUE, TRUE, 0); | |
1430 gtk_widget_show (frame); | |
1431 | |
1432 vbox2 = gtk_vbox_new (FALSE, 4); | |
1433 gtk_container_add (GTK_CONTAINER (frame), vbox2); | |
1434 gtk_widget_show (vbox2); | |
1435 | |
1436 frame = gtk_frame_new (NULL); | |
1437 gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_OUT); | |
1438 gtk_box_pack_start (GTK_BOX (vbox2), frame, FALSE, TRUE, 0); | |
1439 gtk_widget_show (frame); | |
1440 | |
1441 hbox = gtk_hbox_new (FALSE, 4); | |
1442 gtk_container_set_border_width (GTK_CONTAINER (hbox), 4); | |
1443 gtk_container_add (GTK_CONTAINER (frame), hbox); | |
1444 gtk_widget_show (hbox); | |
1445 | |
1446 preflabel = gtk_label_new(NULL); | |
1447 gtk_box_pack_end (GTK_BOX (hbox), preflabel, FALSE, FALSE, 0); | |
1448 gtk_widget_show (preflabel); | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1449 |
3366 | 1450 |
1451 /* The notebook */ | |
1452 prefsnotebook = notebook = gtk_notebook_new (); | |
1453 gtk_notebook_set_show_tabs (GTK_NOTEBOOK (notebook), FALSE); | |
1454 gtk_notebook_set_show_border (GTK_NOTEBOOK (notebook), FALSE); | |
1455 gtk_box_pack_start (GTK_BOX (vbox2), notebook, FALSE, FALSE, 0); | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1456 |
3366 | 1457 #if GTK_CHECK_VERSION(1,3,0) |
1458 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (tree_v)); | |
1459 g_signal_connect (G_OBJECT (sel), "changed", | |
1460 G_CALLBACK (pref_nb_select), | |
1461 notebook); | |
1462 #else | |
1463 gtk_signal_connect(GTK_OBJECT(prefstree), "tree-select-row", GTK_SIGNAL_FUNC(pref_nb_select), notebook); | |
1464 #endif | |
1465 gtk_widget_show(notebook); | |
1466 sep = gtk_hseparator_new(); | |
1467 gtk_widget_show(sep); | |
1468 gtk_box_pack_start (GTK_BOX (vbox), sep, FALSE, FALSE, 0); | |
1469 | |
1470 /* The buttons to press! */ | |
1471 hbox = gtk_hbox_new (FALSE, 6); | |
1472 gtk_container_set_border_width (GTK_CONTAINER (hbox), 6); | |
1473 gtk_container_add (GTK_CONTAINER(vbox), hbox); | |
1474 gtk_widget_show (hbox); | |
3377 | 1475 |
1476 button = gtk_button_new_from_stock (GTK_STOCK_OK); | |
1477 gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(ok_cb), prefs); | |
3366 | 1478 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); |
1479 gtk_widget_show(button); | |
3377 | 1480 |
3366 | 1481 button = gtk_button_new_from_stock (GTK_STOCK_APPLY); |
1482 gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(apply_cb), prefs); | |
1483 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
1484 gtk_widget_show(button); | |
1485 | |
3377 | 1486 button = gtk_button_new_from_stock (GTK_STOCK_CANCEL); |
1487 gtk_signal_connect_object(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(gtk_widget_destroy), prefs); | |
3366 | 1488 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); |
1489 gtk_widget_show(button); | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1490 |
3366 | 1491 prefs_notebook_init(); |
3427 | 1492 |
3366 | 1493 gtk_tree_view_expand_all (GTK_TREE_VIEW(tree_v)); |
1494 gtk_widget_show(prefs); | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1495 } |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1496 |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1497 static gint debug_delete(GtkWidget *w, GdkEvent *event, void *dummy) |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1498 { |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1499 if (debugbutton) |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1500 gtk_button_clicked(GTK_BUTTON(debugbutton)); |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1501 if (misc_options & OPT_MISC_DEBUG) { |
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1502 misc_options ^= OPT_MISC_DEBUG; |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1503 save_prefs(); |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1504 } |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1505 g_free(dw); |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1506 dw = NULL; |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1507 return FALSE; |
1 | 1508 |
1509 } | |
1510 | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1511 static void build_debug() |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1512 { |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1513 GtkWidget *scroll; |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1514 GtkWidget *box; |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1515 if (!dw) |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1516 dw = g_new0(struct debug_window, 1); |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1517 |
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2676
diff
changeset
|
1518 GAIM_DIALOG(dw->window); |
2536
0e0a54e5819a
[gaim-migrate @ 2549]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2471
diff
changeset
|
1519 gtk_window_set_title(GTK_WINDOW(dw->window), _("Gaim debug output window")); |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1520 gtk_window_set_wmclass(GTK_WINDOW(dw->window), "debug_out", "Gaim"); |
2282
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1521 gtk_signal_connect(GTK_OBJECT(dw->window), "delete_event", GTK_SIGNAL_FUNC(debug_delete), NULL); |
2547
ab55ac6234b8
[gaim-migrate @ 2560]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
1522 gtk_widget_realize(dw->window); |
ab55ac6234b8
[gaim-migrate @ 2560]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
1523 aol_icon(dw->window->window); |
2282
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1524 |
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1525 box = gtk_hbox_new(FALSE, 0); |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1526 gtk_container_add(GTK_CONTAINER(dw->window), box); |
2282
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1527 gtk_widget_show(box); |
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1528 |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1529 dw->entry = gtk_text_new(NULL, NULL); |
2282
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1530 gtk_text_set_word_wrap(GTK_TEXT(dw->entry), TRUE); |
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1531 gtk_text_set_editable(GTK_TEXT(dw->entry), FALSE); |
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1532 gtk_container_add(GTK_CONTAINER(box), dw->entry); |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1533 gtk_widget_set_usize(dw->entry, 500, 200); |
2282
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1534 gtk_widget_show(dw->entry); |
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1535 |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1536 scroll = gtk_vscrollbar_new(GTK_TEXT(dw->entry)->vadj); |
2282
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1537 gtk_box_pack_start(GTK_BOX(box), scroll, FALSE, FALSE, 0); |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1538 gtk_widget_show(scroll); |
2282
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1539 |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1540 gtk_widget_show(dw->window); |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1541 } |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1542 |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1543 void show_debug() |
1 | 1544 { |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1545 if ((misc_options & OPT_MISC_DEBUG)) { |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1546 if (!dw || !dw->window) |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1547 build_debug(); |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1548 gtk_widget_show(dw->window); |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1549 } else { |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1550 if (!dw) |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1551 return; |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1552 gtk_widget_destroy(dw->window); |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1553 dw->window = NULL; |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1554 } |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1555 } |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1556 |
970 | 1557 void debug_printf(char *fmt, ...) |
1558 { | |
1559 va_list ap; | |
1560 gchar *s; | |
1561 | |
1366
155db3303ebb
[gaim-migrate @ 1376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1357
diff
changeset
|
1562 va_start(ap, fmt); |
155db3303ebb
[gaim-migrate @ 1376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1357
diff
changeset
|
1563 s = g_strdup_vprintf(fmt, ap); |
155db3303ebb
[gaim-migrate @ 1376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1357
diff
changeset
|
1564 va_end(ap); |
155db3303ebb
[gaim-migrate @ 1376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1357
diff
changeset
|
1565 |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1566 if (misc_options & OPT_MISC_DEBUG && dw) { |
2282
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1567 GtkAdjustment *adj = GTK_TEXT(dw->entry)->vadj; |
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1568 gboolean scroll = (adj->value == adj->upper - adj->lower - adj->page_size); |
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1569 |
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1570 gtk_text_freeze(GTK_TEXT(dw->entry)); |
970 | 1571 gtk_text_insert(GTK_TEXT(dw->entry), NULL, NULL, NULL, s, -1); |
2282
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1572 gtk_text_thaw(GTK_TEXT(dw->entry)); |
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1573 |
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1574 if (scroll) |
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1575 gtk_adjustment_set_value(adj, adj->upper - adj->lower - adj->page_size); |
1366
155db3303ebb
[gaim-migrate @ 1376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1357
diff
changeset
|
1576 } |
2823
cd23279122ed
[gaim-migrate @ 2836]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2794
diff
changeset
|
1577 if (opt_debug) |
cd23279122ed
[gaim-migrate @ 2836]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2794
diff
changeset
|
1578 g_print("%s", s); |
1366
155db3303ebb
[gaim-migrate @ 1376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1357
diff
changeset
|
1579 g_free(s); |
970 | 1580 } |
3366 | 1581 |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1582 |
3366 | 1583 |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1584 |
915
378c862a2381
[gaim-migrate @ 925]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
910
diff
changeset
|
1585 |
3366 | 1586 |
1 | 1587 void set_option(GtkWidget *w, int *option) |
1588 { | |
1589 *option = !(*option); | |
1590 } | |
1591 | |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1592 static void set_misc_option(GtkWidget *w, int option) |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1593 { |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1594 misc_options ^= option; |
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1595 |
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1596 if (option == OPT_MISC_DEBUG) |
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1597 show_debug(); |
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1598 |
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1599 save_prefs(); |
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1600 } |
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1601 |
3366 | 1602 |
1603 /* Functions for each _options variable that sees what's changed, and makes | |
1604 * effective those changes that take place immediately (UI stuff) */ | |
1605 static void set_misc_options() | |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1606 { |
3366 | 1607 |
1608 /* int option = misc_options ^ misc_options_new; */ | |
1609 misc_options = misc_options_new; | |
1610 | |
1611 } | |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1612 |
3366 | 1613 static void set_logging_options() |
1614 { | |
1615 int option = logging_options ^ logging_options_new; | |
1616 logging_options = logging_options_new; | |
1617 | |
1618 if (option & OPT_LOG_ALL) | |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1619 update_log_convs(); |
1773 | 1620 |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1621 } |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1622 |
3366 | 1623 static void set_blist_options() |
1 | 1624 { |
3366 | 1625 int option = blist_options ^ blist_options_new; |
1626 blist_options = blist_options_new; | |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1627 |
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1628 if (!blist) |
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1629 return; |
3366 | 1630 |
1631 if (option & OPT_BLIST_BOTTOM_TAB) | |
1632 set_blist_tab(); | |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1633 |
3366 | 1634 if (option & OPT_BLIST_NO_BUTTONS) |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1635 build_imchat_box(!(blist_options & OPT_BLIST_NO_BUTTONS)); |
696
97b75ed155b0
[gaim-migrate @ 706]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
683
diff
changeset
|
1636 |
3366 | 1637 if (option & OPT_BLIST_SHOW_GRPNUM) |
1070
b288f17c2fb2
[gaim-migrate @ 1080]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1030
diff
changeset
|
1638 update_num_groups(); |
9 | 1639 |
3366 | 1640 if (option & OPT_BLIST_NO_MT_GRP) |
1072
81d19577285a
[gaim-migrate @ 1082]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1070
diff
changeset
|
1641 toggle_show_empty_groups(); |
81d19577285a
[gaim-migrate @ 1082]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1070
diff
changeset
|
1642 |
3366 | 1643 if ((option & OPT_BLIST_SHOW_BUTTON_XPM) || (option & OPT_BLIST_NO_BUTTONS)) |
1296
11e5b1220028
[gaim-migrate @ 1306]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1269
diff
changeset
|
1644 update_button_pix(); |
11e5b1220028
[gaim-migrate @ 1306]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1269
diff
changeset
|
1645 |
3366 | 1646 if (option & OPT_BLIST_SHOW_PIXMAPS) |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1647 toggle_buddy_pixmaps(); |
2593
5ba9ef368b8e
[gaim-migrate @ 2606]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2592
diff
changeset
|
1648 |
3366 | 1649 if ((option & OPT_BLIST_GREY_IDLERS) || (option & OPT_BLIST_SHOW_IDLETIME)) |
2594 | 1650 update_idle_times(); |
3032 | 1651 |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1652 } |
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1653 |
3366 | 1654 static void set_convo_options() |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1655 { |
3366 | 1656 int option = convo_options ^ convo_options_new; |
1657 convo_options = convo_options_new; | |
1658 | |
1659 if (option & OPT_CONVO_SHOW_SMILEY) | |
1428
00b3d02a2168
[gaim-migrate @ 1438]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1411
diff
changeset
|
1660 toggle_smileys(); |
00b3d02a2168
[gaim-migrate @ 1438]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1411
diff
changeset
|
1661 |
3366 | 1662 if (option & OPT_CONVO_SHOW_TIME) |
1428
00b3d02a2168
[gaim-migrate @ 1438]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1411
diff
changeset
|
1663 toggle_timestamps(); |
00b3d02a2168
[gaim-migrate @ 1438]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1411
diff
changeset
|
1664 |
3366 | 1665 if (option & OPT_CONVO_CHECK_SPELLING) |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1666 toggle_spellchk(); |
572
faca21605e1b
[gaim-migrate @ 582]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
570
diff
changeset
|
1667 |
3366 | 1668 if (option & OPT_CONVO_COMBINE) { |
2843
87d11d2a7d59
[gaim-migrate @ 2856]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2839
diff
changeset
|
1669 /* (OPT_IM_SIDE_TAB | OPT_IM_BR_TAB) == (OPT_CHAT_SIDE_TAB | OPT_CHAT_BR_TAB) */ |
3366 | 1670 |
2843
87d11d2a7d59
[gaim-migrate @ 2856]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2839
diff
changeset
|
1671 } |
87d11d2a7d59
[gaim-migrate @ 2856]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2839
diff
changeset
|
1672 |
1 | 1673 } |
1674 | |
3366 | 1675 static void set_im_options() |
1 | 1676 { |
3366 | 1677 int option = im_options ^ im_options_new; |
1678 im_options = im_options_new; | |
1679 | |
1680 if (option & OPT_IM_ONE_WINDOW) | |
2843
87d11d2a7d59
[gaim-migrate @ 2856]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2839
diff
changeset
|
1681 im_tabize(); |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1682 |
3366 | 1683 if (option & OPT_IM_SIDE_TAB || option & OPT_IM_BR_TAB) |
1684 update_im_tabs(); | |
1685 | |
1686 if (option & OPT_IM_HIDE_ICONS) | |
2323
bde2481bb4db
[gaim-migrate @ 2333]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2322
diff
changeset
|
1687 set_hide_icons(); |
bde2481bb4db
[gaim-migrate @ 2333]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2322
diff
changeset
|
1688 |
3366 | 1689 if (option & OPT_IM_ALIAS_TAB) |
2787
feea7103a235
[gaim-migrate @ 2800]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2760
diff
changeset
|
1690 set_convo_titles(); |
feea7103a235
[gaim-migrate @ 2800]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2760
diff
changeset
|
1691 |
3366 | 1692 if (option & OPT_IM_NO_ANIMATION) |
3013 | 1693 set_anim(); |
3366 | 1694 |
1695 if (option & OPT_IM_BUTTON_TEXT || option & OPT_IM_BUTTON_XPM) | |
1696 update_im_button_pix(); | |
1 | 1697 } |
1698 | |
3366 | 1699 static void set_chat_options() |
1 | 1700 { |
3366 | 1701 int option = chat_options ^ chat_options_new; |
1702 chat_options = chat_options_new; | |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1703 |
3366 | 1704 if (option & OPT_CHAT_ONE_WINDOW) |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1705 chat_tabize(); |
3366 | 1706 |
1707 if (option & OPT_CHAT_BUTTON_TEXT || option & OPT_CHAT_BUTTON_XPM) | |
1708 update_chat_button_pix(); | |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1709 } |
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1710 |
3366 | 1711 void set_sound_options() |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1712 { |
3366 | 1713 /* int option = sound_options ^ sound_options_new; */ |
1714 sound_options = sound_options_new; | |
1715 | |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1716 } |
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1717 |
3366 | 1718 static void set_font_options() |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1719 { |
3366 | 1720 /* int option = font_options ^ font_options_new; */ |
1721 font_options = font_options_new; | |
1722 | |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1723 update_font_buttons(); |
1 | 1724 } |
1725 | |
3366 | 1726 static void set_away_options() |
1525
ba8e6e211af5
[gaim-migrate @ 1535]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1455
diff
changeset
|
1727 { |
3366 | 1728 int option = away_options ^ away_options_new; |
1729 away_options = away_options_new; | |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1730 |
3366 | 1731 if (option & OPT_AWAY_QUEUE) |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1732 toggle_away_queue(); |
3366 | 1733 } |
1525
ba8e6e211af5
[gaim-migrate @ 1535]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1455
diff
changeset
|
1734 |
3366 | 1735 static void toggle_option(GtkWidget *w, int option) { |
1736 int *o = gtk_object_get_user_data(GTK_OBJECT(w)); | |
1737 *o ^= option; | |
1525
ba8e6e211af5
[gaim-migrate @ 1535]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1455
diff
changeset
|
1738 } |
ba8e6e211af5
[gaim-migrate @ 1535]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1455
diff
changeset
|
1739 |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1740 GtkWidget *gaim_button(const char *text, guint *options, int option, GtkWidget *page) |
1 | 1741 { |
1742 GtkWidget *button; | |
3427 | 1743 button = gtk_check_button_new_with_mnemonic(text); |
1 | 1744 gtk_toggle_button_set_state(GTK_TOGGLE_BUTTON(button), (*options & option)); |
1745 gtk_box_pack_start(GTK_BOX(page), button, FALSE, FALSE, 0); | |
3366 | 1746 gtk_object_set_user_data(GTK_OBJECT(button), options); |
1 | 1747 |
3391 | 1748 /* So that the debug window happens immediately |
1749 * I don't think it should be "preferences," anyway. */ | |
1750 if (options == &misc_options && option == OPT_MISC_DEBUG) | |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1751 gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(set_misc_option), |
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1752 (int *)option); |
3366 | 1753 else |
1754 gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(toggle_option), | |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1755 (int *)option); |
3366 | 1756 |
1 | 1757 gtk_widget_show(button); |
1758 | |
1759 return button; | |
1760 } | |
1761 | |
3366 | 1762 void away_list_clicked(GtkWidget *widget, struct away_message *a) |
1763 {} | |
1764 void default_away_menu_init(GtkWidget *omenu) | |
3032 | 1765 { |
3366 | 1766 GtkWidget *menu, *opt; |
1767 int index = 0; | |
1768 GSList *awy = away_messages; | |
1769 struct away_message *a; | |
1770 | |
1771 menu = gtk_menu_new(); | |
1772 | |
1773 while (awy) { | |
1774 a = (struct away_message *)awy->data; | |
1775 opt = gtk_menu_item_new_with_label(a->name); | |
1776 gtk_signal_connect(GTK_OBJECT(opt), "activate", GTK_SIGNAL_FUNC(set_default_away), | |
1777 (gpointer)index); | |
1778 gtk_widget_show(opt); | |
1779 gtk_menu_append(GTK_MENU(menu), opt); | |
1780 | |
1781 awy = awy->next; | |
1782 index++; | |
1783 } | |
1784 | |
1785 gtk_option_menu_remove_menu(GTK_OPTION_MENU(omenu)); | |
1786 gtk_option_menu_set_menu(GTK_OPTION_MENU(omenu), menu); | |
1787 gtk_option_menu_set_history(GTK_OPTION_MENU(omenu), g_slist_index(away_messages, default_away)); | |
1788 } | |
1789 | |
1790 GtkWidget *pref_fg_picture = NULL; | |
1791 GtkWidget *pref_bg_picture = NULL; | |
1792 | |
1793 void destroy_colorsel(GtkWidget *w, gpointer d) | |
1794 { | |
1795 if (d) { | |
1796 gtk_widget_destroy(fgcseld); | |
1797 fgcseld = NULL; | |
1798 } else { | |
1799 gtk_widget_destroy(bgcseld); | |
1800 bgcseld = NULL; | |
1801 } | |
3032 | 1802 } |
1803 | |
3366 | 1804 void apply_color_dlg(GtkWidget *w, gpointer d) |
3032 | 1805 { |
3379 | 1806 #if GTK_CHECK_VERSION(1,3,0) |
3366 | 1807 if ((int)d == 1) { |
1808 gtk_color_selection_get_current_color(GTK_COLOR_SELECTION | |
1809 (GTK_COLOR_SELECTION_DIALOG(fgcseld)->colorsel), | |
1810 &fgcolor_new); | |
1811 #else | |
3379 | 1812 gdouble color[3]; |
1813 if ((int)d == 1) { | |
3366 | 1814 gtk_color_selection_get_color(GTK_COLOR_SELECTION |
1815 (GTK_COLOR_SELECTION_DIALOG(fgcseld)->colorsel), color); | |
3032 | 1816 |
3366 | 1817 fgcolor_new.red = ((guint16)(color[0] * 65535)) >> 8; |
1818 fgcolor_new.green = ((guint16)(color[1] * 65535)) >> 8; | |
1819 fgcolor_new.blue = ((guint16)(color[2] * 65535)) >> 8; | |
1820 #endif | |
1821 destroy_colorsel(NULL, (void *)1); | |
1822 update_color(NULL, pref_fg_picture); | |
1823 } else { | |
1824 #if GTK_CHECK_VERSION(1,3,0) | |
1825 gtk_color_selection_get_current_color(GTK_COLOR_SELECTION | |
1826 (GTK_COLOR_SELECTION_DIALOG(bgcseld)->colorsel), | |
1827 &bgcolor_new); | |
1828 #else | |
1829 gtk_color_selection_get_color(GTK_COLOR_SELECTION | |
1830 (GTK_COLOR_SELECTION_DIALOG(bgcseld)->colorsel), color); | |
1831 | |
1832 bgcolor_new.red = ((guint16)(color[0] * 65535)) >> 8; | |
1833 bgcolor_new.green = ((guint16)(color[1] * 65535)) >> 8; | |
1834 bgcolor_new.blue = ((guint16)(color[2] * 65535)) >> 8; | |
1835 #endif | |
1836 destroy_colorsel(NULL, (void *)0); | |
1837 update_color(NULL, pref_bg_picture); | |
1838 } | |
3032 | 1839 } |
1840 | |
3366 | 1841 void update_color(GtkWidget *w, GtkWidget *pic) |
1 | 1842 { |
3366 | 1843 GdkColor c; |
1844 GtkStyle *style; | |
1845 c.pixel = 0; | |
1846 | |
1847 if (pic == pref_fg_picture) { | |
1848 if (font_options_new & OPT_FONT_FGCOL) { | |
1849 c.red = fgcolor_new.red; | |
1850 c.blue = fgcolor_new.blue; | |
1851 c.green = fgcolor_new.green; | |
1852 } else { | |
1853 c.red = 0; | |
1854 c.blue = 0; | |
1855 c.green = 0; | |
1856 } | |
1857 } else { | |
1858 if (font_options_new & OPT_FONT_BGCOL) { | |
1859 c.red = bgcolor_new.red; | |
1860 c.blue = bgcolor_new.blue; | |
1861 c.green = bgcolor_new.green; | |
1862 } else { | |
1863 c.red = 0xffff; | |
1864 c.blue = 0xffff; | |
1865 c.green = 0xffff; | |
1866 } | |
1867 } | |
1868 | |
1869 style = gtk_style_new(); | |
1870 style->bg[0] = c; | |
1871 gtk_widget_set_style(pic, style); | |
1872 gtk_style_unref(style); | |
1873 } | |
1874 void set_default_away(GtkWidget *w, gpointer i) | |
1875 { | |
1876 | |
1877 int length = g_slist_length(away_messages); | |
338
9d258a0aa560
[gaim-migrate @ 348]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
337
diff
changeset
|
1878 |
3366 | 1879 if (away_messages == NULL) |
1880 default_away_new = NULL; | |
1881 else if ((int)i >= length) | |
1882 default_away_new = g_slist_nth_data(away_messages, length - 1); | |
1883 else | |
1884 default_away_new = g_slist_nth_data(away_messages, (int)i); | |
1885 } | |
1886 | |
1887 static void update_spin_value(GtkWidget *w, GtkWidget *spin) | |
1888 { | |
1889 int *value = gtk_object_get_user_data(GTK_OBJECT(spin)); | |
1890 *value = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(spin)); | |
1891 } | |
3427 | 1892 GtkWidget *gaim_labeled_spin_button(GtkWidget *box, const gchar *title, int *val, int min, int max, GtkSizeGroup *sg) |
3366 | 1893 { |
1894 GtkWidget *hbox; | |
1895 GtkWidget *label; | |
1896 GtkWidget *spin; | |
1897 GtkObject *adjust; | |
901
f168f2c7b357
[gaim-migrate @ 911]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
893
diff
changeset
|
1898 |
3366 | 1899 hbox = gtk_hbox_new(FALSE, 5); |
1900 gtk_box_pack_start(GTK_BOX(box), hbox, FALSE, FALSE, 5); | |
1901 gtk_widget_show(hbox); | |
1902 | |
3427 | 1903 label = gtk_label_new_with_mnemonic(title); |
3366 | 1904 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); |
1905 gtk_widget_show(label); | |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
1906 |
3366 | 1907 adjust = gtk_adjustment_new(*val, min, max, 1, 1, 1); |
1908 spin = gtk_spin_button_new(GTK_ADJUSTMENT(adjust), 1, 0); | |
1909 gtk_object_set_user_data(GTK_OBJECT(spin), val); | |
1910 gtk_widget_set_usize(spin, 50, -1); | |
1911 gtk_box_pack_start(GTK_BOX(hbox), spin, FALSE, FALSE, 0); | |
1912 gtk_signal_connect(GTK_OBJECT(adjust), "value-changed", | |
1913 GTK_SIGNAL_FUNC(update_spin_value), GTK_WIDGET(spin)); | |
1914 gtk_widget_show(spin); | |
3427 | 1915 |
1916 gtk_label_set_mnemonic_widget(GTK_LABEL(label), spin); | |
1917 | |
1918 if (sg) { | |
1919 gtk_size_group_add_widget(sg, label); | |
1920 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
1921 | |
1922 } | |
1923 return label; | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1924 } |
1 | 1925 |
3366 | 1926 void dropdown_set(GtkObject *w, int *option) |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1927 { |
3366 | 1928 int opt = (int)gtk_object_get_user_data(w); |
1929 int clear = (int)gtk_object_get_data(w, "clear"); | |
1930 | |
1931 if (clear != -1) { | |
1932 *option = *option & ~clear; | |
1933 *option = *option | opt; | |
1934 } else { | |
1935 debug_printf("HELLO %d\n", opt); | |
1936 *option = opt; | |
1937 } | |
1938 | |
1939 if (option == &proxytype_new) { | |
1940 if (opt == PROXY_NONE) | |
1941 gtk_widget_set_sensitive(prefs_proxy_frame, FALSE); | |
1942 else | |
1943 gtk_widget_set_sensitive(prefs_proxy_frame, TRUE); | |
1944 } else if (option == &web_browser_new) { | |
1945 if (opt == BROWSER_MANUAL) | |
1946 gtk_widget_set_sensitive(browser_entry, TRUE); | |
1947 else | |
1948 gtk_widget_set_sensitive(browser_entry, FALSE); | |
3379 | 1949 } else if (*option == sound_options_new) { |
3366 | 1950 if (opt == OPT_SOUND_CMD) |
1951 gtk_widget_set_sensitive(sndcmd, TRUE); | |
1952 else | |
1953 gtk_widget_set_sensitive(sndcmd, FALSE); | |
1954 } | |
1955 | |
1 | 1956 } |
1957 | |
3366 | 1958 static GtkWidget *gaim_dropdown(GtkWidget *box, const gchar *title, int *option, int clear, ...) |
1 | 1959 { |
3366 | 1960 va_list menuitems; |
1961 GtkWidget *dropdown, *opt, *menu; | |
1962 GtkWidget *label; | |
1963 gchar *text; | |
1964 int value; | |
1965 int o = 0; | |
1966 GtkWidget *hbox; | |
1 | 1967 |
3366 | 1968 hbox = gtk_hbox_new(FALSE, 5); |
1969 gtk_container_add (GTK_CONTAINER (box), hbox); | |
1970 gtk_widget_show(hbox); | |
1971 | |
3427 | 1972 label = gtk_label_new_with_mnemonic(title); |
3366 | 1973 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); |
1974 gtk_widget_show(label); | |
1975 | |
1976 va_start(menuitems, clear); | |
1977 text = va_arg(menuitems, gchar *); | |
1978 | |
1979 if (!text) | |
1980 return NULL; | |
1981 | |
1982 dropdown = gtk_option_menu_new(); | |
1983 menu = gtk_menu_new(); | |
3427 | 1984 |
1985 gtk_label_set_mnemonic_widget(GTK_LABEL(label), dropdown); | |
1986 | |
3366 | 1987 while (text) { |
1988 value = va_arg(menuitems, int); | |
1989 opt = gtk_menu_item_new_with_label(text); | |
1990 gtk_object_set_user_data(GTK_OBJECT(opt), (void *)value); | |
1991 gtk_object_set_data(GTK_OBJECT(opt), "clear", (void *)clear); | |
1992 gtk_signal_connect(GTK_OBJECT(opt), "activate", | |
1993 GTK_SIGNAL_FUNC(dropdown_set), (void *)option); | |
1994 gtk_widget_show(opt); | |
1995 gtk_menu_shell_append(GTK_MENU_SHELL(menu), opt); | |
1 | 1996 |
3366 | 1997 if (((clear > -1) && ((*option & value) == value)) || *option == value) { |
1998 gtk_menu_set_active(GTK_MENU(menu), o); | |
1999 } | |
2000 text = va_arg(menuitems, gchar *); | |
2001 o++; | |
2002 } | |
2262
9c8f353331e7
[gaim-migrate @ 2272]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2254
diff
changeset
|
2003 |
3366 | 2004 va_end(menuitems); |
1 | 2005 |
3366 | 2006 gtk_option_menu_set_menu(GTK_OPTION_MENU(dropdown), menu); |
2007 gtk_box_pack_start(GTK_BOX(hbox), dropdown, FALSE, FALSE, 0); | |
2008 gtk_widget_show(dropdown); | |
3427 | 2009 return label; |
3366 | 2010 } |
2011 | |
2012 static GtkWidget *show_color_pref(GtkWidget *box, gboolean fgc) | |
1 | 2013 { |
3366 | 2014 /* more stuff stolen from X-Chat */ |
2015 GtkWidget *swid; | |
2016 GdkColor c; | |
2017 GtkStyle *style; | |
2018 c.pixel = 0; | |
2019 if (fgc) { | |
2020 if (font_options_new & OPT_FONT_FGCOL) { | |
2021 c.red = fgcolor_new.red; | |
2022 c.blue = fgcolor_new.blue; | |
2023 c.green = fgcolor_new.green; | |
2024 } else { | |
2025 c.red = 0; | |
2026 c.blue = 0; | |
2027 c.green = 0; | |
2028 } | |
2029 } else { | |
2030 if (font_options_new & OPT_FONT_BGCOL) { | |
2031 c.red = bgcolor_new.red; | |
2032 c.blue = bgcolor_new.blue; | |
2033 c.green = bgcolor_new.green; | |
2034 } else { | |
2035 c.red = 0xffff; | |
2036 c.blue = 0xffff; | |
2037 c.green = 0xffff; | |
2038 } | |
2039 } | |
1 | 2040 |
3366 | 2041 style = gtk_style_new(); |
2042 style->bg[0] = c; | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
2043 |
3366 | 2044 swid = gtk_event_box_new(); |
2045 gtk_widget_set_style(GTK_WIDGET(swid), style); | |
2046 gtk_style_unref(style); | |
2047 gtk_widget_set_usize(GTK_WIDGET(swid), 40, -1); | |
2048 gtk_box_pack_start(GTK_BOX(box), swid, FALSE, FALSE, 5); | |
2049 gtk_widget_show(swid); | |
2050 return swid; | |
1 | 2051 } |
3366 | 2052 void apply_font_dlg(GtkWidget *w, GtkWidget *f) |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
2053 { |
3366 | 2054 int i = 0; |
2055 #if !GTK_CHECK_VERSION(1,3,0) | |
2056 int j = 0, k = 0; | |
2057 #endif | |
2058 char *fontname; | |
2059 | |
2060 fontname = g_strdup(gtk_font_selection_dialog_get_font_name(GTK_FONT_SELECTION_DIALOG(fontseld))); | |
2061 destroy_fontsel(0, 0); | |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
2062 |
3366 | 2063 #if !GTK_CHECK_VERSION(1,3,0) |
2064 for (i = 0; i < strlen(fontname); i++) { | |
2065 if (fontname[i] == '-') { | |
2066 if (++j > 2) | |
2067 break; | |
2068 } else if (j == 2) | |
2069 fontface_new[k++] = fontname[i]; | |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
2070 } |
3366 | 2071 fontface_new[k] = '\0'; |
2072 g_snprintf(fontxfld_new, sizeof(fontxfld_new), "%s", fontname); | |
2073 #else | |
2074 while(fontname[i] && !isdigit(fontname[i]) && i < sizeof(fontface_new)) { | |
2075 fontface_new[i] = fontname[i]; | |
2076 i++; | |
2077 } | |
2078 | |
2079 #endif | |
2080 g_free(fontname); | |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
2081 } |