Mercurial > pidgin
annotate src/prefs.c @ 4445:a65555132674
[gaim-migrate @ 4720]
"Who's the idiot now, moron?"
An option to remove the 'X' button from the tabs.
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Tue, 28 Jan 2003 06:55:23 +0000 |
parents | 2054d8429925 |
children | faa9b636707a |
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; |
4445 | 650 GtkWidget *button; |
3427 | 651 GtkSizeGroup *sg; |
652 ret = gtk_vbox_new(FALSE, 18); | |
653 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
3366 | 654 |
3427 | 655 sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); |
3500 | 656 |
3427 | 657 vbox = make_frame (ret, _("IM Tabs")); |
4114 | 658 dd = gaim_dropdown(vbox, _("Tab _placement:"), &im_options, OPT_IM_SIDE_TAB | OPT_IM_BR_TAB, |
659 _("Top"), 0, | |
660 _("Bottom"), OPT_IM_BR_TAB, | |
661 _("Left"), OPT_IM_SIDE_TAB, | |
662 _("Right"), OPT_IM_BR_TAB | OPT_IM_SIDE_TAB, NULL); | |
3427 | 663 gtk_size_group_add_widget(sg, dd); |
4045 | 664 gaim_button(_("Show all _instant messages in one tabbed\nwindow"), &im_options, OPT_IM_ONE_WINDOW, vbox); |
3818 | 665 gaim_button(_("Show a_liases in tabs/titles"), &im_options, OPT_IM_ALIAS_TAB, vbox); |
3366 | 666 |
3427 | 667 vbox = make_frame (ret, _("Chat Tabs")); |
4114 | 668 dd = gaim_dropdown(vbox, _("Tab _placement:"), &chat_options, OPT_CHAT_SIDE_TAB | OPT_CHAT_BR_TAB, |
669 _("Top"), 0, | |
670 _("Bottom"), OPT_CHAT_BR_TAB, | |
671 _("Left"), OPT_CHAT_SIDE_TAB, | |
672 _("Right"), OPT_CHAT_SIDE_TAB | OPT_CHAT_BR_TAB, NULL); | |
3427 | 673 gtk_size_group_add_widget(sg, dd); |
3818 | 674 gaim_button(_("Show all c_hats in one tabbed window"), &chat_options, OPT_CHAT_ONE_WINDOW, |
3366 | 675 vbox); |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
676 |
3427 | 677 vbox = make_frame (ret, _("Buddy List Tabs")); |
4114 | 678 dd = gaim_dropdown(vbox, _("Tab _placement:"), &blist_options, OPT_BLIST_BOTTOM_TAB, |
679 _("Top"), 0, | |
680 _("Bottom"), OPT_BLIST_BOTTOM_TAB, NULL); | |
3427 | 681 gtk_size_group_add_widget(sg, dd); |
3500 | 682 |
4445 | 683 vbox = make_frame (ret, _("Tab Options")); |
684 gaim_button(_("Show IMs and chats in _same tabbed window."), &convo_options, OPT_CONVO_COMBINE, vbox); | |
685 button = gaim_button(_("Show _close button on tabs."), &convo_options, OPT_CONVO_NO_X_ON_TAB, vbox); | |
686 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(button), !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(button))); | |
687 convo_options ^= OPT_CONVO_NO_X_ON_TAB; | |
688 | |
689 | |
3427 | 690 gtk_widget_show_all(ret); |
3366 | 691 return ret; |
692 } | |
693 | |
694 GtkWidget *proxy_page() { | |
695 GtkWidget *ret; | |
696 GtkWidget *vbox; | |
697 GtkWidget *entry; | |
698 GtkWidget *label; | |
699 GtkWidget *hbox; | |
700 GtkWidget *table; | |
701 | |
3427 | 702 ret = gtk_vbox_new(FALSE, 18); |
703 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
3366 | 704 |
3427 | 705 vbox = make_frame (ret, _("Proxy Type")); |
4377 | 706 gaim_dropdown(vbox, _("Proxy _type:"), (int*)&proxytype, -1, |
4114 | 707 _("No proxy"), PROXY_NONE, |
3366 | 708 "SOCKS 4", PROXY_SOCKS4, |
709 "SOCKS 5", PROXY_SOCKS5, | |
710 "HTTP", PROXY_HTTP, NULL); | |
2372
2927c2c26fe6
[gaim-migrate @ 2385]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2323
diff
changeset
|
711 |
2254 | 712 table = gtk_table_new(2, 2, FALSE); |
713 gtk_container_set_border_width(GTK_CONTAINER(table), 5); | |
714 gtk_table_set_col_spacings(GTK_TABLE(table), 5); | |
715 gtk_table_set_row_spacings(GTK_TABLE(table), 5); | |
716 | |
3427 | 717 vbox = make_frame(ret, _("Proxy Server")); |
718 prefs_proxy_frame = vbox; | |
2254 | 719 |
720 if (proxytype == PROXY_NONE) | |
3427 | 721 gtk_widget_set_sensitive(GTK_WIDGET(vbox), FALSE); |
2254 | 722 |
723 table = gtk_table_new(2, 4, FALSE); | |
724 gtk_container_set_border_width(GTK_CONTAINER(table), 5); | |
725 gtk_table_set_col_spacings(GTK_TABLE(table), 5); | |
726 gtk_table_set_row_spacings(GTK_TABLE(table), 10); | |
3427 | 727 gtk_container_add(GTK_CONTAINER(vbox), table); |
2254 | 728 |
729 | |
3427 | 730 label = gtk_label_new_with_mnemonic(_("_Host")); |
2254 | 731 gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); |
732 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
|
733 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
734 entry = gtk_entry_new(); |
3427 | 735 gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry); |
3366 | 736 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
|
737 g_signal_connect(GTK_OBJECT(entry), "changed", |
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
738 G_CALLBACK(proxy_print_option), (void *)PROXYHOST); |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
739 gtk_entry_set_text(GTK_ENTRY(entry), proxyhost); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
740 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
741 hbox = gtk_hbox_new(TRUE, 5); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
742 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
743 |
3427 | 744 label = gtk_label_new_with_mnemonic(_("Port")); |
2254 | 745 gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); |
746 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
|
747 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
748 entry = gtk_entry_new(); |
3427 | 749 gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry); |
3366 | 750 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
|
751 g_signal_connect(GTK_OBJECT(entry), "changed", |
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
752 G_CALLBACK(proxy_print_option), (void *)PROXYPORT); |
2254 | 753 |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
754 if (proxyport) { |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
755 char buf[128]; |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
756 g_snprintf(buf, sizeof(buf), "%d", proxyport); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
757 gtk_entry_set_text(GTK_ENTRY(entry), buf); |
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 |
3427 | 760 label = gtk_label_new_with_mnemonic(_("_User")); |
2254 | 761 gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); |
762 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
|
763 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
764 entry = gtk_entry_new(); |
3427 | 765 gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry); |
3366 | 766 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
|
767 g_signal_connect(GTK_OBJECT(entry), "changed", |
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
768 G_CALLBACK(proxy_print_option), (void *)PROXYUSER); |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
769 gtk_entry_set_text(GTK_ENTRY(entry), proxyuser); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
770 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
771 hbox = gtk_hbox_new(TRUE, 5); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
772 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
773 |
3427 | 774 label = gtk_label_new_with_mnemonic(_("Pa_ssword")); |
2254 | 775 gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); |
776 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
|
777 |
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
778 entry = gtk_entry_new(); |
3427 | 779 gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry); |
3366 | 780 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
|
781 gtk_entry_set_visibility(GTK_ENTRY(entry), FALSE); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
782 g_signal_connect(GTK_OBJECT(entry), "changed", |
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
783 G_CALLBACK(proxy_print_option), (void *)PROXYPASS); |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
784 gtk_entry_set_text(GTK_ENTRY(entry), proxypass); |
3500 | 785 |
3427 | 786 gtk_widget_show_all(ret); |
3366 | 787 return ret; |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
788 } |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
789 |
3821 | 790 #ifndef _WIN32 |
4428 | 791 static void manual_browser_set(GtkButton *button, GtkEntry *entry) { |
792 | |
793 const char *program = gtk_entry_get_text(entry); | |
794 if (!program_is_valid(program)) { | |
795 char *error = g_strdup_printf(_("The entered manual browser " | |
796 "'%s' is not valid. Hyperlinks will " | |
797 "not work."), program); | |
798 do_error_dialog(error, NULL, GAIM_WARNING); | |
799 } | |
800 | |
801 g_strlcpy(web_command, program, sizeof(web_command)); | |
802 } | |
803 | |
804 static void manual_browser_reset(GtkButton *button, GtkEntry *entry) { | |
805 gtk_entry_set_text(entry, web_command); | |
3432 | 806 } |
3821 | 807 #endif |
3432 | 808 |
4428 | 809 static GList *get_available_browsers() |
810 { | |
811 struct browser { | |
812 char *name; | |
813 char *command; | |
814 int id; | |
815 }; | |
816 | |
817 static struct browser possible_browsers[] = { | |
818 {N_("Konqueror"), "kfmclient", BROWSER_KONQ}, | |
819 {N_("Opera"), "opera", BROWSER_OPERA}, | |
820 {N_("Galeon"), "galeon", BROWSER_GALEON}, | |
821 {N_("Netscape"), "netscape", BROWSER_NETSCAPE}, | |
822 {N_("Mozilla"), "mozilla", BROWSER_MOZILLA}, | |
823 }; | |
824 static const int num_possible_browsers = 5; | |
825 | |
826 GList *browsers = NULL; | |
827 int i = 0; | |
828 | |
829 browsers = g_list_prepend(browsers, GINT_TO_POINTER(BROWSER_MANUAL)); | |
830 browsers = g_list_prepend(browsers, _("Manual")); | |
831 for (i = 0; i < num_possible_browsers; i++) { | |
832 if (program_is_valid(possible_browsers[i].command)) { | |
833 browsers = g_list_prepend(browsers, | |
834 GINT_TO_POINTER(possible_browsers[i].id)); | |
835 browsers = g_list_prepend(browsers, possible_browsers[i].name); | |
836 } | |
837 } | |
838 | |
839 return browsers; | |
840 } | |
841 | |
3366 | 842 GtkWidget *browser_page() { |
843 GtkWidget *ret; | |
3821 | 844 GtkWidget *vbox; |
845 #ifndef _WIN32 | |
846 GtkWidget *hbox; | |
847 #endif | |
3366 | 848 GtkWidget *label; |
3427 | 849 GtkSizeGroup *sg; |
4428 | 850 GList *browsers = NULL; |
3427 | 851 |
852 ret = gtk_vbox_new(FALSE, 18); | |
853 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
854 | |
855 sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); | |
3630 | 856 #ifndef _WIN32 |
857 /* Registered default browser is used by Windows */ | |
3427 | 858 vbox = make_frame (ret, _("Browser Selection")); |
4428 | 859 |
860 browsers = get_available_browsers(); | |
861 if (browsers != NULL) { | |
862 label = gaim_dropdown_from_list(vbox,_("_Browser"), &web_browser, -1, | |
863 browsers); | |
3427 | 864 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); |
865 gtk_size_group_add_widget(sg, label); | |
4428 | 866 } |
915
378c862a2381
[gaim-migrate @ 925]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
910
diff
changeset
|
867 |
3366 | 868 hbox = gtk_hbox_new(FALSE, 5); |
869 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); | |
4295 | 870 label = gtk_label_new_with_mnemonic(_("_Manual: ")); |
3366 | 871 gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0); |
3427 | 872 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); |
873 gtk_size_group_add_widget(sg, label); | |
3366 | 874 browser_entry = gtk_entry_new(); |
3427 | 875 gtk_label_set_mnemonic_widget(GTK_LABEL(label), browser_entry); |
3818 | 876 if (web_browser != BROWSER_MANUAL) |
4428 | 877 gtk_widget_set_sensitive(hbox, FALSE); |
3366 | 878 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
|
879 |
3818 | 880 gtk_entry_set_text(GTK_ENTRY(browser_entry), web_command); |
4428 | 881 g_signal_connect_swapped(GTK_OBJECT(browser_entry), "activate", |
882 G_CALLBACK(manual_browser_set), NULL); | |
883 label = gtk_button_new_with_label(_("Set")); | |
884 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); | |
885 g_signal_connect(GTK_OBJECT(label), "clicked", | |
886 G_CALLBACK(manual_browser_set), browser_entry); | |
887 label = gtk_button_new_with_label(_("Reset")); | |
888 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); | |
889 g_signal_connect(GTK_OBJECT(label), "clicked", | |
890 G_CALLBACK(manual_browser_reset), browser_entry); | |
891 | |
3630 | 892 #endif /* end !_WIN32 */ |
4428 | 893 if (browsers != NULL) { |
3427 | 894 vbox = make_frame (ret, _("Browser Options")); |
4428 | 895 |
3818 | 896 label = gaim_button(_("Open new _window by default"), &misc_options, OPT_MISC_BROWSER_POPUP, vbox); |
4428 | 897 } |
3630 | 898 #ifdef _WIN32 |
899 /* Until I figure out how to implement this on windows */ | |
900 gtk_widget_set_sensitive(label, FALSE); | |
901 #endif | |
3427 | 902 gtk_widget_show_all(ret); |
3366 | 903 return ret; |
3500 | 904 } |
3366 | 905 |
906 GtkWidget *logging_page() { | |
907 GtkWidget *ret; | |
908 GtkWidget *vbox; | |
3427 | 909 ret = gtk_vbox_new(FALSE, 18); |
910 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
915
378c862a2381
[gaim-migrate @ 925]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
910
diff
changeset
|
911 |
3427 | 912 vbox = make_frame (ret, _("Message Logs")); |
4045 | 913 gaim_button(_("_Log all instant messages"), &logging_options, OPT_LOG_CONVOS, vbox); |
3818 | 914 gaim_button(_("Log all c_hats"), &logging_options, OPT_LOG_CHATS, vbox); |
915 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
|
916 |
3427 | 917 vbox = make_frame (ret, _("System Logs")); |
3818 | 918 gaim_button(_("Log when buddies _sign on/sign off"), &logging_options, OPT_LOG_BUDDY_SIGNON, |
3366 | 919 vbox); |
3818 | 920 gaim_button(_("Log when buddies become _idle/un-idle"), &logging_options, OPT_LOG_BUDDY_IDLE, |
3366 | 921 vbox); |
3818 | 922 gaim_button(_("Log when buddies go away/come _back"), &logging_options, OPT_LOG_BUDDY_AWAY, vbox); |
923 gaim_button(_("Log your _own signons/idleness/awayness"), &logging_options, OPT_LOG_MY_SIGNON, | |
3366 | 924 vbox); |
3818 | 925 gaim_button(_("I_ndividual log file for each buddy's signons"), &logging_options, |
3366 | 926 OPT_LOG_INDIVIDUAL, vbox); |
1757
3dfe4aefd366
[gaim-migrate @ 1767]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1755
diff
changeset
|
927 |
3427 | 928 gtk_widget_show_all(ret); |
3366 | 929 return ret; |
1757
3dfe4aefd366
[gaim-migrate @ 1767]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1755
diff
changeset
|
930 } |
3dfe4aefd366
[gaim-migrate @ 1767]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1755
diff
changeset
|
931 |
3366 | 932 static GtkWidget *sndcmd = NULL; |
1757
3dfe4aefd366
[gaim-migrate @ 1767]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1755
diff
changeset
|
933 |
3821 | 934 #ifndef _WIN32 |
4095 | 935 static gint sound_cmd_yeah(GtkEntry *entry, gpointer d) |
1813
998a6a032874
[gaim-migrate @ 1823]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1805
diff
changeset
|
936 { |
3818 | 937 g_snprintf(sound_cmd, sizeof(sound_cmd), "%s", gtk_entry_get_text(GTK_ENTRY(sndcmd))); |
3366 | 938 return TRUE; |
1813
998a6a032874
[gaim-migrate @ 1823]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1805
diff
changeset
|
939 } |
3821 | 940 #endif |
1813
998a6a032874
[gaim-migrate @ 1823]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1805
diff
changeset
|
941 |
3366 | 942 GtkWidget *sound_page() { |
943 GtkWidget *ret; | |
3821 | 944 GtkWidget *vbox; |
945 GtkSizeGroup *sg; | |
946 #ifndef _WIN32 | |
947 GtkWidget *dd; | |
948 GtkWidget *hbox; | |
1750
d2eca7a46cfd
[gaim-migrate @ 1760]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1711
diff
changeset
|
949 GtkWidget *label; |
3821 | 950 #endif |
3366 | 951 |
3427 | 952 ret = gtk_vbox_new(FALSE, 18); |
953 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
954 |
3427 | 955 sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
956 |
3427 | 957 vbox = make_frame (ret, _("Sound Options")); |
3818 | 958 gaim_button(_("_No sounds when you log in"), &sound_options, OPT_SOUND_SILENT_SIGNON, vbox); |
959 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
|
960 |
3630 | 961 #ifndef _WIN32 |
3427 | 962 vbox = make_frame (ret, _("Sound Method")); |
4114 | 963 dd = gaim_dropdown(vbox, _("_Method"), &sound_options, OPT_SOUND_BEEP | |
4430 | 964 OPT_SOUND_ESD | OPT_SOUND_ARTSC | OPT_SOUND_NAS | OPT_SOUND_NORMAL | |
3500 | 965 OPT_SOUND_CMD, |
4114 | 966 _("Console beep"), OPT_SOUND_BEEP, |
4430 | 967 #ifdef ESD_SOUND |
968 "ESD", OPT_SOUND_ESD, | |
4082 | 969 #endif |
4430 | 970 #ifdef ARTSC_SOUND |
971 "ArtsC", OPT_SOUND_ARTSC, | |
972 #endif | |
973 #ifdef NAS_SOUND | |
974 "NAS", OPT_SOUND_NAS, | |
975 #endif | |
976 _("Internal"), OPT_SOUND_NORMAL, | |
4114 | 977 _("Command"), OPT_SOUND_CMD, NULL); |
3427 | 978 gtk_size_group_add_widget(sg, dd); |
979 gtk_misc_set_alignment(GTK_MISC(dd), 0, 0); | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
980 |
1813
998a6a032874
[gaim-migrate @ 1823]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1805
diff
changeset
|
981 hbox = gtk_hbox_new(FALSE, 5); |
998a6a032874
[gaim-migrate @ 1823]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1805
diff
changeset
|
982 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 5); |
3427 | 983 |
3366 | 984 hbox = gtk_hbox_new(FALSE, 5); |
985 gtk_container_add(GTK_CONTAINER(vbox), hbox); | |
3500 | 986 label = gtk_label_new_with_mnemonic(_("Sound c_ommand\n(%s for filename)")); |
3427 | 987 gtk_size_group_add_widget(sg, label); |
988 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
3366 | 989 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
|
990 |
3366 | 991 sndcmd = gtk_entry_new(); |
3427 | 992 gtk_label_set_mnemonic_widget(GTK_LABEL(label), sndcmd); |
1813
998a6a032874
[gaim-migrate @ 1823]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1805
diff
changeset
|
993 |
3366 | 994 gtk_entry_set_editable(GTK_ENTRY(sndcmd), TRUE); |
995 gtk_entry_set_text(GTK_ENTRY(sndcmd), sound_cmd); | |
996 gtk_widget_set_size_request(sndcmd, 75, -1); | |
3427 | 997 |
3818 | 998 gtk_widget_set_sensitive(sndcmd, (sound_options & OPT_SOUND_CMD)); |
3366 | 999 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
|
1000 g_signal_connect(GTK_OBJECT(sndcmd), "changed", G_CALLBACK(sound_cmd_yeah), NULL); |
3630 | 1001 #endif /* _WIN32 */ |
3427 | 1002 gtk_widget_show_all(ret); |
3366 | 1003 return ret; |
2262
9c8f353331e7
[gaim-migrate @ 2272]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2254
diff
changeset
|
1004 } |
9c8f353331e7
[gaim-migrate @ 2272]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2254
diff
changeset
|
1005 |
3366 | 1006 GtkWidget *away_page() { |
1007 GtkWidget *ret; | |
2262
9c8f353331e7
[gaim-migrate @ 2272]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2254
diff
changeset
|
1008 GtkWidget *vbox; |
9c8f353331e7
[gaim-migrate @ 2272]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2254
diff
changeset
|
1009 GtkWidget *hbox; |
3366 | 1010 GtkWidget *label; |
2262
9c8f353331e7
[gaim-migrate @ 2272]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2254
diff
changeset
|
1011 GtkWidget *button; |
3366 | 1012 GtkWidget *select; |
3427 | 1013 GtkWidget *dd; |
1014 GtkSizeGroup *sg; | |
2262
9c8f353331e7
[gaim-migrate @ 2272]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2254
diff
changeset
|
1015 |
3427 | 1016 ret = gtk_vbox_new(FALSE, 18); |
1017 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
2262
9c8f353331e7
[gaim-migrate @ 2272]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2254
diff
changeset
|
1018 |
3427 | 1019 sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); |
1813
998a6a032874
[gaim-migrate @ 1823]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1805
diff
changeset
|
1020 |
3427 | 1021 vbox = make_frame (ret, _("Away")); |
3818 | 1022 gaim_button(_("_Sending messages removes away status"), &away_options, OPT_AWAY_BACK_ON_IM, vbox); |
1023 gaim_button(_("_Queue new messages when away"), &away_options, OPT_AWAY_QUEUE, vbox); | |
1024 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
|
1025 |
3427 | 1026 vbox = make_frame (ret, _("Auto-response")); |
3366 | 1027 hbox = gtk_hbox_new(FALSE, 0); |
1028 gtk_container_add(GTK_CONTAINER(vbox), hbox); | |
3427 | 1029 gaim_labeled_spin_button(hbox, _("Seconds before _resending:"), |
3818 | 1030 &away_resend, 1, 24 * 60 * 60, sg); |
1031 gaim_button(_("_Don't send auto-response"), &away_options, OPT_AWAY_NO_AUTO_RESP, vbox); | |
1032 gaim_button(_("_Only send auto-response when idle"), &away_options, OPT_AWAY_IDLE_RESP, vbox); | |
1033 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
|
1034 |
3818 | 1035 if (away_options & OPT_AWAY_NO_AUTO_RESP) |
3366 | 1036 gtk_widget_set_sensitive(hbox, FALSE); |
3500 | 1037 |
3427 | 1038 vbox = make_frame (ret, _("Idle")); |
4052 | 1039 dd = gaim_dropdown(vbox, _("Idle _time reporting:"), &report_idle, -1, |
1040 _("None"), IDLE_NONE, | |
1041 _("Gaim usage"), IDLE_GAIM, | |
3366 | 1042 #ifdef USE_SCREENSAVER |
3905
3e508dd31b76
[gaim-migrate @ 4058]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3902
diff
changeset
|
1043 #ifndef _WIN32 |
4052 | 1044 _("X usage"), IDLE_SCREENSAVER, |
3905
3e508dd31b76
[gaim-migrate @ 4058]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3902
diff
changeset
|
1045 #else |
4052 | 1046 _("Windows usage"), IDLE_SCREENSAVER, |
3905
3e508dd31b76
[gaim-migrate @ 4058]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3902
diff
changeset
|
1047 #endif |
3366 | 1048 #endif |
3427 | 1049 NULL); |
1050 gtk_size_group_add_widget(sg, dd); | |
1051 gtk_misc_set_alignment(GTK_MISC(dd), 0, 0); | |
2385
bdc74764245c
[gaim-migrate @ 2398]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2372
diff
changeset
|
1052 |
3427 | 1053 vbox = make_frame (ret, _("Auto-away")); |
3818 | 1054 button = gaim_button(_("Set away _when idle"), &away_options, OPT_AWAY_AUTO, vbox); |
4052 | 1055 select = gaim_labeled_spin_button(vbox, _("_Minutes before setting away:"), &auto_away, 1, 24 * 60, sg); |
3818 | 1056 if (!(away_options & OPT_AWAY_AUTO)) |
3366 | 1057 gtk_widget_set_sensitive(GTK_WIDGET(select), FALSE); |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
1058 g_signal_connect(GTK_OBJECT(button), "clicked", |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
1059 G_CALLBACK(gaim_gtk_toggle_sensitive), select); |
1 | 1060 |
4052 | 1061 label = gtk_label_new_with_mnemonic(_("Away m_essage:")); |
3427 | 1062 gtk_size_group_add_widget(sg, label); |
1063 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
3366 | 1064 hbox = gtk_hbox_new(FALSE, 0); |
1065 gtk_container_add(GTK_CONTAINER(vbox), hbox); | |
1066 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); | |
1067 prefs_away_menu = gtk_option_menu_new(); | |
3427 | 1068 gtk_label_set_mnemonic_widget(GTK_LABEL(label), prefs_away_menu); |
3818 | 1069 if (!(away_options & OPT_AWAY_AUTO)) |
3366 | 1070 gtk_widget_set_sensitive(GTK_WIDGET(prefs_away_menu), FALSE); |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
1071 g_signal_connect(GTK_OBJECT(button), "clicked", |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
1072 G_CALLBACK(gaim_gtk_toggle_sensitive), prefs_away_menu); |
3366 | 1073 default_away_menu_init(prefs_away_menu); |
1074 gtk_widget_show(prefs_away_menu); | |
1075 gtk_box_pack_start(GTK_BOX(hbox), prefs_away_menu, FALSE, FALSE, 0); | |
3500 | 1076 |
3427 | 1077 gtk_widget_show_all(ret); |
3366 | 1078 return ret; |
873
789df4b47508
[gaim-migrate @ 883]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
864
diff
changeset
|
1079 } |
789df4b47508
[gaim-migrate @ 883]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
864
diff
changeset
|
1080 |
3551 | 1081 #if USE_PLUGINS |
1082 GtkWidget *plugin_description=NULL, *plugin_details=NULL; | |
1083 static void prefs_plugin_sel (GtkTreeSelection *sel, GtkTreeModel *model) | |
1084 { | |
1085 gchar buf[1024]; | |
1086 GtkTreeIter iter; | |
1087 GValue val = { 0, }; | |
1088 struct gaim_plugin *plug; | |
1089 | |
1090 if (! gtk_tree_selection_get_selected (sel, &model, &iter)) | |
1091 return; | |
1092 gtk_tree_model_get_value (model, &iter, 2, &val); | |
1093 plug = g_value_get_pointer(&val); | |
1094 | |
3563 | 1095 if (plug->error[0]) |
4309 | 1096 g_snprintf(buf, sizeof(buf), "<span size=\"larger\">%s %s</span>\n\n" |
3563 | 1097 "<span weight=\"bold\" color=\"red\">%s</span>\n\n" |
4309 | 1098 "%s", plug->desc.name, plug->desc.version, plug->error, plug->desc.description); |
3563 | 1099 else |
4309 | 1100 g_snprintf(buf, sizeof(buf), "<span size=\"larger\">%s %s</span>\n\n" |
1101 "%s", plug->desc.name, plug->desc.version, plug->desc.description); | |
3551 | 1102 gtk_label_set_markup(GTK_LABEL(plugin_description), buf); |
3630 | 1103 g_snprintf(buf, sizeof(buf), |
1104 #ifndef _WIN32 | |
1105 _("<span size=\"larger\">%s %s</span>\n\n" | |
1106 "<span weight=\"bold\">Written by:</span>\t%s\n" | |
1107 "<span weight=\"bold\">URL:</span>\t%s\n" | |
1108 "<span weight=\"bold\">File name:</span>\t%s"), | |
1109 #else | |
1110 _("<span size=\"larger\">%s %s</span>\n\n" | |
1111 "<span weight=\"bold\">Written by:</span> %s\n" | |
1112 "<span weight=\"bold\">URL:</span> %s\n" | |
1113 "<span weight=\"bold\">File name:</span> %s"), | |
1114 #endif | |
3551 | 1115 plug->desc.name, plug->desc.version, plug->desc.authors, plug->desc.url, plug->path); |
1116 gtk_label_set_markup(GTK_LABEL(plugin_details), buf); | |
1117 g_value_unset (&val); | |
1118 } | |
1119 | |
1120 static void plugin_load (GtkCellRendererToggle *cell, gchar *pth, gpointer data) | |
1121 { | |
1122 GtkTreeModel *model = (GtkTreeModel *)data; | |
1123 GtkTreeIter iter; | |
1124 GtkTreePath *path = gtk_tree_path_new_from_string(pth); | |
1125 struct gaim_plugin *plug; | |
1126 gchar buf[1024]; | |
3565 | 1127 GtkWidget *(*config)(); |
1128 | |
3551 | 1129 GdkCursor *wait = gdk_cursor_new (GDK_WATCH); |
1130 gdk_window_set_cursor(prefs->window, wait); | |
1131 gdk_cursor_unref(wait); | |
1132 | |
1133 gtk_tree_model_get_iter (model, &iter, path); | |
1134 gtk_tree_model_get (model, &iter, 2, &plug, -1); | |
1135 | |
1136 if (!plug->handle) | |
1137 | |
1138 if (plug->type == plugin) | |
1139 #ifdef GAIM_PLUGINS | |
3565 | 1140 { |
1141 load_plugin(plug->path); | |
1142 if (g_module_symbol(plug->handle, "gaim_plugin_config_gtk", (gpointer *)&config)) { | |
1143 plug->iter = g_new0(GtkTreeIter, 1); | |
1144 prefs_notebook_add_page(plug->desc.name, NULL, config(), plug->iter, &plugin_iter, notebook_page++); | |
3567 | 1145 if (gtk_tree_model_iter_n_children(GTK_TREE_MODEL(prefstree), &plugin_iter) == 1) { |
1146 /* Expand the tree for the first plugin added */ | |
3630 | 1147 GtkTreePath *path2 = gtk_tree_model_get_path(GTK_TREE_MODEL(prefstree), &plugin_iter); |
3567 | 1148 gtk_tree_view_expand_row(GTK_TREE_VIEW(tree_v), path2, TRUE); |
1149 gtk_tree_path_free (path2); | |
1150 } | |
3565 | 1151 } |
1152 } | |
3551 | 1153 #else |
1154 {} | |
1155 #endif | |
1156 else | |
1157 #ifdef USE_PERL | |
1158 perl_load_file(plug->path); | |
1159 #else | |
1160 {} | |
1161 #endif | |
1162 else | |
1163 if (plug->type == plugin) | |
1164 #ifdef GAIM_PLUGINS | |
3565 | 1165 { |
1166 unload_plugin(plug); | |
1167 if (plug->iter) { | |
1168 gtk_tree_store_remove(GTK_TREE_STORE(prefstree), plug->iter); | |
1169 g_free(plug->iter); | |
1170 plug->iter = NULL; | |
1171 } | |
1172 } | |
3551 | 1173 #else |
1174 {} | |
1175 #endif | |
1176 else | |
1177 #ifdef USE_PERL | |
1178 perl_unload_file(plug); | |
1179 #else | |
1180 {} | |
1181 #endif | |
1182 gdk_window_set_cursor(prefs->window, NULL); | |
3563 | 1183 if (plug->error[0]) |
4309 | 1184 g_snprintf(buf, sizeof(buf), "<span size=\"larger\">%s %s</span>\n\n" |
3563 | 1185 "<span weight=\"bold\" color=\"red\">%s</span>\n\n" |
4309 | 1186 "%s", plug->desc.name, plug->desc.version, plug->error, plug->desc.description); |
3563 | 1187 else |
4309 | 1188 g_snprintf(buf, sizeof(buf), "<span size=\"larger\">%s %s</span>\n\n" |
1189 "%s", plug->desc.name, plug->desc.version, plug->desc.description); | |
3563 | 1190 gtk_label_set_markup(GTK_LABEL(plugin_description), buf); |
3551 | 1191 gtk_list_store_set (GTK_LIST_STORE (model), &iter, 0, plug->handle, -1); |
3563 | 1192 |
3551 | 1193 gtk_label_set_markup(GTK_LABEL(plugin_description), buf); |
1194 gtk_tree_path_free(path); | |
1195 } | |
1196 | |
1197 static GtkWidget *plugin_page () | |
1198 { | |
1199 GtkWidget *ret; | |
1200 | |
1201 GtkWidget *sw, *vp; | |
1202 GtkTreeIter iter; | |
1203 GtkWidget *event_view; | |
1204 GtkListStore *ls; | |
1205 GtkCellRenderer *rend, *rendt; | |
1206 GtkTreeViewColumn *col; | |
1207 GtkTreeSelection *sel; | |
1208 GtkTreePath *path; | |
1209 | |
1210 GtkWidget *nb; | |
1211 | |
1212 GList *probes = probed_plugins; | |
1213 struct gaim_plugin *plug; | |
1214 | |
1215 ret = gtk_vbox_new(FALSE, 18); | |
1216 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
1217 | |
1218 sw = gtk_scrolled_window_new(NULL,NULL); | |
1219 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), GTK_POLICY_NEVER, GTK_POLICY_ALWAYS); | |
1220 gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_IN); | |
1221 | |
1222 gtk_box_pack_start(GTK_BOX(ret), sw, TRUE, TRUE, 0); | |
1223 | |
1224 ls = gtk_list_store_new (3, G_TYPE_BOOLEAN, G_TYPE_STRING, G_TYPE_POINTER); | |
1225 while (probes) { | |
1226 plug = probes->data; | |
1227 gtk_list_store_append (ls, &iter); | |
1228 gtk_list_store_set(ls, &iter, | |
1229 0, plug->handle, | |
1230 1, plug->desc.name ? plug->desc.name : plug->path, | |
1231 2, plug, -1); | |
1232 probes = probes->next; | |
1233 } | |
1234 | |
1235 event_view = gtk_tree_view_new_with_model (GTK_TREE_MODEL(ls)); | |
1236 | |
1237 rend = gtk_cell_renderer_toggle_new(); | |
1238 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (event_view)); | |
1239 | |
1240 | |
4295 | 1241 col = gtk_tree_view_column_new_with_attributes (_("Load"), |
3551 | 1242 rend, |
1243 "active", 0, | |
1244 NULL); | |
1245 gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col); | |
1246 | |
1247 rendt = gtk_cell_renderer_text_new(); | |
4295 | 1248 col = gtk_tree_view_column_new_with_attributes (_("Name"), |
3551 | 1249 rendt, |
1250 "text", 1, | |
1251 NULL); | |
1252 gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col); | |
1253 g_object_unref(G_OBJECT(ls)); | |
1254 gtk_container_add(GTK_CONTAINER(sw), event_view); | |
1255 | |
1256 | |
1257 nb = gtk_notebook_new(); | |
1258 gtk_notebook_set_tab_pos (GTK_NOTEBOOK(nb), GTK_POS_BOTTOM); | |
1259 gtk_notebook_popup_disable(GTK_NOTEBOOK(nb)); | |
1260 | |
1261 /* Description */ | |
1262 sw = gtk_scrolled_window_new(NULL, NULL); | |
1263 gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW(sw), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); | |
1264 plugin_description = gtk_label_new(NULL); | |
1265 | |
1266 vp = gtk_viewport_new(NULL, NULL); | |
3630 | 1267 gtk_viewport_set_shadow_type(GTK_VIEWPORT(vp), GTK_SHADOW_NONE); |
3551 | 1268 gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_NONE); |
1269 | |
3630 | 1270 gtk_container_add(GTK_CONTAINER(vp), plugin_description); |
1271 gtk_container_add(GTK_CONTAINER(sw), vp); | |
3551 | 1272 |
3630 | 1273 gtk_label_set_selectable(GTK_LABEL(plugin_description), TRUE); |
1274 gtk_label_set_line_wrap(GTK_LABEL(plugin_description), TRUE); | |
3551 | 1275 gtk_misc_set_alignment(GTK_MISC(plugin_description), 0, 0); |
1276 gtk_misc_set_padding(GTK_MISC(plugin_description), 6, 6); | |
1277 gtk_notebook_append_page(GTK_NOTEBOOK(nb), sw, gtk_label_new(_("Description"))); | |
1278 | |
1279 /* Details */ | |
1280 sw = gtk_scrolled_window_new(NULL, NULL); | |
1281 gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW(sw), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); | |
1282 plugin_details = gtk_label_new(NULL); | |
1283 | |
1284 vp = gtk_viewport_new(NULL, NULL); | |
3630 | 1285 gtk_viewport_set_shadow_type(GTK_VIEWPORT(vp), GTK_SHADOW_NONE); |
3551 | 1286 gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_NONE); |
1287 | |
3630 | 1288 gtk_container_add(GTK_CONTAINER(vp), plugin_details); |
1289 gtk_container_add(GTK_CONTAINER(sw), vp); | |
3551 | 1290 |
3630 | 1291 gtk_label_set_selectable(GTK_LABEL(plugin_details), TRUE); |
1292 gtk_label_set_line_wrap(GTK_LABEL(plugin_details), TRUE); | |
3551 | 1293 gtk_misc_set_alignment(GTK_MISC(plugin_details), 0, 0); |
1294 gtk_misc_set_padding(GTK_MISC(plugin_details), 6, 6); | |
1295 gtk_notebook_append_page(GTK_NOTEBOOK(nb), sw, gtk_label_new(_("Details"))); | |
1296 gtk_box_pack_start(GTK_BOX(ret), nb, TRUE, TRUE, 0); | |
1297 | |
1298 g_signal_connect (G_OBJECT (sel), "changed", | |
1299 G_CALLBACK (prefs_plugin_sel), | |
1300 NULL); | |
1301 g_signal_connect (G_OBJECT(rend), "toggled", | |
1302 G_CALLBACK(plugin_load), ls); | |
1303 | |
1304 path = gtk_tree_path_new_first(); | |
1305 gtk_tree_selection_select_path(sel, path); | |
1306 gtk_tree_path_free(path); | |
1307 | |
1308 gtk_widget_show_all(ret); | |
1309 return ret; | |
1310 } | |
1311 #endif | |
1312 | |
3366 | 1313 static void event_toggled (GtkCellRendererToggle *cell, gchar *pth, gpointer data) |
873
789df4b47508
[gaim-migrate @ 883]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
864
diff
changeset
|
1314 { |
3366 | 1315 GtkTreeModel *model = (GtkTreeModel *)data; |
1316 GtkTreeIter iter; | |
1317 GtkTreePath *path = gtk_tree_path_new_from_string(pth); | |
3500 | 1318 gint soundnum; |
3366 | 1319 |
1320 gtk_tree_model_get_iter (model, &iter, path); | |
1321 gtk_tree_model_get (model, &iter, 2, &soundnum, -1); | |
873
789df4b47508
[gaim-migrate @ 883]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
864
diff
changeset
|
1322 |
3818 | 1323 sound_options ^= sounds[soundnum].opt; |
1324 gtk_list_store_set (GTK_LIST_STORE (model), &iter, 0, sound_options & sounds[soundnum].opt, -1); | |
3522 | 1325 |
1326 gtk_tree_path_free(path); | |
3366 | 1327 } |
1328 | |
1329 static void test_sound(GtkWidget *button, gpointer i_am_NULL) | |
1330 { | |
1331 guint32 tmp_sound = sound_options; | |
1332 if (!(sound_options & OPT_SOUND_WHEN_AWAY)) | |
1333 sound_options ^= OPT_SOUND_WHEN_AWAY; | |
1334 if (!(sound_options & sounds[sound_row_sel].opt)) | |
1335 sound_options ^= sounds[sound_row_sel].opt; | |
1336 play_sound(sound_row_sel); | |
3500 | 1337 |
3366 | 1338 sound_options = tmp_sound; |
873
789df4b47508
[gaim-migrate @ 883]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
864
diff
changeset
|
1339 } |
789df4b47508
[gaim-migrate @ 883]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
864
diff
changeset
|
1340 |
3366 | 1341 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
|
1342 { |
3366 | 1343 /* This just resets a sound file back to default */ |
3818 | 1344 if (sound_file[sound_row_sel]) { |
1345 g_free(sound_file[sound_row_sel]); | |
1346 sound_file[sound_row_sel] = NULL; | |
3485 | 1347 } |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1348 |
3366 | 1349 gtk_entry_set_text(GTK_ENTRY(sound_entry), "(default)"); |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1350 } |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1351 |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1352 void close_sounddialog(GtkWidget *w, GtkWidget *w2) |
1170 | 1353 { |
1354 | |
1355 GtkWidget *dest; | |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1356 |
1170 | 1357 if (!GTK_IS_WIDGET(w2)) |
1358 dest = w; | |
1359 else | |
1360 dest = w2; | |
1361 | |
1362 sounddialog = NULL; | |
1363 | |
1364 gtk_widget_destroy(dest); | |
1365 } | |
1366 | |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1367 void do_select_sound(GtkWidget *w, int snd) |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1368 { |
1953
f0ff0b367e3d
[gaim-migrate @ 1963]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1930
diff
changeset
|
1369 const char *file; |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1370 |
1170 | 1371 file = gtk_file_selection_get_filename(GTK_FILE_SELECTION(sounddialog)); |
1372 | |
1373 /* If they type in a directory, change there */ | |
1374 if (file_is_dir(file, sounddialog)) | |
1375 return; | |
1376 | |
1377 /* Let's just be safe */ | |
3818 | 1378 if (sound_file[snd]) |
1379 g_free(sound_file[snd]); | |
1170 | 1380 |
1381 /* Set it -- and forget it */ | |
3818 | 1382 sound_file[snd] = g_strdup(file); |
3500 | 1383 |
1175 | 1384 /* Set our text entry */ |
3818 | 1385 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
|
1386 |
1170 | 1387 /* Close the window! It's getting cold in here! */ |
1388 close_sounddialog(NULL, sounddialog); | |
2471
612efbf62c35
[gaim-migrate @ 2484]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2385
diff
changeset
|
1389 |
612efbf62c35
[gaim-migrate @ 2484]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2385
diff
changeset
|
1390 if (last_sound_dir) |
612efbf62c35
[gaim-migrate @ 2484]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2385
diff
changeset
|
1391 g_free(last_sound_dir); |
3818 | 1392 last_sound_dir = g_dirname(sound_file[snd]); |
1170 | 1393 } |
1394 | |
3366 | 1395 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
|
1396 { |
1170 | 1397 char *buf = g_malloc(BUF_LEN); |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1398 |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1399 if (!sounddialog) { |
1170 | 1400 sounddialog = gtk_file_selection_new(_("Gaim - Sound Configuration")); |
1401 | |
1402 gtk_file_selection_hide_fileop_buttons(GTK_FILE_SELECTION(sounddialog)); | |
1403 | |
3630 | 1404 g_snprintf(buf, BUF_LEN - 1, "%s" G_DIR_SEPARATOR_S, last_sound_dir ? last_sound_dir : gaim_home_dir()); |
1170 | 1405 |
1406 gtk_file_selection_set_filename(GTK_FILE_SELECTION(sounddialog), buf); | |
1407 | |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1408 g_signal_connect(GTK_OBJECT(sounddialog), "destroy", |
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1409 G_CALLBACK(close_sounddialog), sounddialog); |
1170 | 1410 |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1411 g_signal_connect(GTK_OBJECT(GTK_FILE_SELECTION(sounddialog)->ok_button), |
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1412 "clicked", G_CALLBACK(do_select_sound), (int *)sound_row_sel); |
1170 | 1413 |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1414 g_signal_connect(GTK_OBJECT(GTK_FILE_SELECTION(sounddialog)->cancel_button), |
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1415 "clicked", G_CALLBACK(close_sounddialog), sounddialog); |
1170 | 1416 } |
1417 | |
1418 g_free(buf); | |
1419 gtk_widget_show(sounddialog); | |
1420 gdk_window_raise(sounddialog->window); | |
1006
0a4d0ed65e17
[gaim-migrate @ 1016]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1002
diff
changeset
|
1421 } |
0a4d0ed65e17
[gaim-migrate @ 1016]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1002
diff
changeset
|
1422 |
3366 | 1423 |
1424 static void prefs_sound_sel (GtkTreeSelection *sel, GtkTreeModel *model) { | |
1425 GtkTreeIter iter; | |
1426 GValue val = { 0, }; | |
3500 | 1427 |
3366 | 1428 if (! gtk_tree_selection_get_selected (sel, &model, &iter)) |
1429 return; | |
1430 gtk_tree_model_get_value (model, &iter, 2, &val); | |
1431 sound_row_sel = g_value_get_uint(&val); | |
1432 if (sound_entry) | |
3818 | 1433 gtk_entry_set_text(GTK_ENTRY(sound_entry), sound_file[sound_row_sel] ? sound_file[sound_row_sel] : "(default)"); |
3366 | 1434 g_value_unset (&val); |
1435 if (sounddialog) | |
1436 gtk_widget_destroy(sounddialog); | |
1437 } | |
1438 | |
1439 GtkWidget *sound_events_page() { | |
1440 | |
1441 GtkWidget *ret; | |
1442 GtkWidget *sw; | |
1443 GtkWidget *button, *hbox; | |
1444 GtkTreeIter iter; | |
1445 GtkWidget *event_view; | |
1446 GtkListStore *event_store; | |
1447 GtkCellRenderer *rend; | |
1448 GtkTreeViewColumn *col; | |
1449 GtkTreeSelection *sel; | |
1450 GtkTreePath *path; | |
1451 int j; | |
1452 | |
3427 | 1453 ret = gtk_vbox_new(FALSE, 18); |
1454 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
3366 | 1455 |
1456 sw = gtk_scrolled_window_new(NULL,NULL); | |
1457 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); | |
3814 | 1458 gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_IN); |
1459 | |
3427 | 1460 gtk_box_pack_start(GTK_BOX(ret), sw, TRUE, TRUE, 0); |
3366 | 1461 event_store = gtk_list_store_new (3, G_TYPE_BOOLEAN, G_TYPE_STRING, G_TYPE_UINT); |
1462 | |
1463 for (j=0; j < NUM_SOUNDS; j++) { | |
1464 if (sounds[j].opt == 0) | |
1465 continue; | |
3500 | 1466 |
3366 | 1467 gtk_list_store_append (event_store, &iter); |
1468 gtk_list_store_set(event_store, &iter, | |
1469 0, sound_options & sounds[j].opt, | |
4114 | 1470 1, gettext(sounds[j].label), |
3366 | 1471 2, j, -1); |
1472 } | |
1473 | |
1474 event_view = gtk_tree_view_new_with_model (GTK_TREE_MODEL(event_store)); | |
3500 | 1475 |
3366 | 1476 rend = gtk_cell_renderer_toggle_new(); |
1477 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (event_view)); | |
1478 g_signal_connect (G_OBJECT (sel), "changed", | |
1479 G_CALLBACK (prefs_sound_sel), | |
1480 NULL); | |
1481 g_signal_connect (G_OBJECT(rend), "toggled", | |
1482 G_CALLBACK(event_toggled), event_store); | |
1483 path = gtk_tree_path_new_first(); | |
1484 gtk_tree_selection_select_path(sel, path); | |
3522 | 1485 gtk_tree_path_free(path); |
3500 | 1486 |
4295 | 1487 col = gtk_tree_view_column_new_with_attributes (_("Play"), |
3366 | 1488 rend, |
1489 "active", 0, | |
1490 NULL); | |
1491 gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col); | |
1492 | |
1493 rend = gtk_cell_renderer_text_new(); | |
4295 | 1494 col = gtk_tree_view_column_new_with_attributes (_("Event"), |
3366 | 1495 rend, |
1496 "text", 1, | |
1497 NULL); | |
1498 gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col); | |
3500 | 1499 g_object_unref(G_OBJECT(event_store)); |
3366 | 1500 gtk_container_add(GTK_CONTAINER(sw), event_view); |
1501 | |
3427 | 1502 hbox = gtk_hbox_new(FALSE, 6); |
1503 gtk_box_pack_start(GTK_BOX(ret), hbox, FALSE, FALSE, 0); | |
3366 | 1504 sound_entry = gtk_entry_new(); |
3818 | 1505 gtk_entry_set_text(GTK_ENTRY(sound_entry), sound_file[0] ? sound_file[0] : "(default)"); |
3366 | 1506 gtk_entry_set_editable(GTK_ENTRY(sound_entry), FALSE); |
1507 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
|
1508 |
3025 | 1509 button = gtk_button_new_with_label(_("Test")); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1510 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(test_sound), NULL); |
3366 | 1511 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
|
1512 |
1175 | 1513 button = gtk_button_new_with_label(_("Reset")); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1514 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(reset_sound), NULL); |
3366 | 1515 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 1); |
1175 | 1516 |
1381 | 1517 button = gtk_button_new_with_label(_("Choose...")); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1518 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(sel_sound), NULL); |
3366 | 1519 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 1); |
3500 | 1520 |
3427 | 1521 gtk_widget_show_all (ret); |
1006
0a4d0ed65e17
[gaim-migrate @ 1016]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1002
diff
changeset
|
1522 |
3366 | 1523 return ret; |
2580
86eaeb064e82
[gaim-migrate @ 2593]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2566
diff
changeset
|
1524 } |
86eaeb064e82
[gaim-migrate @ 2593]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2566
diff
changeset
|
1525 |
3366 | 1526 void away_message_sel(GtkTreeSelection *sel, GtkTreeModel *model) |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1527 { |
3366 | 1528 GtkTreeIter iter; |
1529 GValue val = { 0, }; | |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1530 gchar buffer[BUF_LONG]; |
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1531 char *tmp; |
3374 | 1532 struct away_message *am; |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1533 |
3366 | 1534 if (! gtk_tree_selection_get_selected (sel, &model, &iter)) |
1535 return; | |
1536 gtk_tree_model_get_value (model, &iter, 1, &val); | |
3374 | 1537 am = g_value_get_pointer(&val); |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1538 gtk_imhtml_clear(GTK_IMHTML(away_text)); |
3374 | 1539 strncpy(buffer, am->message, BUF_LONG); |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1540 tmp = stylize(buffer, BUF_LONG); |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2843
diff
changeset
|
1541 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
|
1542 GTK_IMHTML_NO_COMMENTS | GTK_IMHTML_NO_SCROLL); |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2843
diff
changeset
|
1543 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
|
1544 GTK_IMHTML_NO_COMMENTS | GTK_IMHTML_NO_SCROLL); |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1545 g_free(tmp); |
3366 | 1546 g_value_unset (&val); |
3500 | 1547 |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1548 } |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1549 |
3500 | 1550 void remove_away_message(GtkWidget *widget, GtkTreeView *tv) { |
3366 | 1551 struct away_message *am; |
1552 GtkTreeIter iter; | |
1553 GtkTreePath *path; | |
1554 GtkTreeStore *ts = GTK_TREE_STORE(gtk_tree_view_get_model(tv)); | |
1555 GtkTreeSelection *sel = gtk_tree_view_get_selection(tv); | |
3379 | 1556 GtkTreeModel *model = GTK_TREE_MODEL(prefs_away_store); |
3366 | 1557 GValue val = { 0, }; |
3500 | 1558 |
3379 | 1559 if (! gtk_tree_selection_get_selected (sel, &model, &iter)) |
3366 | 1560 return; |
3379 | 1561 gtk_tree_model_get_value (GTK_TREE_MODEL(prefs_away_store), &iter, 1, &val); |
3366 | 1562 am = g_value_get_pointer (&val); |
1563 gtk_imhtml_clear(GTK_IMHTML(away_text)); | |
1564 rem_away_mess(NULL, am); | |
3379 | 1565 gtk_list_store_remove(GTK_LIST_STORE(ts), &iter); |
1566 path = gtk_tree_path_new_first(); | |
3366 | 1567 gtk_tree_selection_select_path(sel, path); |
3522 | 1568 gtk_tree_path_free(path); |
1109
c73736fa0b7c
[gaim-migrate @ 1119]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1087
diff
changeset
|
1569 } |
c73736fa0b7c
[gaim-migrate @ 1119]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1087
diff
changeset
|
1570 |
3366 | 1571 GtkWidget *away_message_page() { |
1572 GtkWidget *ret; | |
3427 | 1573 GtkWidget *hbox; |
3379 | 1574 GtkWidget *button; |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1575 GtkWidget *sw; |
3366 | 1576 GtkTreeIter iter; |
1577 GtkWidget *event_view; | |
1578 GtkCellRenderer *rend; | |
1579 GtkTreeViewColumn *col; | |
1580 GtkTreeSelection *sel; | |
940 | 1581 GSList *awy = away_messages; |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1582 struct away_message *a; |
3366 | 1583 GtkWidget *sw2; |
3427 | 1584 GtkSizeGroup *sg; |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1585 |
3427 | 1586 ret = gtk_vbox_new(FALSE, 18); |
1587 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
1588 | |
1589 sg = gtk_size_group_new(GTK_SIZE_GROUP_BOTH); | |
3500 | 1590 |
3366 | 1591 sw = gtk_scrolled_window_new(NULL,NULL); |
1592 away_text = gtk_imhtml_new(NULL, NULL); | |
3427 | 1593 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), GTK_POLICY_NEVER, GTK_POLICY_ALWAYS); |
3817 | 1594 /* |
1595 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_IN); | |
1596 */ | |
3427 | 1597 gtk_box_pack_start(GTK_BOX(ret), sw, TRUE, TRUE, 0); |
3500 | 1598 |
3374 | 1599 prefs_away_store = gtk_list_store_new (2, G_TYPE_STRING, G_TYPE_POINTER); |
3366 | 1600 while (awy) { |
1601 a = (struct away_message *)awy->data; | |
1602 gtk_list_store_append (prefs_away_store, &iter); | |
1603 gtk_list_store_set(prefs_away_store, &iter, | |
3374 | 1604 0, a->name, |
1605 1, a, -1); | |
3366 | 1606 awy = awy->next; |
1607 } | |
1608 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
|
1609 |
2906
538c58b43eff
[gaim-migrate @ 2919]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2856
diff
changeset
|
1610 |
3366 | 1611 rend = gtk_cell_renderer_text_new(); |
1612 col = gtk_tree_view_column_new_with_attributes ("NULL", | |
1613 rend, | |
1614 "text", 0, | |
1615 NULL); | |
1616 gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col); | |
1617 gtk_tree_view_set_headers_visible (GTK_TREE_VIEW(event_view), FALSE); | |
1618 gtk_widget_show(event_view); | |
3427 | 1619 gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(sw), event_view); |
3374 | 1620 |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1621 sw2 = gtk_scrolled_window_new(NULL, NULL); |
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1622 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw2), |
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1773
diff
changeset
|
1623 GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); |
3427 | 1624 gtk_box_pack_start(GTK_BOX(ret), sw2, TRUE, TRUE, 0); |
3500 | 1625 |
3427 | 1626 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
|
1627 gaim_setup_imhtml(away_text); |
3366 | 1628 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (event_view)); |
1629 g_signal_connect (G_OBJECT (sel), "changed", | |
1630 G_CALLBACK (away_message_sel), | |
1631 NULL); | |
1632 hbox = gtk_hbox_new(TRUE, 5); | |
3427 | 1633 gtk_box_pack_start(GTK_BOX(ret), hbox, FALSE, FALSE, 0); |
3366 | 1634 button = gtk_button_new_from_stock (GTK_STOCK_ADD); |
1635 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
3427 | 1636 gtk_size_group_add_widget(sg, button); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1637 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(create_away_mess), NULL); |
3472 | 1638 |
3366 | 1639 button = gtk_button_new_from_stock (GTK_STOCK_REMOVE); |
3427 | 1640 gtk_size_group_add_widget(sg, button); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1641 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(remove_away_message), event_view); |
3472 | 1642 |
3366 | 1643 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); |
3472 | 1644 |
3649 | 1645 button = gaim_pixbuf_button(_("_Edit"), "edit.png", GAIM_BUTTON_HORIZONTAL); |
3427 | 1646 gtk_size_group_add_widget(sg, button); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1647 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(create_away_mess), event_view); |
3366 | 1648 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); |
3500 | 1649 |
3427 | 1650 gtk_widget_show_all(ret); |
3366 | 1651 return ret; |
1652 } | |
3472 | 1653 |
3500 | 1654 GtkTreeIter *prefs_notebook_add_page(char *text, |
1655 GdkPixbuf *pixbuf, | |
1656 GtkWidget *page, | |
3366 | 1657 GtkTreeIter *iter, |
3500 | 1658 GtkTreeIter *parent, |
3366 | 1659 int ind) { |
1660 GdkPixbuf *icon = NULL; | |
3500 | 1661 |
3366 | 1662 if (pixbuf) |
3500 | 1663 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
|
1664 |
3366 | 1665 gtk_tree_store_append (prefstree, iter, parent); |
1666 gtk_tree_store_set (prefstree, iter, 0, icon, 1, text, 2, ind, -1); | |
3500 | 1667 |
3366 | 1668 if (pixbuf) |
1669 g_object_unref(pixbuf); | |
1670 if (icon) | |
1671 g_object_unref(icon); | |
1672 gtk_notebook_append_page(GTK_NOTEBOOK(prefsnotebook), page, gtk_label_new(text)); | |
1673 return iter; | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1674 } |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
1675 |
3366 | 1676 void prefs_notebook_init() { |
1677 GtkTreeIter p, c; | |
3565 | 1678 #if USE_PLUGINS |
1679 GtkWidget *(*config)(); | |
1680 GList *l = plugins; | |
1681 struct gaim_plugin *plug; | |
1682 #endif | |
1683 prefs_notebook_add_page(_("Interface"), NULL, interface_page(), &p, NULL, notebook_page++); | |
4288 | 1684 prefs_notebook_add_page(_("Themes"), NULL, theme_page(), &c, &p, notebook_page++); |
3565 | 1685 prefs_notebook_add_page(_("Fonts"), NULL, font_page(), &c, &p, notebook_page++); |
1686 prefs_notebook_add_page(_("Message Text"), NULL, messages_page(), &c, &p, notebook_page++); | |
1687 prefs_notebook_add_page(_("Shortcuts"), NULL, hotkeys_page(), &c, &p, notebook_page++); | |
1688 prefs_notebook_add_page(_("Buddy List"), NULL, list_page(), &c, &p, notebook_page++); | |
1689 prefs_notebook_add_page(_("IM Window"), NULL, im_page(), &c, &p, notebook_page++); | |
1690 prefs_notebook_add_page(_("Chat Window"), NULL, chat_page(), &c, &p, notebook_page++); | |
1691 prefs_notebook_add_page(_("Tabs"), NULL, tab_page(), &c, &p, notebook_page++); | |
1692 prefs_notebook_add_page(_("Proxy"), NULL, proxy_page(), &p, NULL, notebook_page++); | |
1693 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
|
1694 |
3565 | 1695 prefs_notebook_add_page(_("Logging"), NULL, logging_page(), &p, NULL, notebook_page++); |
1696 prefs_notebook_add_page(_("Sounds"), NULL, sound_page(), &p, NULL, notebook_page++); | |
1697 prefs_notebook_add_page(_("Sound Events"), NULL, sound_events_page(), &c, &p, notebook_page++); | |
1698 prefs_notebook_add_page(_("Away / Idle"), NULL, away_page(), &p, NULL, notebook_page++); | |
1699 prefs_notebook_add_page(_("Away Messages"), NULL, away_message_page(), &c, &p, notebook_page++); | |
3551 | 1700 #if USE_PLUGINS |
3565 | 1701 prefs_notebook_add_page(_("Plugins"), NULL, plugin_page(), &plugin_iter, NULL, notebook_page++); |
1702 while (l) { | |
1703 plug = l->data; | |
1704 if (plug->type == plugin && g_module_symbol(plug->handle, "gaim_plugin_config_gtk", (gpointer *)&config)) { | |
1705 plug->iter = g_new0(GtkTreeIter, 1); | |
1706 prefs_notebook_add_page(plug->desc.name, NULL, config(), plug->iter, &plugin_iter, notebook_page++); | |
1707 } | |
1708 l = l->next; | |
1709 } | |
3551 | 1710 #endif |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
1711 } |
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
1712 |
3500 | 1713 void show_prefs() |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
1714 { |
3366 | 1715 GtkWidget *vbox, *vbox2; |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
1716 GtkWidget *hbox; |
3366 | 1717 GtkWidget *frame; |
1718 GtkTreeViewColumn *column; | |
1719 GtkCellRenderer *cell; | |
1720 GtkTreeSelection *sel; | |
1721 GtkWidget *notebook; | |
1722 GtkWidget *sep; | |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
1723 GtkWidget *button; |
3515 | 1724 GtkSizeGroup *sg = gtk_size_group_new(GTK_SIZE_GROUP_BOTH); |
3500 | 1725 |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1726 if (prefs) { |
3472 | 1727 gtk_window_present(GTK_WINDOW(prefs)); |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1728 return; |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1729 } |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1730 |
3366 | 1731 /* copy the preferences to tmp values... |
1732 * I liked "take affect immediately" Oh well :-( */ | |
3818 | 1733 |
1734 /* Back to instant-apply! I win! BU-HAHAHA! */ | |
3500 | 1735 |
3366 | 1736 /* Create the window */ |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1737 prefs = gtk_window_new(GTK_WINDOW_TOPLEVEL); |
4074 | 1738 gtk_window_set_role(GTK_WINDOW(prefs), "preferences"); |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1739 gtk_widget_realize(prefs); |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1740 gtk_window_set_title(GTK_WINDOW(prefs), _("Gaim - Preferences")); |
3366 | 1741 gtk_window_set_policy (GTK_WINDOW(prefs), FALSE, FALSE, TRUE); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1742 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
|
1743 |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1744 vbox = gtk_vbox_new(FALSE, 5); |
1185 | 1745 gtk_container_border_width(GTK_CONTAINER(vbox), 5); |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1746 gtk_container_add(GTK_CONTAINER(prefs), vbox); |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1747 gtk_widget_show(vbox); |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1748 |
3366 | 1749 hbox = gtk_hbox_new (FALSE, 6); |
1750 gtk_container_set_border_width (GTK_CONTAINER (hbox), 6); | |
1751 gtk_container_add (GTK_CONTAINER(vbox), hbox); | |
1752 gtk_widget_show (hbox); | |
1753 | |
1754 frame = gtk_frame_new (NULL); | |
1755 gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN); | |
1756 gtk_box_pack_start (GTK_BOX (hbox), frame, FALSE, FALSE, 0); | |
1757 gtk_widget_show (frame); | |
3500 | 1758 |
3366 | 1759 /* The tree -- much inspired by the Gimp */ |
1760 prefstree = gtk_tree_store_new (3, GDK_TYPE_PIXBUF, G_TYPE_STRING, G_TYPE_INT); | |
1761 tree_v = gtk_tree_view_new_with_model (GTK_TREE_MODEL (prefstree)); | |
1762 gtk_container_add (GTK_CONTAINER (frame), tree_v); | |
1763 | |
1764 gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (tree_v), FALSE); | |
1765 gtk_widget_show(tree_v); | |
1766 /* icons */ | |
1767 cell = gtk_cell_renderer_pixbuf_new (); | |
1768 column = gtk_tree_view_column_new_with_attributes ("icons", cell, "pixbuf", 0, NULL); | |
3500 | 1769 |
3366 | 1770 /* text */ |
1771 cell = gtk_cell_renderer_text_new (); | |
1772 column = gtk_tree_view_column_new_with_attributes ("text", cell, "text", 1, NULL); | |
3500 | 1773 |
3366 | 1774 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
|
1775 |
3472 | 1776 /* The right side */ |
1777 frame = gtk_frame_new (NULL); | |
1778 gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN); | |
1779 gtk_box_pack_start (GTK_BOX (hbox), frame, TRUE, TRUE, 0); | |
1780 gtk_widget_show (frame); | |
3500 | 1781 |
3472 | 1782 vbox2 = gtk_vbox_new (FALSE, 4); |
1783 gtk_container_add (GTK_CONTAINER (frame), vbox2); | |
1784 gtk_widget_show (vbox2); | |
3500 | 1785 |
3472 | 1786 frame = gtk_frame_new (NULL); |
1787 gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_OUT); | |
1788 gtk_box_pack_start (GTK_BOX (vbox2), frame, FALSE, TRUE, 0); | |
1789 gtk_widget_show (frame); | |
3500 | 1790 |
3472 | 1791 hbox = gtk_hbox_new (FALSE, 4); |
1792 gtk_container_set_border_width (GTK_CONTAINER (hbox), 4); | |
1793 gtk_container_add (GTK_CONTAINER (frame), hbox); | |
1794 gtk_widget_show (hbox); | |
3500 | 1795 |
3472 | 1796 preflabel = gtk_label_new(NULL); |
1797 gtk_box_pack_end (GTK_BOX (hbox), preflabel, FALSE, FALSE, 0); | |
1798 gtk_widget_show (preflabel); | |
3500 | 1799 |
3472 | 1800 /* The notebook */ |
1801 prefsnotebook = notebook = gtk_notebook_new (); | |
1802 gtk_notebook_set_show_tabs (GTK_NOTEBOOK (notebook), FALSE); | |
1803 gtk_notebook_set_show_border (GTK_NOTEBOOK (notebook), FALSE); | |
1804 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
|
1805 |
3472 | 1806 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (tree_v)); |
1807 g_signal_connect (G_OBJECT (sel), "changed", | |
1808 G_CALLBACK (pref_nb_select), | |
1809 notebook); | |
3500 | 1810 gtk_widget_show(notebook); |
3472 | 1811 sep = gtk_hseparator_new(); |
1812 gtk_widget_show(sep); | |
1813 gtk_box_pack_start (GTK_BOX (vbox), sep, FALSE, FALSE, 0); | |
3500 | 1814 |
3818 | 1815 /* The buttons^H to press! */ |
3472 | 1816 hbox = gtk_hbox_new (FALSE, 6); |
1817 gtk_container_set_border_width (GTK_CONTAINER (hbox), 6); | |
1818 gtk_container_add (GTK_CONTAINER(vbox), hbox); | |
3500 | 1819 gtk_widget_show (hbox); |
3377 | 1820 |
3818 | 1821 button = gtk_button_new_from_stock (GTK_STOCK_CLOSE); |
3515 | 1822 gtk_size_group_add_widget(sg, button); |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
1823 g_signal_connect_swapped(GTK_OBJECT(button), "clicked", G_CALLBACK(gtk_widget_destroy), prefs); |
3515 | 1824 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); |
1825 gtk_widget_show(button); | |
1826 | |
3500 | 1827 prefs_notebook_init(); |
3427 | 1828 |
3472 | 1829 gtk_tree_view_expand_all (GTK_TREE_VIEW(tree_v)); |
1830 gtk_widget_show(prefs); | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1831 } |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1832 |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1833 static gint debug_delete(GtkWidget *w, GdkEvent *event, void *dummy) |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1834 { |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1835 if (debugbutton) |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1836 gtk_button_clicked(GTK_BUTTON(debugbutton)); |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1837 if (misc_options & OPT_MISC_DEBUG) { |
3818 | 1838 misc_options ^= OPT_MISC_DEBUG; |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1839 } |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1840 g_free(dw); |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1841 dw = NULL; |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1842 return FALSE; |
1 | 1843 |
1844 } | |
1845 | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1846 static void build_debug() |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1847 { |
4005 | 1848 GtkWidget *sw; |
1849 GtkTextBuffer *buffer; | |
1850 GtkTextIter end; | |
1851 | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1852 if (!dw) |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1853 dw = g_new0(struct debug_window, 1); |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1854 |
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2676
diff
changeset
|
1855 GAIM_DIALOG(dw->window); |
4005 | 1856 gtk_window_set_default_size(GTK_WINDOW(dw->window), 500, 200); |
1857 gtk_window_set_role(GTK_WINDOW(dw->window), "debug"); | |
1858 gtk_window_set_title(GTK_WINDOW(dw->window), _("Gaim - Debug Window")); | |
1859 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
|
1860 |
4005 | 1861 sw = gtk_scrolled_window_new(NULL, NULL); |
1862 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), | |
1863 GTK_POLICY_NEVER, | |
1864 GTK_POLICY_ALWAYS); | |
2282
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1865 |
4005 | 1866 dw->entry = gtk_text_view_new(); |
1867 gtk_text_view_set_cursor_visible(GTK_TEXT_VIEW(dw->entry), FALSE); | |
1868 gtk_text_view_set_editable(GTK_TEXT_VIEW(dw->entry), FALSE); | |
1869 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
|
1870 |
4005 | 1871 buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(dw->entry)); |
1872 gtk_text_buffer_get_end_iter(buffer, &end); | |
1873 gtk_text_buffer_create_mark(buffer, "end", &end, FALSE); | |
2282
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1874 |
4005 | 1875 gtk_container_add(GTK_CONTAINER(sw), dw->entry); |
1876 gtk_container_add(GTK_CONTAINER(dw->window), sw); | |
1877 gtk_widget_show_all(dw->window); | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1878 } |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1879 |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1880 void show_debug() |
1 | 1881 { |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1882 if ((misc_options & OPT_MISC_DEBUG)) { |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1883 if (!dw || !dw->window) |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1884 build_debug(); |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1885 gtk_widget_show(dw->window); |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1886 } else { |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1887 if (!dw) |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1888 return; |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1889 gtk_widget_destroy(dw->window); |
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1890 dw->window = NULL; |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1891 } |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1892 } |
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1893 |
970 | 1894 void debug_printf(char *fmt, ...) |
1895 { | |
1896 va_list ap; | |
1897 gchar *s; | |
1898 | |
1366
155db3303ebb
[gaim-migrate @ 1376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1357
diff
changeset
|
1899 va_start(ap, fmt); |
155db3303ebb
[gaim-migrate @ 1376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1357
diff
changeset
|
1900 s = g_strdup_vprintf(fmt, ap); |
155db3303ebb
[gaim-migrate @ 1376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1357
diff
changeset
|
1901 va_end(ap); |
155db3303ebb
[gaim-migrate @ 1376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1357
diff
changeset
|
1902 |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1903 if (misc_options & OPT_MISC_DEBUG && dw) { |
4005 | 1904 GtkTextBuffer *buffer; |
1905 GtkTextMark *endmark; | |
1906 GtkTextIter end; | |
2282
0dea5214d63f
[gaim-migrate @ 2292]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2269
diff
changeset
|
1907 |
4005 | 1908 buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(dw->entry)); |
1909 endmark = gtk_text_buffer_get_mark(buffer, "end"); | |
1910 gtk_text_buffer_get_iter_at_mark(buffer, &end, endmark); | |
1911 gtk_text_buffer_insert(buffer, &end, s, -1); | |
1912 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
|
1913 } |
2823
cd23279122ed
[gaim-migrate @ 2836]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2794
diff
changeset
|
1914 if (opt_debug) |
cd23279122ed
[gaim-migrate @ 2836]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2794
diff
changeset
|
1915 g_print("%s", s); |
1366
155db3303ebb
[gaim-migrate @ 1376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1357
diff
changeset
|
1916 g_free(s); |
970 | 1917 } |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
1918 |
1 | 1919 void set_option(GtkWidget *w, int *option) |
1920 { | |
1921 *option = !(*option); | |
1922 } | |
1923 | |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1924 static void set_misc_option(GtkWidget *w, int option) |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
1925 { |
3818 | 1926 misc_options ^= option; |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1927 |
3818 | 1928 if (option == OPT_MISC_DEBUG) |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1929 show_debug(); |
4227 | 1930 else if(option == OPT_MISC_USE_SERVER_ALIAS) { |
1931 redo_buddy_list(); | |
1932 build_edit_tree(); | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
1933 gaim_conversation_foreach(gaim_conversation_autoset_title); |
4227 | 1934 } |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1935 } |
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1936 |
3818 | 1937 static void set_logging_option(GtkWidget *w, int option) |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1938 { |
3818 | 1939 logging_options ^= option; |
3500 | 1940 |
3818 | 1941 if (option == OPT_LOG_CONVOS || option == OPT_LOG_CHATS) |
1942 update_log_convs(); | |
3366 | 1943 } |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1944 |
3818 | 1945 static void set_blist_option(GtkWidget *w, int option) |
3366 | 1946 { |
3818 | 1947 blist_options ^= option; |
3500 | 1948 |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1949 if (!blist) |
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1950 return; |
3500 | 1951 |
3818 | 1952 if (option == OPT_BLIST_NO_BUTTONS) |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1953 build_imchat_box(!(blist_options & OPT_BLIST_NO_BUTTONS)); |
696
97b75ed155b0
[gaim-migrate @ 706]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
683
diff
changeset
|
1954 |
3818 | 1955 if (option == OPT_BLIST_SHOW_GRPNUM) |
1070
b288f17c2fb2
[gaim-migrate @ 1080]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1030
diff
changeset
|
1956 update_num_groups(); |
9 | 1957 |
3818 | 1958 if (option == OPT_BLIST_NO_MT_GRP) |
1072
81d19577285a
[gaim-migrate @ 1082]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1070
diff
changeset
|
1959 toggle_show_empty_groups(); |
81d19577285a
[gaim-migrate @ 1082]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1070
diff
changeset
|
1960 |
3818 | 1961 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
|
1962 update_button_pix(); |
11e5b1220028
[gaim-migrate @ 1306]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1269
diff
changeset
|
1963 |
3818 | 1964 if (option == OPT_BLIST_SHOW_PIXMAPS) |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1965 toggle_buddy_pixmaps(); |
2593
5ba9ef368b8e
[gaim-migrate @ 2606]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2592
diff
changeset
|
1966 |
3818 | 1967 if ((option == OPT_BLIST_GREY_IDLERS) || (option == OPT_BLIST_SHOW_IDLETIME)) |
2594 | 1968 update_idle_times(); |
3032 | 1969 |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1970 } |
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1971 |
3818 | 1972 static void set_convo_option(GtkWidget *w, int option) |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
1973 { |
3818 | 1974 convo_options ^= option; |
3500 | 1975 |
3818 | 1976 if (option == OPT_CONVO_SHOW_SMILEY) |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
1977 gaim_gtkconv_toggle_smileys(); |
1428
00b3d02a2168
[gaim-migrate @ 1438]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1411
diff
changeset
|
1978 |
3818 | 1979 if (option == OPT_CONVO_SHOW_TIME) |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
1980 gaim_gtkconv_toggle_timestamps(); |
1428
00b3d02a2168
[gaim-migrate @ 1438]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1411
diff
changeset
|
1981 |
3818 | 1982 if (option == OPT_CONVO_CHECK_SPELLING) |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
1983 gaim_gtkconv_toggle_spellchk(); |
4445 | 1984 |
1985 if (option == OPT_CONVO_NO_X_ON_TAB) | |
1986 gaim_gtkconv_toggle_close_buttons(); | |
3818 | 1987 } |
1988 | |
1989 static void set_im_option(GtkWidget *w, int option) | |
1990 { | |
1991 im_options ^= option; | |
3500 | 1992 |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
1993 #if 0 |
3818 | 1994 if (option == OPT_IM_ONE_WINDOW) |
1995 im_tabize(); | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
1996 #endif |
3818 | 1997 |
1998 if (option == OPT_IM_HIDE_ICONS) | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
1999 gaim_gtkconv_hide_buddy_icons(); |
3818 | 2000 |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
2001 if (option == OPT_IM_ALIAS_TAB) |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
2002 gaim_conversation_foreach(gaim_conversation_autoset_title); |
2843
87d11d2a7d59
[gaim-migrate @ 2856]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2839
diff
changeset
|
2003 |
3818 | 2004 if (option == OPT_IM_NO_ANIMATION) |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
2005 gaim_gtkconv_set_anim(); |
1 | 2006 } |
2007 | |
3818 | 2008 static void set_chat_option(GtkWidget *w, int option) |
1 | 2009 { |
3818 | 2010 chat_options ^= option; |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
2011 |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
2012 #if 0 |
3818 | 2013 if (option == OPT_CHAT_ONE_WINDOW) |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
2014 chat_tabize(); |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
2015 #endif |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
2016 } |
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
2017 |
3818 | 2018 void set_sound_option(GtkWidget *w, int option) |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
2019 { |
3818 | 2020 sound_options ^= option; |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
2021 } |
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
2022 |
3818 | 2023 static void set_font_option(GtkWidget *w, int option) |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
2024 { |
3818 | 2025 font_options ^= option; |
3500 | 2026 |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
2027 gaim_gtkconv_update_font_buttons(); |
1 | 2028 } |
2029 | |
3818 | 2030 static void set_away_option(GtkWidget *w, int option) |
1525
ba8e6e211af5
[gaim-migrate @ 1535]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1455
diff
changeset
|
2031 { |
3818 | 2032 away_options ^= option; |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
2033 |
3818 | 2034 if (option == OPT_AWAY_QUEUE) |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
2035 toggle_away_queue(); |
1525
ba8e6e211af5
[gaim-migrate @ 1535]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1455
diff
changeset
|
2036 } |
ba8e6e211af5
[gaim-migrate @ 1535]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1455
diff
changeset
|
2037 |
2313
bd9d403fb15b
[gaim-migrate @ 2323]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2282
diff
changeset
|
2038 GtkWidget *gaim_button(const char *text, guint *options, int option, GtkWidget *page) |
1 | 2039 { |
2040 GtkWidget *button; | |
3427 | 2041 button = gtk_check_button_new_with_mnemonic(text); |
1 | 2042 gtk_toggle_button_set_state(GTK_TOGGLE_BUTTON(button), (*options & option)); |
2043 gtk_box_pack_start(GTK_BOX(page), button, FALSE, FALSE, 0); | |
3366 | 2044 gtk_object_set_user_data(GTK_OBJECT(button), options); |
1 | 2045 |
4064 | 2046 if (options == &misc_options) { |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2047 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
|
2048 (int *)option); |
4064 | 2049 } else if (options == &logging_options) { |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2050 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(set_logging_option), |
3818 | 2051 (int *)option); |
4064 | 2052 } else if (options == &blist_options) { |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2053 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(set_blist_option), |
3818 | 2054 (int *)option); |
4064 | 2055 } else if (options == &convo_options) { |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2056 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(set_convo_option), |
3818 | 2057 (int *)option); |
4064 | 2058 } else if (options == &im_options) { |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2059 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(set_im_option), |
3818 | 2060 (int *)option); |
4064 | 2061 } else if (options == &chat_options) { |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2062 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(set_chat_option), |
3818 | 2063 (int *)option); |
4064 | 2064 } else if (options == &font_options) { |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2065 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(set_font_option), |
3818 | 2066 (int *)option); |
4064 | 2067 } else if (options == &sound_options) { |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2068 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(set_sound_option), |
3818 | 2069 (int *)option); |
4064 | 2070 } else if (options == &away_options) { |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2071 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(set_away_option), |
4064 | 2072 (int *)option); |
2073 } else { | |
2074 debug_printf("gaim_button: \"%s\" has no signal handler attached to it!\n", text); | |
2075 } | |
1 | 2076 gtk_widget_show(button); |
2077 | |
2078 return button; | |
2079 } | |
2080 | |
3366 | 2081 void away_list_clicked(GtkWidget *widget, struct away_message *a) |
2082 {} | |
2083 void default_away_menu_init(GtkWidget *omenu) | |
3032 | 2084 { |
3366 | 2085 GtkWidget *menu, *opt; |
2086 int index = 0; | |
2087 GSList *awy = away_messages; | |
2088 struct away_message *a; | |
2089 | |
2090 menu = gtk_menu_new(); | |
2091 | |
2092 while (awy) { | |
2093 a = (struct away_message *)awy->data; | |
2094 opt = gtk_menu_item_new_with_label(a->name); | |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2095 g_signal_connect(GTK_OBJECT(opt), "activate", G_CALLBACK(set_default_away), |
3366 | 2096 (gpointer)index); |
2097 gtk_widget_show(opt); | |
2098 gtk_menu_append(GTK_MENU(menu), opt); | |
2099 | |
2100 awy = awy->next; | |
2101 index++; | |
2102 } | |
2103 | |
2104 gtk_option_menu_remove_menu(GTK_OPTION_MENU(omenu)); | |
2105 gtk_option_menu_set_menu(GTK_OPTION_MENU(omenu), menu); | |
2106 gtk_option_menu_set_history(GTK_OPTION_MENU(omenu), g_slist_index(away_messages, default_away)); | |
2107 } | |
2108 | |
2109 GtkWidget *pref_fg_picture = NULL; | |
2110 GtkWidget *pref_bg_picture = NULL; | |
2111 | |
2112 void destroy_colorsel(GtkWidget *w, gpointer d) | |
2113 { | |
2114 if (d) { | |
2115 gtk_widget_destroy(fgcseld); | |
2116 fgcseld = NULL; | |
2117 } else { | |
2118 gtk_widget_destroy(bgcseld); | |
2119 bgcseld = NULL; | |
2120 } | |
3032 | 2121 } |
2122 | |
3366 | 2123 void apply_color_dlg(GtkWidget *w, gpointer d) |
3032 | 2124 { |
3366 | 2125 if ((int)d == 1) { |
2126 gtk_color_selection_get_current_color(GTK_COLOR_SELECTION | |
3500 | 2127 (GTK_COLOR_SELECTION_DIALOG(fgcseld)->colorsel), |
3818 | 2128 &fgcolor); |
3366 | 2129 destroy_colorsel(NULL, (void *)1); |
2130 update_color(NULL, pref_fg_picture); | |
2131 } else { | |
2132 gtk_color_selection_get_current_color(GTK_COLOR_SELECTION | |
3500 | 2133 (GTK_COLOR_SELECTION_DIALOG(bgcseld)->colorsel), |
3818 | 2134 &bgcolor); |
3366 | 2135 destroy_colorsel(NULL, (void *)0); |
2136 update_color(NULL, pref_bg_picture); | |
2137 } | |
4421 | 2138 gaim_conversation_foreach(gaim_gtkconv_update_font_colors); |
3032 | 2139 } |
2140 | |
3366 | 2141 void update_color(GtkWidget *w, GtkWidget *pic) |
1 | 2142 { |
3366 | 2143 GdkColor c; |
2144 GtkStyle *style; | |
2145 c.pixel = 0; | |
3500 | 2146 |
3366 | 2147 if (pic == pref_fg_picture) { |
3818 | 2148 if (font_options & OPT_FONT_FGCOL) { |
2149 c.red = fgcolor.red; | |
2150 c.blue = fgcolor.blue; | |
2151 c.green = fgcolor.green; | |
3366 | 2152 } else { |
2153 c.red = 0; | |
2154 c.blue = 0; | |
2155 c.green = 0; | |
2156 } | |
2157 } else { | |
3818 | 2158 if (font_options & OPT_FONT_BGCOL) { |
2159 c.red = bgcolor.red; | |
2160 c.blue = bgcolor.blue; | |
2161 c.green = bgcolor.green; | |
3366 | 2162 } else { |
2163 c.red = 0xffff; | |
2164 c.blue = 0xffff; | |
2165 c.green = 0xffff; | |
2166 } | |
2167 } | |
2168 | |
2169 style = gtk_style_new(); | |
2170 style->bg[0] = c; | |
2171 gtk_widget_set_style(pic, style); | |
4296 | 2172 g_object_unref(style); |
3366 | 2173 } |
4064 | 2174 |
3366 | 2175 void set_default_away(GtkWidget *w, gpointer i) |
2176 { | |
2177 | |
2178 int length = g_slist_length(away_messages); | |
338
9d258a0aa560
[gaim-migrate @ 348]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
337
diff
changeset
|
2179 |
3366 | 2180 if (away_messages == NULL) |
3818 | 2181 default_away = NULL; |
3366 | 2182 else if ((int)i >= length) |
3818 | 2183 default_away = g_slist_nth_data(away_messages, length - 1); |
3366 | 2184 else |
3818 | 2185 default_away = g_slist_nth_data(away_messages, (int)i); |
3366 | 2186 } |
3500 | 2187 |
4428 | 2188 static gboolean program_is_valid(const char *program) |
2189 { | |
2190 GError *error = NULL; | |
2191 char **argv; | |
2192 gboolean is_valid = FALSE; | |
2193 | |
2194 if (program == NULL || *program == '\0') { | |
2195 return FALSE; | |
2196 } | |
2197 | |
2198 if (!g_shell_parse_argv(program, NULL, &argv, &error)) { | |
2199 debug_printf("Could not parse program '%s': ", error->message); | |
2200 return FALSE; | |
2201 } | |
2202 | |
2203 if (argv == NULL) { | |
2204 return FALSE; | |
2205 } | |
2206 | |
2207 is_valid = g_find_program_in_path(argv[0]) != NULL; | |
2208 | |
2209 g_strfreev(argv); | |
2210 | |
2211 return is_valid; | |
2212 } | |
2213 | |
3366 | 2214 static void update_spin_value(GtkWidget *w, GtkWidget *spin) |
2215 { | |
2216 int *value = gtk_object_get_user_data(GTK_OBJECT(spin)); | |
2217 *value = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(spin)); | |
2218 } | |
4064 | 2219 |
3427 | 2220 GtkWidget *gaim_labeled_spin_button(GtkWidget *box, const gchar *title, int *val, int min, int max, GtkSizeGroup *sg) |
3366 | 2221 { |
2222 GtkWidget *hbox; | |
2223 GtkWidget *label; | |
2224 GtkWidget *spin; | |
2225 GtkObject *adjust; | |
901
f168f2c7b357
[gaim-migrate @ 911]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
893
diff
changeset
|
2226 |
3366 | 2227 hbox = gtk_hbox_new(FALSE, 5); |
2228 gtk_box_pack_start(GTK_BOX(box), hbox, FALSE, FALSE, 5); | |
2229 gtk_widget_show(hbox); | |
2230 | |
3427 | 2231 label = gtk_label_new_with_mnemonic(title); |
3366 | 2232 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); |
2233 gtk_widget_show(label); | |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
2234 |
3366 | 2235 adjust = gtk_adjustment_new(*val, min, max, 1, 1, 1); |
2236 spin = gtk_spin_button_new(GTK_ADJUSTMENT(adjust), 1, 0); | |
2237 gtk_object_set_user_data(GTK_OBJECT(spin), val); | |
2238 gtk_widget_set_usize(spin, 50, -1); | |
2239 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
|
2240 g_signal_connect(GTK_OBJECT(adjust), "value-changed", |
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2241 G_CALLBACK(update_spin_value), GTK_WIDGET(spin)); |
3366 | 2242 gtk_widget_show(spin); |
3500 | 2243 |
3427 | 2244 gtk_label_set_mnemonic_widget(GTK_LABEL(label), spin); |
2245 | |
2246 if (sg) { | |
2247 gtk_size_group_add_widget(sg, label); | |
2248 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
3500 | 2249 |
3427 | 2250 } |
2251 return label; | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
2252 } |
1 | 2253 |
3366 | 2254 void dropdown_set(GtkObject *w, int *option) |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
2255 { |
3366 | 2256 int opt = (int)gtk_object_get_user_data(w); |
2257 int clear = (int)gtk_object_get_data(w, "clear"); | |
3500 | 2258 |
3366 | 2259 if (clear != -1) { |
2260 *option = *option & ~clear; | |
2261 *option = *option | opt; | |
2262 } else { | |
2263 debug_printf("HELLO %d\n", opt); | |
2264 *option = opt; | |
2265 } | |
3500 | 2266 |
4377 | 2267 if (option == (int*)&proxytype) { |
3366 | 2268 if (opt == PROXY_NONE) |
2269 gtk_widget_set_sensitive(prefs_proxy_frame, FALSE); | |
2270 else | |
2271 gtk_widget_set_sensitive(prefs_proxy_frame, TRUE); | |
3818 | 2272 } else if (option == &web_browser) { |
3366 | 2273 if (opt == BROWSER_MANUAL) |
4428 | 2274 gtk_widget_set_sensitive(gtk_widget_get_parent(browser_entry), TRUE); |
3366 | 2275 else |
4428 | 2276 gtk_widget_set_sensitive(gtk_widget_get_parent(browser_entry), FALSE); |
3818 | 2277 } else if (option == (int*)&sound_options) { |
3366 | 2278 if (opt == OPT_SOUND_CMD) |
2279 gtk_widget_set_sensitive(sndcmd, TRUE); | |
2280 else | |
2281 gtk_widget_set_sensitive(sndcmd, FALSE); | |
3818 | 2282 } else if (option == (int*)&im_options) { |
2283 if (clear == (OPT_IM_SIDE_TAB | OPT_IM_BR_TAB)) | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
2284 gaim_gtkconv_update_tabs(); |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
2285 /* CONV XXX update_im_tabs(); */ |
3818 | 2286 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
|
2287 gaim_gtkconv_update_im_button_style(); |
3818 | 2288 } else if (option == (int*)&chat_options) { |
2289 if (clear == (OPT_CHAT_SIDE_TAB | OPT_CHAT_BR_TAB)) | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
2290 gaim_gtkconv_update_tabs(); |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4339
diff
changeset
|
2291 /* CONV XXX update_chat_tabs(); */ |
3818 | 2292 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
|
2293 gaim_gtkconv_update_chat_button_style(); |
3818 | 2294 } else if (option == (int*)&blist_options) { |
2295 set_blist_tab(); | |
3366 | 2296 } |
1 | 2297 } |
2298 | |
3500 | 2299 static GtkWidget *gaim_dropdown(GtkWidget *box, const gchar *title, int *option, int clear, ...) |
1 | 2300 { |
4428 | 2301 va_list ap; |
2302 GList *menuitems = NULL; | |
2303 GtkWidget *dropdown = NULL; | |
2304 char *name; | |
2305 int id; | |
2306 | |
2307 va_start(ap, clear); | |
2308 while ((name = va_arg(ap, char *)) != NULL) { | |
2309 id = va_arg(ap, int); | |
2310 | |
2311 menuitems = g_list_prepend(menuitems, name); | |
2312 menuitems = g_list_prepend(menuitems, GINT_TO_POINTER(id)); | |
2313 } | |
2314 va_end(ap); | |
2315 | |
4433 | 2316 g_return_val_if_fail(menuitems != NULL, NULL); |
4428 | 2317 |
2318 menuitems = g_list_reverse(menuitems); | |
2319 | |
2320 dropdown = gaim_dropdown_from_list(box, title, option, clear, menuitems); | |
2321 | |
2322 g_list_free(menuitems); | |
2323 | |
2324 return dropdown; | |
2325 } | |
2326 | |
2327 static GtkWidget *gaim_dropdown_from_list(GtkWidget *box, const gchar *title, int *option, int clear, GList *menuitems) | |
2328 { | |
3366 | 2329 GtkWidget *dropdown, *opt, *menu; |
2330 GtkWidget *label; | |
2331 gchar *text; | |
2332 int value; | |
2333 int o = 0; | |
2334 GtkWidget *hbox; | |
1 | 2335 |
4428 | 2336 g_return_val_if_fail(menuitems != NULL, NULL); |
2337 | |
3366 | 2338 hbox = gtk_hbox_new(FALSE, 5); |
2339 gtk_container_add (GTK_CONTAINER (box), hbox); | |
2340 gtk_widget_show(hbox); | |
2341 | |
3427 | 2342 label = gtk_label_new_with_mnemonic(title); |
3366 | 2343 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); |
2344 gtk_widget_show(label); | |
2345 | |
2346 dropdown = gtk_option_menu_new(); | |
2347 menu = gtk_menu_new(); | |
3500 | 2348 |
3427 | 2349 gtk_label_set_mnemonic_widget(GTK_LABEL(label), dropdown); |
3500 | 2350 |
4428 | 2351 while (menuitems != NULL && (text = (char *) menuitems->data) != NULL) { |
2352 menuitems = g_list_next(menuitems); | |
2353 g_return_val_if_fail(menuitems != NULL, NULL); | |
2354 value = GPOINTER_TO_INT(menuitems->data); | |
2355 menuitems = g_list_next(menuitems); | |
2356 | |
3366 | 2357 opt = gtk_menu_item_new_with_label(text); |
2358 gtk_object_set_user_data(GTK_OBJECT(opt), (void *)value); | |
2359 gtk_object_set_data(GTK_OBJECT(opt), "clear", (void *)clear); | |
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2360 g_signal_connect(GTK_OBJECT(opt), "activate", |
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4137
diff
changeset
|
2361 G_CALLBACK(dropdown_set), (void *)option); |
3366 | 2362 gtk_widget_show(opt); |
2363 gtk_menu_shell_append(GTK_MENU_SHELL(menu), opt); | |
1 | 2364 |
3366 | 2365 if (((clear > -1) && ((*option & value) == value)) || *option == value) { |
2366 gtk_menu_set_active(GTK_MENU(menu), o); | |
2367 } | |
2368 o++; | |
4428 | 2369 |
3366 | 2370 } |
2262
9c8f353331e7
[gaim-migrate @ 2272]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2254
diff
changeset
|
2371 |
3500 | 2372 gtk_option_menu_set_menu(GTK_OPTION_MENU(dropdown), menu); |
3366 | 2373 gtk_box_pack_start(GTK_BOX(hbox), dropdown, FALSE, FALSE, 0); |
2374 gtk_widget_show(dropdown); | |
3427 | 2375 return label; |
3500 | 2376 } |
2377 | |
3366 | 2378 static GtkWidget *show_color_pref(GtkWidget *box, gboolean fgc) |
1 | 2379 { |
3366 | 2380 /* more stuff stolen from X-Chat */ |
2381 GtkWidget *swid; | |
2382 GdkColor c; | |
2383 GtkStyle *style; | |
2384 c.pixel = 0; | |
2385 if (fgc) { | |
3818 | 2386 if (font_options & OPT_FONT_FGCOL) { |
2387 c.red = fgcolor.red; | |
2388 c.blue = fgcolor.blue; | |
2389 c.green = fgcolor.green; | |
3366 | 2390 } else { |
2391 c.red = 0; | |
2392 c.blue = 0; | |
2393 c.green = 0; | |
2394 } | |
2395 } else { | |
3818 | 2396 if (font_options & OPT_FONT_BGCOL) { |
2397 c.red = bgcolor.red; | |
2398 c.blue = bgcolor.blue; | |
2399 c.green = bgcolor.green; | |
3366 | 2400 } else { |
2401 c.red = 0xffff; | |
2402 c.blue = 0xffff; | |
2403 c.green = 0xffff; | |
2404 } | |
2405 } | |
1 | 2406 |
3366 | 2407 style = gtk_style_new(); |
2408 style->bg[0] = c; | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
2409 |
3366 | 2410 swid = gtk_event_box_new(); |
2411 gtk_widget_set_style(GTK_WIDGET(swid), style); | |
4296 | 2412 g_object_unref(style); |
3366 | 2413 gtk_widget_set_usize(GTK_WIDGET(swid), 40, -1); |
2414 gtk_box_pack_start(GTK_BOX(box), swid, FALSE, FALSE, 5); | |
2415 gtk_widget_show(swid); | |
2416 return swid; | |
1 | 2417 } |
4064 | 2418 |
3366 | 2419 void apply_font_dlg(GtkWidget *w, GtkWidget *f) |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
2420 { |
3366 | 2421 int i = 0; |
2422 char *fontname; | |
2423 | |
3473 | 2424 fontname = g_strdup(gtk_font_selection_dialog_get_font_name(GTK_FONT_SELECTION_DIALOG(f))); |
3366 | 2425 destroy_fontsel(0, 0); |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
2426 |
3818 | 2427 while(fontname[i] && !isdigit(fontname[i]) && i < sizeof(fontface)) { |
2428 fontface[i] = fontname[i]; | |
3366 | 2429 i++; |
2430 } | |
4438
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4433
diff
changeset
|
2431 |
3818 | 2432 fontface[i] = 0; |
3366 | 2433 g_free(fontname); |
4438
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4433
diff
changeset
|
2434 |
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4433
diff
changeset
|
2435 gaim_conversation_foreach(gaim_gtkconv_update_font_face); |
1124
a70d5200edde
[gaim-migrate @ 1134]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1123
diff
changeset
|
2436 } |
3500 | 2437 |