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