Mercurial > pidgin.yaz
annotate src/prefs.c @ 4914:10a0917c1c0f
[gaim-migrate @ 5248]
da.po update :-)
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Sun, 30 Mar 2003 23:14:57 +0000 |
parents | dc6de8ad81ae |
children | 5fe846b7603f |
rev | line source |
---|---|
1 | 1 /* |
2 * gaim | |
3 * | |
3434 | 4 * Copyright (C) 1998-2002, Mark Spencer <markster@marko.net> |
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" |
4687 | 39 #include "gtklist.h" |
1357
783ba886b6b6
[gaim-migrate @ 1367]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1324
diff
changeset
|
40 #include "prpl.h" |
3366 | 41 #include "proxy.h" |
4561 | 42 #include "sound.h" |
3366 | 43 |
4026
a997156437b6
[gaim-migrate @ 4230]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4010
diff
changeset
|
44 #ifdef _WIN32 |
a997156437b6
[gaim-migrate @ 4230]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4010
diff
changeset
|
45 #include "win32dep.h" |
a997156437b6
[gaim-migrate @ 4230]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4010
diff
changeset
|
46 #endif |
a997156437b6
[gaim-migrate @ 4230]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4010
diff
changeset
|
47 |
3567 | 48 GtkWidget *tree_v = NULL; |
1109
c73736fa0b7c
[gaim-migrate @ 1119]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1087
diff
changeset
|
49 GtkWidget *prefs_away_menu = NULL; |
3366 | 50 GtkWidget *fontseld = NULL; |
51 | |
3379 | 52 GtkListStore *prefs_away_store = NULL; |
3366 | 53 |
54 static int sound_row_sel = 0; | |
55 static char *last_sound_dir = NULL; | |
56 | |
57 static GtkWidget *sounddialog = NULL; | |
58 static GtkWidget *browser_entry = NULL; | |
59 static GtkWidget *sound_entry = NULL; | |
60 static GtkWidget *away_text = NULL; | |
4324 | 61 static GtkListStore *smiley_theme_store = NULL; |
2254 | 62 GtkWidget *prefs_proxy_frame = NULL; |
4026
a997156437b6
[gaim-migrate @ 4230]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4010
diff
changeset
|
63 GtkWidget *gaim_button(const char *, guint *, int, GtkWidget *); |
3427 | 64 GtkWidget *gaim_labeled_spin_button(GtkWidget *, const gchar *, int*, int, int, GtkSizeGroup *); |
3366 | 65 static GtkWidget *gaim_dropdown(GtkWidget *, const gchar *, int *, int, ...); |
4428 | 66 static GtkWidget *gaim_dropdown_from_list(GtkWidget *, const gchar *, int *, int, GList *); |
3366 | 67 static GtkWidget *show_color_pref(GtkWidget *, gboolean); |
68 static void delete_prefs(GtkWidget *, void *); | |
69 void set_default_away(GtkWidget *, gpointer); | |
4428 | 70 static gboolean program_is_valid(const char *); |
1026 | 71 |
3366 | 72 struct debug_window *dw = NULL; |
3565 | 73 GtkWidget *prefs = NULL; |
3366 | 74 GtkWidget *debugbutton = NULL; |
3565 | 75 static int notebook_page = 0; |
76 static GtkTreeIter plugin_iter; | |
1525
ba8e6e211af5
[gaim-migrate @ 1535]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1455
diff
changeset
|
77 |
3630 | 78 /* |
79 * PROTOTYPES | |
80 */ | |
81 GtkTreeIter *prefs_notebook_add_page(char*, GdkPixbuf*, GtkWidget*, GtkTreeIter*, GtkTreeIter*, int); | |
82 | |
3366 | 83 void delete_prefs(GtkWidget *asdf, void *gdsa) { |
4215 | 84 GList *l = plugins; |
85 struct gaim_plugin *plug; | |
86 | |
4064 | 87 save_prefs(); |
3485 | 88 prefs = NULL; |
3567 | 89 tree_v = NULL; |
3485 | 90 sound_entry = NULL; |
91 browser_entry = NULL; | |
3526 | 92 debugbutton = NULL; |
93 prefs_away_menu = NULL; | |
3565 | 94 notebook_page = 0; |
4324 | 95 smiley_theme_store = NULL; |
3485 | 96 if(sounddialog) |
3379 | 97 gtk_widget_destroy(sounddialog); |
3500 | 98 g_object_unref(G_OBJECT(prefs_away_store)); |
4635 | 99 prefs_away_store = NULL; |
4215 | 100 while(l) { |
101 plug = l->data; | |
102 if(plug->iter) { | |
103 g_free(plug->iter); | |
104 plug->iter = NULL; | |
105 } | |
106 l = l->next; | |
107 } | |
1525
ba8e6e211af5
[gaim-migrate @ 1535]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1455
diff
changeset
|
108 } |
ba8e6e211af5
[gaim-migrate @ 1535]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1455
diff
changeset
|
109 |
3366 | 110 GtkWidget *preflabel; |
111 GtkWidget *prefsnotebook; | |
112 GtkTreeStore *prefstree; | |
1750
d2eca7a46cfd
[gaim-migrate @ 1760]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1711
diff
changeset
|
113 |
3818 | 114 static void set_misc_option(); |
115 static void set_logging_option(); | |
116 static void set_blist_option(); | |
117 static void set_convo_option(); | |
118 static void set_im_option(); | |
119 static void set_chat_option(); | |
120 static void set_font_option(); | |
121 static void set_sound_option(); | |
122 static void set_away_option(); | |
1750
d2eca7a46cfd
[gaim-migrate @ 1760]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1711
diff
changeset
|
123 |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
124 #define PROXYHOST 0 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
125 #define PROXYPORT 1 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
126 #define PROXYTYPE 2 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
127 #define PROXYUSER 3 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
128 #define PROXYPASS 4 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
129 static void proxy_print_option(GtkEntry *entry, int entrynum) |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
130 { |
2372
2927c2c26fe6
[gaim-migrate @ 2385]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2323
diff
changeset
|
131 if (entrynum == PROXYHOST) |
4634 | 132 g_snprintf(global_proxy_info.proxyhost, sizeof(global_proxy_info.proxyhost), "%s", gtk_entry_get_text(entry)); |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
133 else if (entrynum == PROXYPORT) |
4634 | 134 global_proxy_info.proxyport = atoi(gtk_entry_get_text(entry)); |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
135 else if (entrynum == PROXYUSER) |
4634 | 136 g_snprintf(global_proxy_info.proxyuser, sizeof(global_proxy_info.proxyuser), "%s", gtk_entry_get_text(entry)); |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
137 else if (entrynum == PROXYPASS) |
4634 | 138 g_snprintf(global_proxy_info.proxypass, sizeof(global_proxy_info.proxypass), "%s", gtk_entry_get_text(entry)); |
4137 | 139 proxy_info_is_from_gaimrc = 1; /* If the user specifies it, we want |
140 to save it */ | |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
141 } |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
142 |
3366 | 143 |
3565 | 144 GtkWidget *make_frame(GtkWidget *ret, char *text) { |
3427 | 145 GtkWidget *vbox, *label, *hbox; |
146 char labeltext[256]; | |
3500 | 147 |
3427 | 148 vbox = gtk_vbox_new(FALSE, 6); |
149 gtk_box_pack_start(GTK_BOX(ret), vbox, FALSE, FALSE, 0); | |
150 label = gtk_label_new(NULL); | |
151 g_snprintf(labeltext, sizeof(labeltext), "<span weight=\"bold\">%s</span>", text); | |
152 gtk_label_set_markup(GTK_LABEL(label), labeltext); | |
153 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
154 gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0); | |
155 hbox = gtk_hbox_new(FALSE, 6); | |
156 gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0); | |
157 label = gtk_label_new(" "); | |
158 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); | |
159 vbox = gtk_vbox_new(FALSE, 6); | |
160 gtk_box_pack_start(GTK_BOX(hbox), vbox, FALSE, FALSE, 0); | |
161 return vbox; | |
162 } | |
163 | |
3366 | 164 /* OK, Apply and Cancel */ |
165 | |
166 static void pref_nb_select(GtkTreeSelection *sel, GtkNotebook *nb) { | |
167 GtkTreeIter iter; | |
3427 | 168 char text[128]; |
3366 | 169 GValue val = { 0, }; |
170 GtkTreeModel *model = GTK_TREE_MODEL(prefstree); | |
3500 | 171 |
3366 | 172 if (! gtk_tree_selection_get_selected (sel, &model, &iter)) |
173 return; | |
174 gtk_tree_model_get_value (model, &iter, 1, &val); | |
3500 | 175 g_snprintf(text, sizeof(text), "<span weight=\"bold\" size=\"larger\">%s</span>", |
3427 | 176 g_value_get_string(&val)); |
177 gtk_label_set_markup (GTK_LABEL(preflabel), text); | |
3366 | 178 g_value_unset (&val); |
179 gtk_tree_model_get_value (model, &iter, 2, &val); | |
180 gtk_notebook_set_current_page (GTK_NOTEBOOK (prefsnotebook), g_value_get_int (&val)); | |
181 | |
182 } | |
183 | |
184 /* These are the pages in the preferences notebook */ | |
185 GtkWidget *interface_page() { | |
186 GtkWidget *ret; | |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
187 GtkWidget *vbox; |
3427 | 188 ret = gtk_vbox_new(FALSE, 18); |
189 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
3366 | 190 |
3427 | 191 vbox = make_frame(ret, _("Interface Options")); |
3500 | 192 |
4227 | 193 gaim_button(_("D_isplay remote nicknames if no alias is set"), &misc_options, OPT_MISC_USE_SERVER_ALIAS, vbox); |
194 | |
3366 | 195 |
3427 | 196 gtk_widget_show_all(ret); |
3366 | 197 return ret; |
198 } | |
199 | |
4288 | 200 static void smiley_sel (GtkTreeSelection *sel, GtkTreeModel *model) { |
201 GtkTreeIter iter; | |
4298 | 202 const char *filename; |
4288 | 203 GValue val = { 0, }; |
204 | |
205 if (! gtk_tree_selection_get_selected (sel, &model, &iter)) | |
206 return; | |
207 gtk_tree_model_get_value (model, &iter, 2, &val); | |
208 filename = g_value_get_string(&val); | |
209 load_smiley_theme(filename, TRUE); | |
210 g_value_unset (&val); | |
4302 | 211 save_prefs(); |
4288 | 212 } |
213 | |
4324 | 214 GtkTreePath *theme_refresh_theme_list() |
215 { | |
216 GdkPixbuf *pixbuf; | |
4323 | 217 GSList *themes; |
4288 | 218 GtkTreeIter iter; |
4328 | 219 GtkTreePath *path = NULL; |
4325 | 220 int ind = 0; |
221 | |
4288 | 222 |
4323 | 223 smiley_theme_probe(); |
4328 | 224 |
4323 | 225 if (!smiley_themes) |
4328 | 226 return NULL; |
4325 | 227 |
4323 | 228 themes = smiley_themes; |
4325 | 229 |
230 gtk_list_store_clear(smiley_theme_store); | |
231 | |
4288 | 232 while (themes) { |
233 struct smiley_theme *theme = themes->data; | |
234 char *description = g_strdup_printf("<span size='larger' weight='bold'>%s</span> - %s\n" | |
4718 | 235 "<span size='smaller' foreground='dim grey'>%s</span>", |
236 theme->name, theme->author, theme->desc); | |
4324 | 237 gtk_list_store_append (smiley_theme_store, &iter); |
4288 | 238 pixbuf = gdk_pixbuf_new_from_file(theme->icon, NULL); |
4328 | 239 |
4324 | 240 gtk_list_store_set(smiley_theme_store, &iter, |
4288 | 241 0, pixbuf, |
242 1, description, | |
243 2, theme->path, | |
244 -1); | |
4892 | 245 g_object_unref(G_OBJECT(pixbuf)); |
4288 | 246 g_free(description); |
247 themes = themes->next; | |
248 if (current_smiley_theme && !strcmp(theme->path, current_smiley_theme->path)) { | |
249 /* path = gtk_tree_path_new_from_indices(ind); */ | |
250 char *iwishihadgtk2_2 = g_strdup_printf("%d", ind); | |
251 path = gtk_tree_path_new_from_string(iwishihadgtk2_2); | |
252 g_free(iwishihadgtk2_2); | |
253 } | |
254 ind++; | |
255 } | |
4325 | 256 |
4324 | 257 return path; |
258 } | |
4325 | 259 |
4326 | 260 void theme_install_theme(char *path, char *extn) { |
4325 | 261 gchar *command; |
262 gchar *destdir; | |
263 gchar *tail; | |
264 | |
265 /* Just to be safe */ | |
266 g_strchomp(path); | |
267 | |
268 /* I dont know what you are, get out of here */ | |
4326 | 269 if (extn != NULL) |
270 tail = extn; | |
271 else if ((tail = strrchr(path, '.')) == NULL) | |
4325 | 272 return; |
273 | |
274 destdir = g_strconcat(gaim_user_dir(), G_DIR_SEPARATOR_S "smileys", NULL); | |
275 | |
276 /* We'll check this just to make sure. This also lets us do something different on | |
277 * other platforms, if need be */ | |
4793 | 278 if (!g_ascii_strcasecmp(tail, ".gz") || !g_ascii_strcasecmp(tail, ".tgz")) |
4325 | 279 command = g_strdup_printf("tar > /dev/null xzf \"%s\" -C %s", path, destdir); |
280 else { | |
281 g_free(destdir); | |
282 return; | |
283 } | |
284 | |
285 /* Fire! */ | |
286 system(command); | |
287 | |
288 g_free(command); | |
289 g_free(destdir); | |
290 | |
291 theme_refresh_theme_list(); | |
292 } | |
293 | |
4326 | 294 static void theme_got_url(gpointer data, char *themedata, unsigned long len) { |
295 FILE *f; | |
296 gchar *path; | |
297 | |
298 f = gaim_mkstemp(&path); | |
299 fwrite(themedata, len, 1, f); | |
300 fclose(f); | |
301 | |
302 theme_install_theme(path, data); | |
303 | |
304 unlink(path); | |
305 g_free(path); | |
306 } | |
307 | |
4328 | 308 void theme_dnd_recv(GtkWidget *widget, GdkDragContext *dc, guint x, guint y, GtkSelectionData *sd, |
4325 | 309 guint info, guint t, gpointer data) { |
310 gchar *name = sd->data; | |
311 | |
312 if ((sd->length >= 0) && (sd->format == 8)) { | |
313 /* Well, it looks like the drag event was cool. | |
314 * Let's do something with it */ | |
315 | |
4793 | 316 if (!g_ascii_strncasecmp(name, "file://", 7)) { |
4325 | 317 /* It looks like we're dealing with a local file. Let's |
318 * just untar it in the right place */ | |
4326 | 319 theme_install_theme(name + 7, NULL); |
4793 | 320 } else if (!g_ascii_strncasecmp(name, "http://", 7)) { |
4326 | 321 /* Oo, a web drag and drop. This is where things |
322 * will start to get interesting */ | |
323 gchar *tail; | |
4328 | 324 |
4326 | 325 if ((tail = strrchr(name, '.')) == NULL) |
326 return; | |
327 | |
328 /* We'll check this just to make sure. This also lets us do something different on | |
329 * other platforms, if need be */ | |
4332
c8f374cadbd9
[gaim-migrate @ 4596]
Christian Hammond <chipx86@chipx86.com>
parents:
4330
diff
changeset
|
330 grab_url(name, TRUE, theme_got_url, ".tgz"); |
4325 | 331 } |
332 | |
333 gtk_drag_finish(dc, TRUE, FALSE, t); | |
334 } | |
335 | |
336 gtk_drag_finish(dc, FALSE, FALSE, t); | |
337 } | |
338 | |
4324 | 339 GtkWidget *theme_page() { |
340 GtkWidget *ret; | |
341 GtkWidget *sw; | |
342 GtkWidget *view; | |
343 GtkCellRenderer *rend; | |
344 GtkTreeViewColumn *col; | |
345 GtkTreeSelection *sel; | |
346 GtkTreePath *path = NULL; | |
4334 | 347 GtkWidget *label; |
4702 | 348 GtkTargetEntry te[3] = {{"text/plain", 0, 0},{"text/uri-list", 0, 1},{"STRING", 0, 2}}; |
4324 | 349 |
350 ret = gtk_vbox_new(FALSE, 18); | |
351 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
352 | |
4339
78bc4c8e4b2e
[gaim-migrate @ 4603]
Christian Hammond <chipx86@chipx86.com>
parents:
4334
diff
changeset
|
353 label = gtk_label_new(_("Select a smiley theme that you would like to use from the list below. New themes can be installed by dragging and dropping them onto the theme list.")); |
4334 | 354 |
4339
78bc4c8e4b2e
[gaim-migrate @ 4603]
Christian Hammond <chipx86@chipx86.com>
parents:
4334
diff
changeset
|
355 gtk_label_set_line_wrap(GTK_LABEL(label), TRUE); |
4334 | 356 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); |
357 gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_LEFT); | |
358 | |
359 gtk_box_pack_start(GTK_BOX(ret), label, FALSE, TRUE, 0); | |
360 gtk_widget_show(label); | |
361 | |
4324 | 362 sw = gtk_scrolled_window_new(NULL,NULL); |
363 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); | |
364 gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_IN); | |
365 | |
366 gtk_box_pack_start(GTK_BOX(ret), sw, TRUE, TRUE, 0); | |
367 smiley_theme_store = gtk_list_store_new (3, GDK_TYPE_PIXBUF, G_TYPE_STRING, G_TYPE_STRING); | |
368 | |
369 path = theme_refresh_theme_list(); | |
4288 | 370 |
4324 | 371 view = gtk_tree_view_new_with_model (GTK_TREE_MODEL(smiley_theme_store)); |
4325 | 372 |
373 gtk_drag_dest_set(view, GTK_DEST_DEFAULT_MOTION | GTK_DEST_DEFAULT_HIGHLIGHT | GTK_DEST_DEFAULT_DROP, te, | |
374 sizeof(te) / sizeof(GtkTargetEntry) , GDK_ACTION_COPY | GDK_ACTION_MOVE); | |
375 | |
376 g_signal_connect(G_OBJECT(view), "drag_data_received", G_CALLBACK(theme_dnd_recv), smiley_theme_store); | |
377 | |
4288 | 378 rend = gtk_cell_renderer_pixbuf_new(); |
379 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (view)); | |
4328 | 380 |
381 if(path) { | |
382 gtk_tree_selection_select_path(sel, path); | |
383 gtk_tree_path_free(path); | |
384 } | |
4288 | 385 |
4589 | 386 col = gtk_tree_view_column_new_with_attributes (_("Icon"), |
4288 | 387 rend, |
388 "pixbuf", 0, | |
389 NULL); | |
390 gtk_tree_view_append_column (GTK_TREE_VIEW(view), col); | |
391 | |
392 rend = gtk_cell_renderer_text_new(); | |
4589 | 393 col = gtk_tree_view_column_new_with_attributes (_("Description"), |
4288 | 394 rend, |
395 "markup", 1, | |
396 NULL); | |
397 gtk_tree_view_append_column (GTK_TREE_VIEW(view), col); | |
4324 | 398 g_object_unref(G_OBJECT(smiley_theme_store)); |
4288 | 399 gtk_container_add(GTK_CONTAINER(sw), view); |
400 | |
401 g_signal_connect (G_OBJECT (sel), "changed", | |
402 G_CALLBACK (smiley_sel), | |
403 NULL); | |
404 | |
405 | |
406 gtk_widget_show_all(ret); | |
407 return ret; | |
408 } | |
409 | |
3366 | 410 GtkWidget *font_page() { |
411 GtkWidget *ret; | |
412 GtkWidget *button; | |
413 GtkWidget *vbox, *hbox; | |
414 GtkWidget *select = NULL; | |
3427 | 415 GtkSizeGroup *sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); |
3500 | 416 |
3427 | 417 ret = gtk_vbox_new(FALSE, 18); |
418 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
3500 | 419 |
3427 | 420 vbox = make_frame(ret, _("Style")); |
3818 | 421 gaim_button(_("_Bold"), &font_options, OPT_FONT_BOLD, vbox); |
422 gaim_button(_("_Italics"), &font_options, OPT_FONT_ITALIC, vbox); | |
423 gaim_button(_("_Underline"), &font_options, OPT_FONT_UNDERLINE, vbox); | |
4599 | 424 gaim_button(_("_Strikethrough"), &font_options, OPT_FONT_STRIKE, vbox); |
3500 | 425 |
3427 | 426 vbox = make_frame(ret, _("Face")); |
427 hbox = gtk_hbox_new(FALSE, 6); | |
428 gtk_container_add(GTK_CONTAINER(vbox), hbox); | |
3818 | 429 button = gaim_button(_("Use custo_m face"), &font_options, OPT_FONT_FACE, hbox); |
3427 | 430 gtk_size_group_add_widget(sg, button); |
431 select = gtk_button_new_from_stock(GTK_STOCK_SELECT_FONT); | |
3366 | 432 |
3818 | 433 if (!(font_options & OPT_FONT_FACE)) |
3366 | 434 gtk_widget_set_sensitive(GTK_WIDGET(select), FALSE); |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
435 g_signal_connect(GTK_OBJECT(button), "clicked", |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
436 G_CALLBACK(gaim_gtk_toggle_sensitive), select); |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
437 g_signal_connect(GTK_OBJECT(select), "clicked", |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
438 G_CALLBACK(show_font_dialog), NULL); |
3366 | 439 gtk_box_pack_start(GTK_BOX(hbox), select, FALSE, FALSE, 0); |
440 | |
441 hbox = gtk_hbox_new(FALSE, 5); | |
442 gtk_container_add(GTK_CONTAINER(vbox), hbox); | |
3818 | 443 button = gaim_button(_("Use custom si_ze"), &font_options, OPT_FONT_SIZE, hbox); |
3427 | 444 gtk_size_group_add_widget(sg, button); |
3818 | 445 select = gaim_labeled_spin_button(hbox, NULL, &fontsize, 1, 7, NULL); |
446 if (!(font_options & OPT_FONT_SIZE)) | |
3366 | 447 gtk_widget_set_sensitive(GTK_WIDGET(select), FALSE); |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
448 g_signal_connect(GTK_OBJECT(button), "clicked", |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
449 G_CALLBACK(gaim_gtk_toggle_sensitive), select); |
3366 | 450 |
3500 | 451 vbox = make_frame(ret, _("Color")); |
3366 | 452 hbox = gtk_hbox_new(FALSE, 5); |
453 gtk_container_add(GTK_CONTAINER(vbox), hbox); | |
3500 | 454 |
455 | |
3818 | 456 button = gaim_button(_("_Text color"), &font_options, OPT_FONT_FGCOL, hbox); |
3427 | 457 gtk_size_group_add_widget(sg, button); |
458 | |
459 select = gtk_button_new_from_stock(GTK_STOCK_SELECT_COLOR); | |
460 gtk_box_pack_start(GTK_BOX(hbox), select, FALSE, FALSE, 0); | |
3366 | 461 pref_fg_picture = show_color_pref(hbox, TRUE); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
462 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(update_color), |
3366 | 463 pref_fg_picture); |
3427 | 464 |
3818 | 465 if (!(font_options & OPT_FONT_FGCOL)) |
3366 | 466 gtk_widget_set_sensitive(GTK_WIDGET(select), FALSE); |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
467 g_signal_connect(GTK_OBJECT(button), "clicked", |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
468 G_CALLBACK(gaim_gtk_toggle_sensitive), select); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
469 g_signal_connect(GTK_OBJECT(select), "clicked", G_CALLBACK(show_fgcolor_dialog), NULL); |
3366 | 470 hbox = gtk_hbox_new(FALSE, 5); |
471 gtk_container_add(GTK_CONTAINER(vbox), hbox); | |
3500 | 472 |
3818 | 473 button = gaim_button(_("Bac_kground color"), &font_options, OPT_FONT_BGCOL, hbox); |
3427 | 474 gtk_size_group_add_widget(sg, button); |
475 select = gtk_button_new_from_stock(GTK_STOCK_SELECT_COLOR); | |
476 gtk_box_pack_start(GTK_BOX(hbox), select, FALSE, FALSE, 0); | |
3366 | 477 pref_bg_picture = show_color_pref(hbox, FALSE); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
478 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(update_color), |
3366 | 479 pref_bg_picture); |
3472 | 480 |
3818 | 481 if (!(font_options & OPT_FONT_BGCOL)) |
3366 | 482 gtk_widget_set_sensitive(GTK_WIDGET(select), FALSE); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
483 g_signal_connect(GTK_OBJECT(select), "clicked", G_CALLBACK(show_bgcolor_dialog), NULL); |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
484 g_signal_connect(GTK_OBJECT(button), "clicked", |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
485 G_CALLBACK(gaim_gtk_toggle_sensitive), select); |
3366 | 486 |
3427 | 487 gtk_widget_show_all(ret); |
3366 | 488 return ret; |
489 } | |
490 | |
491 | |
492 GtkWidget *messages_page() { | |
493 GtkWidget *ret; | |
494 GtkWidget *vbox; | |
3427 | 495 ret = gtk_vbox_new(FALSE, 18); |
496 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
3366 | 497 |
3427 | 498 vbox = make_frame (ret, _("Display")); |
3818 | 499 gaim_button(_("Show graphical _smileys"), &convo_options, OPT_CONVO_SHOW_SMILEY, vbox); |
500 gaim_button(_("Show _timestamp on messages"), &convo_options, OPT_CONVO_SHOW_TIME, vbox); | |
501 gaim_button(_("Show _URLs as links"), &convo_options, OPT_CONVO_SEND_LINKS, vbox); | |
3803 | 502 #ifdef USE_GTKSPELL |
3818 | 503 gaim_button(_("_Highlight misspelled words"), &convo_options, OPT_CONVO_CHECK_SPELLING, vbox); |
3803 | 504 #endif |
3427 | 505 vbox = make_frame (ret, _("Ignore")); |
3818 | 506 gaim_button(_("Ignore c_olors"), &convo_options, OPT_CONVO_IGNORE_COLOUR, vbox); |
507 gaim_button(_("Ignore font _faces"), &convo_options, OPT_CONVO_IGNORE_FONTS, vbox); | |
508 gaim_button(_("Ignore font si_zes"), &convo_options, OPT_CONVO_IGNORE_SIZES, vbox); | |
509 /* gaim_button(_("Ignore Ti_K Automated Messages"), &away_options, OPT_AWAY_TIK_HACK, vbox); */ | |
3500 | 510 |
3427 | 511 gtk_widget_show_all(ret); |
3366 | 512 return ret; |
513 } | |
514 | |
515 GtkWidget *hotkeys_page() { | |
516 GtkWidget *ret; | |
517 GtkWidget *vbox; | |
3427 | 518 ret = gtk_vbox_new(FALSE, 18); |
519 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
3366 | 520 |
3427 | 521 vbox = make_frame(ret, _("Send Message")); |
3818 | 522 gaim_button(_("_Enter sends message"), &convo_options, OPT_CONVO_ENTER_SENDS, vbox); |
523 gaim_button(_("C_ontrol-Enter sends message"), &convo_options, OPT_CONVO_CTL_ENTER, vbox); | |
3500 | 524 |
3427 | 525 vbox = make_frame (ret, _("Window Closing")); |
3818 | 526 gaim_button(_("E_scape closes window"), &convo_options, OPT_CONVO_ESC_CAN_CLOSE, vbox); |
527 gaim_button(_("Control-_W closes window"), &convo_options, OPT_CONVO_CTL_W_CLOSES, vbox); | |
3366 | 528 |
3427 | 529 vbox = make_frame(ret, "Insertions"); |
3818 | 530 gaim_button(_("Control-{B/I/U/S} inserts _HTML tags"), &convo_options, OPT_CONVO_CTL_CHARS, vbox); |
531 gaim_button(_("Control-(number) inserts _smileys"), &convo_options, OPT_CONVO_CTL_SMILEYS, vbox); | |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
532 |
3427 | 533 gtk_widget_show_all(ret); |
3366 | 534 return ret; |
535 } | |
536 | |
537 GtkWidget *list_page() { | |
538 GtkWidget *ret; | |
539 GtkWidget *vbox; | |
3427 | 540 ret = gtk_vbox_new(FALSE, 18); |
541 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
3366 | 542 |
3427 | 543 vbox = make_frame (ret, _("Buttons")); |
3818 | 544 gaim_button(_("_Hide IM/Info/Chat buttons"), &blist_options, OPT_BLIST_NO_BUTTONS, vbox); |
545 gaim_button(_("Show _pictures on buttons"), &blist_options, OPT_BLIST_SHOW_BUTTON_XPM, vbox); | |
3366 | 546 |
3427 | 547 vbox = make_frame (ret, _("Buddy List Window")); |
4045 | 548 gaim_button(_("_Save window size/position"), &blist_options, OPT_BLIST_SAVED_WINDOWS, vbox); |
549 gaim_button(_("_Raise window on events"), &blist_options, OPT_BLIST_POPUP, vbox); | |
3366 | 550 |
4717 | 551 /* vbox = make_frame (ret, _("Group Display")); */ |
4700 | 552 /* gaim_button(_("Hide _groups with no online buddies"), &blist_options, OPT_BLIST_NO_MT_GRP, vbox); */ |
553 /* gaim_button(_("Show _numbers in groups"), &blist_options, OPT_BLIST_SHOW_GRPNUM, vbox); */ | |
3366 | 554 |
3427 | 555 vbox = make_frame (ret, _("Buddy Display")); |
4687 | 556 gaim_button(_("Show buddy _icons"), &blist_options, OPT_BLIST_SHOW_ICONS, vbox); |
4700 | 557 /* gaim_button(_("Show buddy t_ype icons"), &blist_options, OPT_BLIST_SHOW_PIXMAPS, vbox); */ |
3818 | 558 gaim_button(_("Show _warning levels"), &blist_options, OPT_BLIST_SHOW_WARN, vbox); |
559 gaim_button(_("Show idle _times"), &blist_options, OPT_BLIST_SHOW_IDLETIME, vbox); | |
560 gaim_button(_("Grey i_dle buddies"), &blist_options, OPT_BLIST_GREY_IDLERS, vbox); | |
3366 | 561 |
3427 | 562 gtk_widget_show_all(ret); |
3366 | 563 return ret; |
564 } | |
565 | |
4469
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
566 GtkWidget *conv_page() { |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
567 GtkWidget *ret; |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
568 GtkWidget *vbox; |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
569 GtkWidget *label; |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
570 GtkSizeGroup *sg; |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
571 GList *names = NULL; |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
572 int i; |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
573 |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
574 ret = gtk_vbox_new(FALSE, 18); |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
575 gtk_container_set_border_width(GTK_CONTAINER(ret), 12); |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
576 |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
577 sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
578 vbox = make_frame(ret, _("Conversations")); |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
579 |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
580 /* Build a list of names. */ |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
581 for (i = 0; i < gaim_conv_placement_get_fnc_count(); i++) { |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
582 names = g_list_append(names, (char *)gaim_conv_placement_get_name(i)); |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
583 names = g_list_append(names, GINT_TO_POINTER(i)); |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
584 } |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
585 |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
586 label = gaim_dropdown_from_list(vbox, _("_Placement:"), |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
587 &conv_placement_option, -1, names); |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
588 |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
589 g_list_free(names); |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
590 |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
591 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
592 gtk_size_group_add_widget(sg, label); |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
593 |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
594 gaim_button(_("Show IMs and chats in _same tabbed window."), |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
595 &convo_options, OPT_CONVO_COMBINE, vbox); |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
596 |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
597 gtk_widget_show_all(ret); |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
598 |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
599 return ret; |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
600 } |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
601 |
3366 | 602 GtkWidget *im_page() { |
603 GtkWidget *ret; | |
3500 | 604 GtkWidget *vbox; |
3427 | 605 GtkWidget *typingbutton, *widge; |
606 GtkSizeGroup *sg; | |
3366 | 607 |
3427 | 608 ret = gtk_vbox_new(FALSE, 18); |
609 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
610 | |
611 sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); | |
612 | |
613 vbox = make_frame (ret, _("Window")); | |
4114 | 614 widge = gaim_dropdown(vbox, _("Show _buttons as:"), &im_options, OPT_IM_BUTTON_TEXT | OPT_IM_BUTTON_XPM, |
615 _("Pictures"), OPT_IM_BUTTON_XPM, | |
616 _("Text"), OPT_IM_BUTTON_TEXT, | |
617 _("Pictures and text"), OPT_IM_BUTTON_XPM | OPT_IM_BUTTON_TEXT, NULL); | |
3427 | 618 gtk_size_group_add_widget(sg, widge); |
619 gtk_misc_set_alignment(GTK_MISC(widge), 0, 0); | |
3818 | 620 gaim_labeled_spin_button(vbox, _("New window _width:"), &conv_size.width, 25, 9999, sg); |
621 gaim_labeled_spin_button(vbox, _("New window _height:"), &conv_size.height, 25, 9999, sg); | |
622 gaim_labeled_spin_button(vbox, _("_Entry widget height:"), &conv_size.entry_height, 25, 9999, sg); | |
623 gaim_button(_("_Raise windows on events"), &im_options, OPT_IM_POPUP, vbox); | |
624 gaim_button(_("Hide window on _send"), &im_options, OPT_IM_POPDOWN, vbox); | |
3366 | 625 gtk_widget_show (vbox); |
626 | |
3427 | 627 vbox = make_frame (ret, _("Buddy Icons")); |
4045 | 628 gaim_button(_("Hide buddy _icons"), &im_options, OPT_IM_HIDE_ICONS, vbox); |
629 gaim_button(_("Disable buddy icon a_nimation"), &im_options, OPT_IM_NO_ANIMATION, vbox); | |
3366 | 630 |
3427 | 631 vbox = make_frame (ret, _("Display")); |
3818 | 632 gaim_button(_("Show _logins in window"), &im_options, OPT_IM_LOGON, vbox); |
3366 | 633 |
3427 | 634 vbox = make_frame (ret, _("Typing Notification")); |
3818 | 635 typingbutton = gaim_button(_("Notify buddies that you are _typing to them"), &misc_options, |
3366 | 636 OPT_MISC_STEALTH_TYPING, vbox); |
637 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(typingbutton), !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(typingbutton))); | |
3818 | 638 misc_options ^= OPT_MISC_STEALTH_TYPING; |
3366 | 639 |
3427 | 640 gtk_widget_show_all(ret); |
3366 | 641 return ret; |
642 } | |
643 | |
644 GtkWidget *chat_page() { | |
645 GtkWidget *ret; | |
646 GtkWidget *vbox; | |
3427 | 647 GtkWidget *dd; |
648 GtkSizeGroup *sg; | |
3366 | 649 |
3427 | 650 ret = gtk_vbox_new(FALSE, 18); |
651 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
3500 | 652 |
3427 | 653 sg = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL); |
3366 | 654 |
3427 | 655 vbox = make_frame (ret, _("Window")); |
4114 | 656 dd = gaim_dropdown(vbox, _("Show _buttons as:"), &chat_options, OPT_CHAT_BUTTON_TEXT | OPT_CHAT_BUTTON_XPM, |
657 _("Pictures"), OPT_CHAT_BUTTON_XPM, | |
658 _("Text"), OPT_CHAT_BUTTON_TEXT, | |
659 _("Pictures and text"), OPT_CHAT_BUTTON_XPM | OPT_CHAT_BUTTON_TEXT, NULL); | |
3427 | 660 gtk_size_group_add_widget(sg, dd); |
661 gtk_misc_set_alignment(GTK_MISC(dd), 0, 0); | |
3818 | 662 gaim_labeled_spin_button(vbox, _("New window _width:"), &buddy_chat_size.width, 25, 9999, sg); |
663 gaim_labeled_spin_button(vbox, _("New window _height:"), &buddy_chat_size.height, 25, 9999, sg); | |
664 gaim_labeled_spin_button(vbox, _("_Entry widget height:"), &buddy_chat_size.entry_height, 25, 9999, sg); | |
665 gaim_button(_("_Raise windows on events"), &chat_options, OPT_CHAT_POPUP, vbox); | |
3366 | 666 |
3427 | 667 vbox = make_frame (ret, _("Tab Completion")); |
4045 | 668 gaim_button(_("_Tab-complete nicks"), &chat_options, OPT_CHAT_TAB_COMPLETE, vbox); |
669 gaim_button(_("_Old-style tab completion"), &chat_options, OPT_CHAT_OLD_STYLE_TAB, vbox); | |
3427 | 670 |
671 vbox = make_frame (ret, _("Display")); | |
3818 | 672 gaim_button(_("_Show people joining/leaving in window"), &chat_options, OPT_CHAT_LOGON, vbox); |
673 gaim_button(_("Co_lorize screennames"), &chat_options, OPT_CHAT_COLORIZE, vbox); | |
3427 | 674 |
675 gtk_widget_show_all(ret); | |
3366 | 676 return ret; |
677 } | |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
678 |
3366 | 679 GtkWidget *tab_page() { |
680 GtkWidget *ret; | |
681 GtkWidget *vbox; | |
3427 | 682 GtkWidget *dd; |
4445 | 683 GtkWidget *button; |
3427 | 684 GtkSizeGroup *sg; |
685 ret = gtk_vbox_new(FALSE, 18); | |
686 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
3366 | 687 |
3427 | 688 sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); |
3500 | 689 |
3427 | 690 vbox = make_frame (ret, _("IM Tabs")); |
4114 | 691 dd = gaim_dropdown(vbox, _("Tab _placement:"), &im_options, OPT_IM_SIDE_TAB | OPT_IM_BR_TAB, |
692 _("Top"), 0, | |
693 _("Bottom"), OPT_IM_BR_TAB, | |
694 _("Left"), OPT_IM_SIDE_TAB, | |
695 _("Right"), OPT_IM_BR_TAB | OPT_IM_SIDE_TAB, NULL); | |
3427 | 696 gtk_size_group_add_widget(sg, dd); |
4045 | 697 gaim_button(_("Show all _instant messages in one tabbed\nwindow"), &im_options, OPT_IM_ONE_WINDOW, vbox); |
3818 | 698 gaim_button(_("Show a_liases in tabs/titles"), &im_options, OPT_IM_ALIAS_TAB, vbox); |
3366 | 699 |
3427 | 700 vbox = make_frame (ret, _("Chat Tabs")); |
4114 | 701 dd = gaim_dropdown(vbox, _("Tab _placement:"), &chat_options, OPT_CHAT_SIDE_TAB | OPT_CHAT_BR_TAB, |
702 _("Top"), 0, | |
703 _("Bottom"), OPT_CHAT_BR_TAB, | |
704 _("Left"), OPT_CHAT_SIDE_TAB, | |
705 _("Right"), OPT_CHAT_SIDE_TAB | OPT_CHAT_BR_TAB, NULL); | |
3427 | 706 gtk_size_group_add_widget(sg, dd); |
3818 | 707 gaim_button(_("Show all c_hats in one tabbed window"), &chat_options, OPT_CHAT_ONE_WINDOW, |
3366 | 708 vbox); |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
709 |
3427 | 710 vbox = make_frame (ret, _("Buddy List Tabs")); |
4114 | 711 dd = gaim_dropdown(vbox, _("Tab _placement:"), &blist_options, OPT_BLIST_BOTTOM_TAB, |
712 _("Top"), 0, | |
713 _("Bottom"), OPT_BLIST_BOTTOM_TAB, NULL); | |
3427 | 714 gtk_size_group_add_widget(sg, dd); |
3500 | 715 |
4445 | 716 vbox = make_frame (ret, _("Tab Options")); |
717 button = gaim_button(_("Show _close button on tabs."), &convo_options, OPT_CONVO_NO_X_ON_TAB, vbox); | |
4449 | 718 convo_options ^= OPT_CONVO_NO_X_ON_TAB; |
4445 | 719 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(button), !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(button))); |
720 | |
721 | |
3427 | 722 gtk_widget_show_all(ret); |
3366 | 723 return ret; |
724 } | |
725 | |
726 GtkWidget *proxy_page() { | |
727 GtkWidget *ret; | |
728 GtkWidget *vbox; | |
729 GtkWidget *entry; | |
730 GtkWidget *label; | |
731 GtkWidget *hbox; | |
732 GtkWidget *table; | |
733 | |
3427 | 734 ret = gtk_vbox_new(FALSE, 18); |
735 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
3366 | 736 |
3427 | 737 vbox = make_frame (ret, _("Proxy Type")); |
4634 | 738 gaim_dropdown(vbox, _("Proxy _type:"), (int*)&global_proxy_info.proxytype, -1, |
4114 | 739 _("No proxy"), PROXY_NONE, |
3366 | 740 "SOCKS 4", PROXY_SOCKS4, |
741 "SOCKS 5", PROXY_SOCKS5, | |
742 "HTTP", PROXY_HTTP, NULL); | |
2372
2927c2c26fe6
[gaim-migrate @ 2385]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2323
diff
changeset
|
743 |
3427 | 744 vbox = make_frame(ret, _("Proxy Server")); |
745 prefs_proxy_frame = vbox; | |
2254 | 746 |
4634 | 747 if (global_proxy_info.proxytype == PROXY_NONE) |
3427 | 748 gtk_widget_set_sensitive(GTK_WIDGET(vbox), FALSE); |
2254 | 749 |
750 table = gtk_table_new(2, 4, FALSE); | |
751 gtk_container_set_border_width(GTK_CONTAINER(table), 5); | |
752 gtk_table_set_col_spacings(GTK_TABLE(table), 5); | |
753 gtk_table_set_row_spacings(GTK_TABLE(table), 10); | |
3427 | 754 gtk_container_add(GTK_CONTAINER(vbox), table); |
2254 | 755 |
756 | |
3427 | 757 label = gtk_label_new_with_mnemonic(_("_Host")); |
2254 | 758 gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); |
759 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
|
760 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
761 entry = gtk_entry_new(); |
3427 | 762 gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry); |
3366 | 763 gtk_table_attach(GTK_TABLE(table), entry, 1, 2, 0, 1, GTK_FILL, 0, 0, 0); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
764 g_signal_connect(GTK_OBJECT(entry), "changed", |
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
765 G_CALLBACK(proxy_print_option), (void *)PROXYHOST); |
4634 | 766 gtk_entry_set_text(GTK_ENTRY(entry), global_proxy_info.proxyhost); |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
767 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
768 hbox = gtk_hbox_new(TRUE, 5); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
769 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
770 |
3427 | 771 label = gtk_label_new_with_mnemonic(_("Port")); |
2254 | 772 gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); |
773 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
|
774 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
775 entry = gtk_entry_new(); |
3427 | 776 gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry); |
3366 | 777 gtk_table_attach(GTK_TABLE(table), entry, 1, 2, 1, 2, GTK_FILL, 0, 0, 0); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
778 g_signal_connect(GTK_OBJECT(entry), "changed", |
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
779 G_CALLBACK(proxy_print_option), (void *)PROXYPORT); |
2254 | 780 |
4634 | 781 if (global_proxy_info.proxyport) { |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
782 char buf[128]; |
4634 | 783 g_snprintf(buf, sizeof(buf), "%d", global_proxy_info.proxyport); |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
784 gtk_entry_set_text(GTK_ENTRY(entry), buf); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
785 } |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
786 |
3427 | 787 label = gtk_label_new_with_mnemonic(_("_User")); |
2254 | 788 gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); |
789 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
|
790 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
791 entry = gtk_entry_new(); |
3427 | 792 gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry); |
3366 | 793 gtk_table_attach(GTK_TABLE(table), entry, 1, 2, 2, 3, GTK_FILL, 0, 0, 0); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
794 g_signal_connect(GTK_OBJECT(entry), "changed", |
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
795 G_CALLBACK(proxy_print_option), (void *)PROXYUSER); |
4634 | 796 gtk_entry_set_text(GTK_ENTRY(entry), global_proxy_info.proxyuser); |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
797 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
798 hbox = gtk_hbox_new(TRUE, 5); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
799 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
800 |
3427 | 801 label = gtk_label_new_with_mnemonic(_("Pa_ssword")); |
2254 | 802 gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); |
803 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
|
804 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
805 entry = gtk_entry_new(); |
3427 | 806 gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry); |
3366 | 807 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
|
808 gtk_entry_set_visibility(GTK_ENTRY(entry), FALSE); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
809 g_signal_connect(GTK_OBJECT(entry), "changed", |
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
810 G_CALLBACK(proxy_print_option), (void *)PROXYPASS); |
4634 | 811 gtk_entry_set_text(GTK_ENTRY(entry), global_proxy_info.proxypass); |
3500 | 812 |
3427 | 813 gtk_widget_show_all(ret); |
3366 | 814 return ret; |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
815 } |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
816 |
3821 | 817 #ifndef _WIN32 |
4428 | 818 static void manual_browser_set(GtkButton *button, GtkEntry *entry) { |
819 | |
820 const char *program = gtk_entry_get_text(entry); | |
821 if (!program_is_valid(program)) { | |
822 char *error = g_strdup_printf(_("The entered manual browser " | |
4461
75ff69e592cc
[gaim-migrate @ 4736]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4451
diff
changeset
|
823 "'%s' is not valid. Hyperlinks will " |
75ff69e592cc
[gaim-migrate @ 4736]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4451
diff
changeset
|
824 "not work."), program); |
4428 | 825 do_error_dialog(error, NULL, GAIM_WARNING); |
826 } | |
827 | |
828 g_strlcpy(web_command, program, sizeof(web_command)); | |
829 } | |
830 | |
831 static void manual_browser_reset(GtkButton *button, GtkEntry *entry) { | |
832 gtk_entry_set_text(entry, web_command); | |
3432 | 833 } |
834 | |
4428 | 835 static GList *get_available_browsers() |
836 { | |
837 struct browser { | |
838 char *name; | |
4461
75ff69e592cc
[gaim-migrate @ 4736]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4451
diff
changeset
|
839 char *command; |
4428 | 840 int id; |
841 }; | |
842 | |
843 static struct browser possible_browsers[] = { | |
844 {N_("Konqueror"), "kfmclient", BROWSER_KONQ}, | |
845 {N_("Opera"), "opera", BROWSER_OPERA}, | |
846 {N_("Galeon"), "galeon", BROWSER_GALEON}, | |
847 {N_("Netscape"), "netscape", BROWSER_NETSCAPE}, | |
848 {N_("Mozilla"), "mozilla", BROWSER_MOZILLA}, | |
849 }; | |
850 static const int num_possible_browsers = 5; | |
851 | |
852 GList *browsers = NULL; | |
853 int i = 0; | |
854 | |
855 browsers = g_list_prepend(browsers, GINT_TO_POINTER(BROWSER_MANUAL)); | |
856 browsers = g_list_prepend(browsers, _("Manual")); | |
4461
75ff69e592cc
[gaim-migrate @ 4736]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4451
diff
changeset
|
857 for (i = 0; i < num_possible_browsers; i++) { |
4428 | 858 if (program_is_valid(possible_browsers[i].command)) { |
859 browsers = g_list_prepend(browsers, | |
4461
75ff69e592cc
[gaim-migrate @ 4736]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4451
diff
changeset
|
860 GINT_TO_POINTER(possible_browsers[i].id)); |
4428 | 861 browsers = g_list_prepend(browsers, possible_browsers[i].name); |
862 } | |
863 } | |
864 | |
865 return browsers; | |
866 } | |
867 | |
3366 | 868 GtkWidget *browser_page() { |
869 GtkWidget *ret; | |
3821 | 870 GtkWidget *vbox; |
871 GtkWidget *hbox; | |
3366 | 872 GtkWidget *label; |
3427 | 873 GtkSizeGroup *sg; |
4428 | 874 GList *browsers = NULL; |
3427 | 875 |
876 ret = gtk_vbox_new(FALSE, 18); | |
877 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
878 | |
879 sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); | |
880 vbox = make_frame (ret, _("Browser Selection")); | |
4428 | 881 |
882 browsers = get_available_browsers(); | |
883 if (browsers != NULL) { | |
884 label = gaim_dropdown_from_list(vbox,_("_Browser"), &web_browser, -1, | |
4461
75ff69e592cc
[gaim-migrate @ 4736]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4451
diff
changeset
|
885 browsers); |
75ff69e592cc
[gaim-migrate @ 4736]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4451
diff
changeset
|
886 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); |
75ff69e592cc
[gaim-migrate @ 4736]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4451
diff
changeset
|
887 gtk_size_group_add_widget(sg, label); |
4428 | 888 } |
915
378c862a2381
[gaim-migrate @ 925]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
910
diff
changeset
|
889 |
3366 | 890 hbox = gtk_hbox_new(FALSE, 5); |
891 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); | |
4295 | 892 label = gtk_label_new_with_mnemonic(_("_Manual: ")); |
3366 | 893 gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0); |
3427 | 894 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); |
895 gtk_size_group_add_widget(sg, label); | |
3366 | 896 browser_entry = gtk_entry_new(); |
3427 | 897 gtk_label_set_mnemonic_widget(GTK_LABEL(label), browser_entry); |
3818 | 898 if (web_browser != BROWSER_MANUAL) |
4428 | 899 gtk_widget_set_sensitive(hbox, FALSE); |
3366 | 900 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
|
901 |
3818 | 902 gtk_entry_set_text(GTK_ENTRY(browser_entry), web_command); |
4428 | 903 g_signal_connect_swapped(GTK_OBJECT(browser_entry), "activate", |
4461
75ff69e592cc
[gaim-migrate @ 4736]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4451
diff
changeset
|
904 G_CALLBACK(manual_browser_set), NULL); |
4428 | 905 label = gtk_button_new_with_label(_("Set")); |
906 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); | |
907 g_signal_connect(GTK_OBJECT(label), "clicked", | |
4461
75ff69e592cc
[gaim-migrate @ 4736]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4451
diff
changeset
|
908 G_CALLBACK(manual_browser_set), browser_entry); |
4428 | 909 label = gtk_button_new_with_label(_("Reset")); |
910 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); | |
911 g_signal_connect(GTK_OBJECT(label), "clicked", | |
4461
75ff69e592cc
[gaim-migrate @ 4736]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4451
diff
changeset
|
912 G_CALLBACK(manual_browser_reset), browser_entry); |
4428 | 913 |
914 if (browsers != NULL) { | |
4461
75ff69e592cc
[gaim-migrate @ 4736]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4451
diff
changeset
|
915 vbox = make_frame (ret, _("Browser Options")); |
75ff69e592cc
[gaim-migrate @ 4736]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4451
diff
changeset
|
916 label = gaim_button(_("Open new _window by default"), &misc_options, OPT_MISC_BROWSER_POPUP, vbox); |
4428 | 917 } |
4451
ce5b64fac95d
[gaim-migrate @ 4726]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4449
diff
changeset
|
918 |
3427 | 919 gtk_widget_show_all(ret); |
3366 | 920 return ret; |
3500 | 921 } |
4461
75ff69e592cc
[gaim-migrate @ 4736]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4451
diff
changeset
|
922 #endif /*_WIN32*/ |
3366 | 923 |
924 GtkWidget *logging_page() { | |
925 GtkWidget *ret; | |
926 GtkWidget *vbox; | |
3427 | 927 ret = gtk_vbox_new(FALSE, 18); |
928 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
915
378c862a2381
[gaim-migrate @ 925]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
910
diff
changeset
|
929 |
3427 | 930 vbox = make_frame (ret, _("Message Logs")); |
4045 | 931 gaim_button(_("_Log all instant messages"), &logging_options, OPT_LOG_CONVOS, vbox); |
3818 | 932 gaim_button(_("Log all c_hats"), &logging_options, OPT_LOG_CHATS, vbox); |
933 gaim_button(_("Strip _HTML from logs"), &logging_options, OPT_LOG_STRIP_HTML, vbox); | |
2843
87d11d2a7d59
[gaim-migrate @ 2856]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2839
diff
changeset
|
934 |
3427 | 935 vbox = make_frame (ret, _("System Logs")); |
3818 | 936 gaim_button(_("Log when buddies _sign on/sign off"), &logging_options, OPT_LOG_BUDDY_SIGNON, |
3366 | 937 vbox); |
3818 | 938 gaim_button(_("Log when buddies become _idle/un-idle"), &logging_options, OPT_LOG_BUDDY_IDLE, |
3366 | 939 vbox); |
3818 | 940 gaim_button(_("Log when buddies go away/come _back"), &logging_options, OPT_LOG_BUDDY_AWAY, vbox); |
941 gaim_button(_("Log your _own signons/idleness/awayness"), &logging_options, OPT_LOG_MY_SIGNON, | |
3366 | 942 vbox); |
3818 | 943 gaim_button(_("I_ndividual log file for each buddy's signons"), &logging_options, |
3366 | 944 OPT_LOG_INDIVIDUAL, vbox); |
1757
3dfe4aefd366
[gaim-migrate @ 1767]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1755
diff
changeset
|
945 |
3427 | 946 gtk_widget_show_all(ret); |
3366 | 947 return ret; |
1757
3dfe4aefd366
[gaim-migrate @ 1767]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1755
diff
changeset
|
948 } |
3dfe4aefd366
[gaim-migrate @ 1767]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1755
diff
changeset
|
949 |
3366 | 950 static GtkWidget *sndcmd = NULL; |
1757
3dfe4aefd366
[gaim-migrate @ 1767]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1755
diff
changeset
|
951 |
3821 | 952 #ifndef _WIN32 |
4095 | 953 static gint sound_cmd_yeah(GtkEntry *entry, gpointer d) |
1813
998a6a032874
[gaim-migrate @ 1823]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1805
diff
changeset
|
954 { |
4561 | 955 gaim_sound_set_command(gtk_entry_get_text(GTK_ENTRY(sndcmd))); |
3366 | 956 return TRUE; |
1813
998a6a032874
[gaim-migrate @ 1823]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1805
diff
changeset
|
957 } |
3821 | 958 #endif |
1813
998a6a032874
[gaim-migrate @ 1823]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1805
diff
changeset
|
959 |
3366 | 960 GtkWidget *sound_page() { |
961 GtkWidget *ret; | |
3821 | 962 GtkWidget *vbox; |
963 GtkSizeGroup *sg; | |
964 #ifndef _WIN32 | |
965 GtkWidget *dd; | |
966 GtkWidget *hbox; | |
1750
d2eca7a46cfd
[gaim-migrate @ 1760]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1711
diff
changeset
|
967 GtkWidget *label; |
4561 | 968 char *cmd; |
3821 | 969 #endif |
3366 | 970 |
3427 | 971 ret = gtk_vbox_new(FALSE, 18); |
972 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
973 |
3427 | 974 sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
975 |
3427 | 976 vbox = make_frame (ret, _("Sound Options")); |
3818 | 977 gaim_button(_("_No sounds when you log in"), &sound_options, OPT_SOUND_SILENT_SIGNON, vbox); |
978 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
|
979 |
3630 | 980 #ifndef _WIN32 |
3427 | 981 vbox = make_frame (ret, _("Sound Method")); |
4114 | 982 dd = gaim_dropdown(vbox, _("_Method"), &sound_options, OPT_SOUND_BEEP | |
4581 | 983 OPT_SOUND_ESD | OPT_SOUND_ARTS | OPT_SOUND_NAS | |
984 OPT_SOUND_NORMAL | OPT_SOUND_CMD, | |
4114 | 985 _("Console beep"), OPT_SOUND_BEEP, |
4561 | 986 #ifdef USE_AO |
987 _("Automatic"), OPT_SOUND_NORMAL, | |
4581 | 988 "ESD", OPT_SOUND_ESD, |
989 "Arts", OPT_SOUND_ARTS, | |
990 #endif | |
991 #ifdef USE_NAS_AUDIO | |
992 "NAS", OPT_SOUND_NAS, | |
4082 | 993 #endif |
4114 | 994 _("Command"), OPT_SOUND_CMD, NULL); |
3427 | 995 gtk_size_group_add_widget(sg, dd); |
996 gtk_misc_set_alignment(GTK_MISC(dd), 0, 0); | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
997 |
1813
998a6a032874
[gaim-migrate @ 1823]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1805
diff
changeset
|
998 hbox = gtk_hbox_new(FALSE, 5); |
998a6a032874
[gaim-migrate @ 1823]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1805
diff
changeset
|
999 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 5); |
3427 | 1000 |
3366 | 1001 hbox = gtk_hbox_new(FALSE, 5); |
1002 gtk_container_add(GTK_CONTAINER(vbox), hbox); | |
3500 | 1003 label = gtk_label_new_with_mnemonic(_("Sound c_ommand\n(%s for filename)")); |
3427 | 1004 gtk_size_group_add_widget(sg, label); |
1005 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
3366 | 1006 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
|
1007 |
3366 | 1008 sndcmd = gtk_entry_new(); |
3427 | 1009 gtk_label_set_mnemonic_widget(GTK_LABEL(label), sndcmd); |
1813
998a6a032874
[gaim-migrate @ 1823]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1805
diff
changeset
|
1010 |
4635 | 1011 gtk_editable_set_editable(GTK_EDITABLE(sndcmd), TRUE); |
4561 | 1012 cmd = gaim_sound_get_command(); |
1013 if(cmd) | |
1014 gtk_entry_set_text(GTK_ENTRY(sndcmd), cmd); | |
3366 | 1015 gtk_widget_set_size_request(sndcmd, 75, -1); |
3427 | 1016 |
3818 | 1017 gtk_widget_set_sensitive(sndcmd, (sound_options & OPT_SOUND_CMD)); |
3366 | 1018 gtk_box_pack_start(GTK_BOX(hbox), sndcmd, TRUE, TRUE, 5); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1019 g_signal_connect(GTK_OBJECT(sndcmd), "changed", G_CALLBACK(sound_cmd_yeah), NULL); |
3630 | 1020 #endif /* _WIN32 */ |
3427 | 1021 gtk_widget_show_all(ret); |
3366 | 1022 return ret; |
2262
9c8f353331e7
[gaim-migrate @ 2272]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2254
diff
changeset
|
1023 } |
9c8f353331e7
[gaim-migrate @ 2272]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2254
diff
changeset
|
1024 |
3366 | 1025 GtkWidget *away_page() { |
1026 GtkWidget *ret; | |
2262
9c8f353331e7
[gaim-migrate @ 2272]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2254
diff
changeset
|
1027 GtkWidget *vbox; |
9c8f353331e7
[gaim-migrate @ 2272]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2254
diff
changeset
|
1028 GtkWidget *hbox; |
3366 | 1029 GtkWidget *label; |
2262
9c8f353331e7
[gaim-migrate @ 2272]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2254
diff
changeset
|
1030 GtkWidget *button; |
3366 | 1031 GtkWidget *select; |
3427 | 1032 GtkWidget *dd; |
1033 GtkSizeGroup *sg; | |
2262
9c8f353331e7
[gaim-migrate @ 2272]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2254
diff
changeset
|
1034 |
3427 | 1035 ret = gtk_vbox_new(FALSE, 18); |
1036 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
2262
9c8f353331e7
[gaim-migrate @ 2272]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2254
diff
changeset
|
1037 |
3427 | 1038 sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); |
1813
998a6a032874
[gaim-migrate @ 1823]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1805
diff
changeset
|
1039 |
3427 | 1040 vbox = make_frame (ret, _("Away")); |
3818 | 1041 gaim_button(_("_Sending messages removes away status"), &away_options, OPT_AWAY_BACK_ON_IM, vbox); |
1042 gaim_button(_("_Queue new messages when away"), &away_options, OPT_AWAY_QUEUE, vbox); | |
1043 gaim_button(_("_Ignore new conversations when away"), &away_options, OPT_AWAY_DISCARD, vbox); | |
1813
998a6a032874
[gaim-migrate @ 1823]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1805
diff
changeset
|
1044 |
3427 | 1045 vbox = make_frame (ret, _("Auto-response")); |
3366 | 1046 hbox = gtk_hbox_new(FALSE, 0); |
1047 gtk_container_add(GTK_CONTAINER(vbox), hbox); | |
3427 | 1048 gaim_labeled_spin_button(hbox, _("Seconds before _resending:"), |
3818 | 1049 &away_resend, 1, 24 * 60 * 60, sg); |
1050 gaim_button(_("_Don't send auto-response"), &away_options, OPT_AWAY_NO_AUTO_RESP, vbox); | |
1051 gaim_button(_("_Only send auto-response when idle"), &away_options, OPT_AWAY_IDLE_RESP, vbox); | |
1052 gaim_button(_("Do_n't send auto-response in active conversations"), &away_options, OPT_AWAY_DELAY_IN_USE, vbox); | |
1813
998a6a032874
[gaim-migrate @ 1823]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1805
diff
changeset
|
1053 |
3818 | 1054 if (away_options & OPT_AWAY_NO_AUTO_RESP) |
3366 | 1055 gtk_widget_set_sensitive(hbox, FALSE); |
3500 | 1056 |
3427 | 1057 vbox = make_frame (ret, _("Idle")); |
4052 | 1058 dd = gaim_dropdown(vbox, _("Idle _time reporting:"), &report_idle, -1, |
1059 _("None"), IDLE_NONE, | |
1060 _("Gaim usage"), IDLE_GAIM, | |
3366 | 1061 #ifdef USE_SCREENSAVER |
3905
3e508dd31b76
[gaim-migrate @ 4058]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3902
diff
changeset
|
1062 #ifndef _WIN32 |
4052 | 1063 _("X usage"), IDLE_SCREENSAVER, |
3905
3e508dd31b76
[gaim-migrate @ 4058]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3902
diff
changeset
|
1064 #else |
4052 | 1065 _("Windows usage"), IDLE_SCREENSAVER, |
3905
3e508dd31b76
[gaim-migrate @ 4058]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3902
diff
changeset
|
1066 #endif |
3366 | 1067 #endif |
3427 | 1068 NULL); |
1069 gtk_size_group_add_widget(sg, dd); | |
1070 gtk_misc_set_alignment(GTK_MISC(dd), 0, 0); | |
2385
bdc74764245c
[gaim-migrate @ 2398]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2372
diff
changeset
|
1071 |
3427 | 1072 vbox = make_frame (ret, _("Auto-away")); |
3818 | 1073 button = gaim_button(_("Set away _when idle"), &away_options, OPT_AWAY_AUTO, vbox); |
4052 | 1074 select = gaim_labeled_spin_button(vbox, _("_Minutes before setting away:"), &auto_away, 1, 24 * 60, sg); |
3818 | 1075 if (!(away_options & OPT_AWAY_AUTO)) |
3366 | 1076 gtk_widget_set_sensitive(GTK_WIDGET(select), FALSE); |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
1077 g_signal_connect(GTK_OBJECT(button), "clicked", |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
1078 G_CALLBACK(gaim_gtk_toggle_sensitive), select); |
1 | 1079 |
4052 | 1080 label = gtk_label_new_with_mnemonic(_("Away m_essage:")); |
3427 | 1081 gtk_size_group_add_widget(sg, label); |
1082 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
3366 | 1083 hbox = gtk_hbox_new(FALSE, 0); |
1084 gtk_container_add(GTK_CONTAINER(vbox), hbox); | |
1085 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); | |
1086 prefs_away_menu = gtk_option_menu_new(); | |
3427 | 1087 gtk_label_set_mnemonic_widget(GTK_LABEL(label), prefs_away_menu); |
3818 | 1088 if (!(away_options & OPT_AWAY_AUTO)) |
3366 | 1089 gtk_widget_set_sensitive(GTK_WIDGET(prefs_away_menu), FALSE); |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
1090 g_signal_connect(GTK_OBJECT(button), "clicked", |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
1091 G_CALLBACK(gaim_gtk_toggle_sensitive), prefs_away_menu); |
3366 | 1092 default_away_menu_init(prefs_away_menu); |
1093 gtk_widget_show(prefs_away_menu); | |
1094 gtk_box_pack_start(GTK_BOX(hbox), prefs_away_menu, FALSE, FALSE, 0); | |
3500 | 1095 |
3427 | 1096 gtk_widget_show_all(ret); |
3366 | 1097 return ret; |
873
789df4b47508
[gaim-migrate @ 883]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
864
diff
changeset
|
1098 } |
789df4b47508
[gaim-migrate @ 883]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
864
diff
changeset
|
1099 |
3551 | 1100 #if USE_PLUGINS |
1101 GtkWidget *plugin_description=NULL, *plugin_details=NULL; | |
1102 static void prefs_plugin_sel (GtkTreeSelection *sel, GtkTreeModel *model) | |
1103 { | |
1104 gchar buf[1024]; | |
1105 GtkTreeIter iter; | |
1106 GValue val = { 0, }; | |
1107 struct gaim_plugin *plug; | |
1108 | |
1109 if (! gtk_tree_selection_get_selected (sel, &model, &iter)) | |
1110 return; | |
1111 gtk_tree_model_get_value (model, &iter, 2, &val); | |
1112 plug = g_value_get_pointer(&val); | |
1113 | |
3563 | 1114 if (plug->error[0]) |
4309 | 1115 g_snprintf(buf, sizeof(buf), "<span size=\"larger\">%s %s</span>\n\n" |
3563 | 1116 "<span weight=\"bold\" color=\"red\">%s</span>\n\n" |
4309 | 1117 "%s", plug->desc.name, plug->desc.version, plug->error, plug->desc.description); |
3563 | 1118 else |
4309 | 1119 g_snprintf(buf, sizeof(buf), "<span size=\"larger\">%s %s</span>\n\n" |
1120 "%s", plug->desc.name, plug->desc.version, plug->desc.description); | |
3551 | 1121 gtk_label_set_markup(GTK_LABEL(plugin_description), buf); |
3630 | 1122 g_snprintf(buf, sizeof(buf), |
1123 #ifndef _WIN32 | |
1124 _("<span size=\"larger\">%s %s</span>\n\n" | |
1125 "<span weight=\"bold\">Written by:</span>\t%s\n" | |
4617 | 1126 "<span weight=\"bold\">Web site:</span>\t\t%s\n" |
3630 | 1127 "<span weight=\"bold\">File name:</span>\t%s"), |
1128 #else | |
1129 _("<span size=\"larger\">%s %s</span>\n\n" | |
1130 "<span weight=\"bold\">Written by:</span> %s\n" | |
1131 "<span weight=\"bold\">URL:</span> %s\n" | |
1132 "<span weight=\"bold\">File name:</span> %s"), | |
1133 #endif | |
3551 | 1134 plug->desc.name, plug->desc.version, plug->desc.authors, plug->desc.url, plug->path); |
1135 gtk_label_set_markup(GTK_LABEL(plugin_details), buf); | |
1136 g_value_unset (&val); | |
1137 } | |
1138 | |
1139 static void plugin_load (GtkCellRendererToggle *cell, gchar *pth, gpointer data) | |
1140 { | |
1141 GtkTreeModel *model = (GtkTreeModel *)data; | |
1142 GtkTreeIter iter; | |
1143 GtkTreePath *path = gtk_tree_path_new_from_string(pth); | |
1144 struct gaim_plugin *plug; | |
1145 gchar buf[1024]; | |
3565 | 1146 GtkWidget *(*config)(); |
1147 | |
3551 | 1148 GdkCursor *wait = gdk_cursor_new (GDK_WATCH); |
1149 gdk_window_set_cursor(prefs->window, wait); | |
1150 gdk_cursor_unref(wait); | |
1151 | |
1152 gtk_tree_model_get_iter (model, &iter, path); | |
1153 gtk_tree_model_get (model, &iter, 2, &plug, -1); | |
1154 | |
1155 if (!plug->handle) | |
1156 | |
1157 if (plug->type == plugin) | |
1158 #ifdef GAIM_PLUGINS | |
3565 | 1159 { |
1160 load_plugin(plug->path); | |
1161 if (g_module_symbol(plug->handle, "gaim_plugin_config_gtk", (gpointer *)&config)) { | |
1162 plug->iter = g_new0(GtkTreeIter, 1); | |
1163 prefs_notebook_add_page(plug->desc.name, NULL, config(), plug->iter, &plugin_iter, notebook_page++); | |
3567 | 1164 if (gtk_tree_model_iter_n_children(GTK_TREE_MODEL(prefstree), &plugin_iter) == 1) { |
1165 /* Expand the tree for the first plugin added */ | |
3630 | 1166 GtkTreePath *path2 = gtk_tree_model_get_path(GTK_TREE_MODEL(prefstree), &plugin_iter); |
3567 | 1167 gtk_tree_view_expand_row(GTK_TREE_VIEW(tree_v), path2, TRUE); |
1168 gtk_tree_path_free (path2); | |
1169 } | |
3565 | 1170 } |
1171 } | |
3551 | 1172 #else |
1173 {} | |
1174 #endif | |
1175 else | |
1176 #ifdef USE_PERL | |
1177 perl_load_file(plug->path); | |
1178 #else | |
1179 {} | |
1180 #endif | |
1181 else | |
1182 if (plug->type == plugin) | |
1183 #ifdef GAIM_PLUGINS | |
3565 | 1184 { |
1185 unload_plugin(plug); | |
1186 if (plug->iter) { | |
1187 gtk_tree_store_remove(GTK_TREE_STORE(prefstree), plug->iter); | |
1188 g_free(plug->iter); | |
1189 plug->iter = NULL; | |
1190 } | |
1191 } | |
3551 | 1192 #else |
1193 {} | |
1194 #endif | |
1195 else | |
1196 #ifdef USE_PERL | |
1197 perl_unload_file(plug); | |
1198 #else | |
1199 {} | |
1200 #endif | |
1201 gdk_window_set_cursor(prefs->window, NULL); | |
3563 | 1202 if (plug->error[0]) |
4309 | 1203 g_snprintf(buf, sizeof(buf), "<span size=\"larger\">%s %s</span>\n\n" |
3563 | 1204 "<span weight=\"bold\" color=\"red\">%s</span>\n\n" |
4309 | 1205 "%s", plug->desc.name, plug->desc.version, plug->error, plug->desc.description); |
3563 | 1206 else |
4309 | 1207 g_snprintf(buf, sizeof(buf), "<span size=\"larger\">%s %s</span>\n\n" |
1208 "%s", plug->desc.name, plug->desc.version, plug->desc.description); | |
3563 | 1209 gtk_label_set_markup(GTK_LABEL(plugin_description), buf); |
3551 | 1210 gtk_list_store_set (GTK_LIST_STORE (model), &iter, 0, plug->handle, -1); |
3563 | 1211 |
3551 | 1212 gtk_label_set_markup(GTK_LABEL(plugin_description), buf); |
1213 gtk_tree_path_free(path); | |
1214 } | |
1215 | |
1216 static GtkWidget *plugin_page () | |
1217 { | |
1218 GtkWidget *ret; | |
1219 | |
1220 GtkWidget *sw, *vp; | |
1221 GtkTreeIter iter; | |
1222 GtkWidget *event_view; | |
1223 GtkListStore *ls; | |
1224 GtkCellRenderer *rend, *rendt; | |
1225 GtkTreeViewColumn *col; | |
1226 GtkTreeSelection *sel; | |
1227 GtkTreePath *path; | |
1228 | |
1229 GtkWidget *nb; | |
1230 | |
1231 GList *probes = probed_plugins; | |
1232 struct gaim_plugin *plug; | |
1233 | |
1234 ret = gtk_vbox_new(FALSE, 18); | |
1235 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
1236 | |
1237 sw = gtk_scrolled_window_new(NULL,NULL); | |
1238 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), GTK_POLICY_NEVER, GTK_POLICY_ALWAYS); | |
1239 gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_IN); | |
1240 | |
1241 gtk_box_pack_start(GTK_BOX(ret), sw, TRUE, TRUE, 0); | |
1242 | |
1243 ls = gtk_list_store_new (3, G_TYPE_BOOLEAN, G_TYPE_STRING, G_TYPE_POINTER); | |
1244 while (probes) { | |
1245 plug = probes->data; | |
1246 gtk_list_store_append (ls, &iter); | |
1247 gtk_list_store_set(ls, &iter, | |
1248 0, plug->handle, | |
1249 1, plug->desc.name ? plug->desc.name : plug->path, | |
1250 2, plug, -1); | |
1251 probes = probes->next; | |
1252 } | |
1253 | |
1254 event_view = gtk_tree_view_new_with_model (GTK_TREE_MODEL(ls)); | |
1255 | |
1256 rend = gtk_cell_renderer_toggle_new(); | |
1257 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (event_view)); | |
1258 | |
1259 | |
4295 | 1260 col = gtk_tree_view_column_new_with_attributes (_("Load"), |
3551 | 1261 rend, |
1262 "active", 0, | |
1263 NULL); | |
1264 gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col); | |
1265 | |
1266 rendt = gtk_cell_renderer_text_new(); | |
4295 | 1267 col = gtk_tree_view_column_new_with_attributes (_("Name"), |
3551 | 1268 rendt, |
1269 "text", 1, | |
1270 NULL); | |
1271 gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col); | |
1272 g_object_unref(G_OBJECT(ls)); | |
1273 gtk_container_add(GTK_CONTAINER(sw), event_view); | |
1274 | |
1275 | |
1276 nb = gtk_notebook_new(); | |
1277 gtk_notebook_set_tab_pos (GTK_NOTEBOOK(nb), GTK_POS_BOTTOM); | |
1278 gtk_notebook_popup_disable(GTK_NOTEBOOK(nb)); | |
1279 | |
1280 /* Description */ | |
1281 sw = gtk_scrolled_window_new(NULL, NULL); | |
1282 gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW(sw), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); | |
1283 plugin_description = gtk_label_new(NULL); | |
1284 | |
1285 vp = gtk_viewport_new(NULL, NULL); | |
3630 | 1286 gtk_viewport_set_shadow_type(GTK_VIEWPORT(vp), GTK_SHADOW_NONE); |
3551 | 1287 gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_NONE); |
1288 | |
3630 | 1289 gtk_container_add(GTK_CONTAINER(vp), plugin_description); |
1290 gtk_container_add(GTK_CONTAINER(sw), vp); | |
3551 | 1291 |
3630 | 1292 gtk_label_set_selectable(GTK_LABEL(plugin_description), TRUE); |
1293 gtk_label_set_line_wrap(GTK_LABEL(plugin_description), TRUE); | |
3551 | 1294 gtk_misc_set_alignment(GTK_MISC(plugin_description), 0, 0); |
1295 gtk_misc_set_padding(GTK_MISC(plugin_description), 6, 6); | |
1296 gtk_notebook_append_page(GTK_NOTEBOOK(nb), sw, gtk_label_new(_("Description"))); | |
1297 | |
1298 /* Details */ | |
1299 sw = gtk_scrolled_window_new(NULL, NULL); | |
1300 gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW(sw), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); | |
1301 plugin_details = gtk_label_new(NULL); | |
1302 | |
1303 vp = gtk_viewport_new(NULL, NULL); | |
3630 | 1304 gtk_viewport_set_shadow_type(GTK_VIEWPORT(vp), GTK_SHADOW_NONE); |
3551 | 1305 gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_NONE); |
1306 | |
3630 | 1307 gtk_container_add(GTK_CONTAINER(vp), plugin_details); |
1308 gtk_container_add(GTK_CONTAINER(sw), vp); | |
3551 | 1309 |
3630 | 1310 gtk_label_set_selectable(GTK_LABEL(plugin_details), TRUE); |
1311 gtk_label_set_line_wrap(GTK_LABEL(plugin_details), TRUE); | |
3551 | 1312 gtk_misc_set_alignment(GTK_MISC(plugin_details), 0, 0); |
1313 gtk_misc_set_padding(GTK_MISC(plugin_details), 6, 6); | |
1314 gtk_notebook_append_page(GTK_NOTEBOOK(nb), sw, gtk_label_new(_("Details"))); | |
1315 gtk_box_pack_start(GTK_BOX(ret), nb, TRUE, TRUE, 0); | |
1316 | |
1317 g_signal_connect (G_OBJECT (sel), "changed", | |
1318 G_CALLBACK (prefs_plugin_sel), | |
1319 NULL); | |
1320 g_signal_connect (G_OBJECT(rend), "toggled", | |
1321 G_CALLBACK(plugin_load), ls); | |
1322 | |
1323 path = gtk_tree_path_new_first(); | |
1324 gtk_tree_selection_select_path(sel, path); | |
1325 gtk_tree_path_free(path); | |
1326 | |
1327 gtk_widget_show_all(ret); | |
1328 return ret; | |
1329 } | |
1330 #endif | |
1331 | |
3366 | 1332 static void event_toggled (GtkCellRendererToggle *cell, gchar *pth, gpointer data) |
873
789df4b47508
[gaim-migrate @ 883]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
864
diff
changeset
|
1333 { |
3366 | 1334 GtkTreeModel *model = (GtkTreeModel *)data; |
1335 GtkTreeIter iter; | |
1336 GtkTreePath *path = gtk_tree_path_new_from_string(pth); | |
3500 | 1337 gint soundnum; |
3366 | 1338 |
1339 gtk_tree_model_get_iter (model, &iter, path); | |
1340 gtk_tree_model_get (model, &iter, 2, &soundnum, -1); | |
873
789df4b47508
[gaim-migrate @ 883]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
864
diff
changeset
|
1341 |
4561 | 1342 sound_options ^= gaim_sound_get_event_option(soundnum); |
1343 gtk_list_store_set (GTK_LIST_STORE (model), &iter, 0, sound_options & gaim_sound_get_event_option(soundnum), -1); | |
3522 | 1344 |
1345 gtk_tree_path_free(path); | |
3366 | 1346 } |
1347 | |
1348 static void test_sound(GtkWidget *button, gpointer i_am_NULL) | |
1349 { | |
1350 guint32 tmp_sound = sound_options; | |
1351 if (!(sound_options & OPT_SOUND_WHEN_AWAY)) | |
1352 sound_options ^= OPT_SOUND_WHEN_AWAY; | |
4561 | 1353 if (!(sound_options & gaim_sound_get_event_option(sound_row_sel))) |
1354 sound_options ^= gaim_sound_get_event_option(sound_row_sel); | |
1355 gaim_sound_play_event(sound_row_sel); | |
3500 | 1356 |
3366 | 1357 sound_options = tmp_sound; |
873
789df4b47508
[gaim-migrate @ 883]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
864
diff
changeset
|
1358 } |
789df4b47508
[gaim-migrate @ 883]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
864
diff
changeset
|
1359 |
3366 | 1360 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
|
1361 { |
3366 | 1362 /* This just resets a sound file back to default */ |
4561 | 1363 gaim_sound_set_event_file(sound_row_sel, NULL); |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1364 |
3366 | 1365 gtk_entry_set_text(GTK_ENTRY(sound_entry), "(default)"); |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1366 } |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1367 |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1368 void close_sounddialog(GtkWidget *w, GtkWidget *w2) |
1170 | 1369 { |
1370 | |
1371 GtkWidget *dest; | |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1372 |
1170 | 1373 if (!GTK_IS_WIDGET(w2)) |
1374 dest = w; | |
1375 else | |
1376 dest = w2; | |
1377 | |
1378 sounddialog = NULL; | |
1379 | |
1380 gtk_widget_destroy(dest); | |
1381 } | |
1382 | |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1383 void do_select_sound(GtkWidget *w, int snd) |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1384 { |
1953
f0ff0b367e3d
[gaim-migrate @ 1963]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1930
diff
changeset
|
1385 const char *file; |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1386 |
1170 | 1387 file = gtk_file_selection_get_filename(GTK_FILE_SELECTION(sounddialog)); |
1388 | |
1389 /* If they type in a directory, change there */ | |
1390 if (file_is_dir(file, sounddialog)) | |
1391 return; | |
1392 | |
1393 /* Set it -- and forget it */ | |
4561 | 1394 gaim_sound_set_event_file(snd, file); |
3500 | 1395 |
1175 | 1396 /* Set our text entry */ |
4561 | 1397 gtk_entry_set_text(GTK_ENTRY(sound_entry), file); |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1398 |
1170 | 1399 /* Close the window! It's getting cold in here! */ |
1400 close_sounddialog(NULL, sounddialog); | |
2471
612efbf62c35
[gaim-migrate @ 2484]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2385
diff
changeset
|
1401 |
612efbf62c35
[gaim-migrate @ 2484]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2385
diff
changeset
|
1402 if (last_sound_dir) |
612efbf62c35
[gaim-migrate @ 2484]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2385
diff
changeset
|
1403 g_free(last_sound_dir); |
4793 | 1404 last_sound_dir = g_path_get_dirname(file); |
1170 | 1405 } |
1406 | |
3366 | 1407 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
|
1408 { |
1170 | 1409 char *buf = g_malloc(BUF_LEN); |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1410 |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1411 if (!sounddialog) { |
4703 | 1412 sounddialog = gtk_file_selection_new(_("Sound Selection")); |
1170 | 1413 |
1414 gtk_file_selection_hide_fileop_buttons(GTK_FILE_SELECTION(sounddialog)); | |
1415 | |
3630 | 1416 g_snprintf(buf, BUF_LEN - 1, "%s" G_DIR_SEPARATOR_S, last_sound_dir ? last_sound_dir : gaim_home_dir()); |
1170 | 1417 |
1418 gtk_file_selection_set_filename(GTK_FILE_SELECTION(sounddialog), buf); | |
1419 | |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1420 g_signal_connect(GTK_OBJECT(sounddialog), "destroy", |
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1421 G_CALLBACK(close_sounddialog), sounddialog); |
1170 | 1422 |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1423 g_signal_connect(GTK_OBJECT(GTK_FILE_SELECTION(sounddialog)->ok_button), |
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1424 "clicked", G_CALLBACK(do_select_sound), (int *)sound_row_sel); |
1170 | 1425 |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1426 g_signal_connect(GTK_OBJECT(GTK_FILE_SELECTION(sounddialog)->cancel_button), |
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1427 "clicked", G_CALLBACK(close_sounddialog), sounddialog); |
1170 | 1428 } |
1429 | |
1430 g_free(buf); | |
1431 gtk_widget_show(sounddialog); | |
1432 gdk_window_raise(sounddialog->window); | |
1006
0a4d0ed65e17
[gaim-migrate @ 1016]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1002
diff
changeset
|
1433 } |
0a4d0ed65e17
[gaim-migrate @ 1016]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1002
diff
changeset
|
1434 |
3366 | 1435 |
1436 static void prefs_sound_sel (GtkTreeSelection *sel, GtkTreeModel *model) { | |
1437 GtkTreeIter iter; | |
1438 GValue val = { 0, }; | |
4561 | 1439 char *file; |
3500 | 1440 |
3366 | 1441 if (! gtk_tree_selection_get_selected (sel, &model, &iter)) |
1442 return; | |
1443 gtk_tree_model_get_value (model, &iter, 2, &val); | |
1444 sound_row_sel = g_value_get_uint(&val); | |
4561 | 1445 file = gaim_sound_get_event_file(sound_row_sel); |
3366 | 1446 if (sound_entry) |
4561 | 1447 gtk_entry_set_text(GTK_ENTRY(sound_entry), file ? file : "(default)"); |
3366 | 1448 g_value_unset (&val); |
1449 if (sounddialog) | |
1450 gtk_widget_destroy(sounddialog); | |
1451 } | |
1452 | |
1453 GtkWidget *sound_events_page() { | |
1454 | |
1455 GtkWidget *ret; | |
1456 GtkWidget *sw; | |
1457 GtkWidget *button, *hbox; | |
1458 GtkTreeIter iter; | |
1459 GtkWidget *event_view; | |
1460 GtkListStore *event_store; | |
1461 GtkCellRenderer *rend; | |
1462 GtkTreeViewColumn *col; | |
1463 GtkTreeSelection *sel; | |
1464 GtkTreePath *path; | |
1465 int j; | |
4561 | 1466 char *file; |
3366 | 1467 |
3427 | 1468 ret = gtk_vbox_new(FALSE, 18); |
1469 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
3366 | 1470 |
1471 sw = gtk_scrolled_window_new(NULL,NULL); | |
1472 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); | |
3814 | 1473 gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_IN); |
1474 | |
3427 | 1475 gtk_box_pack_start(GTK_BOX(ret), sw, TRUE, TRUE, 0); |
3366 | 1476 event_store = gtk_list_store_new (3, G_TYPE_BOOLEAN, G_TYPE_STRING, G_TYPE_UINT); |
1477 | |
4561 | 1478 for (j=0; j < GAIM_NUM_SOUNDS; j++) { |
1479 guint opt = gaim_sound_get_event_option(j); | |
1480 if (opt == 0) | |
3366 | 1481 continue; |
3500 | 1482 |
3366 | 1483 gtk_list_store_append (event_store, &iter); |
1484 gtk_list_store_set(event_store, &iter, | |
4561 | 1485 0, sound_options & opt, |
1486 1, gettext(gaim_sound_get_event_label(j)), | |
3366 | 1487 2, j, -1); |
1488 } | |
1489 | |
1490 event_view = gtk_tree_view_new_with_model (GTK_TREE_MODEL(event_store)); | |
3500 | 1491 |
3366 | 1492 rend = gtk_cell_renderer_toggle_new(); |
1493 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (event_view)); | |
1494 g_signal_connect (G_OBJECT (sel), "changed", | |
1495 G_CALLBACK (prefs_sound_sel), | |
1496 NULL); | |
1497 g_signal_connect (G_OBJECT(rend), "toggled", | |
1498 G_CALLBACK(event_toggled), event_store); | |
1499 path = gtk_tree_path_new_first(); | |
1500 gtk_tree_selection_select_path(sel, path); | |
3522 | 1501 gtk_tree_path_free(path); |
3500 | 1502 |
4295 | 1503 col = gtk_tree_view_column_new_with_attributes (_("Play"), |
3366 | 1504 rend, |
1505 "active", 0, | |
1506 NULL); | |
1507 gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col); | |
1508 | |
1509 rend = gtk_cell_renderer_text_new(); | |
4295 | 1510 col = gtk_tree_view_column_new_with_attributes (_("Event"), |
3366 | 1511 rend, |
1512 "text", 1, | |
1513 NULL); | |
1514 gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col); | |
3500 | 1515 g_object_unref(G_OBJECT(event_store)); |
3366 | 1516 gtk_container_add(GTK_CONTAINER(sw), event_view); |
1517 | |
3427 | 1518 hbox = gtk_hbox_new(FALSE, 6); |
1519 gtk_box_pack_start(GTK_BOX(ret), hbox, FALSE, FALSE, 0); | |
3366 | 1520 sound_entry = gtk_entry_new(); |
4561 | 1521 file = gaim_sound_get_event_file(0); |
1522 gtk_entry_set_text(GTK_ENTRY(sound_entry), file ? file : "(default)"); | |
4635 | 1523 gtk_editable_set_editable(GTK_EDITABLE(sound_entry), FALSE); |
3366 | 1524 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
|
1525 |
3025 | 1526 button = gtk_button_new_with_label(_("Test")); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1527 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(test_sound), NULL); |
3366 | 1528 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
|
1529 |
1175 | 1530 button = gtk_button_new_with_label(_("Reset")); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1531 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(reset_sound), NULL); |
3366 | 1532 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 1); |
1175 | 1533 |
1381 | 1534 button = gtk_button_new_with_label(_("Choose...")); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1535 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(sel_sound), NULL); |
3366 | 1536 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 1); |
3500 | 1537 |
3427 | 1538 gtk_widget_show_all (ret); |
1006
0a4d0ed65e17
[gaim-migrate @ 1016]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1002
diff
changeset
|
1539 |
3366 | 1540 return ret; |
2580
86eaeb064e82
[gaim-migrate @ 2593]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2566
diff
changeset
|
1541 } |
86eaeb064e82
[gaim-migrate @ 2593]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2566
diff
changeset
|
1542 |
3366 | 1543 void away_message_sel(GtkTreeSelection *sel, GtkTreeModel *model) |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1544 { |
3366 | 1545 GtkTreeIter iter; |
1546 GValue val = { 0, }; | |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1547 gchar buffer[BUF_LONG]; |
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1548 char *tmp; |
3374 | 1549 struct away_message *am; |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1550 |
3366 | 1551 if (! gtk_tree_selection_get_selected (sel, &model, &iter)) |
1552 return; | |
1553 gtk_tree_model_get_value (model, &iter, 1, &val); | |
3374 | 1554 am = g_value_get_pointer(&val); |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1555 gtk_imhtml_clear(GTK_IMHTML(away_text)); |
3374 | 1556 strncpy(buffer, am->message, BUF_LONG); |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1557 tmp = stylize(buffer, BUF_LONG); |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2843
diff
changeset
|
1558 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
|
1559 GTK_IMHTML_NO_COMMENTS | GTK_IMHTML_NO_SCROLL); |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2843
diff
changeset
|
1560 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
|
1561 GTK_IMHTML_NO_COMMENTS | GTK_IMHTML_NO_SCROLL); |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1562 g_free(tmp); |
3366 | 1563 g_value_unset (&val); |
3500 | 1564 |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1565 } |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1566 |
3500 | 1567 void remove_away_message(GtkWidget *widget, GtkTreeView *tv) { |
3366 | 1568 struct away_message *am; |
1569 GtkTreeIter iter; | |
1570 GtkTreeSelection *sel = gtk_tree_view_get_selection(tv); | |
3379 | 1571 GtkTreeModel *model = GTK_TREE_MODEL(prefs_away_store); |
3366 | 1572 GValue val = { 0, }; |
3500 | 1573 |
3379 | 1574 if (! gtk_tree_selection_get_selected (sel, &model, &iter)) |
3366 | 1575 return; |
3379 | 1576 gtk_tree_model_get_value (GTK_TREE_MODEL(prefs_away_store), &iter, 1, &val); |
3366 | 1577 am = g_value_get_pointer (&val); |
1578 gtk_imhtml_clear(GTK_IMHTML(away_text)); | |
1579 rem_away_mess(NULL, am); | |
1109
c73736fa0b7c
[gaim-migrate @ 1119]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1087
diff
changeset
|
1580 } |
c73736fa0b7c
[gaim-migrate @ 1119]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1087
diff
changeset
|
1581 |
3366 | 1582 GtkWidget *away_message_page() { |
1583 GtkWidget *ret; | |
3427 | 1584 GtkWidget *hbox; |
3379 | 1585 GtkWidget *button; |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1586 GtkWidget *sw; |
3366 | 1587 GtkTreeIter iter; |
1588 GtkWidget *event_view; | |
1589 GtkCellRenderer *rend; | |
1590 GtkTreeViewColumn *col; | |
1591 GtkTreeSelection *sel; | |
940 | 1592 GSList *awy = away_messages; |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1593 struct away_message *a; |
3366 | 1594 GtkWidget *sw2; |
3427 | 1595 GtkSizeGroup *sg; |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1596 |
3427 | 1597 ret = gtk_vbox_new(FALSE, 18); |
1598 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
1599 | |
1600 sg = gtk_size_group_new(GTK_SIZE_GROUP_BOTH); | |
3500 | 1601 |
3366 | 1602 sw = gtk_scrolled_window_new(NULL,NULL); |
1603 away_text = gtk_imhtml_new(NULL, NULL); | |
3427 | 1604 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), GTK_POLICY_NEVER, GTK_POLICY_ALWAYS); |
3817 | 1605 /* |
1606 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_IN); | |
1607 */ | |
3427 | 1608 gtk_box_pack_start(GTK_BOX(ret), sw, TRUE, TRUE, 0); |
3500 | 1609 |
3374 | 1610 prefs_away_store = gtk_list_store_new (2, G_TYPE_STRING, G_TYPE_POINTER); |
3366 | 1611 while (awy) { |
1612 a = (struct away_message *)awy->data; | |
1613 gtk_list_store_append (prefs_away_store, &iter); | |
1614 gtk_list_store_set(prefs_away_store, &iter, | |
3374 | 1615 0, a->name, |
1616 1, a, -1); | |
3366 | 1617 awy = awy->next; |
1618 } | |
1619 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
|
1620 |
2906
538c58b43eff
[gaim-migrate @ 2919]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2856
diff
changeset
|
1621 |
3366 | 1622 rend = gtk_cell_renderer_text_new(); |
1623 col = gtk_tree_view_column_new_with_attributes ("NULL", | |
1624 rend, | |
1625 "text", 0, | |
1626 NULL); | |
1627 gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col); | |
1628 gtk_tree_view_set_headers_visible (GTK_TREE_VIEW(event_view), FALSE); | |
1629 gtk_widget_show(event_view); | |
3427 | 1630 gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(sw), event_view); |
3374 | 1631 |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1632 sw2 = gtk_scrolled_window_new(NULL, NULL); |
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1633 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw2), |
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1634 GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); |
3427 | 1635 gtk_box_pack_start(GTK_BOX(ret), sw2, TRUE, TRUE, 0); |
3500 | 1636 |
3427 | 1637 gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(sw2), away_text); |
1815
f15d449b3167
[gaim-migrate @ 1825]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1813
diff
changeset
|
1638 gaim_setup_imhtml(away_text); |
3366 | 1639 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (event_view)); |
1640 g_signal_connect (G_OBJECT (sel), "changed", | |
1641 G_CALLBACK (away_message_sel), | |
1642 NULL); | |
1643 hbox = gtk_hbox_new(TRUE, 5); | |
3427 | 1644 gtk_box_pack_start(GTK_BOX(ret), hbox, FALSE, FALSE, 0); |
3366 | 1645 button = gtk_button_new_from_stock (GTK_STOCK_ADD); |
1646 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
3427 | 1647 gtk_size_group_add_widget(sg, button); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1648 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(create_away_mess), NULL); |
3472 | 1649 |
3366 | 1650 button = gtk_button_new_from_stock (GTK_STOCK_REMOVE); |
3427 | 1651 gtk_size_group_add_widget(sg, button); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1652 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(remove_away_message), event_view); |
3472 | 1653 |
3366 | 1654 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); |
3472 | 1655 |
3649 | 1656 button = gaim_pixbuf_button(_("_Edit"), "edit.png", GAIM_BUTTON_HORIZONTAL); |
3427 | 1657 gtk_size_group_add_widget(sg, button); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1658 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(create_away_mess), event_view); |
3366 | 1659 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); |
3500 | 1660 |
3427 | 1661 gtk_widget_show_all(ret); |
3366 | 1662 return ret; |
1663 } | |
3472 | 1664 |
3500 | 1665 GtkTreeIter *prefs_notebook_add_page(char *text, |
1666 GdkPixbuf *pixbuf, | |
1667 GtkWidget *page, | |
3366 | 1668 GtkTreeIter *iter, |
3500 | 1669 GtkTreeIter *parent, |
3366 | 1670 int ind) { |
1671 GdkPixbuf *icon = NULL; | |
3500 | 1672 |
3366 | 1673 if (pixbuf) |
3500 | 1674 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
|
1675 |
3366 | 1676 gtk_tree_store_append (prefstree, iter, parent); |
1677 gtk_tree_store_set (prefstree, iter, 0, icon, 1, text, 2, ind, -1); | |
3500 | 1678 |
3366 | 1679 if (pixbuf) |
1680 g_object_unref(pixbuf); | |
1681 if (icon) | |
1682 g_object_unref(icon); | |
1683 gtk_notebook_append_page(GTK_NOTEBOOK(prefsnotebook), page, gtk_label_new(text)); | |
1684 return iter; | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1685 } |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
1686 |
3366 | 1687 void prefs_notebook_init() { |
4469
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
1688 GtkTreeIter p, p2, c; |
3565 | 1689 #if USE_PLUGINS |
1690 GtkWidget *(*config)(); | |
1691 GList *l = plugins; | |
1692 struct gaim_plugin *plug; | |
1693 #endif | |
1694 prefs_notebook_add_page(_("Interface"), NULL, interface_page(), &p, NULL, notebook_page++); | |
4620 | 1695 prefs_notebook_add_page(_("Smiley Themes"), NULL, theme_page(), &c, &p, notebook_page++); |
3565 | 1696 prefs_notebook_add_page(_("Fonts"), NULL, font_page(), &c, &p, notebook_page++); |
1697 prefs_notebook_add_page(_("Message Text"), NULL, messages_page(), &c, &p, notebook_page++); | |
1698 prefs_notebook_add_page(_("Shortcuts"), NULL, hotkeys_page(), &c, &p, notebook_page++); | |
1699 prefs_notebook_add_page(_("Buddy List"), NULL, list_page(), &c, &p, notebook_page++); | |
4488 | 1700 prefs_notebook_add_page(_("Conversations"), NULL, conv_page(), &p2, NULL, notebook_page++); |
4469
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
1701 prefs_notebook_add_page(_("IMs"), NULL, im_page(), &c, &p2, notebook_page++); |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
1702 prefs_notebook_add_page(_("Chats"), NULL, chat_page(), &c, &p2, notebook_page++); |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
1703 prefs_notebook_add_page(_("Tabs"), NULL, tab_page(), &c, &p2, notebook_page++); |
3565 | 1704 prefs_notebook_add_page(_("Proxy"), NULL, proxy_page(), &p, NULL, notebook_page++); |
4461
75ff69e592cc
[gaim-migrate @ 4736]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4451
diff
changeset
|
1705 #ifndef _WIN32 |
75ff69e592cc
[gaim-migrate @ 4736]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4451
diff
changeset
|
1706 /* We use the registered default browser in windows */ |
3565 | 1707 prefs_notebook_add_page(_("Browser"), NULL, browser_page(), &p, NULL, notebook_page++); |
4461
75ff69e592cc
[gaim-migrate @ 4736]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4451
diff
changeset
|
1708 #endif |
3565 | 1709 prefs_notebook_add_page(_("Logging"), NULL, logging_page(), &p, NULL, notebook_page++); |
1710 prefs_notebook_add_page(_("Sounds"), NULL, sound_page(), &p, NULL, notebook_page++); | |
1711 prefs_notebook_add_page(_("Sound Events"), NULL, sound_events_page(), &c, &p, notebook_page++); | |
1712 prefs_notebook_add_page(_("Away / Idle"), NULL, away_page(), &p, NULL, notebook_page++); | |
1713 prefs_notebook_add_page(_("Away Messages"), NULL, away_message_page(), &c, &p, notebook_page++); | |
3551 | 1714 #if USE_PLUGINS |
3565 | 1715 prefs_notebook_add_page(_("Plugins"), NULL, plugin_page(), &plugin_iter, NULL, notebook_page++); |
1716 while (l) { | |
1717 plug = l->data; | |
1718 if (plug->type == plugin && g_module_symbol(plug->handle, "gaim_plugin_config_gtk", (gpointer *)&config)) { | |
1719 plug->iter = g_new0(GtkTreeIter, 1); | |
1720 prefs_notebook_add_page(plug->desc.name, NULL, config(), plug->iter, &plugin_iter, notebook_page++); | |
1721 } | |
1722 l = l->next; | |
1723 } | |
3551 | 1724 #endif |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
1725 } |
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
1726 |
3500 | 1727 void show_prefs() |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
1728 { |
3366 | 1729 GtkWidget *vbox, *vbox2; |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
1730 GtkWidget *hbox; |
3366 | 1731 GtkWidget *frame; |
1732 GtkTreeViewColumn *column; | |
1733 GtkCellRenderer *cell; | |
1734 GtkTreeSelection *sel; | |
1735 GtkWidget *notebook; | |
1736 GtkWidget *sep; | |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
1737 GtkWidget *button; |
3515 | 1738 GtkSizeGroup *sg = gtk_size_group_new(GTK_SIZE_GROUP_BOTH); |
3500 | 1739 |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1740 if (prefs) { |
3472 | 1741 gtk_window_present(GTK_WINDOW(prefs)); |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1742 return; |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1743 } |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1744 |
3366 | 1745 /* copy the preferences to tmp values... |
1746 * I liked "take affect immediately" Oh well :-( */ | |
3818 | 1747 |
1748 /* Back to instant-apply! I win! BU-HAHAHA! */ | |
3500 | 1749 |
3366 | 1750 /* Create the window */ |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1751 prefs = gtk_window_new(GTK_WINDOW_TOPLEVEL); |
4074 | 1752 gtk_window_set_role(GTK_WINDOW(prefs), "preferences"); |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1753 gtk_widget_realize(prefs); |
4703 | 1754 gtk_window_set_title(GTK_WINDOW(prefs), _("Preferences")); |
4635 | 1755 gtk_window_set_resizable (GTK_WINDOW(prefs), FALSE); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1756 g_signal_connect(GTK_OBJECT(prefs), "destroy", G_CALLBACK(delete_prefs), NULL); |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1757 |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1758 vbox = gtk_vbox_new(FALSE, 5); |
4635 | 1759 gtk_container_set_border_width(GTK_CONTAINER(vbox), 5); |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1760 gtk_container_add(GTK_CONTAINER(prefs), vbox); |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1761 gtk_widget_show(vbox); |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1762 |
3366 | 1763 hbox = gtk_hbox_new (FALSE, 6); |
1764 gtk_container_set_border_width (GTK_CONTAINER (hbox), 6); | |
1765 gtk_container_add (GTK_CONTAINER(vbox), hbox); | |
1766 gtk_widget_show (hbox); | |
1767 | |
1768 frame = gtk_frame_new (NULL); | |
1769 gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN); | |
1770 gtk_box_pack_start (GTK_BOX (hbox), frame, FALSE, FALSE, 0); | |
1771 gtk_widget_show (frame); | |
3500 | 1772 |
3366 | 1773 /* The tree -- much inspired by the Gimp */ |
1774 prefstree = gtk_tree_store_new (3, GDK_TYPE_PIXBUF, G_TYPE_STRING, G_TYPE_INT); | |
1775 tree_v = gtk_tree_view_new_with_model (GTK_TREE_MODEL (prefstree)); | |
1776 gtk_container_add (GTK_CONTAINER (frame), tree_v); | |
1777 | |
1778 gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (tree_v), FALSE); | |
1779 gtk_widget_show(tree_v); | |
1780 /* icons */ | |
4892 | 1781 /* XXX: to be used at a later date |
3366 | 1782 cell = gtk_cell_renderer_pixbuf_new (); |
1783 column = gtk_tree_view_column_new_with_attributes ("icons", cell, "pixbuf", 0, NULL); | |
4892 | 1784 */ |
3500 | 1785 |
3366 | 1786 /* text */ |
1787 cell = gtk_cell_renderer_text_new (); | |
1788 column = gtk_tree_view_column_new_with_attributes ("text", cell, "text", 1, NULL); | |
3500 | 1789 |
3366 | 1790 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
|
1791 |
3472 | 1792 /* The right side */ |
1793 frame = gtk_frame_new (NULL); | |
1794 gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN); | |
1795 gtk_box_pack_start (GTK_BOX (hbox), frame, TRUE, TRUE, 0); | |
1796 gtk_widget_show (frame); | |
3500 | 1797 |
3472 | 1798 vbox2 = gtk_vbox_new (FALSE, 4); |
1799 gtk_container_add (GTK_CONTAINER (frame), vbox2); | |
1800 gtk_widget_show (vbox2); | |
3500 | 1801 |
3472 | 1802 frame = gtk_frame_new (NULL); |
1803 gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_OUT); | |
1804 gtk_box_pack_start (GTK_BOX (vbox2), frame, FALSE, TRUE, 0); | |
1805 gtk_widget_show (frame); | |
3500 | 1806 |
3472 | 1807 hbox = gtk_hbox_new (FALSE, 4); |
1808 gtk_container_set_border_width (GTK_CONTAINER (hbox), 4); | |
1809 gtk_container_add (GTK_CONTAINER (frame), hbox); | |
1810 gtk_widget_show (hbox); | |
3500 | 1811 |
3472 | 1812 preflabel = gtk_label_new(NULL); |
1813 gtk_box_pack_end (GTK_BOX (hbox), preflabel, FALSE, FALSE, 0); | |
1814 gtk_widget_show (preflabel); | |
3500 | 1815 |
3472 | 1816 /* The notebook */ |
1817 prefsnotebook = notebook = gtk_notebook_new (); | |
1818 gtk_notebook_set_show_tabs (GTK_NOTEBOOK (notebook), FALSE); | |
1819 gtk_notebook_set_show_border (GTK_NOTEBOOK (notebook), FALSE); | |
1820 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
|
1821 |
3472 | 1822 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (tree_v)); |
1823 g_signal_connect (G_OBJECT (sel), "changed", | |
1824 G_CALLBACK (pref_nb_select), | |
1825 notebook); | |
3500 | 1826 gtk_widget_show(notebook); |
3472 | 1827 sep = gtk_hseparator_new(); |
1828 gtk_widget_show(sep); | |
1829 gtk_box_pack_start (GTK_BOX (vbox), sep, FALSE, FALSE, 0); | |
3500 | 1830 |
3818 | 1831 /* The buttons^H to press! */ |
3472 | 1832 hbox = gtk_hbox_new (FALSE, 6); |
1833 gtk_container_set_border_width (GTK_CONTAINER (hbox), 6); | |
1834 gtk_container_add (GTK_CONTAINER(vbox), hbox); | |
3500 | 1835 gtk_widget_show (hbox); |
3377 | 1836 |
3818 | 1837 button = gtk_button_new_from_stock (GTK_STOCK_CLOSE); |
3515 | 1838 gtk_size_group_add_widget(sg, button); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1839 g_signal_connect_swapped(GTK_OBJECT(button), "clicked", G_CALLBACK(gtk_widget_destroy), prefs); |
3515 | 1840 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); |
1841 gtk_widget_show(button); | |
1842 | |
3500 | 1843 prefs_notebook_init(); |
3427 | 1844 |
3472 | 1845 gtk_tree_view_expand_all (GTK_TREE_VIEW(tree_v)); |
1846 gtk_widget_show(prefs); | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1847 } |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1848 |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1849 static gint debug_delete(GtkWidget *w, GdkEvent *event, void *dummy) |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1850 { |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1851 if (debugbutton) |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1852 gtk_button_clicked(GTK_BUTTON(debugbutton)); |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1853 if (misc_options & OPT_MISC_DEBUG) { |
3818 | 1854 misc_options ^= OPT_MISC_DEBUG; |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1855 } |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1856 g_free(dw); |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1857 dw = NULL; |
4788 | 1858 save_prefs(); |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1859 return FALSE; |
1 | 1860 } |
1861 | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1862 static void build_debug() |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1863 { |
4005 | 1864 GtkWidget *sw; |
1865 GtkTextBuffer *buffer; | |
1866 GtkTextIter end; | |
1867 | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1868 if (!dw) |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1869 dw = g_new0(struct debug_window, 1); |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1870 |
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2676
diff
changeset
|
1871 GAIM_DIALOG(dw->window); |
4005 | 1872 gtk_window_set_default_size(GTK_WINDOW(dw->window), 500, 200); |
1873 gtk_window_set_role(GTK_WINDOW(dw->window), "debug"); | |
4703 | 1874 gtk_window_set_title(GTK_WINDOW(dw->window), _("Debug Window")); |
4005 | 1875 g_signal_connect(G_OBJECT(dw->window), "delete_event", G_CALLBACK(debug_delete), NULL); |
2282
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1876 |
4005 | 1877 sw = gtk_scrolled_window_new(NULL, NULL); |
1878 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), | |
1879 GTK_POLICY_NEVER, | |
1880 GTK_POLICY_ALWAYS); | |
2282
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1881 |
4005 | 1882 dw->entry = gtk_text_view_new(); |
1883 gtk_text_view_set_cursor_visible(GTK_TEXT_VIEW(dw->entry), FALSE); | |
1884 gtk_text_view_set_editable(GTK_TEXT_VIEW(dw->entry), FALSE); | |
1885 gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(dw->entry), GTK_WRAP_WORD); | |
2282
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1886 |
4005 | 1887 buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(dw->entry)); |
1888 gtk_text_buffer_get_end_iter(buffer, &end); | |
1889 gtk_text_buffer_create_mark(buffer, "end", &end, FALSE); | |
2282
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1890 |
4005 | 1891 gtk_container_add(GTK_CONTAINER(sw), dw->entry); |
1892 gtk_container_add(GTK_CONTAINER(dw->window), sw); | |
1893 gtk_widget_show_all(dw->window); | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1894 } |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1895 |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1896 void show_debug() |
1 | 1897 { |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1898 if ((misc_options & OPT_MISC_DEBUG)) { |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1899 if (!dw || !dw->window) |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1900 build_debug(); |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1901 gtk_widget_show(dw->window); |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1902 } else { |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1903 if (!dw) |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1904 return; |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1905 gtk_widget_destroy(dw->window); |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1906 dw->window = NULL; |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1907 } |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1908 } |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1909 |
4755 | 1910 void toggle_debug() |
1911 { | |
1912 misc_options ^= OPT_MISC_DEBUG; | |
1913 show_debug(); | |
1914 save_prefs(); | |
1915 } | |
1916 | |
970 | 1917 void debug_printf(char *fmt, ...) |
1918 { | |
1919 va_list ap; | |
1920 gchar *s; | |
1921 | |
1366
155db3303ebb
[gaim-migrate @ 1376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1357
diff
changeset
|
1922 va_start(ap, fmt); |
155db3303ebb
[gaim-migrate @ 1376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1357
diff
changeset
|
1923 s = g_strdup_vprintf(fmt, ap); |
155db3303ebb
[gaim-migrate @ 1376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1357
diff
changeset
|
1924 va_end(ap); |
155db3303ebb
[gaim-migrate @ 1376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1357
diff
changeset
|
1925 |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1926 if (misc_options & OPT_MISC_DEBUG && dw) { |
4005 | 1927 GtkTextBuffer *buffer; |
1928 GtkTextMark *endmark; | |
1929 GtkTextIter end; | |
2282
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1930 |
4005 | 1931 buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(dw->entry)); |
1932 endmark = gtk_text_buffer_get_mark(buffer, "end"); | |
1933 gtk_text_buffer_get_iter_at_mark(buffer, &end, endmark); | |
1934 gtk_text_buffer_insert(buffer, &end, s, -1); | |
1935 gtk_text_view_scroll_mark_onscreen(GTK_TEXT_VIEW(dw->entry), endmark); | |
1366
155db3303ebb
[gaim-migrate @ 1376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1357
diff
changeset
|
1936 } |
2823
cd23279122ed
[gaim-migrate @ 2836]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2794
diff
changeset
|
1937 if (opt_debug) |
cd23279122ed
[gaim-migrate @ 2836]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2794
diff
changeset
|
1938 g_print("%s", s); |
1366
155db3303ebb
[gaim-migrate @ 1376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1357
diff
changeset
|
1939 g_free(s); |
970 | 1940 } |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1941 |
1 | 1942 void set_option(GtkWidget *w, int *option) |
1943 { | |
1944 *option = !(*option); | |
1945 } | |
1946 | |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1947 static void set_misc_option(GtkWidget *w, int option) |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1948 { |
3818 | 1949 misc_options ^= option; |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1950 |
3818 | 1951 if (option == OPT_MISC_DEBUG) |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1952 show_debug(); |
4227 | 1953 else if(option == OPT_MISC_USE_SERVER_ALIAS) { |
4687 | 1954 /* XXX blist reset the aliases here */ |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
1955 gaim_conversation_foreach(gaim_conversation_autoset_title); |
4227 | 1956 } |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1957 } |
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1958 |
3818 | 1959 static void set_logging_option(GtkWidget *w, int option) |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1960 { |
3818 | 1961 logging_options ^= option; |
3500 | 1962 |
3818 | 1963 if (option == OPT_LOG_CONVOS || option == OPT_LOG_CHATS) |
1964 update_log_convs(); | |
3366 | 1965 } |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1966 |
3818 | 1967 static void set_blist_option(GtkWidget *w, int option) |
3366 | 1968 { |
4695
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
1969 struct gaim_gtk_buddy_list *gtkblist; |
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
1970 |
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
1971 gtkblist = GAIM_GTK_BLIST(gaim_get_blist()); |
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
1972 |
3818 | 1973 blist_options ^= option; |
4687 | 1974 |
1975 if (!gtkblist) | |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1976 return; |
4687 | 1977 |
4697 | 1978 if (option == OPT_BLIST_NO_BUTTONS || option == OPT_BLIST_NO_BUTTONS) |
1979 gaim_gtk_blist_update_toolbar(); | |
4725 | 1980 else if (option == OPT_BLIST_SHOW_WARN || |
1981 option == OPT_BLIST_SHOW_IDLETIME) | |
1982 gaim_gtk_blist_update_columns(); | |
1983 else if (option == OPT_BLIST_SHOW_ICONS) { | |
4697 | 1984 gaim_gtk_blist_refresh(gaim_get_blist()); |
4725 | 1985 gaim_gtk_blist_update_columns(); |
1986 } else | |
1987 gaim_gtk_blist_refresh(gaim_get_blist()); | |
1988 | |
1989 | |
3032 | 1990 |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1991 } |
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1992 |
3818 | 1993 static void set_convo_option(GtkWidget *w, int option) |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1994 { |
3818 | 1995 convo_options ^= option; |
3500 | 1996 |
3818 | 1997 if (option == OPT_CONVO_SHOW_SMILEY) |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
1998 gaim_gtkconv_toggle_smileys(); |
1428
00b3d02a2168
[gaim-migrate @ 1438]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1411
diff
changeset
|
1999 |
3818 | 2000 if (option == OPT_CONVO_SHOW_TIME) |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
2001 gaim_gtkconv_toggle_timestamps(); |
1428
00b3d02a2168
[gaim-migrate @ 1438]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1411
diff
changeset
|
2002 |
3818 | 2003 if (option == OPT_CONVO_CHECK_SPELLING) |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
2004 gaim_gtkconv_toggle_spellchk(); |
4445 | 2005 |
2006 if (option == OPT_CONVO_NO_X_ON_TAB) | |
2007 gaim_gtkconv_toggle_close_buttons(); | |
3818 | 2008 } |
2009 | |
2010 static void set_im_option(GtkWidget *w, int option) | |
2011 { | |
2012 im_options ^= option; | |
3500 | 2013 |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
2014 #if 0 |
3818 | 2015 if (option == OPT_IM_ONE_WINDOW) |
2016 im_tabize(); | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
2017 #endif |
3818 | 2018 |
2019 if (option == OPT_IM_HIDE_ICONS) | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
2020 gaim_gtkconv_hide_buddy_icons(); |
3818 | 2021 |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
2022 if (option == OPT_IM_ALIAS_TAB) |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
2023 gaim_conversation_foreach(gaim_conversation_autoset_title); |
2843
87d11d2a7d59
[gaim-migrate @ 2856]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2839
diff
changeset
|
2024 |
3818 | 2025 if (option == OPT_IM_NO_ANIMATION) |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
2026 gaim_gtkconv_set_anim(); |
1 | 2027 } |
2028 | |
3818 | 2029 static void set_chat_option(GtkWidget *w, int option) |
1 | 2030 { |
3818 | 2031 chat_options ^= option; |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
2032 |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
2033 #if 0 |
3818 | 2034 if (option == OPT_CHAT_ONE_WINDOW) |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
2035 chat_tabize(); |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
2036 #endif |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
2037 } |
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
2038 |
3818 | 2039 void set_sound_option(GtkWidget *w, int option) |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
2040 { |
3818 | 2041 sound_options ^= option; |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
2042 } |
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
2043 |
3818 | 2044 static void set_font_option(GtkWidget *w, int option) |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
2045 { |
3818 | 2046 font_options ^= option; |
3500 | 2047 |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
2048 gaim_gtkconv_update_font_buttons(); |
1 | 2049 } |
2050 | |
3818 | 2051 static void set_away_option(GtkWidget *w, int option) |
1525
ba8e6e211af5
[gaim-migrate @ 1535]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1455
diff
changeset
|
2052 { |
3818 | 2053 away_options ^= option; |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
2054 |
3818 | 2055 if (option == OPT_AWAY_QUEUE) |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
2056 toggle_away_queue(); |
1525
ba8e6e211af5
[gaim-migrate @ 1535]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1455
diff
changeset
|
2057 } |
ba8e6e211af5
[gaim-migrate @ 1535]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1455
diff
changeset
|
2058 |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
2059 GtkWidget *gaim_button(const char *text, guint *options, int option, GtkWidget *page) |
1 | 2060 { |
2061 GtkWidget *button; | |
3427 | 2062 button = gtk_check_button_new_with_mnemonic(text); |
4635 | 2063 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), (*options & option)); |
1 | 2064 gtk_box_pack_start(GTK_BOX(page), button, FALSE, FALSE, 0); |
4635 | 2065 g_object_set_data(G_OBJECT(button), "options", options); |
1 | 2066 |
4064 | 2067 if (options == &misc_options) { |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2068 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(set_misc_option), |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
2069 (int *)option); |
4064 | 2070 } else if (options == &logging_options) { |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2071 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(set_logging_option), |
3818 | 2072 (int *)option); |
4064 | 2073 } else if (options == &blist_options) { |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2074 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(set_blist_option), |
3818 | 2075 (int *)option); |
4064 | 2076 } else if (options == &convo_options) { |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2077 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(set_convo_option), |
3818 | 2078 (int *)option); |
4064 | 2079 } else if (options == &im_options) { |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2080 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(set_im_option), |
3818 | 2081 (int *)option); |
4064 | 2082 } else if (options == &chat_options) { |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2083 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(set_chat_option), |
3818 | 2084 (int *)option); |
4064 | 2085 } else if (options == &font_options) { |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2086 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(set_font_option), |
3818 | 2087 (int *)option); |
4064 | 2088 } else if (options == &sound_options) { |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2089 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(set_sound_option), |
3818 | 2090 (int *)option); |
4064 | 2091 } else if (options == &away_options) { |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2092 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(set_away_option), |
4064 | 2093 (int *)option); |
2094 } else { | |
2095 debug_printf("gaim_button: \"%s\" has no signal handler attached to it!\n", text); | |
2096 } | |
1 | 2097 gtk_widget_show(button); |
2098 | |
2099 return button; | |
2100 } | |
2101 | |
3366 | 2102 void default_away_menu_init(GtkWidget *omenu) |
3032 | 2103 { |
3366 | 2104 GtkWidget *menu, *opt; |
2105 int index = 0; | |
2106 GSList *awy = away_messages; | |
2107 struct away_message *a; | |
2108 | |
2109 menu = gtk_menu_new(); | |
2110 | |
2111 while (awy) { | |
2112 a = (struct away_message *)awy->data; | |
2113 opt = gtk_menu_item_new_with_label(a->name); | |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2114 g_signal_connect(GTK_OBJECT(opt), "activate", G_CALLBACK(set_default_away), |
3366 | 2115 (gpointer)index); |
2116 gtk_widget_show(opt); | |
4635 | 2117 gtk_menu_shell_append(GTK_MENU_SHELL(menu), opt); |
3366 | 2118 |
2119 awy = awy->next; | |
2120 index++; | |
2121 } | |
2122 | |
2123 gtk_option_menu_remove_menu(GTK_OPTION_MENU(omenu)); | |
2124 gtk_option_menu_set_menu(GTK_OPTION_MENU(omenu), menu); | |
2125 gtk_option_menu_set_history(GTK_OPTION_MENU(omenu), g_slist_index(away_messages, default_away)); | |
2126 } | |
2127 | |
2128 GtkWidget *pref_fg_picture = NULL; | |
2129 GtkWidget *pref_bg_picture = NULL; | |
2130 | |
2131 void destroy_colorsel(GtkWidget *w, gpointer d) | |
2132 { | |
2133 if (d) { | |
2134 gtk_widget_destroy(fgcseld); | |
2135 fgcseld = NULL; | |
2136 } else { | |
2137 gtk_widget_destroy(bgcseld); | |
2138 bgcseld = NULL; | |
2139 } | |
3032 | 2140 } |
2141 | |
3366 | 2142 void apply_color_dlg(GtkWidget *w, gpointer d) |
3032 | 2143 { |
3366 | 2144 if ((int)d == 1) { |
2145 gtk_color_selection_get_current_color(GTK_COLOR_SELECTION | |
3500 | 2146 (GTK_COLOR_SELECTION_DIALOG(fgcseld)->colorsel), |
3818 | 2147 &fgcolor); |
3366 | 2148 destroy_colorsel(NULL, (void *)1); |
2149 update_color(NULL, pref_fg_picture); | |
2150 } else { | |
2151 gtk_color_selection_get_current_color(GTK_COLOR_SELECTION | |
3500 | 2152 (GTK_COLOR_SELECTION_DIALOG(bgcseld)->colorsel), |
3818 | 2153 &bgcolor); |
3366 | 2154 destroy_colorsel(NULL, (void *)0); |
2155 update_color(NULL, pref_bg_picture); | |
2156 } | |
4421 | 2157 gaim_conversation_foreach(gaim_gtkconv_update_font_colors); |
3032 | 2158 } |
2159 | |
3366 | 2160 void update_color(GtkWidget *w, GtkWidget *pic) |
1 | 2161 { |
3366 | 2162 GdkColor c; |
2163 GtkStyle *style; | |
2164 c.pixel = 0; | |
3500 | 2165 |
3366 | 2166 if (pic == pref_fg_picture) { |
3818 | 2167 if (font_options & OPT_FONT_FGCOL) { |
2168 c.red = fgcolor.red; | |
2169 c.blue = fgcolor.blue; | |
2170 c.green = fgcolor.green; | |
3366 | 2171 } else { |
2172 c.red = 0; | |
2173 c.blue = 0; | |
2174 c.green = 0; | |
2175 } | |
2176 } else { | |
3818 | 2177 if (font_options & OPT_FONT_BGCOL) { |
2178 c.red = bgcolor.red; | |
2179 c.blue = bgcolor.blue; | |
2180 c.green = bgcolor.green; | |
3366 | 2181 } else { |
2182 c.red = 0xffff; | |
2183 c.blue = 0xffff; | |
2184 c.green = 0xffff; | |
2185 } | |
2186 } | |
2187 | |
2188 style = gtk_style_new(); | |
2189 style->bg[0] = c; | |
2190 gtk_widget_set_style(pic, style); | |
4296 | 2191 g_object_unref(style); |
3366 | 2192 } |
4064 | 2193 |
3366 | 2194 void set_default_away(GtkWidget *w, gpointer i) |
2195 { | |
2196 | |
2197 int length = g_slist_length(away_messages); | |
338
9d258a0aa560
[gaim-migrate @ 348]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
337
diff
changeset
|
2198 |
3366 | 2199 if (away_messages == NULL) |
3818 | 2200 default_away = NULL; |
3366 | 2201 else if ((int)i >= length) |
3818 | 2202 default_away = g_slist_nth_data(away_messages, length - 1); |
3366 | 2203 else |
3818 | 2204 default_away = g_slist_nth_data(away_messages, (int)i); |
3366 | 2205 } |
3500 | 2206 |
4428 | 2207 static gboolean program_is_valid(const char *program) |
2208 { | |
2209 GError *error = NULL; | |
2210 char **argv; | |
4869 | 2211 gchar *progname; |
4428 | 2212 gboolean is_valid = FALSE; |
2213 | |
2214 if (program == NULL || *program == '\0') { | |
2215 return FALSE; | |
2216 } | |
2217 | |
2218 if (!g_shell_parse_argv(program, NULL, &argv, &error)) { | |
2219 debug_printf("Could not parse program '%s': ", error->message); | |
4800 | 2220 g_error_free(error); |
4428 | 2221 return FALSE; |
2222 } | |
2223 | |
2224 if (argv == NULL) { | |
2225 return FALSE; | |
2226 } | |
2227 | |
4869 | 2228 progname = g_find_program_in_path(argv[0]); |
2229 is_valid = (progname != NULL); | |
4428 | 2230 |
2231 g_strfreev(argv); | |
4869 | 2232 g_free(progname); |
2233 | |
4428 | 2234 return is_valid; |
2235 } | |
2236 | |
3366 | 2237 static void update_spin_value(GtkWidget *w, GtkWidget *spin) |
2238 { | |
4635 | 2239 int *value = g_object_get_data(G_OBJECT(spin), "val"); |
3366 | 2240 *value = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(spin)); |
2241 } | |
4064 | 2242 |
3427 | 2243 GtkWidget *gaim_labeled_spin_button(GtkWidget *box, const gchar *title, int *val, int min, int max, GtkSizeGroup *sg) |
3366 | 2244 { |
2245 GtkWidget *hbox; | |
2246 GtkWidget *label; | |
2247 GtkWidget *spin; | |
2248 GtkObject *adjust; | |
901
f168f2c7b357
[gaim-migrate @ 911]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
893
diff
changeset
|
2249 |
3366 | 2250 hbox = gtk_hbox_new(FALSE, 5); |
2251 gtk_box_pack_start(GTK_BOX(box), hbox, FALSE, FALSE, 5); | |
2252 gtk_widget_show(hbox); | |
2253 | |
3427 | 2254 label = gtk_label_new_with_mnemonic(title); |
3366 | 2255 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); |
2256 gtk_widget_show(label); | |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
2257 |
3366 | 2258 adjust = gtk_adjustment_new(*val, min, max, 1, 1, 1); |
2259 spin = gtk_spin_button_new(GTK_ADJUSTMENT(adjust), 1, 0); | |
4635 | 2260 g_object_set_data(G_OBJECT(spin), "val", val); |
2261 gtk_widget_set_size_request(spin, 50, -1); | |
3366 | 2262 gtk_box_pack_start(GTK_BOX(hbox), spin, FALSE, FALSE, 0); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2263 g_signal_connect(GTK_OBJECT(adjust), "value-changed", |
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2264 G_CALLBACK(update_spin_value), GTK_WIDGET(spin)); |
3366 | 2265 gtk_widget_show(spin); |
3500 | 2266 |
3427 | 2267 gtk_label_set_mnemonic_widget(GTK_LABEL(label), spin); |
2268 | |
2269 if (sg) { | |
2270 gtk_size_group_add_widget(sg, label); | |
2271 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
3500 | 2272 |
3427 | 2273 } |
2274 return label; | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
2275 } |
1 | 2276 |
4635 | 2277 void dropdown_set(GObject *w, int *option) |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
2278 { |
4635 | 2279 int opt = GPOINTER_TO_INT(g_object_get_data(w, "value")); |
2280 int clear = GPOINTER_TO_INT(g_object_get_data(w, "clear")); | |
3500 | 2281 |
3366 | 2282 if (clear != -1) { |
2283 *option = *option & ~clear; | |
2284 *option = *option | opt; | |
2285 } else { | |
2286 debug_printf("HELLO %d\n", opt); | |
2287 *option = opt; | |
2288 } | |
3500 | 2289 |
4634 | 2290 if (option == (int*)&global_proxy_info.proxytype) { |
3366 | 2291 if (opt == PROXY_NONE) |
2292 gtk_widget_set_sensitive(prefs_proxy_frame, FALSE); | |
2293 else | |
2294 gtk_widget_set_sensitive(prefs_proxy_frame, TRUE); | |
3818 | 2295 } else if (option == &web_browser) { |
3366 | 2296 if (opt == BROWSER_MANUAL) |
4428 | 2297 gtk_widget_set_sensitive(gtk_widget_get_parent(browser_entry), TRUE); |
3366 | 2298 else |
4428 | 2299 gtk_widget_set_sensitive(gtk_widget_get_parent(browser_entry), FALSE); |
3818 | 2300 } else if (option == (int*)&sound_options) { |
3366 | 2301 if (opt == OPT_SOUND_CMD) |
2302 gtk_widget_set_sensitive(sndcmd, TRUE); | |
2303 else | |
2304 gtk_widget_set_sensitive(sndcmd, FALSE); | |
4581 | 2305 gaim_sound_change_output_method(); |
3818 | 2306 } else if (option == (int*)&im_options) { |
2307 if (clear == (OPT_IM_SIDE_TAB | OPT_IM_BR_TAB)) | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
2308 gaim_gtkconv_update_tabs(); |
3818 | 2309 else if (clear == (OPT_IM_BUTTON_TEXT | OPT_IM_BUTTON_XPM)) |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
2310 gaim_gtkconv_update_im_button_style(); |
3818 | 2311 } else if (option == (int*)&chat_options) { |
2312 if (clear == (OPT_CHAT_SIDE_TAB | OPT_CHAT_BR_TAB)) | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
2313 gaim_gtkconv_update_tabs(); |
3818 | 2314 else if (clear == (OPT_CHAT_BUTTON_TEXT | OPT_CHAT_BUTTON_XPM)) |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
2315 gaim_gtkconv_update_chat_button_style(); |
4687 | 2316 // } else if (option == (int*)&blist_options) { |
2317 // set_blist_tab(); | |
4469
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
2318 } else if (option == (int *)&conv_placement_option) { |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
2319 gaim_conv_placement_set_active(conv_placement_option); |
3366 | 2320 } |
1 | 2321 } |
2322 | |
3500 | 2323 static GtkWidget *gaim_dropdown(GtkWidget *box, const gchar *title, int *option, int clear, ...) |
1 | 2324 { |
4428 | 2325 va_list ap; |
2326 GList *menuitems = NULL; | |
2327 GtkWidget *dropdown = NULL; | |
2328 char *name; | |
2329 int id; | |
2330 | |
2331 va_start(ap, clear); | |
2332 while ((name = va_arg(ap, char *)) != NULL) { | |
2333 id = va_arg(ap, int); | |
2334 | |
2335 menuitems = g_list_prepend(menuitems, name); | |
2336 menuitems = g_list_prepend(menuitems, GINT_TO_POINTER(id)); | |
2337 } | |
2338 va_end(ap); | |
2339 | |
4433 | 2340 g_return_val_if_fail(menuitems != NULL, NULL); |
4428 | 2341 |
2342 menuitems = g_list_reverse(menuitems); | |
2343 | |
2344 dropdown = gaim_dropdown_from_list(box, title, option, clear, menuitems); | |
2345 | |
2346 g_list_free(menuitems); | |
2347 | |
2348 return dropdown; | |
2349 } | |
2350 | |
2351 static GtkWidget *gaim_dropdown_from_list(GtkWidget *box, const gchar *title, int *option, int clear, GList *menuitems) | |
2352 { | |
3366 | 2353 GtkWidget *dropdown, *opt, *menu; |
2354 GtkWidget *label; | |
2355 gchar *text; | |
2356 int value; | |
2357 int o = 0; | |
2358 GtkWidget *hbox; | |
1 | 2359 |
4428 | 2360 g_return_val_if_fail(menuitems != NULL, NULL); |
2361 | |
3366 | 2362 hbox = gtk_hbox_new(FALSE, 5); |
2363 gtk_container_add (GTK_CONTAINER (box), hbox); | |
2364 gtk_widget_show(hbox); | |
2365 | |
3427 | 2366 label = gtk_label_new_with_mnemonic(title); |
3366 | 2367 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); |
2368 gtk_widget_show(label); | |
2369 | |
2370 dropdown = gtk_option_menu_new(); | |
2371 menu = gtk_menu_new(); | |
3500 | 2372 |
3427 | 2373 gtk_label_set_mnemonic_widget(GTK_LABEL(label), dropdown); |
3500 | 2374 |
4428 | 2375 while (menuitems != NULL && (text = (char *) menuitems->data) != NULL) { |
2376 menuitems = g_list_next(menuitems); | |
2377 g_return_val_if_fail(menuitems != NULL, NULL); | |
2378 value = GPOINTER_TO_INT(menuitems->data); | |
2379 menuitems = g_list_next(menuitems); | |
2380 | |
3366 | 2381 opt = gtk_menu_item_new_with_label(text); |
4635 | 2382 g_object_set_data(G_OBJECT(opt), "value", GINT_TO_POINTER(value)); |
2383 g_object_set_data(G_OBJECT(opt), "clear", GINT_TO_POINTER(clear)); | |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2384 g_signal_connect(GTK_OBJECT(opt), "activate", |
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2385 G_CALLBACK(dropdown_set), (void *)option); |
3366 | 2386 gtk_widget_show(opt); |
2387 gtk_menu_shell_append(GTK_MENU_SHELL(menu), opt); | |
1 | 2388 |
3366 | 2389 if (((clear > -1) && ((*option & value) == value)) || *option == value) { |
2390 gtk_menu_set_active(GTK_MENU(menu), o); | |
2391 } | |
2392 o++; | |
4428 | 2393 |
3366 | 2394 } |
2262
9c8f353331e7
[gaim-migrate @ 2272]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2254
diff
changeset
|
2395 |
3500 | 2396 gtk_option_menu_set_menu(GTK_OPTION_MENU(dropdown), menu); |
3366 | 2397 gtk_box_pack_start(GTK_BOX(hbox), dropdown, FALSE, FALSE, 0); |
2398 gtk_widget_show(dropdown); | |
3427 | 2399 return label; |
3500 | 2400 } |
2401 | |
3366 | 2402 static GtkWidget *show_color_pref(GtkWidget *box, gboolean fgc) |
1 | 2403 { |
3366 | 2404 /* more stuff stolen from X-Chat */ |
2405 GtkWidget *swid; | |
2406 GdkColor c; | |
2407 GtkStyle *style; | |
2408 c.pixel = 0; | |
2409 if (fgc) { | |
3818 | 2410 if (font_options & OPT_FONT_FGCOL) { |
2411 c.red = fgcolor.red; | |
2412 c.blue = fgcolor.blue; | |
2413 c.green = fgcolor.green; | |
3366 | 2414 } else { |
2415 c.red = 0; | |
2416 c.blue = 0; | |
2417 c.green = 0; | |
2418 } | |
2419 } else { | |
3818 | 2420 if (font_options & OPT_FONT_BGCOL) { |
2421 c.red = bgcolor.red; | |
2422 c.blue = bgcolor.blue; | |
2423 c.green = bgcolor.green; | |
3366 | 2424 } else { |
2425 c.red = 0xffff; | |
2426 c.blue = 0xffff; | |
2427 c.green = 0xffff; | |
2428 } | |
2429 } | |
1 | 2430 |
3366 | 2431 style = gtk_style_new(); |
2432 style->bg[0] = c; | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
2433 |
3366 | 2434 swid = gtk_event_box_new(); |
2435 gtk_widget_set_style(GTK_WIDGET(swid), style); | |
4296 | 2436 g_object_unref(style); |
4635 | 2437 gtk_widget_set_size_request(GTK_WIDGET(swid), 40, -1); |
3366 | 2438 gtk_box_pack_start(GTK_BOX(box), swid, FALSE, FALSE, 5); |
2439 gtk_widget_show(swid); | |
2440 return swid; | |
1 | 2441 } |
4064 | 2442 |
3366 | 2443 void apply_font_dlg(GtkWidget *w, GtkWidget *f) |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
2444 { |
3366 | 2445 int i = 0; |
2446 char *fontname; | |
2447 | |
3473 | 2448 fontname = g_strdup(gtk_font_selection_dialog_get_font_name(GTK_FONT_SELECTION_DIALOG(f))); |
3366 | 2449 destroy_fontsel(0, 0); |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
2450 |
3818 | 2451 while(fontname[i] && !isdigit(fontname[i]) && i < sizeof(fontface)) { |
2452 fontface[i] = fontname[i]; | |
3366 | 2453 i++; |
2454 } | |
4438
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4433
diff
changeset
|
2455 |
3818 | 2456 fontface[i] = 0; |
3366 | 2457 g_free(fontname); |
4635 | 2458 |
4438
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4433
diff
changeset
|
2459 gaim_conversation_foreach(gaim_gtkconv_update_font_face); |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
2460 } |
3500 | 2461 |