Mercurial > pidgin.yaz
annotate src/gtkprefs.c @ 9108:6a17b7e2e3b2
[gaim-migrate @ 9885]
I did some more prefslashing. Test, discuss. I'll stay up for a bit.
If nobody objects, let's tag and release.
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Fri, 28 May 2004 05:53:34 +0000 |
parents | 96bfa9bd110f |
children | 78189aad1457 |
rev | line source |
---|---|
6928
6ed0a1c045b4
[gaim-migrate @ 7475]
Christian Hammond <chipx86@chipx86.com>
parents:
6861
diff
changeset
|
1 /** |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
2 * @file gtkprefs.c GTK+ Preferences |
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
3 * @ingroup gtkui |
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
4 * |
5440 | 5 * gaim |
6 * | |
8046 | 7 * Gaim is the legal property of its developers, whose names are too numerous |
8 * to list here. Please refer to the COPYRIGHT file distributed with this | |
9 * source distribution. | |
5440 | 10 * |
11 * This program is free software; you can redistribute it and/or modify | |
12 * it under the terms of the GNU General Public License as published by | |
13 * the Free Software Foundation; either version 2 of the License, or | |
14 * (at your option) any later version. | |
15 * | |
16 * This program is distributed in the hope that it will be useful, | |
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 * GNU General Public License for more details. | |
20 * | |
21 * You should have received a copy of the GNU General Public License | |
22 * along with this program; if not, write to the Free Software | |
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
24 * | |
25 */ | |
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6216
diff
changeset
|
26 #include "gtkinternal.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5870
diff
changeset
|
27 |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5870
diff
changeset
|
28 #include "debug.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5870
diff
changeset
|
29 #include "notify.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5870
diff
changeset
|
30 #include "prefs.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5870
diff
changeset
|
31 #include "proxy.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5870
diff
changeset
|
32 #include "prpl.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5870
diff
changeset
|
33 #include "sound.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5870
diff
changeset
|
34 #include "util.h" |
8170 | 35 #include "multi.h" |
8231
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
36 #include "network.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5870
diff
changeset
|
37 |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5870
diff
changeset
|
38 #include "gtkblist.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5870
diff
changeset
|
39 #include "gtkconv.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5870
diff
changeset
|
40 #include "gtkdebug.h" |
5440 | 41 #include "gtkimhtml.h" |
8833 | 42 #include "gtkimhtmltoolbar.h" |
5440 | 43 #include "gtkplugin.h" |
8713 | 44 #include "gtkpluginpref.h" |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
45 #include "gtkprefs.h" |
5684 | 46 #include "gtksound.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5870
diff
changeset
|
47 #include "gtkutils.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5870
diff
changeset
|
48 #include "stock.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5870
diff
changeset
|
49 |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5870
diff
changeset
|
50 #include "ui.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5870
diff
changeset
|
51 |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
52 #define PROXYHOST 0 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
53 #define PROXYPORT 1 |
6005 | 54 #define PROXYUSER 2 |
55 #define PROXYPASS 3 | |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
56 |
5560
b7319c094153
[gaim-migrate @ 5961]
Christian Hammond <chipx86@chipx86.com>
parents:
5554
diff
changeset
|
57 /* XXX This needs to be made static after we solve the away.c mess. */ |
b7319c094153
[gaim-migrate @ 5961]
Christian Hammond <chipx86@chipx86.com>
parents:
5554
diff
changeset
|
58 GtkListStore *prefs_away_store = NULL; |
b7319c094153
[gaim-migrate @ 5961]
Christian Hammond <chipx86@chipx86.com>
parents:
5554
diff
changeset
|
59 GtkWidget *prefs_away_menu = NULL; |
b7319c094153
[gaim-migrate @ 5961]
Christian Hammond <chipx86@chipx86.com>
parents:
5554
diff
changeset
|
60 |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
61 static GtkWidget *tree_v = NULL; |
5560
b7319c094153
[gaim-migrate @ 5961]
Christian Hammond <chipx86@chipx86.com>
parents:
5554
diff
changeset
|
62 |
5440 | 63 |
64 static int sound_row_sel = 0; | |
65 static char *last_sound_dir = NULL; | |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
66 static GtkWidget *preflabel; |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
67 static GtkWidget *prefsnotebook; |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
68 static GtkTreeStore *prefstree; |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
69 |
5440 | 70 |
71 static GtkWidget *sounddialog = NULL; | |
72 static GtkWidget *sound_entry = NULL; | |
73 static GtkWidget *away_text = NULL; | |
74 static GtkListStore *smiley_theme_store = NULL; | |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
75 static GtkWidget *prefs_proxy_frame = NULL; |
5440 | 76 |
77 static GtkWidget *prefs = NULL; | |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
78 static GtkWidget *debugbutton = NULL; |
5440 | 79 static int notebook_page = 0; |
8713 | 80 static GtkTreeIter proto_iter, plugin_iter; |
5440 | 81 |
8274 | 82 static guint browser_pref1_id = 0; |
83 static guint browser_pref2_id = 0; | |
6001 | 84 static guint proxy_pref_id = 0; |
6005 | 85 static guint sound_pref_id = 0; |
6142 | 86 static guint auto_resp_pref_id = 0; |
8979 | 87 static guint placement_pref_id = 0; |
5568
fb4f7bd7525c
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
88 |
5440 | 89 /* |
90 * PROTOTYPES | |
91 */ | |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
92 static GtkTreeIter *prefs_notebook_add_page(const char*, GdkPixbuf*, |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
93 GtkWidget*, GtkTreeIter*, |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
94 GtkTreeIter*, int); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
95 static void delete_prefs(GtkWidget *, void *); |
5440 | 96 static void update_plugin_list(void *data); |
97 | |
7931 | 98 static void set_default_away(GtkWidget *, gpointer); |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
99 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
100 static void |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
101 update_spin_value(GtkWidget *w, GtkWidget *spin) |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
102 { |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
103 const char *key = g_object_get_data(G_OBJECT(spin), "val"); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
104 int value; |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
105 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
106 value = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(spin)); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
107 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
108 gaim_prefs_set_int(key, value); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
109 } |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
110 |
7976 | 111 GtkWidget * |
7987 | 112 gaim_gtk_prefs_labeled_spin_button(GtkWidget *box, const gchar *title, |
113 char *key, int min, int max, GtkSizeGroup *sg) | |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
114 { |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
115 GtkWidget *hbox; |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
116 GtkWidget *label; |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
117 GtkWidget *spin; |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
118 GtkObject *adjust; |
5550
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
119 int val; |
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
120 |
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
121 val = gaim_prefs_get_int(key); |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
122 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
123 hbox = gtk_hbox_new(FALSE, 5); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
124 gtk_box_pack_start(GTK_BOX(box), hbox, FALSE, FALSE, 5); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
125 gtk_widget_show(hbox); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
126 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
127 label = gtk_label_new_with_mnemonic(title); |
8713 | 128 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
129 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
130 gtk_widget_show(label); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
131 |
5550
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
132 adjust = gtk_adjustment_new(val, min, max, 1, 1, 1); |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
133 spin = gtk_spin_button_new(GTK_ADJUSTMENT(adjust), 1, 0); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
134 g_object_set_data(G_OBJECT(spin), "val", key); |
8467 | 135 if (max < 10000) |
136 gtk_widget_set_size_request(spin, 50, -1); | |
137 else | |
138 gtk_widget_set_size_request(spin, 60, -1); | |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
139 gtk_box_pack_start(GTK_BOX(hbox), spin, FALSE, FALSE, 0); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
140 g_signal_connect(G_OBJECT(adjust), "value-changed", |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
141 G_CALLBACK(update_spin_value), GTK_WIDGET(spin)); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
142 gtk_widget_show(spin); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
143 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
144 gtk_label_set_mnemonic_widget(GTK_LABEL(label), spin); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
145 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
146 if (sg) { |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
147 gtk_size_group_add_widget(sg, label); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
148 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
149 } |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
150 |
8137 | 151 gaim_set_accessible_label (spin, label); |
152 | |
8238 | 153 return hbox; |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
154 } |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
155 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
156 static void |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
157 dropdown_set(GObject *w, const char *key) |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
158 { |
5551
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
159 const char *bool_key; |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
160 const char *str_value; |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
161 int int_value; |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
162 GaimPrefType type; |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
163 |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
164 type = GPOINTER_TO_INT(g_object_get_data(w, "type")); |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
165 |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
166 if (type == GAIM_PREF_INT) { |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
167 int_value = GPOINTER_TO_INT(g_object_get_data(w, "value")); |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
168 |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
169 gaim_prefs_set_int(key, int_value); |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
170 } |
5551
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
171 else if (type == GAIM_PREF_STRING) { |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
172 str_value = (const char *)g_object_get_data(w, "value"); |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
173 |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
174 gaim_prefs_set_string(key, str_value); |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
175 } |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
176 else if (type == GAIM_PREF_BOOLEAN) { |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
177 bool_key = (const char *)g_object_get_data(w, "value"); |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
178 |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
179 if (!strcmp(key, bool_key)) |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
180 return; |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
181 |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
182 gaim_prefs_set_bool(key, FALSE); |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
183 gaim_prefs_set_bool(bool_key, TRUE); |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
184 } |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
185 } |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
186 |
7976 | 187 GtkWidget * |
7987 | 188 gaim_gtk_prefs_dropdown_from_list(GtkWidget *box, const gchar *title, |
189 GaimPrefType type, const char *key, GList *menuitems) | |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
190 { |
5546
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
191 GtkWidget *dropdown, *opt, *menu; |
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
192 GtkWidget *label; |
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
193 GtkWidget *hbox; |
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
194 gchar *text; |
5551
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
195 const char *bool_key = NULL; |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
196 const char *stored_str = NULL; |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
197 int stored_int = 0; |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
198 int int_value = 0; |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
199 const char *str_value = NULL; |
5546
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
200 int o = 0; |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
201 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
202 g_return_val_if_fail(menuitems != NULL, NULL); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
203 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
204 hbox = gtk_hbox_new(FALSE, 5); |
8713 | 205 /*gtk_container_add (GTK_CONTAINER (box), hbox);*/ |
206 gtk_box_pack_start(GTK_BOX(box), hbox, FALSE, FALSE, 0); | |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
207 gtk_widget_show(hbox); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
208 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
209 label = gtk_label_new_with_mnemonic(title); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
210 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
211 gtk_widget_show(label); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
212 |
8577 | 213 #if 0 /* GTK_CHECK_VERSION(2,4,0) */ |
214 if(type == GAIM_PREF_INT) | |
215 model = gtk_list_store_new(2, G_TYPE_STRING, G_TYPE_INT); | |
216 else if(type == GAIM_PREF_STRING) | |
217 model = gtk_list_store_new(2, G_TYPE_STRING, G_TYPE_STRING); | |
218 dropdown = gtk_combo_box_new_with_model(model); | |
219 #else | |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
220 dropdown = gtk_option_menu_new(); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
221 menu = gtk_menu_new(); |
8577 | 222 #endif |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
223 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
224 gtk_label_set_mnemonic_widget(GTK_LABEL(label), dropdown); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
225 |
5546
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
226 if (type == GAIM_PREF_INT) |
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
227 stored_int = gaim_prefs_get_int(key); |
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
228 else if (type == GAIM_PREF_STRING) |
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
229 stored_str = gaim_prefs_get_string(key); |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
230 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
231 while (menuitems != NULL && (text = (char *) menuitems->data) != NULL) { |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
232 menuitems = g_list_next(menuitems); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
233 g_return_val_if_fail(menuitems != NULL, NULL); |
5546
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
234 |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
235 opt = gtk_menu_item_new_with_label(text); |
5551
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
236 |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
237 g_object_set_data(G_OBJECT(opt), "type", GINT_TO_POINTER(type)); |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
238 |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
239 if (type == GAIM_PREF_INT) { |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
240 int_value = GPOINTER_TO_INT(menuitems->data); |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
241 g_object_set_data(G_OBJECT(opt), "value", |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
242 GINT_TO_POINTER(int_value)); |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
243 } |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
244 else if (type == GAIM_PREF_STRING) { |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
245 str_value = (const char *)menuitems->data; |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
246 |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
247 g_object_set_data(G_OBJECT(opt), "value", (char *)str_value); |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
248 } |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
249 else if (type == GAIM_PREF_BOOLEAN) { |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
250 bool_key = (const char *)menuitems->data; |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
251 |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
252 g_object_set_data(G_OBJECT(opt), "value", (char *)bool_key); |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
253 } |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
254 |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
255 g_signal_connect(G_OBJECT(opt), "activate", |
5551
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
256 G_CALLBACK(dropdown_set), (char *)key); |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
257 |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
258 gtk_widget_show(opt); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
259 gtk_menu_shell_append(GTK_MENU_SHELL(menu), opt); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
260 |
5551
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
261 if ((type == GAIM_PREF_INT && stored_int == int_value) || |
5753
96214f5de47c
[gaim-migrate @ 6178]
Christian Hammond <chipx86@chipx86.com>
parents:
5716
diff
changeset
|
262 (type == GAIM_PREF_STRING && stored_str != NULL && |
96214f5de47c
[gaim-migrate @ 6178]
Christian Hammond <chipx86@chipx86.com>
parents:
5716
diff
changeset
|
263 !strcmp(stored_str, str_value)) || |
5551
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
264 (type == GAIM_PREF_BOOLEAN && gaim_prefs_get_bool(bool_key))) { |
5546
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
265 |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
266 gtk_menu_set_active(GTK_MENU(menu), o); |
5546
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
267 } |
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
268 |
5568
fb4f7bd7525c
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
269 menuitems = g_list_next(menuitems); |
fb4f7bd7525c
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
270 |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
271 o++; |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
272 } |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
273 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
274 gtk_option_menu_set_menu(GTK_OPTION_MENU(dropdown), menu); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
275 gtk_box_pack_start(GTK_BOX(hbox), dropdown, FALSE, FALSE, 0); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
276 gtk_widget_show(dropdown); |
8137 | 277 gaim_set_accessible_label (dropdown, label); |
5551
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
278 |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
279 return label; |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
280 } |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
281 |
7976 | 282 GtkWidget * |
7987 | 283 gaim_gtk_prefs_dropdown(GtkWidget *box, const gchar *title, GaimPrefType type, |
5550
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
284 const char *key, ...) |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
285 { |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
286 va_list ap; |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
287 GList *menuitems = NULL; |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
288 GtkWidget *dropdown = NULL; |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
289 char *name; |
5546
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
290 int int_value; |
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
291 const char *str_value; |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
292 |
5551
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
293 va_start(ap, key); |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
294 while ((name = va_arg(ap, char *)) != NULL) { |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
295 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
296 menuitems = g_list_prepend(menuitems, name); |
5546
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
297 |
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
298 if (type == GAIM_PREF_INT) { |
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
299 int_value = va_arg(ap, int); |
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
300 menuitems = g_list_prepend(menuitems, GINT_TO_POINTER(int_value)); |
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
301 } |
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
302 else { |
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
303 str_value = va_arg(ap, const char *); |
5551
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
304 menuitems = g_list_prepend(menuitems, (char *)str_value); |
5546
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
305 } |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
306 } |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
307 va_end(ap); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
308 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
309 g_return_val_if_fail(menuitems != NULL, NULL); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
310 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
311 menuitems = g_list_reverse(menuitems); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
312 |
7987 | 313 dropdown = gaim_gtk_prefs_dropdown_from_list(box, title, type, key, |
314 menuitems); | |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
315 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
316 g_list_free(menuitems); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
317 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
318 return dropdown; |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
319 } |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
320 |
5551
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
321 static void |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
322 delete_prefs(GtkWidget *asdf, void *gdsa) |
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
323 { |
5440 | 324 GList *l; |
325 GaimPlugin *plug; | |
326 | |
327 gaim_plugins_unregister_probe_notify_cb(update_plugin_list); | |
328 | |
329 prefs = NULL; | |
330 tree_v = NULL; | |
331 sound_entry = NULL; | |
332 debugbutton = NULL; | |
333 prefs_away_menu = NULL; | |
334 notebook_page = 0; | |
335 smiley_theme_store = NULL; | |
336 if(sounddialog) | |
337 gtk_widget_destroy(sounddialog); | |
338 g_object_unref(G_OBJECT(prefs_away_store)); | |
339 prefs_away_store = NULL; | |
340 | |
5568
fb4f7bd7525c
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
341 /* Unregister callbacks. */ |
8274 | 342 gaim_prefs_disconnect_callback(browser_pref1_id); |
343 gaim_prefs_disconnect_callback(browser_pref2_id); | |
6001 | 344 gaim_prefs_disconnect_callback(proxy_pref_id); |
6005 | 345 gaim_prefs_disconnect_callback(sound_pref_id); |
6142 | 346 gaim_prefs_disconnect_callback(auto_resp_pref_id); |
8979 | 347 gaim_prefs_disconnect_callback(placement_pref_id); |
5568
fb4f7bd7525c
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
348 |
5440 | 349 for (l = gaim_plugins_get_loaded(); l != NULL; l = l->next) { |
350 plug = l->data; | |
351 | |
352 if (GAIM_IS_GTK_PLUGIN(plug)) { | |
353 GaimGtkPluginUiInfo *ui_info; | |
354 | |
355 ui_info = GAIM_GTK_PLUGIN_UI_INFO(plug); | |
356 | |
357 if (ui_info->iter != NULL) { | |
358 g_free(ui_info->iter); | |
359 ui_info->iter = NULL; | |
360 } | |
361 } | |
8745 | 362 |
363 if(GAIM_PLUGIN_HAS_PREF_FRAME(plug)) { | |
364 GaimPluginUiInfo *prefs_info; | |
365 | |
366 prefs_info = GAIM_PLUGIN_UI_INFO(plug); | |
367 | |
8814 | 368 if(prefs_info->frame != NULL) { |
369 gaim_plugin_pref_frame_destroy(prefs_info->frame); | |
370 prefs_info->frame = NULL; | |
371 } | |
372 | |
8745 | 373 if(prefs_info->iter != NULL) { |
374 g_free(prefs_info->iter); | |
375 prefs_info->iter = NULL; | |
376 } | |
377 } | |
5440 | 378 } |
379 } | |
380 | |
381 static void pref_nb_select(GtkTreeSelection *sel, GtkNotebook *nb) { | |
382 GtkTreeIter iter; | |
383 char text[128]; | |
384 GValue val = { 0, }; | |
385 GtkTreeModel *model = GTK_TREE_MODEL(prefstree); | |
386 | |
387 if (! gtk_tree_selection_get_selected (sel, &model, &iter)) | |
388 return; | |
389 gtk_tree_model_get_value (model, &iter, 1, &val); | |
390 g_snprintf(text, sizeof(text), "<span weight=\"bold\" size=\"larger\">%s</span>", | |
391 g_value_get_string(&val)); | |
392 gtk_label_set_markup (GTK_LABEL(preflabel), text); | |
393 g_value_unset (&val); | |
394 gtk_tree_model_get_value (model, &iter, 2, &val); | |
395 gtk_notebook_set_current_page (GTK_NOTEBOOK (prefsnotebook), g_value_get_int (&val)); | |
396 | |
397 } | |
398 | |
399 /* These are the pages in the preferences notebook */ | |
400 GtkWidget *interface_page() { | |
401 GtkWidget *ret; | |
402 GtkWidget *vbox; | |
403 ret = gtk_vbox_new(FALSE, 18); | |
404 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
405 | |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
406 vbox = gaim_gtk_make_frame(ret, _("Interface Options")); |
5440 | 407 |
7987 | 408 gaim_gtk_prefs_checkbox(_("D_isplay remote nicknames if no alias is set"), |
409 "/core/buddies/use_server_alias", vbox); | |
5440 | 410 |
411 | |
412 gtk_widget_show_all(ret); | |
413 return ret; | |
414 } | |
415 | |
416 static void smiley_sel (GtkTreeSelection *sel, GtkTreeModel *model) { | |
417 GtkTreeIter iter; | |
418 const char *filename; | |
419 GValue val = { 0, }; | |
5841 | 420 |
5440 | 421 if (! gtk_tree_selection_get_selected (sel, &model, &iter)) |
422 return; | |
423 gtk_tree_model_get_value (model, &iter, 2, &val); | |
424 filename = g_value_get_string(&val); | |
5770
a86051df9122
[gaim-migrate @ 6195]
Christian Hammond <chipx86@chipx86.com>
parents:
5753
diff
changeset
|
425 gaim_prefs_set_string("/gaim/gtk/smileys/theme", filename); |
5440 | 426 g_value_unset (&val); |
427 } | |
428 | |
429 GtkTreePath *theme_refresh_theme_list() | |
430 { | |
431 GdkPixbuf *pixbuf; | |
432 GSList *themes; | |
433 GtkTreeIter iter; | |
434 GtkTreePath *path = NULL; | |
435 int ind = 0; | |
436 | |
437 | |
438 smiley_theme_probe(); | |
439 | |
440 if (!smiley_themes) | |
441 return NULL; | |
442 | |
443 themes = smiley_themes; | |
444 | |
445 gtk_list_store_clear(smiley_theme_store); | |
446 | |
447 while (themes) { | |
448 struct smiley_theme *theme = themes->data; | |
449 char *description = g_strdup_printf("<span size='larger' weight='bold'>%s</span> - %s\n" | |
450 "<span size='smaller' foreground='dim grey'>%s</span>", | |
451 theme->name, theme->author, theme->desc); | |
452 gtk_list_store_append (smiley_theme_store, &iter); | |
8494 | 453 |
454 /* | |
455 * LEAK - Gentoo memprof thinks pixbuf is leaking here... but it | |
456 * looks like it should be ok to me. Anyone know what's up? --Mark | |
457 */ | |
8963 | 458 pixbuf = (theme->icon ? gdk_pixbuf_new_from_file(theme->icon, NULL) : NULL); |
5440 | 459 |
460 gtk_list_store_set(smiley_theme_store, &iter, | |
461 0, pixbuf, | |
462 1, description, | |
463 2, theme->path, | |
8928 | 464 3, theme->name, |
5440 | 465 -1); |
7094
2343c3aa1dec
[gaim-migrate @ 7659]
Christian Hammond <chipx86@chipx86.com>
parents:
7092
diff
changeset
|
466 |
2343c3aa1dec
[gaim-migrate @ 7659]
Christian Hammond <chipx86@chipx86.com>
parents:
7092
diff
changeset
|
467 if (pixbuf != NULL) |
2343c3aa1dec
[gaim-migrate @ 7659]
Christian Hammond <chipx86@chipx86.com>
parents:
7092
diff
changeset
|
468 g_object_unref(G_OBJECT(pixbuf)); |
2343c3aa1dec
[gaim-migrate @ 7659]
Christian Hammond <chipx86@chipx86.com>
parents:
7092
diff
changeset
|
469 |
5440 | 470 g_free(description); |
471 themes = themes->next; | |
472 if (current_smiley_theme && !strcmp(theme->path, current_smiley_theme->path)) { | |
473 /* path = gtk_tree_path_new_from_indices(ind); */ | |
474 char *iwishihadgtk2_2 = g_strdup_printf("%d", ind); | |
475 path = gtk_tree_path_new_from_string(iwishihadgtk2_2); | |
476 g_free(iwishihadgtk2_2); | |
477 } | |
478 ind++; | |
479 } | |
480 | |
481 return path; | |
482 } | |
483 | |
484 void theme_install_theme(char *path, char *extn) { | |
485 #ifndef _WIN32 | |
486 gchar *command; | |
487 #endif | |
488 gchar *destdir; | |
489 gchar *tail; | |
8494 | 490 GtkTreePath *themepath = NULL; |
5440 | 491 |
492 /* Just to be safe */ | |
493 g_strchomp(path); | |
494 | |
495 /* I dont know what you are, get out of here */ | |
496 if (extn != NULL) | |
497 tail = extn; | |
498 else if ((tail = strrchr(path, '.')) == NULL) | |
499 return; | |
500 | |
501 destdir = g_strconcat(gaim_user_dir(), G_DIR_SEPARATOR_S "smileys", NULL); | |
502 | |
503 /* We'll check this just to make sure. This also lets us do something different on | |
504 * other platforms, if need be */ | |
505 if (!g_ascii_strcasecmp(tail, ".gz") || !g_ascii_strcasecmp(tail, ".tgz")) { | |
506 #ifndef _WIN32 | |
507 command = g_strdup_printf("tar > /dev/null xzf \"%s\" -C %s", path, destdir); | |
508 #else | |
509 if(!wgaim_gz_untar(path, destdir)) { | |
510 g_free(destdir); | |
511 return; | |
512 } | |
513 #endif | |
514 } | |
515 else { | |
516 g_free(destdir); | |
517 return; | |
518 } | |
519 | |
520 #ifndef _WIN32 | |
521 /* Fire! */ | |
522 system(command); | |
523 | |
524 g_free(command); | |
525 #endif | |
526 g_free(destdir); | |
527 | |
8494 | 528 themepath = theme_refresh_theme_list(); |
529 if (themepath != NULL) | |
530 gtk_tree_path_free(themepath); | |
5440 | 531 } |
532 | |
7094
2343c3aa1dec
[gaim-migrate @ 7659]
Christian Hammond <chipx86@chipx86.com>
parents:
7092
diff
changeset
|
533 static void |
2343c3aa1dec
[gaim-migrate @ 7659]
Christian Hammond <chipx86@chipx86.com>
parents:
7092
diff
changeset
|
534 theme_got_url(void *data, const char *themedata, size_t len) |
2343c3aa1dec
[gaim-migrate @ 7659]
Christian Hammond <chipx86@chipx86.com>
parents:
7092
diff
changeset
|
535 { |
5440 | 536 FILE *f; |
537 gchar *path; | |
538 | |
539 f = gaim_mkstemp(&path); | |
540 fwrite(themedata, len, 1, f); | |
541 fclose(f); | |
542 | |
543 theme_install_theme(path, data); | |
544 | |
545 unlink(path); | |
546 g_free(path); | |
547 } | |
548 | |
549 void theme_dnd_recv(GtkWidget *widget, GdkDragContext *dc, guint x, guint y, GtkSelectionData *sd, | |
550 guint info, guint t, gpointer data) { | |
551 gchar *name = sd->data; | |
552 | |
553 if ((sd->length >= 0) && (sd->format == 8)) { | |
554 /* Well, it looks like the drag event was cool. | |
555 * Let's do something with it */ | |
556 | |
557 if (!g_ascii_strncasecmp(name, "file://", 7)) { | |
558 GError *converr = NULL; | |
559 gchar *tmp; | |
560 /* It looks like we're dealing with a local file. Let's | |
561 * just untar it in the right place */ | |
562 if(!(tmp = g_filename_from_uri(name, NULL, &converr))) { | |
563 gaim_debug(GAIM_DEBUG_ERROR, "theme dnd", "%s\n", | |
564 (converr ? converr->message : | |
565 "g_filename_from_uri error")); | |
566 return; | |
567 } | |
568 theme_install_theme(tmp, NULL); | |
569 g_free(tmp); | |
570 } else if (!g_ascii_strncasecmp(name, "http://", 7)) { | |
571 /* Oo, a web drag and drop. This is where things | |
572 * will start to get interesting */ | |
573 gchar *tail; | |
574 | |
575 if ((tail = strrchr(name, '.')) == NULL) | |
576 return; | |
577 | |
578 /* We'll check this just to make sure. This also lets us do something different on | |
579 * other platforms, if need be */ | |
7094
2343c3aa1dec
[gaim-migrate @ 7659]
Christian Hammond <chipx86@chipx86.com>
parents:
7092
diff
changeset
|
580 gaim_url_fetch(name, TRUE, NULL, FALSE, theme_got_url, ".tgz"); |
5440 | 581 } |
582 | |
583 gtk_drag_finish(dc, TRUE, FALSE, t); | |
584 } | |
585 | |
586 gtk_drag_finish(dc, FALSE, FALSE, t); | |
587 } | |
588 | |
8928 | 589 /* Does same as normal sort, except "none" is sorted first */ |
590 gint gaim_sort_smileys (GtkTreeModel *model, | |
591 GtkTreeIter *a, | |
592 GtkTreeIter *b, | |
593 gpointer userdata) | |
594 { | |
595 gint ret = 0; | |
596 gchar *name1, *name2; | |
597 | |
598 gtk_tree_model_get(model, a, 3, &name1, -1); | |
599 gtk_tree_model_get(model, b, 3, &name2, -1); | |
600 | |
601 if (name1 == NULL || name2 == NULL) { | |
602 if (!(name1 == NULL && name2 == NULL)) | |
603 ret = (name1 == NULL) ? -1: 1; | |
604 } else if (!g_ascii_strcasecmp(name1, "none")) { | |
605 /* Sort name1 first */ | |
606 ret = -1; | |
607 } else if (!g_ascii_strcasecmp(name2, "none")) { | |
608 /* Sort name2 first */ | |
609 ret = 1; | |
610 } else { | |
611 /* Neither string is "none", default to normal sort */ | |
612 ret = g_utf8_collate(name1,name2); | |
613 } | |
614 | |
615 return ret; | |
616 } | |
617 | |
5440 | 618 GtkWidget *theme_page() { |
619 GtkWidget *ret; | |
620 GtkWidget *sw; | |
621 GtkWidget *view; | |
622 GtkCellRenderer *rend; | |
623 GtkTreeViewColumn *col; | |
624 GtkTreeSelection *sel; | |
625 GtkTreePath *path = NULL; | |
626 GtkWidget *label; | |
627 GtkTargetEntry te[3] = {{"text/plain", 0, 0},{"text/uri-list", 0, 1},{"STRING", 0, 2}}; | |
628 | |
629 ret = gtk_vbox_new(FALSE, 18); | |
630 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
631 | |
632 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.")); | |
633 | |
634 gtk_label_set_line_wrap(GTK_LABEL(label), TRUE); | |
635 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
636 gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_LEFT); | |
637 | |
638 gtk_box_pack_start(GTK_BOX(ret), label, FALSE, TRUE, 0); | |
639 gtk_widget_show(label); | |
640 | |
641 sw = gtk_scrolled_window_new(NULL,NULL); | |
7939 | 642 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); |
7931 | 643 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_IN); |
5440 | 644 |
645 gtk_box_pack_start(GTK_BOX(ret), sw, TRUE, TRUE, 0); | |
8928 | 646 smiley_theme_store = gtk_list_store_new (4, GDK_TYPE_PIXBUF, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING); |
5440 | 647 |
648 path = theme_refresh_theme_list(); | |
8075 | 649 |
5440 | 650 view = gtk_tree_view_new_with_model (GTK_TREE_MODEL(smiley_theme_store)); |
651 | |
652 gtk_drag_dest_set(view, GTK_DEST_DEFAULT_MOTION | GTK_DEST_DEFAULT_HIGHLIGHT | GTK_DEST_DEFAULT_DROP, te, | |
653 sizeof(te) / sizeof(GtkTargetEntry) , GDK_ACTION_COPY | GDK_ACTION_MOVE); | |
654 | |
655 g_signal_connect(G_OBJECT(view), "drag_data_received", G_CALLBACK(theme_dnd_recv), smiley_theme_store); | |
656 | |
657 rend = gtk_cell_renderer_pixbuf_new(); | |
658 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (view)); | |
659 | |
660 if(path) { | |
661 gtk_tree_selection_select_path(sel, path); | |
662 gtk_tree_path_free(path); | |
663 } | |
8928 | 664 |
665 /* Custom sort so "none" theme is at top of list */ | |
666 gtk_tree_sortable_set_sort_func(GTK_TREE_SORTABLE(smiley_theme_store), | |
667 3, gaim_sort_smileys, NULL, NULL); | |
668 | |
8075 | 669 gtk_tree_sortable_set_sort_column_id(GTK_TREE_SORTABLE(smiley_theme_store), |
8928 | 670 3, GTK_SORT_ASCENDING); |
5440 | 671 |
672 col = gtk_tree_view_column_new_with_attributes (_("Icon"), | |
673 rend, | |
674 "pixbuf", 0, | |
675 NULL); | |
676 gtk_tree_view_append_column (GTK_TREE_VIEW(view), col); | |
677 | |
678 rend = gtk_cell_renderer_text_new(); | |
679 col = gtk_tree_view_column_new_with_attributes (_("Description"), | |
680 rend, | |
681 "markup", 1, | |
682 NULL); | |
683 gtk_tree_view_append_column (GTK_TREE_VIEW(view), col); | |
684 g_object_unref(G_OBJECT(smiley_theme_store)); | |
685 gtk_container_add(GTK_CONTAINER(sw), view); | |
686 | |
8075 | 687 g_signal_connect(G_OBJECT(sel), "changed", G_CALLBACK(smiley_sel), NULL); |
5440 | 688 |
689 gtk_widget_show_all(ret); | |
8137 | 690 |
691 gaim_set_accessible_label (view, label); | |
692 | |
5440 | 693 return ret; |
694 } | |
695 | |
9025 | 696 static void |
697 formatting_reset_cb(GtkWidget *w, GtkWidget* imhtml) { | |
698 gboolean bold, italic, uline; | |
699 bold = italic = uline = FALSE; | |
700 | |
701 gtk_imhtml_get_current_format(GTK_IMHTML(imhtml), &bold, &italic, &uline); | |
702 if (bold) | |
703 gtk_imhtml_toggle_bold(GTK_IMHTML(imhtml)); | |
704 if (italic) | |
705 gtk_imhtml_toggle_italic(GTK_IMHTML(imhtml)); | |
706 if (uline) | |
707 gtk_imhtml_toggle_underline(GTK_IMHTML(imhtml)); | |
708 | |
709 gtk_imhtml_font_set_size(GTK_IMHTML(imhtml), 3); | |
710 gtk_imhtml_toggle_forecolor(GTK_IMHTML(imhtml), NULL); | |
711 gtk_imhtml_toggle_backcolor(GTK_IMHTML(imhtml), NULL); | |
712 gtk_imhtml_toggle_fontface(GTK_IMHTML(imhtml), NULL); | |
713 } | |
714 | |
715 static void | |
716 formatting_toggle_cb(GtkIMHtml *imhtml, GtkIMHtmlButtons buttons, void *bah) | |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
717 { |
9025 | 718 gboolean bold, italic, uline; |
719 | |
720 bold = italic = uline = FALSE; | |
721 gtk_imhtml_get_current_format(GTK_IMHTML(imhtml), | |
722 &bold, &italic, &uline); | |
723 | |
724 if (buttons & GTK_IMHTML_BOLD) | |
725 gaim_prefs_set_bool("/gaim/gtk/conversations/send_bold", bold); | |
726 if (buttons & GTK_IMHTML_ITALIC) | |
727 gaim_prefs_set_bool("/gaim/gtk/conversations/send_italic", italic); | |
728 if (buttons & GTK_IMHTML_UNDERLINE) | |
729 gaim_prefs_set_bool("/gaim/gtk/conversations/send_underline", uline); | |
730 | |
731 if (buttons & GTK_IMHTML_GROW || buttons & GTK_IMHTML_SHRINK) | |
732 gaim_prefs_set_int("/gaim/gtk/conversations/font_size", | |
733 gtk_imhtml_get_current_fontsize(GTK_IMHTML(imhtml))); | |
734 if (buttons & GTK_IMHTML_FACE) { | |
735 char *face = gtk_imhtml_get_current_fontface(GTK_IMHTML(imhtml)); | |
736 if (!face) | |
737 face = g_strdup(""); | |
738 | |
739 gaim_prefs_set_string("/gaim/gtk/conversations/font_face", face); | |
740 g_free(face); | |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
741 } |
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
742 |
9025 | 743 if (buttons & GTK_IMHTML_FORECOLOR) { |
744 char *color = gtk_imhtml_get_current_forecolor(GTK_IMHTML(imhtml)); | |
745 if (!color) | |
746 color = g_strdup(""); | |
747 | |
748 gaim_prefs_set_string("/gaim/gtk/conversations/fgcolor", color); | |
749 g_free(color); | |
750 } | |
751 | |
752 if (buttons & GTK_IMHTML_BACKCOLOR) { | |
753 char *color = gtk_imhtml_get_current_backcolor(GTK_IMHTML(imhtml)); | |
754 if (!color) | |
755 color = g_strdup(""); | |
756 | |
757 gaim_prefs_set_string("/gaim/gtk/conversations/bgcolor", color); | |
758 g_free(color); | |
759 } | |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
760 } |
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
761 |
8988 | 762 GtkWidget *messages_page() { |
5440 | 763 GtkWidget *ret; |
9025 | 764 GtkWidget *vbox, *fontvbox; |
8833 | 765 GtkWidget *imhtml; |
766 GtkWidget *toolbar; | |
767 GtkWidget *sw; | |
8988 | 768 GtkWidget *frame; |
9025 | 769 GtkWidget *option; |
770 GtkWidget *button; | |
5440 | 771 |
772 ret = gtk_vbox_new(FALSE, 18); | |
773 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
774 | |
8988 | 775 vbox = gaim_gtk_make_frame (ret, _("Display")); |
776 gaim_gtk_prefs_checkbox(_("Show _timestamp on messages"), | |
777 "/gaim/gtk/conversations/show_timestamps", vbox); | |
778 #ifdef USE_GTKSPELL | |
779 gaim_gtk_prefs_checkbox(_("_Highlight misspelled words"), | |
780 "/gaim/gtk/conversations/spellcheck", vbox); | |
781 #endif | |
9049 | 782 #if 1 /* PREFSLASH04 */ |
783 vbox = gaim_gtk_make_frame (ret, _("Ignore")); | |
784 gaim_gtk_prefs_checkbox(_("Ignore c_olors"), | |
785 "/gaim/gtk/conversations/ignore_colors", vbox); | |
786 gaim_gtk_prefs_checkbox(_("Ignore font _faces"), | |
787 "/gaim/gtk/conversations/ignore_fonts", vbox); | |
788 gaim_gtk_prefs_checkbox(_("Ignore font si_zes"), | |
789 "/gaim/gtk/conversations/ignore_font_sizes", vbox); | |
790 #else | |
9025 | 791 gaim_gtk_prefs_checkbox(_("_Ignore formatting on incoming messages"), |
8988 | 792 "/gaim/gtk/conversations/ignore_formatting", vbox); |
9049 | 793 #endif |
8988 | 794 |
795 vbox = gaim_gtk_make_frame (ret, _("Default Formatting")); | |
796 | |
9025 | 797 option = gaim_gtk_prefs_checkbox(_("_Send default formatting with outgoing messages"), |
798 "/gaim/gtk/conversations/send_formatting", vbox); | |
799 | |
8988 | 800 frame = gtk_frame_new(NULL); |
801 gtk_frame_set_shadow_type(GTK_FRAME(frame), GTK_SHADOW_IN); | |
802 gtk_box_pack_start(GTK_BOX(vbox), frame, FALSE, FALSE, 0); | |
803 | |
9025 | 804 fontvbox = gtk_vbox_new(FALSE, 0); |
805 gtk_container_add(GTK_CONTAINER(frame), fontvbox); | |
8988 | 806 |
8833 | 807 toolbar = gtk_imhtmltoolbar_new(); |
9025 | 808 gtk_box_pack_start(GTK_BOX(fontvbox), toolbar, FALSE, FALSE, 0); |
8833 | 809 |
810 sw = gtk_scrolled_window_new(NULL, NULL); | |
811 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), | |
812 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); | |
8988 | 813 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_NONE); |
9025 | 814 gtk_box_pack_start(GTK_BOX(fontvbox), sw, TRUE, TRUE, 0); |
8833 | 815 |
816 imhtml = gtk_imhtml_new(NULL, NULL); | |
9025 | 817 gtk_widget_set_name(imhtml, "gaim_gtkprefs_font_imhtml"); |
8833 | 818 gtk_imhtml_set_editable(GTK_IMHTML(imhtml), TRUE); |
819 gtk_imhtml_set_format_functions(GTK_IMHTML(imhtml), GTK_IMHTML_ALL ^ GTK_IMHTML_IMAGE); | |
8836 | 820 gtk_imhtml_set_whole_buffer_formatting_only(GTK_IMHTML(imhtml), TRUE); |
8833 | 821 |
822 gtk_imhtml_smiley_shortcuts(GTK_IMHTML(imhtml), | |
823 gaim_prefs_get_bool("/gaim/gtk/conversations/smiley_shortcuts")); | |
824 gtk_imhtml_html_shortcuts(GTK_IMHTML(imhtml), | |
825 gaim_prefs_get_bool("/gaim/gtk/conversations/html_shortcuts")); | |
826 gtk_imhtmltoolbar_attach(GTK_IMHTMLTOOLBAR(toolbar), imhtml); | |
827 gtk_imhtmltoolbar_associate_smileys(GTK_IMHTMLTOOLBAR(toolbar), "default"); | |
828 gaim_setup_imhtml(imhtml); | |
9025 | 829 gtk_imhtml_append_text(GTK_IMHTML(imhtml), _("This is how your outgoing message text will appear when you use protocols that support formatting. :)"), 0); |
8833 | 830 gtk_container_add(GTK_CONTAINER(sw), imhtml); |
8988 | 831 |
9056 | 832 button = gtk_button_new_with_mnemonic(_("_Clear Formatting")); |
9025 | 833 gtk_box_pack_start(GTK_BOX(fontvbox), button, FALSE, FALSE, 0); |
834 | |
835 if (!gaim_prefs_get_bool("/gaim/gtk/conversations/send_formatting")) | |
836 gtk_widget_set_sensitive(fontvbox, FALSE); | |
837 | |
8836 | 838 if (gaim_prefs_get_bool("/gaim/gtk/conversations/send_bold")) |
839 gtk_imhtml_toggle_bold(GTK_IMHTML(imhtml)); | |
840 if (gaim_prefs_get_bool("/gaim/gtk/conversations/send_italic")) | |
841 gtk_imhtml_toggle_italic(GTK_IMHTML(imhtml)); | |
842 if (gaim_prefs_get_bool("/gaim/gtk/conversations/send_underline")) | |
843 gtk_imhtml_toggle_underline(GTK_IMHTML(imhtml)); | |
844 | |
845 gtk_imhtml_font_set_size(GTK_IMHTML(imhtml), gaim_prefs_get_int("/gaim/gtk/conversations/font_size")); | |
846 gtk_imhtml_toggle_forecolor(GTK_IMHTML(imhtml), gaim_prefs_get_string("/gaim/gtk/conversations/fgcolor")); | |
847 gtk_imhtml_toggle_backcolor(GTK_IMHTML(imhtml), gaim_prefs_get_string("/gaim/gtk/conversations/bgcolor")); | |
848 gtk_imhtml_toggle_fontface(GTK_IMHTML(imhtml), gaim_prefs_get_string("/gaim/gtk/conversations/font_face")); | |
849 | |
9025 | 850 g_signal_connect(G_OBJECT(button), "clicked", |
851 G_CALLBACK(formatting_reset_cb), imhtml); | |
852 | |
853 g_signal_connect(G_OBJECT(option), "clicked", | |
854 G_CALLBACK(gaim_gtk_toggle_sensitive), fontvbox); | |
855 | |
856 g_signal_connect(G_OBJECT(imhtml), "format_function_toggle", | |
857 G_CALLBACK(formatting_toggle_cb), NULL); | |
858 | |
5440 | 859 gtk_widget_show_all(ret); |
860 return ret; | |
861 } | |
862 | |
863 GtkWidget *hotkeys_page() { | |
864 GtkWidget *ret; | |
865 GtkWidget *vbox; | |
866 ret = gtk_vbox_new(FALSE, 18); | |
867 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
868 | |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
869 vbox = gaim_gtk_make_frame(ret, _("Send Message")); |
7987 | 870 gaim_gtk_prefs_checkbox(_("Enter _sends message"), |
871 "/gaim/gtk/conversations/enter_sends", vbox); | |
872 gaim_gtk_prefs_checkbox(_("C_ontrol-Enter sends message"), | |
873 "/gaim/gtk/conversations/ctrl_enter_sends", vbox); | |
5440 | 874 |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
875 vbox = gaim_gtk_make_frame (ret, _("Window Closing")); |
7987 | 876 gaim_gtk_prefs_checkbox(_("_Escape closes window"), |
877 "/gaim/gtk/conversations/escape_closes", vbox); | |
5440 | 878 |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
879 vbox = gaim_gtk_make_frame(ret, _("Insertions")); |
8927 | 880 gaim_gtk_prefs_checkbox(_("Control-{B/I/U} changes _formatting"), |
7987 | 881 "/gaim/gtk/conversations/html_shortcuts", vbox); |
882 gaim_gtk_prefs_checkbox(_("Control-(number) _inserts smileys"), | |
883 "/gaim/gtk/conversations/smiley_shortcuts", vbox); | |
5440 | 884 |
885 gtk_widget_show_all(ret); | |
886 return ret; | |
887 } | |
888 | |
889 GtkWidget *list_page() { | |
890 GtkWidget *ret; | |
891 GtkWidget *vbox; | |
892 GList *l= NULL; | |
5567
cc9ddec20010
[gaim-migrate @ 5969]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
893 GSList *sl; |
5440 | 894 ret = gtk_vbox_new(FALSE, 18); |
895 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
7305 | 896 |
897 | |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
898 vbox = gaim_gtk_make_frame (ret, _("Buddy List Sorting")); |
5567
cc9ddec20010
[gaim-migrate @ 5969]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
899 |
cc9ddec20010
[gaim-migrate @ 5969]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
900 for (sl = gaim_gtk_blist_sort_methods; sl != NULL; sl = sl->next) { |
5631 | 901 struct gaim_gtk_blist_sort_method *method = sl->data; |
902 | |
903 l = g_list_append(l, method->name); | |
904 l = g_list_append(l, method->id); | |
5440 | 905 } |
5546
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
906 |
8063 | 907 gaim_gtk_prefs_dropdown_from_list(vbox, _("_Sorting:"), GAIM_PREF_STRING, |
7987 | 908 "/gaim/gtk/blist/sort_type", l); |
5546
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
909 |
5440 | 910 g_list_free(l); |
911 | |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
912 vbox = gaim_gtk_make_frame (ret, _("Buddy List Window")); |
8949 | 913 gaim_gtk_prefs_dropdown(vbox, _("Show _buttons as:"), GAIM_PREF_INT, |
914 "/gaim/gtk/blist/button_style", | |
915 _("Pictures"), GAIM_BUTTON_IMAGE, | |
916 _("Text"), GAIM_BUTTON_TEXT, | |
917 _("Pictures and text"), GAIM_BUTTON_TEXT_IMAGE, | |
918 _("None"), GAIM_BUTTON_NONE, | |
919 NULL); | |
7987 | 920 gaim_gtk_prefs_checkbox(_("_Raise window on events"), |
921 "/gaim/gtk/blist/raise_on_events", vbox); | |
5440 | 922 |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
923 vbox = gaim_gtk_make_frame (ret, _("Buddy Display")); |
7987 | 924 gaim_gtk_prefs_checkbox(_("Show buddy _icons"), |
7305 | 925 "/gaim/gtk/blist/show_buddy_icons", vbox); |
7987 | 926 gaim_gtk_prefs_checkbox(_("Show _warning levels"), |
7305 | 927 "/gaim/gtk/blist/show_warning_level", vbox); |
7987 | 928 gaim_gtk_prefs_checkbox(_("Show idle _times"), |
7305 | 929 "/gaim/gtk/blist/show_idle_time", vbox); |
7987 | 930 gaim_gtk_prefs_checkbox(_("Dim i_dle buddies"), |
7305 | 931 "/gaim/gtk/blist/grey_idle_buddies", vbox); |
7987 | 932 gaim_gtk_prefs_checkbox(_("_Automatically expand contacts"), |
7731 | 933 "/gaim/gtk/blist/auto_expand_contacts", vbox); |
5440 | 934 |
935 gtk_widget_show_all(ret); | |
5547
90a67ea697f7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
936 |
5440 | 937 return ret; |
938 } | |
939 | |
8979 | 940 static void |
941 conversation_placement_cb(const char *name, GaimPrefType type, gpointer value, | |
942 gpointer data) | |
943 { | |
944 const char *placement = value; | |
945 | |
9108 | 946 if (strcmp(placement, "new")) |
8979 | 947 gtk_widget_set_sensitive(GTK_WIDGET(data), FALSE); |
948 else | |
949 gtk_widget_set_sensitive(GTK_WIDGET(data), TRUE); | |
950 } | |
951 | |
5440 | 952 GtkWidget *conv_page() { |
953 GtkWidget *ret; | |
954 GtkWidget *vbox; | |
955 GtkWidget *label; | |
8881 | 956 GtkWidget *close_checkbox;/*, *icons_checkbox;*/ |
8988 | 957 GtkWidget *tabs_checkbox, *same_checkbox, *tab_placement; |
5440 | 958 GtkSizeGroup *sg; |
959 GList *names = NULL; | |
960 | |
961 ret = gtk_vbox_new(FALSE, 18); | |
962 gtk_container_set_border_width(GTK_CONTAINER(ret), 12); | |
963 | |
964 sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); | |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
965 vbox = gaim_gtk_make_frame(ret, _("Conversations")); |
5440 | 966 |
5858 | 967 names = gaim_conv_placement_get_options(); |
5440 | 968 |
7987 | 969 label = gaim_gtk_prefs_dropdown_from_list(vbox, _("_Placement:"), |
7561
cdfdbabd3266
[gaim-migrate @ 8175]
Christian Hammond <chipx86@chipx86.com>
parents:
7553
diff
changeset
|
970 GAIM_PREF_STRING, "/gaim/gtk/conversations/placement", names); |
5440 | 971 g_list_free(names); |
972 | |
973 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
974 gtk_size_group_add_widget(sg, label); | |
9108 | 975 #if 1 /* PREFSLASH04 */ |
976 label = gaim_gtk_prefs_dropdown(vbox, _("Show _buttons as:"), GAIM_PREF_INT, | |
977 "/gaim/gtk/conversations/button_type", | |
978 _("Pictures"), GAIM_BUTTON_IMAGE, | |
979 _("Text"), GAIM_BUTTON_TEXT, | |
980 _("Pictures and text"), GAIM_BUTTON_TEXT_IMAGE, | |
981 _("None"), GAIM_BUTTON_NONE, | |
982 NULL); | |
983 | |
984 gtk_size_group_add_widget(sg, label); | |
985 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
986 #endif /* PREFSLASH04 */ | |
987 | |
988 #if 0 /* I don't like this */ | |
989 label = gaim_gtk_prefs_labeled_spin_button(vbox, _("Number of conversations per window"), | |
8979 | 990 "/gaim/gtk/conversations/placement_number", |
991 1, 50, sg); | |
9072 | 992 if (strcmp("number", |
9108 | 993 gaim_prefs_get_string("/gaim/gtk/conversations/placement"))) |
9072 | 994 gtk_widget_set_sensitive(label, FALSE); |
995 else | |
996 gtk_widget_set_sensitive(label, TRUE); | |
9108 | 997 #endif /* I think it should be a plugin */ |
8979 | 998 |
8600 | 999 gaim_gtk_prefs_checkbox(_("Show _formatting toolbar"), |
7326
00a9ab26d607
[gaim-migrate @ 7912]
Christian Hammond <chipx86@chipx86.com>
parents:
7305
diff
changeset
|
1000 "/gaim/gtk/conversations/show_formatting_toolbar", vbox); |
00a9ab26d607
[gaim-migrate @ 7912]
Christian Hammond <chipx86@chipx86.com>
parents:
7305
diff
changeset
|
1001 |
8015 | 1002 gaim_gtk_prefs_checkbox(_("Show a_liases in tabs/titles"), |
1003 "/core/conversations/use_alias_for_title", vbox); | |
1004 | |
9108 | 1005 gaim_gtk_prefs_checkbox(_("_Raise window on events"), |
1006 "/gaim/gtk/conversations/raise_on_events", vbox); | |
1007 | |
1008 /* XXX This caption totally sucks but I can't break the string freeze. */ | |
1009 gaim_gtk_prefs_checkbox(_("Co_lorize screen names"), | |
1010 "/gaim/gtk/conversations/chat/color_nicks", vbox); | |
1011 gaim_gtk_prefs_checkbox(_("Show buddy _icons"), | |
1012 "/gaim/gtk/conversations/im/show_buddy_icons", vbox); | |
1013 gaim_gtk_prefs_checkbox(_("Enable buddy icon a_nimation"), | |
1014 "/gaim/gtk/conversations/im/animate_buddy_icons", vbox); | |
1015 gaim_gtk_prefs_checkbox(_("Notify buddies that you are _typing to them"), | |
1016 "/core/conversations/im/send_typing", vbox); | |
1017 | |
5547
90a67ea697f7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1018 vbox = gaim_gtk_make_frame (ret, _("Tab Options")); |
90a67ea697f7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1019 |
7987 | 1020 tabs_checkbox = gaim_gtk_prefs_checkbox(_("Show IMs and chats in _tabbed windows"), |
5547
90a67ea697f7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1021 "/gaim/gtk/conversations/tabs", vbox); |
9108 | 1022 if (strcmp(gaim_prefs_get_string("/gaim/gtk/conversations/placement"), "new")) |
1023 gtk_widget_set_sensitive(tabs_checkbox, FALSE); | |
1024 | |
1025 #if 0 /* Overzealous last-minute prefslashing */ | |
7987 | 1026 same_checkbox = gaim_gtk_prefs_checkbox(_("Show IMs and chats in _same tabbed window"), |
9108 | 1027 "/core/conversations/combine_chat_im", vbox); |
7128 | 1028 if (!gaim_prefs_get_bool("/gaim/gtk/conversations/tabs")) { |
1029 gtk_widget_set_sensitive(GTK_WIDGET(same_checkbox), FALSE); | |
1030 } | |
9108 | 1031 #endif |
1032 | |
1033 placement_pref_id = gaim_prefs_connect_callback("/gaim/gtk/conversations/placement", | |
1034 conversation_placement_cb, | |
1035 tabs_checkbox); | |
7128 | 1036 |
1037 g_signal_connect(G_OBJECT(tabs_checkbox), "clicked", | |
9108 | 1038 G_CALLBACK(gaim_gtk_toggle_sensitive), same_checkbox); |
7128 | 1039 |
7987 | 1040 close_checkbox = gaim_gtk_prefs_checkbox(_("Show _close button on tabs"), |
5547
90a67ea697f7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1041 "/gaim/gtk/conversations/close_on_tabs", |
90a67ea697f7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1042 vbox); |
90a67ea697f7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1043 |
5568
fb4f7bd7525c
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1044 if (!gaim_prefs_get_bool("/gaim/gtk/conversations/tabs")) { |
5547
90a67ea697f7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1045 gtk_widget_set_sensitive(GTK_WIDGET(close_checkbox), FALSE); |
90a67ea697f7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1046 } |
90a67ea697f7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1047 |
7128 | 1048 g_signal_connect(G_OBJECT(tabs_checkbox), "clicked", |
5547
90a67ea697f7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1049 G_CALLBACK(gaim_gtk_toggle_sensitive), close_checkbox); |
6392
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6384
diff
changeset
|
1050 |
8988 | 1051 tab_placement = gtk_hbox_new(FALSE, 0); |
1052 | |
1053 label = gaim_gtk_prefs_dropdown(tab_placement, _("_Tab Placement:"), GAIM_PREF_INT, | |
1054 "/gaim/gtk/conversations/tab_side", | |
1055 _("Top"), GTK_POS_TOP, | |
1056 _("Bottom"), GTK_POS_BOTTOM, | |
1057 _("Left"), GTK_POS_LEFT, | |
1058 _("Right"), GTK_POS_RIGHT, | |
1059 NULL); | |
1060 | |
1061 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
1062 gtk_size_group_add_widget(sg, label); | |
1063 | |
1064 gtk_box_pack_start(GTK_BOX(vbox), tab_placement, FALSE, FALSE, 0); | |
1065 | |
1066 if (!gaim_prefs_get_bool("/gaim/gtk/conversations/tabs")) { | |
1067 gtk_widget_set_sensitive(GTK_WIDGET(tab_placement), FALSE); | |
1068 } | |
1069 | |
1070 g_signal_connect(G_OBJECT(tabs_checkbox), "clicked", | |
1071 G_CALLBACK(gaim_gtk_toggle_sensitive), tab_placement); | |
1072 | |
5440 | 1073 gtk_widget_show_all(ret); |
1074 | |
1075 return ret; | |
1076 } | |
1077 | |
8231
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1078 static void network_ip_changed(GtkEntry *entry, gpointer data) |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1079 { |
8834 | 1080 gaim_network_set_public_ip(gtk_entry_get_text(entry)); |
8231
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1081 } |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1082 |
9108 | 1083 static void |
1084 proxy_changed_cb(const char *name, GaimPrefType type, gpointer value, | |
1085 gpointer data) | |
1086 { | |
1087 GtkWidget *frame = data; | |
1088 const char *proxy = value; | |
1089 | |
1090 if (strcmp(proxy, "none") && strcmp(proxy, "envvar")) | |
1091 gtk_widget_set_sensitive(frame, TRUE); | |
1092 else | |
1093 gtk_widget_set_sensitive(frame, FALSE); | |
1094 } | |
1095 | |
1096 static void proxy_print_option(GtkEntry *entry, int entrynum) | |
1097 { | |
1098 if (entrynum == PROXYHOST) | |
1099 gaim_prefs_set_string("/core/proxy/host", gtk_entry_get_text(entry)); | |
1100 else if (entrynum == PROXYPORT) | |
1101 gaim_prefs_set_int("/core/proxy/port", atoi(gtk_entry_get_text(entry))); | |
1102 else if (entrynum == PROXYUSER) | |
1103 gaim_prefs_set_string("/core/proxy/username", gtk_entry_get_text(entry)); | |
1104 else if (entrynum == PROXYPASS) | |
1105 gaim_prefs_set_string("/core/proxy/password", gtk_entry_get_text(entry)); | |
1106 } | |
1107 | |
8231
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1108 GtkWidget *network_page() { |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1109 GtkWidget *ret; |
9108 | 1110 GtkWidget *vbox, *hbox, *entry; |
8231
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1111 GtkWidget *table, *label, *auto_ip_checkbox, *ports_checkbox, *spin_button; |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1112 GtkSizeGroup *sg; |
9108 | 1113 GaimProxyInfo *proxy_info; |
8231
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1114 |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1115 ret = gtk_vbox_new(FALSE, 18); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1116 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1117 |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1118 vbox = gaim_gtk_make_frame (ret, _("IP Address")); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1119 |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1120 auto_ip_checkbox = gaim_gtk_prefs_checkbox(_("_Autodetect IP Address"), |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1121 "/core/network/auto_ip", vbox); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1122 |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1123 table = gtk_table_new(2, 1, FALSE); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1124 gtk_container_set_border_width(GTK_CONTAINER(table), 5); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1125 gtk_table_set_col_spacings(GTK_TABLE(table), 5); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1126 gtk_table_set_row_spacings(GTK_TABLE(table), 10); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1127 gtk_container_add(GTK_CONTAINER(vbox), table); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1128 |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1129 label = gtk_label_new_with_mnemonic(_("Public _IP:")); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1130 gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1131 gtk_table_attach(GTK_TABLE(table), label, 0, 1, 0, 1, GTK_FILL, 0, 0, 0); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1132 |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1133 entry = gtk_entry_new(); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1134 gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1135 gtk_table_attach(GTK_TABLE(table), entry, 1, 2, 0, 1, GTK_FILL, 0, 0, 0); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1136 g_signal_connect(G_OBJECT(entry), "changed", |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1137 G_CALLBACK(network_ip_changed), NULL); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1138 |
8834 | 1139 if (gaim_network_get_public_ip() != NULL) |
8231
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1140 gtk_entry_set_text(GTK_ENTRY(entry), |
8834 | 1141 gaim_network_get_public_ip()); |
8231
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1142 |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1143 gaim_set_accessible_label (entry, label); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1144 |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1145 |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1146 if (gaim_prefs_get_bool("/core/network/auto_ip")) { |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1147 gtk_widget_set_sensitive(GTK_WIDGET(table), FALSE); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1148 } |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1149 |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1150 g_signal_connect(G_OBJECT(auto_ip_checkbox), "clicked", |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1151 G_CALLBACK(gaim_gtk_toggle_sensitive), table); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1152 |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1153 vbox = gaim_gtk_make_frame (ret, _("Ports")); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1154 sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1155 |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1156 ports_checkbox = gaim_gtk_prefs_checkbox(_("_Manually specify range of ports to listen on"), |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1157 "/core/network/ports_range_use", vbox); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1158 |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1159 spin_button = gaim_gtk_prefs_labeled_spin_button(vbox, _("_Start Port:"), |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1160 "/core/network/ports_range_start", 0, 65535, sg); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1161 if (!gaim_prefs_get_bool("/core/network/ports_range_use")) |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1162 gtk_widget_set_sensitive(GTK_WIDGET(spin_button), FALSE); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1163 g_signal_connect(G_OBJECT(ports_checkbox), "clicked", |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1164 G_CALLBACK(gaim_gtk_toggle_sensitive), spin_button); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1165 |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1166 spin_button = gaim_gtk_prefs_labeled_spin_button(vbox, _("_End Port:"), |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1167 "/core/network/ports_range_end", 0, 65535, sg); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1168 if (!gaim_prefs_get_bool("/core/network/ports_range_use")) |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1169 gtk_widget_set_sensitive(GTK_WIDGET(spin_button), FALSE); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1170 g_signal_connect(G_OBJECT(ports_checkbox), "clicked", |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1171 G_CALLBACK(gaim_gtk_toggle_sensitive), spin_button); |
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8188
diff
changeset
|
1172 |
9108 | 1173 vbox = gaim_gtk_make_frame(ret, _("Proxy Server")); |
1174 prefs_proxy_frame = gtk_vbox_new(FALSE, 0); | |
7987 | 1175 gaim_gtk_prefs_dropdown(vbox, _("Proxy _type:"), GAIM_PREF_STRING, |
9108 | 1176 "/core/proxy/type", |
1177 _("No proxy"), "none", | |
1178 "SOCKS 4", "socks4", | |
1179 "SOCKS 5", "socks5", | |
1180 "HTTP", "http", | |
1181 _("Use Environmental Settings"), "envvar", | |
1182 NULL); | |
1183 gtk_box_pack_start(GTK_BOX(vbox), prefs_proxy_frame, 0, 0, 0); | |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1184 proxy_info = gaim_global_proxy_get_info(); |
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1185 |
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1186 if (proxy_info == NULL || |
6621 | 1187 gaim_proxy_info_get_type(proxy_info) == GAIM_PROXY_NONE || |
1188 gaim_proxy_info_get_type(proxy_info) == GAIM_PROXY_USE_ENVVAR) { | |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1189 |
6001 | 1190 gtk_widget_set_sensitive(GTK_WIDGET(prefs_proxy_frame), FALSE); |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1191 } |
6001 | 1192 proxy_pref_id = gaim_prefs_connect_callback("/core/proxy/type", |
9108 | 1193 proxy_changed_cb, prefs_proxy_frame); |
1194 | |
1195 table = gtk_table_new(4, 2, FALSE); | |
5440 | 1196 gtk_container_set_border_width(GTK_CONTAINER(table), 5); |
1197 gtk_table_set_col_spacings(GTK_TABLE(table), 5); | |
1198 gtk_table_set_row_spacings(GTK_TABLE(table), 10); | |
9108 | 1199 gtk_container_add(GTK_CONTAINER(prefs_proxy_frame), table); |
5440 | 1200 |
1201 | |
7797 | 1202 label = gtk_label_new_with_mnemonic(_("_Host:")); |
5440 | 1203 gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); |
1204 gtk_table_attach(GTK_TABLE(table), label, 0, 1, 0, 1, GTK_FILL, 0, 0, 0); | |
1205 | |
1206 entry = gtk_entry_new(); | |
1207 gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry); | |
1208 gtk_table_attach(GTK_TABLE(table), entry, 1, 2, 0, 1, GTK_FILL, 0, 0, 0); | |
1209 g_signal_connect(G_OBJECT(entry), "changed", | |
1210 G_CALLBACK(proxy_print_option), (void *)PROXYHOST); | |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1211 |
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1212 if (proxy_info != NULL && gaim_proxy_info_get_host(proxy_info)) |
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1213 gtk_entry_set_text(GTK_ENTRY(entry), |
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1214 gaim_proxy_info_get_host(proxy_info)); |
5440 | 1215 |
1216 hbox = gtk_hbox_new(TRUE, 5); | |
1217 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); | |
8137 | 1218 gaim_set_accessible_label (entry, label); |
5440 | 1219 |
7870 | 1220 label = gtk_label_new_with_mnemonic(_("_Port:")); |
5440 | 1221 gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); |
9108 | 1222 gtk_table_attach(GTK_TABLE(table), label, 2, 3, 0, 1, GTK_FILL, 0, 0, 0); |
5440 | 1223 |
1224 entry = gtk_entry_new(); | |
1225 gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry); | |
9108 | 1226 gtk_table_attach(GTK_TABLE(table), entry, 3, 4, 0, 1, GTK_FILL, 0, 0, 0); |
5440 | 1227 g_signal_connect(G_OBJECT(entry), "changed", |
1228 G_CALLBACK(proxy_print_option), (void *)PROXYPORT); | |
1229 | |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1230 if (proxy_info != NULL && gaim_proxy_info_get_port(proxy_info) != 0) { |
5440 | 1231 char buf[128]; |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1232 g_snprintf(buf, sizeof(buf), "%d", |
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1233 gaim_proxy_info_get_port(proxy_info)); |
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1234 |
5440 | 1235 gtk_entry_set_text(GTK_ENTRY(entry), buf); |
1236 } | |
8137 | 1237 gaim_set_accessible_label (entry, label); |
5440 | 1238 |
7797 | 1239 label = gtk_label_new_with_mnemonic(_("_User:")); |
5440 | 1240 gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); |
9108 | 1241 gtk_table_attach(GTK_TABLE(table), label, 0, 1, 1, 2, GTK_FILL, 0, 0, 0); |
5440 | 1242 |
1243 entry = gtk_entry_new(); | |
1244 gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry); | |
9108 | 1245 gtk_table_attach(GTK_TABLE(table), entry, 1, 2, 1, 2, GTK_FILL, 0, 0, 0); |
5440 | 1246 g_signal_connect(G_OBJECT(entry), "changed", |
1247 G_CALLBACK(proxy_print_option), (void *)PROXYUSER); | |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1248 |
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1249 if (proxy_info != NULL && gaim_proxy_info_get_username(proxy_info) != NULL) |
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1250 gtk_entry_set_text(GTK_ENTRY(entry), |
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1251 gaim_proxy_info_get_username(proxy_info)); |
5440 | 1252 |
1253 hbox = gtk_hbox_new(TRUE, 5); | |
1254 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); | |
8137 | 1255 gaim_set_accessible_label (entry, label); |
5440 | 1256 |
7797 | 1257 label = gtk_label_new_with_mnemonic(_("Pa_ssword:")); |
5440 | 1258 gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); |
9108 | 1259 gtk_table_attach(GTK_TABLE(table), label, 2, 3, 1, 2, GTK_FILL, 0, 0, 0); |
5440 | 1260 |
1261 entry = gtk_entry_new(); | |
1262 gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry); | |
9108 | 1263 gtk_table_attach(GTK_TABLE(table), entry, 3, 4, 1, 2, GTK_FILL , 0, 0, 0); |
5440 | 1264 gtk_entry_set_visibility(GTK_ENTRY(entry), FALSE); |
1265 g_signal_connect(G_OBJECT(entry), "changed", | |
1266 G_CALLBACK(proxy_print_option), (void *)PROXYPASS); | |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1267 |
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1268 if (proxy_info != NULL && gaim_proxy_info_get_password(proxy_info) != NULL) |
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1269 gtk_entry_set_text(GTK_ENTRY(entry), |
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1270 gaim_proxy_info_get_password(proxy_info)); |
8137 | 1271 gaim_set_accessible_label (entry, label); |
5440 | 1272 |
1273 gtk_widget_show_all(ret); | |
1274 return ret; | |
1275 } | |
1276 | |
1277 #ifndef _WIN32 | |
1278 static gboolean manual_browser_set(GtkWidget *entry, GdkEventFocus *event, gpointer data) { | |
1279 const char *program = gtk_entry_get_text(GTK_ENTRY(entry)); | |
1280 | |
5560
b7319c094153
[gaim-migrate @ 5961]
Christian Hammond <chipx86@chipx86.com>
parents:
5554
diff
changeset
|
1281 gaim_prefs_set_string("/gaim/gtk/browsers/command", program); |
5440 | 1282 |
1283 /* carry on normally */ | |
1284 return FALSE; | |
1285 } | |
1286 | |
5633 | 1287 static GList *get_available_browsers() |
5440 | 1288 { |
1289 struct browser { | |
1290 char *name; | |
1291 char *command; | |
1292 }; | |
1293 | |
1294 static struct browser possible_browsers[] = { | |
5633 | 1295 {N_("Opera"), "opera"}, |
1296 {N_("Netscape"), "netscape"}, | |
1297 {N_("Mozilla"), "mozilla"}, | |
6070 | 1298 {N_("Konqueror"), "kfmclient"}, |
7916 | 1299 {N_("Galeon"), "galeon"}, |
8267 | 1300 {N_("Firebird"), "mozilla-firebird"}, |
8356 | 1301 {N_("Firefox"), "firefox"}, |
1302 {N_("Gnome Default"), "gnome-open"} | |
5440 | 1303 }; |
8356 | 1304 static const int num_possible_browsers = 8; |
5440 | 1305 |
1306 GList *browsers = NULL; | |
1307 int i = 0; | |
5819 | 1308 char *browser_setting = (char *)gaim_prefs_get_string("/gaim/gtk/browsers/browser"); |
5440 | 1309 |
5568
fb4f7bd7525c
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1310 browsers = g_list_prepend(browsers, "custom"); |
5440 | 1311 browsers = g_list_prepend(browsers, _("Manual")); |
5568
fb4f7bd7525c
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1312 |
5440 | 1313 for (i = 0; i < num_possible_browsers; i++) { |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7095
diff
changeset
|
1314 if (gaim_program_is_valid(possible_browsers[i].command)) { |
5633 | 1315 browsers = g_list_prepend(browsers, |
5551
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1316 possible_browsers[i].command); |
5568
fb4f7bd7525c
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1317 browsers = g_list_prepend(browsers, _(possible_browsers[i].name)); |
5825 | 1318 if(browser_setting && !strcmp(possible_browsers[i].command, browser_setting)) |
5819 | 1319 browser_setting = NULL; |
5440 | 1320 } |
1321 } | |
1322 | |
5819 | 1323 if(browser_setting) |
1324 gaim_prefs_set_string("/gaim/gtk/browsers/browser", "custom"); | |
1325 | |
5440 | 1326 return browsers; |
1327 } | |
1328 | |
5568
fb4f7bd7525c
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1329 static void |
8274 | 1330 browser_changed1_cb(const char *name, GaimPrefType type, gpointer value, |
1331 gpointer data) | |
1332 { | |
1333 GtkWidget *hbox = data; | |
1334 const char *browser = value; | |
1335 | |
1336 gtk_widget_set_sensitive(hbox, strcmp(browser, "custom")); | |
1337 } | |
1338 | |
1339 static void | |
1340 browser_changed2_cb(const char *name, GaimPrefType type, gpointer value, | |
5568
fb4f7bd7525c
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1341 gpointer data) |
fb4f7bd7525c
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1342 { |
fb4f7bd7525c
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1343 GtkWidget *hbox = data; |
fb4f7bd7525c
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1344 const char *browser = value; |
fb4f7bd7525c
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1345 |
fb4f7bd7525c
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1346 gtk_widget_set_sensitive(hbox, !strcmp(browser, "custom")); |
fb4f7bd7525c
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1347 } |
fb4f7bd7525c
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1348 |
5440 | 1349 GtkWidget *browser_page() { |
1350 GtkWidget *ret; | |
1351 GtkWidget *vbox; | |
1352 GtkWidget *hbox; | |
1353 GtkWidget *label; | |
6007 | 1354 GtkWidget *entry; |
5440 | 1355 GtkSizeGroup *sg; |
1356 GList *browsers = NULL; | |
1357 | |
1358 ret = gtk_vbox_new(FALSE, 18); | |
1359 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
1360 | |
1361 sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); | |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1362 vbox = gaim_gtk_make_frame (ret, _("Browser Selection")); |
5440 | 1363 |
1364 browsers = get_available_browsers(); | |
1365 if (browsers != NULL) { | |
7987 | 1366 label = gaim_gtk_prefs_dropdown_from_list(vbox,_("_Browser:"), GAIM_PREF_STRING, |
5550
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1367 "/gaim/gtk/browsers/browser", |
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1368 browsers); |
5440 | 1369 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); |
1370 gtk_size_group_add_widget(sg, label); | |
8274 | 1371 |
1372 hbox = gtk_hbox_new(FALSE, 0); | |
1373 label = gaim_gtk_prefs_dropdown(hbox, _("_Open link in:"), GAIM_PREF_INT, | |
1374 "/gaim/gtk/browsers/place", | |
1375 _("Browser default"), GAIM_BROWSER_DEFAULT, | |
1376 _("Existing window"), GAIM_BROWSER_CURRENT, | |
1377 _("New window"), GAIM_BROWSER_NEW_WINDOW, | |
1378 _("New tab"), GAIM_BROWSER_NEW_TAB, | |
1379 NULL); | |
1380 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
1381 gtk_size_group_add_widget(sg, label); | |
1382 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); | |
1383 | |
1384 if (!strcmp(gaim_prefs_get_string("/gaim/gtk/browsers/browser"), "custom")) | |
1385 gtk_widget_set_sensitive(hbox, FALSE); | |
1386 browser_pref1_id = gaim_prefs_connect_callback("/gaim/gtk/browsers/browser", | |
1387 browser_changed1_cb, hbox); | |
5440 | 1388 } |
1389 | |
1390 hbox = gtk_hbox_new(FALSE, 5); | |
1391 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); | |
6031 | 1392 label = gtk_label_new_with_mnemonic(_("_Manual:\n(%s for URL)")); |
5440 | 1393 gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0); |
1394 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
1395 gtk_size_group_add_widget(sg, label); | |
1396 | |
6007 | 1397 entry = gtk_entry_new(); |
1398 gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry); | |
5560
b7319c094153
[gaim-migrate @ 5961]
Christian Hammond <chipx86@chipx86.com>
parents:
5554
diff
changeset
|
1399 |
b7319c094153
[gaim-migrate @ 5961]
Christian Hammond <chipx86@chipx86.com>
parents:
5554
diff
changeset
|
1400 if (strcmp(gaim_prefs_get_string("/gaim/gtk/browsers/browser"), "custom")) |
5440 | 1401 gtk_widget_set_sensitive(hbox, FALSE); |
8274 | 1402 browser_pref2_id = gaim_prefs_connect_callback("/gaim/gtk/browsers/browser", |
1403 browser_changed2_cb, hbox); | |
5560
b7319c094153
[gaim-migrate @ 5961]
Christian Hammond <chipx86@chipx86.com>
parents:
5554
diff
changeset
|
1404 |
6007 | 1405 gtk_box_pack_start (GTK_BOX (hbox), entry, FALSE, FALSE, 0); |
1406 | |
1407 gtk_entry_set_text(GTK_ENTRY(entry), | |
5560
b7319c094153
[gaim-migrate @ 5961]
Christian Hammond <chipx86@chipx86.com>
parents:
5554
diff
changeset
|
1408 gaim_prefs_get_string("/gaim/gtk/browsers/command")); |
6007 | 1409 g_signal_connect(G_OBJECT(entry), "focus-out-event", |
5560
b7319c094153
[gaim-migrate @ 5961]
Christian Hammond <chipx86@chipx86.com>
parents:
5554
diff
changeset
|
1410 G_CALLBACK(manual_browser_set), NULL); |
8188
cd9ea20cd8ed
[gaim-migrate @ 8909]
Christian Hammond <chipx86@chipx86.com>
parents:
8170
diff
changeset
|
1411 gaim_set_accessible_label (entry, label); |
5440 | 1412 |
1413 gtk_widget_show_all(ret); | |
1414 return ret; | |
1415 } | |
1416 #endif /*_WIN32*/ | |
1417 | |
1418 GtkWidget *logging_page() { | |
1419 GtkWidget *ret; | |
1420 GtkWidget *vbox; | |
7431 | 1421 GList *names; |
8573 | 1422 GtkWidget *sys_box; |
1423 GtkWidget *box; | |
1424 int syslog_enabled = gaim_prefs_get_bool("/core/logging/log_system"); | |
1425 | |
5440 | 1426 ret = gtk_vbox_new(FALSE, 18); |
1427 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
1428 | |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1429 vbox = gaim_gtk_make_frame (ret, _("Message Logs")); |
7431 | 1430 names = gaim_log_logger_get_options(); |
1431 | |
7987 | 1432 gaim_gtk_prefs_dropdown_from_list(vbox, _("Log _Format:"), GAIM_PREF_STRING, |
1433 "/core/logging/format", names); | |
1434 | |
1435 gaim_gtk_prefs_checkbox(_("_Log all instant messages"), | |
7562
b859cfb5f31a
[gaim-migrate @ 8176]
Christian Hammond <chipx86@chipx86.com>
parents:
7561
diff
changeset
|
1436 "/core/logging/log_ims", vbox); |
7987 | 1437 gaim_gtk_prefs_checkbox(_("Log all c_hats"), |
7562
b859cfb5f31a
[gaim-migrate @ 8176]
Christian Hammond <chipx86@chipx86.com>
parents:
7561
diff
changeset
|
1438 "/core/logging/log_chats", vbox); |
8573 | 1439 |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1440 vbox = gaim_gtk_make_frame (ret, _("System Logs")); |
8573 | 1441 |
1442 sys_box = gaim_gtk_prefs_checkbox(_("_Enable system log"), | |
1443 "/core/logging/log_system", vbox); | |
1444 | |
1445 box = gaim_gtk_prefs_checkbox(_("Log when buddies _sign on/sign off"), | |
1446 "/core/logging/log_signon_signoff", vbox); | |
1447 g_signal_connect(G_OBJECT(sys_box), "clicked", | |
1448 G_CALLBACK(gaim_gtk_toggle_sensitive), box); | |
1449 gtk_widget_set_sensitive(box, syslog_enabled); | |
1450 | |
1451 box = gaim_gtk_prefs_checkbox(_("Log when buddies become _idle/un-idle"), | |
1452 "/core/logging/log_idle_state", vbox); | |
1453 g_signal_connect(G_OBJECT(sys_box), "clicked", | |
1454 G_CALLBACK(gaim_gtk_toggle_sensitive), box); | |
1455 gtk_widget_set_sensitive(box, syslog_enabled); | |
1456 | |
1457 box = gaim_gtk_prefs_checkbox(_("Log when buddies go away/come _back"), | |
1458 "/core/logging/log_away_state", vbox); | |
1459 g_signal_connect(G_OBJECT(sys_box), "clicked", | |
1460 G_CALLBACK(gaim_gtk_toggle_sensitive), box); | |
1461 gtk_widget_set_sensitive(box, syslog_enabled); | |
1462 | |
1463 box = gaim_gtk_prefs_checkbox(_("Log your _own signons/idleness/awayness"), | |
1464 "/core/logging/log_own_states", vbox); | |
1465 g_signal_connect(G_OBJECT(sys_box), "clicked", | |
1466 G_CALLBACK(gaim_gtk_toggle_sensitive), box); | |
1467 gtk_widget_set_sensitive(box, syslog_enabled); | |
1468 | |
5440 | 1469 gtk_widget_show_all(ret); |
1470 return ret; | |
1471 } | |
1472 | |
1473 #ifndef _WIN32 | |
1474 static gint sound_cmd_yeah(GtkEntry *entry, gpointer d) | |
1475 { | |
5684 | 1476 gaim_prefs_set_string("/gaim/gtk/sound/command", |
6007 | 1477 gtk_entry_get_text(GTK_ENTRY(entry))); |
5440 | 1478 return TRUE; |
1479 } | |
6005 | 1480 |
1481 static void | |
1482 sound_changed_cb(const char *name, GaimPrefType type, gpointer value, | |
1483 gpointer data) | |
1484 { | |
1485 GtkWidget *hbox = data; | |
1486 const char *method = value; | |
1487 | |
1488 gtk_widget_set_sensitive(hbox, !strcmp(method, "custom")); | |
1489 } | |
5440 | 1490 #endif |
1491 | |
9108 | 1492 |
1493 static void | |
1494 event_toggled(GtkCellRendererToggle *cell, gchar *pth, gpointer data) | |
1495 { | |
1496 GtkTreeModel *model = (GtkTreeModel *)data; | |
1497 GtkTreeIter iter; | |
1498 GtkTreePath *path = gtk_tree_path_new_from_string(pth); | |
1499 const char *pref; | |
1500 | |
1501 gtk_tree_model_get_iter (model, &iter, path); | |
1502 gtk_tree_model_get (model, &iter, | |
1503 2, &pref, | |
1504 -1); | |
1505 | |
1506 gaim_prefs_set_bool(pref, !gtk_cell_renderer_toggle_get_active(cell)); | |
1507 | |
1508 gtk_list_store_set(GTK_LIST_STORE (model), &iter, | |
1509 0, !gtk_cell_renderer_toggle_get_active(cell), | |
1510 -1); | |
1511 | |
1512 gtk_tree_path_free(path); | |
1513 } | |
1514 | |
1515 static void | |
1516 test_sound(GtkWidget *button, gpointer i_am_NULL) | |
1517 { | |
1518 char *pref; | |
1519 gboolean temp_value1, temp_value2; | |
1520 | |
1521 pref = g_strdup_printf("/gaim/gtk/sound/enabled/%s", | |
1522 gaim_gtk_sound_get_event_option(sound_row_sel)); | |
1523 | |
1524 temp_value1 = gaim_prefs_get_bool("/core/sound/while_away"); | |
1525 temp_value2 = gaim_prefs_get_bool(pref); | |
1526 | |
1527 if (!temp_value1) gaim_prefs_set_bool("/core/sound/while_away", TRUE); | |
1528 if (!temp_value2) gaim_prefs_set_bool(pref, TRUE); | |
1529 | |
1530 gaim_sound_play_event(sound_row_sel); | |
1531 | |
1532 if (!temp_value1) gaim_prefs_set_bool("/core/sound/while_away", FALSE); | |
1533 if (!temp_value2) gaim_prefs_set_bool(pref, FALSE); | |
1534 | |
1535 g_free(pref); | |
1536 } | |
1537 | |
1538 static void | |
1539 reset_sound(GtkWidget *button, gpointer i_am_also_NULL) | |
1540 { | |
1541 char *pref = g_strdup_printf("/gaim/gtk/sound/file/%s", | |
1542 gaim_gtk_sound_get_event_option(sound_row_sel)); | |
1543 | |
1544 /* This just resets a sound file back to default */ | |
1545 gaim_prefs_set_string(pref, ""); | |
1546 g_free(pref); | |
1547 | |
1548 gtk_entry_set_text(GTK_ENTRY(sound_entry), "(default)"); | |
1549 } | |
1550 | |
1551 void close_sounddialog(GtkWidget *w, GtkWidget *w2) | |
1552 { | |
1553 | |
1554 GtkWidget *dest; | |
1555 | |
1556 if (!GTK_IS_WIDGET(w2)) | |
1557 dest = w; | |
1558 else | |
1559 dest = w2; | |
1560 | |
1561 sounddialog = NULL; | |
1562 | |
1563 gtk_widget_destroy(dest); | |
1564 } | |
1565 | |
1566 void do_select_sound(GtkWidget *w, gpointer data) | |
1567 { | |
1568 const char *file; | |
1569 char *pref; | |
1570 int snd; | |
1571 | |
1572 file = gtk_file_selection_get_filename(GTK_FILE_SELECTION(sounddialog)); | |
1573 snd = GPOINTER_TO_INT(data); | |
1574 | |
1575 /* If they type in a directory, change there */ | |
1576 if (gaim_gtk_check_if_dir(file, GTK_FILE_SELECTION(sounddialog))) | |
1577 return; | |
1578 | |
1579 /* Set it -- and forget it */ | |
1580 pref = g_strdup_printf("/gaim/gtk/sound/file/%s", | |
1581 gaim_gtk_sound_get_event_option(snd)); | |
1582 gaim_prefs_set_string(pref, file); | |
1583 g_free(pref); | |
1584 | |
1585 /* Set our text entry */ | |
1586 gtk_entry_set_text(GTK_ENTRY(sound_entry), file); | |
1587 | |
1588 /* Close the window! It's getting cold in here! */ | |
1589 close_sounddialog(NULL, sounddialog); | |
1590 | |
1591 if (last_sound_dir) | |
1592 g_free(last_sound_dir); | |
1593 last_sound_dir = g_path_get_dirname(file); | |
1594 } | |
1595 | |
1596 static void sel_sound(GtkWidget *button, gpointer being_NULL_is_fun) | |
1597 { | |
1598 char *buf = g_malloc(BUF_LEN); | |
1599 | |
1600 if (!sounddialog) { | |
1601 sounddialog = gtk_file_selection_new(_("Sound Selection")); | |
1602 | |
1603 gtk_file_selection_hide_fileop_buttons(GTK_FILE_SELECTION(sounddialog)); | |
1604 | |
1605 g_snprintf(buf, BUF_LEN - 1, "%s" G_DIR_SEPARATOR_S, last_sound_dir ? last_sound_dir : gaim_home_dir()); | |
1606 | |
1607 gtk_file_selection_set_filename(GTK_FILE_SELECTION(sounddialog), buf); | |
1608 | |
1609 g_signal_connect(G_OBJECT(sounddialog), "destroy", | |
1610 G_CALLBACK(close_sounddialog), sounddialog); | |
1611 | |
1612 g_signal_connect(G_OBJECT(GTK_FILE_SELECTION(sounddialog)->ok_button), | |
1613 "clicked", | |
1614 G_CALLBACK(do_select_sound), GINT_TO_POINTER(sound_row_sel)); | |
1615 | |
1616 g_signal_connect(G_OBJECT(GTK_FILE_SELECTION(sounddialog)->cancel_button), | |
1617 "clicked", | |
1618 G_CALLBACK(close_sounddialog), sounddialog); | |
1619 } | |
1620 | |
1621 g_free(buf); | |
1622 gtk_widget_show(sounddialog); | |
1623 gdk_window_raise(sounddialog->window); | |
1624 } | |
1625 | |
1626 | |
1627 static void prefs_sound_sel (GtkTreeSelection *sel, GtkTreeModel *model) { | |
1628 GtkTreeIter iter; | |
1629 GValue val = { 0, }; | |
1630 const char *file; | |
1631 char *pref; | |
1632 | |
1633 if (! gtk_tree_selection_get_selected (sel, &model, &iter)) | |
1634 return; | |
1635 gtk_tree_model_get_value (model, &iter, 3, &val); | |
1636 sound_row_sel = g_value_get_uint(&val); | |
1637 | |
1638 pref = g_strdup_printf("/gaim/gtk/sound/file/%s", | |
1639 gaim_gtk_sound_get_event_option(sound_row_sel)); | |
1640 file = gaim_prefs_get_string(pref); | |
1641 g_free(pref); | |
1642 if (sound_entry) | |
1643 gtk_entry_set_text(GTK_ENTRY(sound_entry), (file && *file != '\0') ? file : "(default)"); | |
1644 g_value_unset (&val); | |
1645 if (sounddialog) | |
1646 gtk_widget_destroy(sounddialog); | |
1647 } | |
1648 | |
5440 | 1649 GtkWidget *sound_page() { |
1650 GtkWidget *ret; | |
9108 | 1651 GtkWidget *vbox, *sw, *button; |
5440 | 1652 GtkSizeGroup *sg; |
9108 | 1653 GtkTreeIter iter; |
1654 GtkWidget *event_view; | |
1655 GtkListStore *event_store; | |
1656 GtkCellRenderer *rend; | |
1657 GtkTreeViewColumn *col; | |
1658 GtkTreeSelection *sel; | |
1659 GtkTreePath *path; | |
1660 int j; | |
1661 const char *file; | |
1662 char *pref; | |
5440 | 1663 #ifndef _WIN32 |
1664 GtkWidget *dd; | |
1665 GtkWidget *hbox; | |
1666 GtkWidget *label; | |
6007 | 1667 GtkWidget *entry; |
5684 | 1668 const char *cmd; |
5440 | 1669 #endif |
1670 | |
1671 ret = gtk_vbox_new(FALSE, 18); | |
1672 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
1673 | |
1674 sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); | |
1675 | |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1676 vbox = gaim_gtk_make_frame (ret, _("Sound Options")); |
8633 | 1677 gaim_gtk_prefs_checkbox(_("Sounds when conversation has _focus"), |
1678 "/gaim/gtk/sound/conv_focus", vbox); | |
7987 | 1679 gaim_gtk_prefs_checkbox(_("_Sounds while away"), |
5684 | 1680 "/core/sound/while_away", vbox); |
5440 | 1681 |
1682 #ifndef _WIN32 | |
6033 | 1683 vbox = gaim_gtk_make_frame (ret, _("Sound Method")); |
7987 | 1684 dd = gaim_gtk_prefs_dropdown(vbox, _("_Method:"), GAIM_PREF_STRING, |
1685 "/gaim/gtk/sound/method", | |
1686 _("Console beep"), "beep", | |
5440 | 1687 #ifdef USE_AO |
7987 | 1688 _("Automatic"), "automatic", |
1689 "ESD", "esd", | |
1690 "Arts", "arts", | |
5440 | 1691 #endif |
1692 #ifdef USE_NAS_AUDIO | |
7987 | 1693 "NAS", "nas", |
5440 | 1694 #endif |
7987 | 1695 _("Command"), "custom", |
1696 NULL); | |
5440 | 1697 gtk_size_group_add_widget(sg, dd); |
1698 gtk_misc_set_alignment(GTK_MISC(dd), 0, 0); | |
1699 | |
1700 hbox = gtk_hbox_new(FALSE, 5); | |
1701 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 5); | |
1702 | |
1703 hbox = gtk_hbox_new(FALSE, 5); | |
1704 gtk_container_add(GTK_CONTAINER(vbox), hbox); | |
6031 | 1705 label = gtk_label_new_with_mnemonic(_("Sound c_ommand:\n(%s for filename)")); |
5440 | 1706 gtk_size_group_add_widget(sg, label); |
1707 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
1708 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 5); | |
1709 | |
6007 | 1710 entry = gtk_entry_new(); |
1711 gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry); | |
1712 | |
1713 gtk_editable_set_editable(GTK_EDITABLE(entry), TRUE); | |
5684 | 1714 cmd = gaim_prefs_get_string("/gaim/gtk/sound/command"); |
5440 | 1715 if(cmd) |
6007 | 1716 gtk_entry_set_text(GTK_ENTRY(entry), cmd); |
1717 gtk_widget_set_size_request(entry, 75, -1); | |
1718 | |
1719 gtk_box_pack_start(GTK_BOX(hbox), entry, TRUE, TRUE, 5); | |
1720 g_signal_connect(G_OBJECT(entry), "changed", | |
5440 | 1721 G_CALLBACK(sound_cmd_yeah), NULL); |
6005 | 1722 |
1723 gtk_widget_set_sensitive(hbox, | |
1724 !strcmp(gaim_prefs_get_string("/gaim/gtk/sound/method"), | |
1725 "custom")); | |
1726 sound_pref_id = gaim_prefs_connect_callback("/gaim/gtk/sound/method", | |
1727 sound_changed_cb, hbox); | |
1728 | |
8141 | 1729 gaim_set_accessible_label (entry, label); |
5440 | 1730 #endif /* _WIN32 */ |
9108 | 1731 |
1732 vbox = gaim_gtk_make_frame(ret, _("Sound Events")); | |
1733 | |
1734 sw = gtk_scrolled_window_new(NULL,NULL); | |
1735 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); | |
1736 gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_IN); | |
1737 | |
1738 gtk_box_pack_start(GTK_BOX(vbox), sw, TRUE, TRUE, 0); | |
1739 event_store = gtk_list_store_new (4, G_TYPE_BOOLEAN, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_UINT); | |
1740 | |
1741 for (j=0; j < GAIM_NUM_SOUNDS; j++) { | |
1742 char *pref = g_strdup_printf("/gaim/gtk/sound/enabled/%s", | |
1743 gaim_gtk_sound_get_event_option(j)); | |
1744 const char *label = gaim_gtk_sound_get_event_label(j); | |
1745 | |
1746 if (label == NULL) { | |
1747 g_free(pref); | |
1748 continue; | |
1749 } | |
1750 | |
1751 gtk_list_store_append (event_store, &iter); | |
1752 gtk_list_store_set(event_store, &iter, | |
1753 0, gaim_prefs_get_bool(pref), | |
1754 1, _(label), | |
1755 2, pref, | |
1756 3, j, | |
1757 -1); | |
1758 g_free(pref); | |
1759 } | |
1760 | |
1761 event_view = gtk_tree_view_new_with_model (GTK_TREE_MODEL(event_store)); | |
1762 | |
1763 rend = gtk_cell_renderer_toggle_new(); | |
1764 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (event_view)); | |
1765 g_signal_connect (G_OBJECT (sel), "changed", | |
1766 G_CALLBACK (prefs_sound_sel), | |
1767 NULL); | |
1768 g_signal_connect (G_OBJECT(rend), "toggled", | |
1769 G_CALLBACK(event_toggled), event_store); | |
1770 path = gtk_tree_path_new_first(); | |
1771 gtk_tree_selection_select_path(sel, path); | |
1772 gtk_tree_path_free(path); | |
1773 | |
1774 col = gtk_tree_view_column_new_with_attributes (_("Play"), | |
1775 rend, | |
1776 "active", 0, | |
1777 NULL); | |
1778 gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col); | |
1779 | |
1780 rend = gtk_cell_renderer_text_new(); | |
1781 col = gtk_tree_view_column_new_with_attributes (_("Event"), | |
1782 rend, | |
1783 "text", 1, | |
1784 NULL); | |
1785 gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col); | |
1786 g_object_unref(G_OBJECT(event_store)); | |
1787 gtk_container_add(GTK_CONTAINER(sw), event_view); | |
1788 | |
1789 hbox = gtk_hbox_new(FALSE, 6); | |
1790 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); | |
1791 sound_entry = gtk_entry_new(); | |
1792 pref = g_strdup_printf("/gaim/gtk/sound/file/%s", | |
1793 gaim_gtk_sound_get_event_option(0)); | |
1794 file = gaim_prefs_get_string(pref); | |
1795 g_free(pref); | |
1796 gtk_entry_set_text(GTK_ENTRY(sound_entry), (file && *file != '\0') ? file : "(default)"); | |
1797 gtk_editable_set_editable(GTK_EDITABLE(sound_entry), FALSE); | |
1798 gtk_box_pack_start(GTK_BOX(hbox), sound_entry, FALSE, FALSE, 5); | |
1799 | |
1800 button = gtk_button_new_with_label(_("Test")); | |
1801 g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(test_sound), NULL); | |
1802 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 1); | |
1803 | |
1804 button = gtk_button_new_with_label(_("Reset")); | |
1805 g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(reset_sound), NULL); | |
1806 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 1); | |
1807 | |
1808 button = gtk_button_new_with_label(_("Choose...")); | |
1809 g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(sel_sound), NULL); | |
1810 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 1); | |
5440 | 1811 gtk_widget_show_all(ret); |
9108 | 1812 |
5440 | 1813 return ret; |
1814 } | |
1815 | |
1816 GtkWidget *away_page() { | |
1817 GtkWidget *ret; | |
1818 GtkWidget *vbox; | |
1819 GtkWidget *hbox; | |
1820 GtkWidget *label; | |
1821 GtkWidget *button; | |
1822 GtkWidget *select; | |
1823 GtkWidget *dd; | |
1824 GtkSizeGroup *sg; | |
1825 | |
1826 ret = gtk_vbox_new(FALSE, 18); | |
1827 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
1828 | |
1829 sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); | |
1830 | |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1831 vbox = gaim_gtk_make_frame (ret, _("Away")); |
7987 | 1832 gaim_gtk_prefs_checkbox(_("_Queue new messages when away"), |
5573
5e7de337a053
[gaim-migrate @ 5976]
Christian Hammond <chipx86@chipx86.com>
parents:
5568
diff
changeset
|
1833 "/gaim/gtk/away/queue_messages", vbox); |
5440 | 1834 |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1835 vbox = gaim_gtk_make_frame (ret, _("Auto-response")); |
7987 | 1836 gaim_gtk_prefs_checkbox(_("_Send auto-response"), |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1837 "/core/away/auto_response/enabled", vbox); |
7987 | 1838 gaim_gtk_prefs_checkbox(_("_Only send auto-response when idle"), |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1839 "/core/away/auto_response/idle_only", vbox); |
6142 | 1840 |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1841 vbox = gaim_gtk_make_frame (ret, _("Idle")); |
7987 | 1842 dd = gaim_gtk_prefs_dropdown(vbox, _("Idle _time reporting:"), |
1843 GAIM_PREF_STRING, "/gaim/gtk/idle/reporting_method", | |
1844 _("None"), "none", | |
1845 _("Gaim usage"), "gaim", | |
5440 | 1846 #ifdef USE_SCREENSAVER |
1847 #ifndef _WIN32 | |
7987 | 1848 _("X usage"), "system", |
5440 | 1849 #else |
7987 | 1850 _("Windows usage"), "system", |
5440 | 1851 #endif |
1852 #endif | |
7987 | 1853 NULL); |
5550
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1854 |
5440 | 1855 gtk_size_group_add_widget(sg, dd); |
1856 gtk_misc_set_alignment(GTK_MISC(dd), 0, 0); | |
1857 | |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1858 vbox = gaim_gtk_make_frame (ret, _("Auto-away")); |
7987 | 1859 button = gaim_gtk_prefs_checkbox(_("Set away _when idle"), |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1860 "/core/away/away_when_idle", vbox); |
8238 | 1861 |
7987 | 1862 select = gaim_gtk_prefs_labeled_spin_button(vbox, |
1863 _("_Minutes before setting away:"), "/core/away/mins_before_away", | |
1864 1, 24 * 60, sg); | |
5440 | 1865 g_signal_connect(G_OBJECT(button), "clicked", |
1866 G_CALLBACK(gaim_gtk_toggle_sensitive), select); | |
1867 | |
8238 | 1868 hbox = gtk_hbox_new(FALSE, 0); |
1869 gtk_container_add(GTK_CONTAINER(vbox), hbox); | |
1870 | |
5440 | 1871 label = gtk_label_new_with_mnemonic(_("Away m_essage:")); |
1872 gtk_size_group_add_widget(sg, label); | |
1873 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
8238 | 1874 g_signal_connect(G_OBJECT(button), "clicked", |
1875 G_CALLBACK(gaim_gtk_toggle_sensitive), label); | |
5440 | 1876 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); |
8238 | 1877 |
5440 | 1878 prefs_away_menu = gtk_option_menu_new(); |
1879 gtk_label_set_mnemonic_widget(GTK_LABEL(label), prefs_away_menu); | |
1880 g_signal_connect(G_OBJECT(button), "clicked", | |
1881 G_CALLBACK(gaim_gtk_toggle_sensitive), prefs_away_menu); | |
1882 default_away_menu_init(prefs_away_menu); | |
1883 gtk_widget_show(prefs_away_menu); | |
1884 gtk_box_pack_start(GTK_BOX(hbox), prefs_away_menu, FALSE, FALSE, 0); | |
8238 | 1885 gaim_set_accessible_label (prefs_away_menu, label); |
1886 | |
5440 | 1887 |
5550
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1888 if (!gaim_prefs_get_bool("/core/away/away_when_idle")) { |
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1889 gtk_widget_set_sensitive(GTK_WIDGET(select), FALSE); |
8238 | 1890 gtk_widget_set_sensitive(GTK_WIDGET(label), FALSE); |
5550
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1891 gtk_widget_set_sensitive(GTK_WIDGET(prefs_away_menu), FALSE); |
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1892 } |
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1893 |
5440 | 1894 gtk_widget_show_all(ret); |
5550
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1895 |
5440 | 1896 return ret; |
1897 } | |
1898 | |
8170 | 1899 static GtkWidget * |
1900 protocol_page() { | |
1901 GtkWidget *ret; | |
8998 | 1902 |
8170 | 1903 ret = gtk_label_new(NULL); |
1904 gtk_widget_show(ret); | |
8998 | 1905 |
8170 | 1906 return ret; |
1907 } | |
1908 | |
5440 | 1909 static GtkWidget *plugin_description=NULL, *plugin_details=NULL; |
1910 | |
1911 static void prefs_plugin_sel (GtkTreeSelection *sel, GtkTreeModel *model) | |
1912 { | |
1913 gchar *buf, *pname, *perr, *pdesc, *pauth, *pweb; | |
1914 GtkTreeIter iter; | |
1915 GValue val = { 0, }; | |
1916 GaimPlugin *plug; | |
1917 | |
1918 if (! gtk_tree_selection_get_selected (sel, &model, &iter)) | |
1919 return; | |
8104 | 1920 gtk_tree_model_get_value (model, &iter, 3, &val); |
5440 | 1921 plug = g_value_get_pointer(&val); |
8998 | 1922 |
5440 | 1923 pname = g_markup_escape_text(_(plug->info->name), -1); |
1924 pdesc = g_markup_escape_text(_(plug->info->description), -1); | |
1925 pauth = g_markup_escape_text(_(plug->info->author), -1); | |
1926 pweb = g_markup_escape_text(_(plug->info->homepage), -1); | |
1927 if (plug->error != NULL) { | |
1928 perr = g_markup_escape_text(_(plug->error), -1); | |
1929 buf = g_strdup_printf( | |
1930 "<span size=\"larger\">%s %s</span>\n\n" | |
1931 "<span weight=\"bold\" color=\"red\">%s</span>\n\n" | |
1932 "%s", | |
1933 pname, plug->info->version, perr, pdesc); | |
1934 g_free(perr); | |
1935 } | |
1936 else { | |
1937 buf = g_strdup_printf( | |
1938 "<span size=\"larger\">%s %s</span>\n\n%s", | |
1939 pname, plug->info->version, pdesc); | |
1940 } | |
1941 gtk_label_set_markup(GTK_LABEL(plugin_description), buf); | |
1942 g_free(buf); | |
1943 | |
1944 buf = g_strdup_printf( | |
1945 #ifndef _WIN32 | |
1946 _("<span size=\"larger\">%s %s</span>\n\n" | |
1947 "<span weight=\"bold\">Written by:</span>\t%s\n" | |
1948 "<span weight=\"bold\">Web site:</span>\t\t%s\n" | |
1949 "<span weight=\"bold\">File name:</span>\t%s"), | |
1950 #else | |
1951 _("<span size=\"larger\">%s %s</span>\n\n" | |
1952 "<span weight=\"bold\">Written by:</span> %s\n" | |
1953 "<span weight=\"bold\">URL:</span> %s\n" | |
1954 "<span weight=\"bold\">File name:</span> %s"), | |
1955 #endif | |
1956 pname, plug->info->version, pauth, pweb, plug->path); | |
1957 | |
1958 gtk_label_set_markup(GTK_LABEL(plugin_details), buf); | |
1959 g_value_unset(&val); | |
1960 g_free(buf); | |
1961 g_free(pname); | |
1962 g_free(pdesc); | |
1963 g_free(pauth); | |
1964 g_free(pweb); | |
1965 } | |
1966 | |
1967 static void plugin_load (GtkCellRendererToggle *cell, gchar *pth, gpointer data) | |
1968 { | |
1969 GtkTreeModel *model = (GtkTreeModel *)data; | |
1970 GtkTreeIter iter; | |
1971 GtkTreePath *path = gtk_tree_path_new_from_string(pth); | |
1972 GaimPlugin *plug; | |
1973 gchar buf[1024]; | |
6040 | 1974 gchar *name = NULL, *description = NULL; |
6928
6ed0a1c045b4
[gaim-migrate @ 7475]
Christian Hammond <chipx86@chipx86.com>
parents:
6861
diff
changeset
|
1975 |
5440 | 1976 GdkCursor *wait = gdk_cursor_new (GDK_WATCH); |
1977 gdk_window_set_cursor(prefs->window, wait); | |
1978 gdk_cursor_unref(wait); | |
6928
6ed0a1c045b4
[gaim-migrate @ 7475]
Christian Hammond <chipx86@chipx86.com>
parents:
6861
diff
changeset
|
1979 |
5440 | 1980 gtk_tree_model_get_iter (model, &iter, path); |
8104 | 1981 gtk_tree_model_get (model, &iter, 3, &plug, -1); |
6928
6ed0a1c045b4
[gaim-migrate @ 7475]
Christian Hammond <chipx86@chipx86.com>
parents:
6861
diff
changeset
|
1982 |
5440 | 1983 if (!gaim_plugin_is_loaded(plug)) { |
1984 gaim_plugin_load(plug); | |
1985 | |
1986 /* | |
1987 * NOTE: This is basically the same check as before | |
1988 * (plug->type == plugin), but now there aren't plugin types. | |
1989 * Not yet, anyway. I want to do a V2 of the plugin API. | |
1990 * The thing is, we should have a flag specifying the UI type, | |
1991 * or just whether it's a general plugin or a UI-specific | |
1992 * plugin. We should only load this if it's UI-specific. | |
1993 * | |
1994 * -- ChipX86 | |
1995 */ | |
1996 if (GAIM_IS_GTK_PLUGIN(plug)) | |
1997 { | |
1998 GtkWidget *config_frame; | |
1999 GaimGtkPluginUiInfo *ui_info; | |
2000 | |
2001 ui_info = GAIM_GTK_PLUGIN_UI_INFO(plug); | |
2002 config_frame = gaim_gtk_plugin_get_config_frame(plug); | |
2003 | |
2004 if (config_frame != NULL) { | |
2005 ui_info->iter = g_new0(GtkTreeIter, 1); | |
2006 prefs_notebook_add_page(_(plug->info->name), NULL, | |
2007 config_frame, ui_info->iter, | |
2008 &plugin_iter, notebook_page++); | |
2009 | |
2010 if (gtk_tree_model_iter_n_children(GTK_TREE_MODEL(prefstree), | |
2011 &plugin_iter) == 1) { | |
2012 | |
2013 /* Expand the tree for the first plugin added */ | |
2014 GtkTreePath *path2; | |
6928
6ed0a1c045b4
[gaim-migrate @ 7475]
Christian Hammond <chipx86@chipx86.com>
parents:
6861
diff
changeset
|
2015 |
5440 | 2016 path2 = gtk_tree_model_get_path(GTK_TREE_MODEL(prefstree), |
2017 &plugin_iter); | |
2018 gtk_tree_view_expand_row(GTK_TREE_VIEW(tree_v), | |
2019 path2, TRUE); | |
2020 gtk_tree_path_free(path2); | |
2021 } | |
2022 } | |
2023 } | |
8713 | 2024 |
2025 if(GAIM_PLUGIN_HAS_PREF_FRAME(plug)) { | |
8998 | 2026 GtkTreeIter iter; |
8713 | 2027 GtkWidget *pref_frame; |
2028 GaimPluginUiInfo *prefs_info; | |
2029 | |
2030 if(plug->info->type == GAIM_PLUGIN_PROTOCOL) | |
2031 iter = proto_iter; | |
2032 else | |
2033 iter = plugin_iter; | |
2034 | |
2035 prefs_info = GAIM_PLUGIN_UI_INFO(plug); | |
8814 | 2036 prefs_info->frame = prefs_info->get_plugin_pref_frame(plug); |
2037 pref_frame = gaim_gtk_plugin_pref_create_frame(prefs_info->frame); | |
8713 | 2038 |
2039 if(pref_frame != NULL) { | |
2040 prefs_info->iter = g_new0(GtkTreeIter, 1); | |
2041 prefs_notebook_add_page(_(plug->info->name), NULL, | |
2042 pref_frame, prefs_info->iter, | |
2043 &iter, notebook_page++); | |
2044 | |
2045 if(gtk_tree_model_iter_n_children(GTK_TREE_MODEL(prefstree), &iter) == 1) | |
2046 { | |
2047 GtkTreePath *path2; | |
2048 | |
2049 path2 = gtk_tree_model_get_path(GTK_TREE_MODEL(prefstree), &iter); | |
2050 gtk_tree_view_expand_row(GTK_TREE_VIEW(tree_v), path2, TRUE); | |
2051 gtk_tree_path_free(path2); | |
2052 } | |
2053 } | |
2054 } | |
5440 | 2055 } |
2056 else { | |
2057 if (GAIM_IS_GTK_PLUGIN(plug)) { | |
2058 GaimGtkPluginUiInfo *ui_info; | |
2059 | |
2060 ui_info = GAIM_GTK_PLUGIN_UI_INFO(plug); | |
2061 | |
2062 if (ui_info != NULL && ui_info->iter != NULL) { | |
2063 gtk_tree_store_remove(GTK_TREE_STORE(prefstree), ui_info->iter); | |
2064 g_free(ui_info->iter); | |
2065 ui_info->iter = NULL; | |
2066 } | |
8745 | 2067 } |
2068 | |
2069 if (GAIM_PLUGIN_HAS_PREF_FRAME(plug)) { | |
8713 | 2070 GaimPluginUiInfo *prefs_info; |
2071 | |
2072 prefs_info = GAIM_PLUGIN_UI_INFO(plug); | |
2073 | |
8745 | 2074 if(prefs_info != NULL) { |
8814 | 2075 if(prefs_info->frame != NULL) { |
2076 gaim_plugin_pref_frame_destroy(prefs_info->frame); | |
2077 prefs_info->frame = NULL; | |
2078 } | |
2079 | |
8745 | 2080 if(prefs_info->iter != NULL) { |
2081 gtk_tree_store_remove(GTK_TREE_STORE(prefstree), prefs_info->iter); | |
2082 g_free(prefs_info->iter); | |
2083 prefs_info->iter = NULL; | |
2084 } | |
8713 | 2085 } |
5440 | 2086 } |
2087 | |
2088 gaim_plugin_unload(plug); | |
2089 } | |
2090 | |
2091 gdk_window_set_cursor(prefs->window, NULL); | |
2092 | |
6040 | 2093 name = g_markup_escape_text(_(plug->info->name), -1); |
2094 description = g_markup_escape_text(_(plug->info->description), -1); | |
5440 | 2095 if (plug->error != NULL) { |
6040 | 2096 gchar *error = g_markup_escape_text(plug->error, -1); |
5440 | 2097 g_snprintf(buf, sizeof(buf), |
2098 "<span size=\"larger\">%s %s</span>\n\n" | |
2099 "<span weight=\"bold\" color=\"red\">%s</span>\n\n" | |
2100 "%s", | |
6040 | 2101 name, plug->info->version, error, description); |
2102 g_free(error); | |
2103 } else { | |
5440 | 2104 g_snprintf(buf, sizeof(buf), |
2105 "<span size=\"larger\">%s %s</span>\n\n%s", | |
6040 | 2106 name, plug->info->version, description); |
5440 | 2107 } |
6040 | 2108 g_free(name); |
2109 g_free(description); | |
5440 | 2110 |
2111 gtk_label_set_markup(GTK_LABEL(plugin_description), buf); | |
2112 gtk_list_store_set (GTK_LIST_STORE (model), &iter, 0, | |
2113 gaim_plugin_is_loaded(plug), -1); | |
6928
6ed0a1c045b4
[gaim-migrate @ 7475]
Christian Hammond <chipx86@chipx86.com>
parents:
6861
diff
changeset
|
2114 |
5440 | 2115 gtk_label_set_markup(GTK_LABEL(plugin_description), buf); |
2116 gtk_tree_path_free(path); | |
5981
81564bb4db68
[gaim-migrate @ 6429]
Christian Hammond <chipx86@chipx86.com>
parents:
5966
diff
changeset
|
2117 |
81564bb4db68
[gaim-migrate @ 6429]
Christian Hammond <chipx86@chipx86.com>
parents:
5966
diff
changeset
|
2118 gaim_gtk_plugins_save(); |
5440 | 2119 } |
2120 | |
2121 static void | |
2122 update_plugin_list(void *data) | |
2123 { | |
2124 GtkListStore *ls = GTK_LIST_STORE(data); | |
2125 GtkTreeIter iter; | |
2126 GList *probes; | |
2127 GaimPlugin *plug; | |
2128 | |
2129 gtk_list_store_clear(ls); | |
2130 | |
2131 for (probes = gaim_plugins_get_all(); | |
2132 probes != NULL; | |
6928
6ed0a1c045b4
[gaim-migrate @ 7475]
Christian Hammond <chipx86@chipx86.com>
parents:
6861
diff
changeset
|
2133 probes = probes->next) |
6ed0a1c045b4
[gaim-migrate @ 7475]
Christian Hammond <chipx86@chipx86.com>
parents:
6861
diff
changeset
|
2134 { |
5440 | 2135 plug = probes->data; |
2136 | |
6928
6ed0a1c045b4
[gaim-migrate @ 7475]
Christian Hammond <chipx86@chipx86.com>
parents:
6861
diff
changeset
|
2137 if (plug->info->type != GAIM_PLUGIN_STANDARD || |
6930
31c45d99e1a8
[gaim-migrate @ 7477]
Christian Hammond <chipx86@chipx86.com>
parents:
6928
diff
changeset
|
2138 (plug->info->flags & GAIM_PLUGIN_FLAG_INVISIBLE)) |
6928
6ed0a1c045b4
[gaim-migrate @ 7475]
Christian Hammond <chipx86@chipx86.com>
parents:
6861
diff
changeset
|
2139 { |
5440 | 2140 continue; |
6928
6ed0a1c045b4
[gaim-migrate @ 7475]
Christian Hammond <chipx86@chipx86.com>
parents:
6861
diff
changeset
|
2141 } |
5440 | 2142 |
2143 gtk_list_store_append (ls, &iter); | |
2144 gtk_list_store_set(ls, &iter, | |
2145 0, gaim_plugin_is_loaded(plug), | |
6928
6ed0a1c045b4
[gaim-migrate @ 7475]
Christian Hammond <chipx86@chipx86.com>
parents:
6861
diff
changeset
|
2146 1, plug->info->name ? _(plug->info->name) : plug->path, |
8162 | 2147 2, _(plug->info->summary), |
8104 | 2148 3, plug, -1); |
5440 | 2149 } |
2150 } | |
2151 | |
2152 static GtkWidget *plugin_page () | |
2153 { | |
2154 GtkWidget *ret; | |
2155 GtkWidget *sw, *vp; | |
2156 GtkWidget *event_view; | |
2157 GtkListStore *ls; | |
2158 GtkCellRenderer *rend, *rendt; | |
2159 GtkTreeViewColumn *col; | |
2160 GtkTreeSelection *sel; | |
2161 GtkTreePath *path; | |
2162 GtkWidget *nb; | |
2163 | |
2164 ret = gtk_vbox_new(FALSE, 18); | |
2165 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
2166 | |
2167 sw = gtk_scrolled_window_new(NULL,NULL); | |
8104 | 2168 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); |
5440 | 2169 gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_IN); |
2170 | |
2171 gtk_box_pack_start(GTK_BOX(ret), sw, TRUE, TRUE, 0); | |
2172 | |
8104 | 2173 ls = gtk_list_store_new (4, G_TYPE_BOOLEAN, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_POINTER); |
7939 | 2174 gtk_tree_sortable_set_sort_column_id(GTK_TREE_SORTABLE(ls), |
2175 1, GTK_SORT_ASCENDING); | |
5440 | 2176 |
2177 update_plugin_list(ls); | |
2178 | |
2179 event_view = gtk_tree_view_new_with_model (GTK_TREE_MODEL(ls)); | |
2180 | |
2181 rend = gtk_cell_renderer_toggle_new(); | |
2182 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (event_view)); | |
2183 | |
2184 col = gtk_tree_view_column_new_with_attributes (_("Load"), | |
2185 rend, | |
2186 "active", 0, | |
2187 NULL); | |
2188 gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col); | |
2189 | |
2190 rendt = gtk_cell_renderer_text_new(); | |
2191 col = gtk_tree_view_column_new_with_attributes (_("Name"), | |
2192 rendt, | |
2193 "text", 1, | |
2194 NULL); | |
2195 gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col); | |
8998 | 2196 |
8104 | 2197 rendt = gtk_cell_renderer_text_new(); |
2198 col = gtk_tree_view_column_new_with_attributes(_("Summary"), | |
2199 rendt, | |
2200 "text", 2, | |
2201 NULL); | |
2202 gtk_tree_view_append_column(GTK_TREE_VIEW(event_view), col); | |
8998 | 2203 |
5440 | 2204 g_object_unref(G_OBJECT(ls)); |
2205 gtk_container_add(GTK_CONTAINER(sw), event_view); | |
8998 | 2206 |
5440 | 2207 |
2208 nb = gtk_notebook_new(); | |
2209 gtk_notebook_set_tab_pos (GTK_NOTEBOOK(nb), GTK_POS_BOTTOM); | |
2210 gtk_notebook_popup_disable(GTK_NOTEBOOK(nb)); | |
8998 | 2211 |
5440 | 2212 /* Description */ |
2213 sw = gtk_scrolled_window_new(NULL, NULL); | |
2214 gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW(sw), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); | |
2215 plugin_description = gtk_label_new(NULL); | |
8998 | 2216 |
5440 | 2217 vp = gtk_viewport_new(NULL, NULL); |
2218 gtk_viewport_set_shadow_type(GTK_VIEWPORT(vp), GTK_SHADOW_NONE); | |
2219 gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_NONE); | |
2220 | |
2221 gtk_container_add(GTK_CONTAINER(vp), plugin_description); | |
2222 gtk_container_add(GTK_CONTAINER(sw), vp); | |
2223 | |
8998 | 2224 gtk_label_set_selectable(GTK_LABEL(plugin_description), TRUE); |
5440 | 2225 gtk_label_set_line_wrap(GTK_LABEL(plugin_description), TRUE); |
2226 gtk_misc_set_alignment(GTK_MISC(plugin_description), 0, 0); | |
2227 gtk_misc_set_padding(GTK_MISC(plugin_description), 6, 6); | |
2228 gtk_notebook_append_page(GTK_NOTEBOOK(nb), sw, gtk_label_new(_("Description"))); | |
2229 | |
2230 /* Details */ | |
2231 sw = gtk_scrolled_window_new(NULL, NULL); | |
2232 gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW(sw), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); | |
2233 plugin_details = gtk_label_new(NULL); | |
8998 | 2234 |
5440 | 2235 vp = gtk_viewport_new(NULL, NULL); |
2236 gtk_viewport_set_shadow_type(GTK_VIEWPORT(vp), GTK_SHADOW_NONE); | |
2237 gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_NONE); | |
2238 | |
2239 gtk_container_add(GTK_CONTAINER(vp), plugin_details); | |
2240 gtk_container_add(GTK_CONTAINER(sw), vp); | |
2241 | |
8998 | 2242 gtk_label_set_selectable(GTK_LABEL(plugin_details), TRUE); |
5440 | 2243 gtk_label_set_line_wrap(GTK_LABEL(plugin_details), TRUE); |
2244 gtk_misc_set_alignment(GTK_MISC(plugin_details), 0, 0); | |
8998 | 2245 gtk_misc_set_padding(GTK_MISC(plugin_details), 6, 6); |
5440 | 2246 gtk_notebook_append_page(GTK_NOTEBOOK(nb), sw, gtk_label_new(_("Details"))); |
2247 gtk_box_pack_start(GTK_BOX(ret), nb, TRUE, TRUE, 0); | |
2248 | |
2249 g_signal_connect (G_OBJECT (sel), "changed", | |
2250 G_CALLBACK (prefs_plugin_sel), | |
8998 | 2251 NULL); |
5440 | 2252 g_signal_connect (G_OBJECT(rend), "toggled", |
2253 G_CALLBACK(plugin_load), ls); | |
2254 | |
2255 path = gtk_tree_path_new_first(); | |
2256 gtk_tree_selection_select_path(sel, path); | |
2257 gtk_tree_path_free(path); | |
2258 | |
2259 gaim_plugins_register_probe_notify_cb(update_plugin_list, ls); | |
2260 | |
2261 gtk_widget_show_all(ret); | |
2262 return ret; | |
2263 } | |
2264 | |
6979 | 2265 static void away_message_sel_cb(GtkTreeSelection *sel, GtkTreeModel *model) |
5440 | 2266 { |
2267 GtkTreeIter iter; | |
2268 GValue val = { 0, }; | |
2269 gchar buffer[BUF_LONG]; | |
2270 char *tmp; | |
2271 struct away_message *am; | |
2272 | |
2273 if (! gtk_tree_selection_get_selected (sel, &model, &iter)) | |
2274 return; | |
2275 gtk_tree_model_get_value (model, &iter, 1, &val); | |
2276 am = g_value_get_pointer(&val); | |
2277 gtk_imhtml_clear(GTK_IMHTML(away_text)); | |
2278 strncpy(buffer, am->message, BUF_LONG); | |
2279 tmp = stylize(buffer, BUF_LONG); | |
6982 | 2280 gtk_imhtml_append_text(GTK_IMHTML(away_text), tmp, GTK_IMHTML_NO_TITLE | |
5440 | 2281 GTK_IMHTML_NO_COMMENTS | GTK_IMHTML_NO_SCROLL); |
6982 | 2282 gtk_imhtml_append_text(GTK_IMHTML(away_text), "<BR>", GTK_IMHTML_NO_TITLE | |
5440 | 2283 GTK_IMHTML_NO_COMMENTS | GTK_IMHTML_NO_SCROLL); |
2284 g_free(tmp); | |
2285 g_value_unset (&val); | |
2286 | |
2287 } | |
2288 | |
6979 | 2289 static gboolean away_message_click_cb(GtkWidget *tv, GdkEventButton *event, gpointer null) |
2290 { | |
2291 /* Only respond to double click on button 1 */ | |
2292 if ((event->button != 1) || (event->type != GDK_2BUTTON_PRESS)) | |
2293 return FALSE; | |
2294 | |
2295 /* Show the edit away message dialog */ | |
2296 create_away_mess(NULL, tv); | |
2297 | |
2298 return FALSE; | |
2299 } | |
2300 | |
5440 | 2301 void remove_away_message(GtkWidget *widget, GtkTreeView *tv) { |
6016 | 2302 struct away_message *am; |
5440 | 2303 GtkTreeIter iter; |
2304 GtkTreeSelection *sel = gtk_tree_view_get_selection(tv); | |
2305 GtkTreeModel *model = GTK_TREE_MODEL(prefs_away_store); | |
2306 GValue val = { 0, }; | |
2307 | |
2308 if (! gtk_tree_selection_get_selected (sel, &model, &iter)) | |
2309 return; | |
2310 gtk_tree_model_get_value (GTK_TREE_MODEL(prefs_away_store), &iter, 1, &val); | |
2311 am = g_value_get_pointer (&val); | |
2312 gtk_imhtml_clear(GTK_IMHTML(away_text)); | |
2313 rem_away_mess(NULL, am); | |
2314 } | |
2315 | |
2316 GtkWidget *away_message_page() { | |
2317 GtkWidget *ret; | |
2318 GtkWidget *hbox; | |
2319 GtkWidget *button; | |
2320 GtkWidget *sw; | |
2321 GtkTreeIter iter; | |
2322 GtkWidget *event_view; | |
2323 GtkCellRenderer *rend; | |
2324 GtkTreeViewColumn *col; | |
2325 GtkTreeSelection *sel; | |
2326 GSList *awy = away_messages; | |
2327 struct away_message *a; | |
2328 GtkSizeGroup *sg; | |
2329 | |
2330 ret = gtk_vbox_new(FALSE, 18); | |
2331 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
2332 | |
2333 sg = gtk_size_group_new(GTK_SIZE_GROUP_BOTH); | |
2334 | |
2335 sw = gtk_scrolled_window_new(NULL,NULL); | |
7931 | 2336 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_IN); |
7929 | 2337 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); |
5440 | 2338 gtk_box_pack_start(GTK_BOX(ret), sw, TRUE, TRUE, 0); |
2339 | |
7940 | 2340 prefs_away_store = gtk_list_store_new(2, G_TYPE_STRING, G_TYPE_POINTER); |
5440 | 2341 while (awy) { |
2342 a = (struct away_message *)awy->data; | |
2343 gtk_list_store_append (prefs_away_store, &iter); | |
2344 gtk_list_store_set(prefs_away_store, &iter, | |
2345 0, a->name, | |
2346 1, a, -1); | |
2347 awy = awy->next; | |
2348 } | |
7939 | 2349 event_view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(prefs_away_store)); |
5440 | 2350 |
2351 rend = gtk_cell_renderer_text_new(); | |
2352 col = gtk_tree_view_column_new_with_attributes ("NULL", | |
2353 rend, | |
2354 "text", 0, | |
2355 NULL); | |
2356 gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col); | |
2357 gtk_tree_view_set_headers_visible (GTK_TREE_VIEW(event_view), FALSE); | |
2358 gtk_widget_show(event_view); | |
7931 | 2359 gtk_container_add(GTK_CONTAINER(sw), event_view); |
5440 | 2360 |
7929 | 2361 sw = gtk_scrolled_window_new(NULL, NULL); |
7931 | 2362 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_IN); |
7929 | 2363 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), |
5440 | 2364 GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); |
7929 | 2365 gtk_box_pack_start(GTK_BOX(ret), sw, TRUE, TRUE, 0); |
2366 | |
2367 away_text = gtk_imhtml_new(NULL, NULL); | |
7931 | 2368 gtk_container_add(GTK_CONTAINER(sw), away_text); |
2369 | |
5440 | 2370 gaim_setup_imhtml(away_text); |
2371 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (event_view)); | |
6979 | 2372 g_signal_connect(G_OBJECT(sel), "changed", |
2373 G_CALLBACK(away_message_sel_cb), NULL); | |
2374 g_signal_connect(G_OBJECT(event_view), "button-press-event", | |
2375 G_CALLBACK(away_message_click_cb), NULL); | |
5440 | 2376 hbox = gtk_hbox_new(TRUE, 5); |
2377 gtk_box_pack_start(GTK_BOX(ret), hbox, FALSE, FALSE, 0); | |
2378 button = gtk_button_new_from_stock (GTK_STOCK_ADD); | |
2379 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
2380 gtk_size_group_add_widget(sg, button); | |
2381 g_signal_connect(G_OBJECT(button), "clicked", | |
2382 G_CALLBACK(create_away_mess), NULL); | |
2383 | |
2384 button = gtk_button_new_from_stock (GTK_STOCK_REMOVE); | |
2385 gtk_size_group_add_widget(sg, button); | |
2386 g_signal_connect(G_OBJECT(button), "clicked", | |
2387 G_CALLBACK(remove_away_message), event_view); | |
2388 | |
2389 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
2390 | |
2391 button = gaim_pixbuf_button_from_stock(_("_Edit"), GAIM_STOCK_EDIT, GAIM_BUTTON_HORIZONTAL); | |
2392 gtk_size_group_add_widget(sg, button); | |
2393 g_signal_connect(G_OBJECT(button), "clicked", | |
2394 G_CALLBACK(create_away_mess), event_view); | |
2395 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
2396 | |
2397 gtk_widget_show_all(ret); | |
2398 return ret; | |
2399 } | |
2400 | |
2401 GtkTreeIter *prefs_notebook_add_page(const char *text, | |
2402 GdkPixbuf *pixbuf, | |
2403 GtkWidget *page, | |
2404 GtkTreeIter *iter, | |
2405 GtkTreeIter *parent, | |
2406 int ind) { | |
2407 GdkPixbuf *icon = NULL; | |
2408 | |
2409 if (pixbuf) | |
2410 icon = gdk_pixbuf_scale_simple (pixbuf, 18, 18, GDK_INTERP_BILINEAR); | |
2411 | |
2412 gtk_tree_store_append (prefstree, iter, parent); | |
2413 gtk_tree_store_set (prefstree, iter, 0, icon, 1, text, 2, ind, -1); | |
2414 | |
2415 if (pixbuf) | |
2416 g_object_unref(pixbuf); | |
2417 if (icon) | |
2418 g_object_unref(icon); | |
2419 gtk_notebook_append_page(GTK_NOTEBOOK(prefsnotebook), page, gtk_label_new(text)); | |
2420 return iter; | |
2421 } | |
2422 | |
2423 void prefs_notebook_init() { | |
9108 | 2424 GtkTreeIter p, c; |
5440 | 2425 GList *l; |
2426 GaimPlugin *plug; | |
2427 prefs_notebook_add_page(_("Interface"), NULL, interface_page(), &p, NULL, notebook_page++); | |
2428 prefs_notebook_add_page(_("Smiley Themes"), NULL, theme_page(), &c, &p, notebook_page++); | |
2429 prefs_notebook_add_page(_("Message Text"), NULL, messages_page(), &c, &p, notebook_page++); | |
2430 prefs_notebook_add_page(_("Shortcuts"), NULL, hotkeys_page(), &c, &p, notebook_page++); | |
2431 prefs_notebook_add_page(_("Buddy List"), NULL, list_page(), &c, &p, notebook_page++); | |
9108 | 2432 prefs_notebook_add_page(_("Conversations"), NULL, conv_page(), &c, &p, notebook_page++); |
2433 prefs_notebook_add_page(_("Sounds"), NULL, sound_page(), &c, &p, notebook_page++); | |
8238 | 2434 prefs_notebook_add_page(_("Network"), NULL, network_page(), &p, NULL, notebook_page++); |
5440 | 2435 #ifndef _WIN32 |
2436 /* We use the registered default browser in windows */ | |
2437 prefs_notebook_add_page(_("Browser"), NULL, browser_page(), &p, NULL, notebook_page++); | |
2438 #endif | |
2439 prefs_notebook_add_page(_("Logging"), NULL, logging_page(), &p, NULL, notebook_page++); | |
2440 prefs_notebook_add_page(_("Away / Idle"), NULL, away_page(), &p, NULL, notebook_page++); | |
2441 prefs_notebook_add_page(_("Away Messages"), NULL, away_message_page(), &c, &p, notebook_page++); | |
2442 | |
2443 if (gaim_plugins_enabled()) { | |
2444 prefs_notebook_add_page(_("Plugins"), NULL, plugin_page(), &plugin_iter, NULL, notebook_page++); | |
2445 | |
2446 for (l = gaim_plugins_get_loaded(); l != NULL; l = l->next) { | |
8713 | 2447 plug = (GaimPlugin *)l->data; |
5440 | 2448 |
2449 if (GAIM_IS_GTK_PLUGIN(plug)) { | |
2450 GtkWidget *config_frame; | |
2451 GaimGtkPluginUiInfo *ui_info; | |
2452 | |
2453 ui_info = GAIM_GTK_PLUGIN_UI_INFO(plug); | |
2454 config_frame = gaim_gtk_plugin_get_config_frame(plug); | |
2455 | |
2456 if (config_frame != NULL) { | |
2457 ui_info->iter = g_new0(GtkTreeIter, 1); | |
2458 prefs_notebook_add_page(_(plug->info->name), NULL, | |
2459 config_frame, ui_info->iter, | |
2460 &plugin_iter, notebook_page++); | |
2461 } | |
2462 } | |
8713 | 2463 |
2464 if(GAIM_PLUGIN_HAS_PREF_FRAME(plug)) { | |
8745 | 2465 GtkWidget *gtk_frame; |
8713 | 2466 GaimPluginUiInfo *prefs_info; |
2467 | |
2468 prefs_info = GAIM_PLUGIN_UI_INFO(plug); | |
8814 | 2469 prefs_info->frame = prefs_info->get_plugin_pref_frame(plug); |
2470 gtk_frame = gaim_gtk_plugin_pref_create_frame(prefs_info->frame); | |
8745 | 2471 |
2472 if(GTK_IS_WIDGET(gtk_frame)) { | |
8713 | 2473 prefs_info->iter = g_new0(GtkTreeIter, 1); |
2474 prefs_notebook_add_page(_(plug->info->name), NULL, | |
8745 | 2475 gtk_frame, prefs_info->iter, |
9108 | 2476 (plug->info->type == GAIM_PLUGIN_PROTOCOL) ? NULL : &plugin_iter, |
8713 | 2477 notebook_page++); |
8814 | 2478 } else if(prefs_info->frame) { |
2479 /* in the event that there is a pref frame and we can | |
2480 * not make a widget out of it, we free the | |
2481 * pluginpref frame --Gary | |
2482 */ | |
2483 gaim_plugin_pref_frame_destroy(prefs_info->frame); | |
8713 | 2484 } |
2485 } | |
5440 | 2486 } |
2487 } | |
2488 } | |
2489 | |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
2490 void gaim_gtk_prefs_show(void) |
5440 | 2491 { |
2492 GtkWidget *vbox, *vbox2; | |
2493 GtkWidget *hbox; | |
8292
90ed519c6645
[gaim-migrate @ 9016]
Christian Hammond <chipx86@chipx86.com>
parents:
8283
diff
changeset
|
2494 GtkWidget *bbox; |
5440 | 2495 GtkWidget *frame; |
8335 | 2496 GtkWidget *scrolled_window; |
5440 | 2497 GtkTreeViewColumn *column; |
2498 GtkCellRenderer *cell; | |
2499 GtkTreeSelection *sel; | |
2500 GtkWidget *notebook; | |
2501 GtkWidget *sep; | |
2502 GtkWidget *button; | |
2503 | |
2504 if (prefs) { | |
2505 gtk_window_present(GTK_WINDOW(prefs)); | |
2506 return; | |
2507 } | |
2508 | |
2509 /* copy the preferences to tmp values... | |
2510 * I liked "take affect immediately" Oh well :-( */ | |
6016 | 2511 /* (that should have been "effect," right?) */ |
2512 | |
5440 | 2513 /* Back to instant-apply! I win! BU-HAHAHA! */ |
2514 | |
2515 /* Create the window */ | |
2516 prefs = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
2517 gtk_window_set_role(GTK_WINDOW(prefs), "preferences"); | |
2518 gtk_widget_realize(prefs); | |
2519 gtk_window_set_title(GTK_WINDOW(prefs), _("Preferences")); | |
2520 gtk_window_set_resizable (GTK_WINDOW(prefs), FALSE); | |
8292
90ed519c6645
[gaim-migrate @ 9016]
Christian Hammond <chipx86@chipx86.com>
parents:
8283
diff
changeset
|
2521 gtk_container_set_border_width(GTK_CONTAINER(prefs), 12); |
5440 | 2522 g_signal_connect(G_OBJECT(prefs), "destroy", |
2523 G_CALLBACK(delete_prefs), NULL); | |
2524 | |
8292
90ed519c6645
[gaim-migrate @ 9016]
Christian Hammond <chipx86@chipx86.com>
parents:
8283
diff
changeset
|
2525 vbox = gtk_vbox_new(FALSE, 12); |
5440 | 2526 gtk_container_add(GTK_CONTAINER(prefs), vbox); |
2527 gtk_widget_show(vbox); | |
2528 | |
2529 hbox = gtk_hbox_new (FALSE, 6); | |
2530 gtk_container_add (GTK_CONTAINER(vbox), hbox); | |
2531 gtk_widget_show (hbox); | |
2532 | |
2533 frame = gtk_frame_new (NULL); | |
2534 gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN); | |
2535 gtk_box_pack_start (GTK_BOX (hbox), frame, FALSE, FALSE, 0); | |
2536 gtk_widget_show (frame); | |
2537 | |
8335 | 2538 scrolled_window = gtk_scrolled_window_new(NULL, NULL); |
2539 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled_window), | |
8340 | 2540 GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); |
8335 | 2541 gtk_container_add(GTK_CONTAINER(frame), scrolled_window); |
2542 gtk_widget_show(scrolled_window); | |
8998 | 2543 |
5440 | 2544 /* The tree -- much inspired by the Gimp */ |
2545 prefstree = gtk_tree_store_new (3, GDK_TYPE_PIXBUF, G_TYPE_STRING, G_TYPE_INT); | |
2546 tree_v = gtk_tree_view_new_with_model (GTK_TREE_MODEL (prefstree)); | |
8335 | 2547 gtk_container_add(GTK_CONTAINER(scrolled_window), tree_v); |
5440 | 2548 |
2549 gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (tree_v), FALSE); | |
2550 gtk_widget_show(tree_v); | |
2551 /* icons */ | |
2552 /* XXX: to be used at a later date | |
2553 cell = gtk_cell_renderer_pixbuf_new (); | |
2554 column = gtk_tree_view_column_new_with_attributes ("icons", cell, "pixbuf", 0, NULL); | |
2555 */ | |
2556 | |
2557 /* text */ | |
2558 cell = gtk_cell_renderer_text_new (); | |
2559 column = gtk_tree_view_column_new_with_attributes ("text", cell, "text", 1, NULL); | |
2560 | |
2561 gtk_tree_view_append_column (GTK_TREE_VIEW (tree_v), column); | |
2562 | |
2563 /* The right side */ | |
2564 frame = gtk_frame_new (NULL); | |
2565 gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN); | |
2566 gtk_box_pack_start (GTK_BOX (hbox), frame, TRUE, TRUE, 0); | |
2567 gtk_widget_show (frame); | |
2568 | |
2569 vbox2 = gtk_vbox_new (FALSE, 4); | |
2570 gtk_container_add (GTK_CONTAINER (frame), vbox2); | |
2571 gtk_widget_show (vbox2); | |
2572 | |
2573 frame = gtk_frame_new (NULL); | |
2574 gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_OUT); | |
2575 gtk_box_pack_start (GTK_BOX (vbox2), frame, FALSE, TRUE, 0); | |
2576 gtk_widget_show (frame); | |
2577 | |
2578 hbox = gtk_hbox_new (FALSE, 4); | |
2579 gtk_container_set_border_width (GTK_CONTAINER (hbox), 4); | |
2580 gtk_container_add (GTK_CONTAINER (frame), hbox); | |
2581 gtk_widget_show (hbox); | |
2582 | |
2583 preflabel = gtk_label_new(NULL); | |
2584 gtk_box_pack_end (GTK_BOX (hbox), preflabel, FALSE, FALSE, 0); | |
2585 gtk_widget_show (preflabel); | |
2586 | |
2587 /* The notebook */ | |
2588 prefsnotebook = notebook = gtk_notebook_new (); | |
2589 gtk_notebook_set_show_tabs (GTK_NOTEBOOK (notebook), FALSE); | |
2590 gtk_notebook_set_show_border (GTK_NOTEBOOK (notebook), FALSE); | |
2591 gtk_box_pack_start (GTK_BOX (vbox2), notebook, FALSE, FALSE, 0); | |
2592 | |
2593 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (tree_v)); | |
2594 g_signal_connect (G_OBJECT (sel), "changed", | |
2595 G_CALLBACK (pref_nb_select), | |
2596 notebook); | |
2597 gtk_widget_show(notebook); | |
2598 sep = gtk_hseparator_new(); | |
2599 gtk_widget_show(sep); | |
2600 gtk_box_pack_start (GTK_BOX (vbox), sep, FALSE, FALSE, 0); | |
2601 | |
8713 | 2602 /* The buttons to press! */ |
8292
90ed519c6645
[gaim-migrate @ 9016]
Christian Hammond <chipx86@chipx86.com>
parents:
8283
diff
changeset
|
2603 bbox = gtk_hbutton_box_new(); |
90ed519c6645
[gaim-migrate @ 9016]
Christian Hammond <chipx86@chipx86.com>
parents:
8283
diff
changeset
|
2604 gtk_box_set_spacing(GTK_BOX(bbox), 6); |
90ed519c6645
[gaim-migrate @ 9016]
Christian Hammond <chipx86@chipx86.com>
parents:
8283
diff
changeset
|
2605 gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_END); |
90ed519c6645
[gaim-migrate @ 9016]
Christian Hammond <chipx86@chipx86.com>
parents:
8283
diff
changeset
|
2606 gtk_box_pack_start(GTK_BOX(vbox), bbox, FALSE, FALSE, 0); |
90ed519c6645
[gaim-migrate @ 9016]
Christian Hammond <chipx86@chipx86.com>
parents:
8283
diff
changeset
|
2607 gtk_widget_show (bbox); |
5440 | 2608 |
2609 button = gtk_button_new_from_stock (GTK_STOCK_CLOSE); | |
2610 g_signal_connect_swapped(G_OBJECT(button), "clicked", | |
2611 G_CALLBACK(gtk_widget_destroy), prefs); | |
8292
90ed519c6645
[gaim-migrate @ 9016]
Christian Hammond <chipx86@chipx86.com>
parents:
8283
diff
changeset
|
2612 gtk_box_pack_start(GTK_BOX(bbox), button, FALSE, FALSE, 0); |
5440 | 2613 gtk_widget_show(button); |
2614 | |
2615 prefs_notebook_init(); | |
2616 | |
5568
fb4f7bd7525c
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
2617 /* Show everything. */ |
5440 | 2618 gtk_tree_view_expand_all (GTK_TREE_VIEW(tree_v)); |
2619 gtk_widget_show(prefs); | |
2620 } | |
2621 | |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2622 static void |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2623 set_bool_pref(GtkWidget *w, const char *key) |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2624 { |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2625 gaim_prefs_set_bool(key, |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2626 gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(w))); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2627 } |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2628 |
7976 | 2629 GtkWidget * |
7987 | 2630 gaim_gtk_prefs_checkbox(const char *text, const char *key, GtkWidget *page) |
5440 | 2631 { |
2632 GtkWidget *button; | |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2633 |
5440 | 2634 button = gtk_check_button_new_with_mnemonic(text); |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2635 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2636 gaim_prefs_get_bool(key)); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2637 |
5440 | 2638 gtk_box_pack_start(GTK_BOX(page), button, FALSE, FALSE, 0); |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2639 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2640 g_signal_connect(G_OBJECT(button), "clicked", |
5551
51699de873af
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2641 G_CALLBACK(set_bool_pref), (char *)key); |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2642 |
5440 | 2643 gtk_widget_show(button); |
2644 | |
2645 return button; | |
2646 } | |
2647 | |
2648 void default_away_menu_init(GtkWidget *omenu) | |
2649 { | |
2650 GtkWidget *menu, *opt; | |
6216 | 2651 int index = 0, default_index = 0; |
5440 | 2652 GSList *awy = away_messages; |
2653 struct away_message *a; | |
6216 | 2654 const char *default_name; |
5440 | 2655 |
2656 menu = gtk_menu_new(); | |
2657 | |
6216 | 2658 default_name = gaim_prefs_get_string("/core/away/default_message"); |
2659 | |
5440 | 2660 while (awy) { |
2661 a = (struct away_message *)awy->data; | |
2662 opt = gtk_menu_item_new_with_label(a->name); | |
2663 g_signal_connect(G_OBJECT(opt), "activate", | |
6478
338147ea6896
[gaim-migrate @ 6991]
Christian Hammond <chipx86@chipx86.com>
parents:
6455
diff
changeset
|
2664 G_CALLBACK(set_default_away), GINT_TO_POINTER(index)); |
5440 | 2665 gtk_widget_show(opt); |
2666 gtk_menu_shell_append(GTK_MENU_SHELL(menu), opt); | |
2667 | |
6216 | 2668 if(!strcmp(default_name, a->name)) |
2669 default_index = index; | |
2670 | |
5440 | 2671 awy = awy->next; |
2672 index++; | |
2673 } | |
2674 | |
2675 gtk_option_menu_remove_menu(GTK_OPTION_MENU(omenu)); | |
2676 gtk_option_menu_set_menu(GTK_OPTION_MENU(omenu), menu); | |
6216 | 2677 gtk_option_menu_set_history(GTK_OPTION_MENU(omenu), default_index); |
5440 | 2678 } |
2679 | |
6478
338147ea6896
[gaim-migrate @ 6991]
Christian Hammond <chipx86@chipx86.com>
parents:
6455
diff
changeset
|
2680 void set_default_away(GtkWidget *w, gpointer data) |
5440 | 2681 { |
6216 | 2682 struct away_message *default_away = NULL; |
5440 | 2683 int length = g_slist_length(away_messages); |
6478
338147ea6896
[gaim-migrate @ 6991]
Christian Hammond <chipx86@chipx86.com>
parents:
6455
diff
changeset
|
2684 int i = GPOINTER_TO_INT(data); |
5440 | 2685 |
2686 if (away_messages == NULL) | |
2687 default_away = NULL; | |
6478
338147ea6896
[gaim-migrate @ 6991]
Christian Hammond <chipx86@chipx86.com>
parents:
6455
diff
changeset
|
2688 else if (i >= length) |
5440 | 2689 default_away = g_slist_nth_data(away_messages, length - 1); |
2690 else | |
6478
338147ea6896
[gaim-migrate @ 6991]
Christian Hammond <chipx86@chipx86.com>
parents:
6455
diff
changeset
|
2691 default_away = g_slist_nth_data(away_messages, i); |
6216 | 2692 |
2693 if(default_away) | |
2694 gaim_prefs_set_string("/core/away/default_message", default_away->name); | |
2695 else | |
2696 gaim_prefs_set_string("/core/away/default_message", ""); | |
5440 | 2697 } |
2698 | |
5770
a86051df9122
[gaim-migrate @ 6195]
Christian Hammond <chipx86@chipx86.com>
parents:
5753
diff
changeset
|
2699 static void |
a86051df9122
[gaim-migrate @ 6195]
Christian Hammond <chipx86@chipx86.com>
parents:
5753
diff
changeset
|
2700 smiley_theme_pref_cb(const char *name, GaimPrefType type, gpointer value, |
a86051df9122
[gaim-migrate @ 6195]
Christian Hammond <chipx86@chipx86.com>
parents:
5753
diff
changeset
|
2701 gpointer data) |
a86051df9122
[gaim-migrate @ 6195]
Christian Hammond <chipx86@chipx86.com>
parents:
5753
diff
changeset
|
2702 { |
5841 | 2703 if (!strcmp(name, "/gaim/gtk/smileys/theme")) |
5771
f63a008726c6
[gaim-migrate @ 6196]
Christian Hammond <chipx86@chipx86.com>
parents:
5770
diff
changeset
|
2704 load_smiley_theme((const char *)value, TRUE); |
5770
a86051df9122
[gaim-migrate @ 6195]
Christian Hammond <chipx86@chipx86.com>
parents:
5753
diff
changeset
|
2705 } |
a86051df9122
[gaim-migrate @ 6195]
Christian Hammond <chipx86@chipx86.com>
parents:
5753
diff
changeset
|
2706 |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
2707 void |
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
2708 gaim_gtk_prefs_init(void) |
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
2709 { |
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
2710 gaim_prefs_add_none("/gaim"); |
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
2711 gaim_prefs_add_none("/gaim/gtk"); |
5550
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
2712 gaim_prefs_add_none("/plugins/gtk"); |
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
2713 |
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
2714 /* XXX Move this! HACK! :( Aww... */ |
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
2715 gaim_prefs_add_none("/plugins/gtk/docklet"); |
5554
7b36d02031a2
[gaim-migrate @ 5955]
Christian Hammond <chipx86@chipx86.com>
parents:
5551
diff
changeset
|
2716 gaim_prefs_add_bool("/plugins/gtk/docklet/queue_messages", FALSE); |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
2717 |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5560
diff
changeset
|
2718 /* Accounts Dialog */ |
5567
cc9ddec20010
[gaim-migrate @ 5969]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2719 gaim_prefs_add_none("/gaim/gtk/accounts"); |
cc9ddec20010
[gaim-migrate @ 5969]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2720 gaim_prefs_add_none("/gaim/gtk/accounts/dialog"); |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5560
diff
changeset
|
2721 gaim_prefs_add_int("/gaim/gtk/accounts/dialog/width", 550); |
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5560
diff
changeset
|
2722 gaim_prefs_add_int("/gaim/gtk/accounts/dialog/height", 250); |
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5560
diff
changeset
|
2723 |
5573
5e7de337a053
[gaim-migrate @ 5976]
Christian Hammond <chipx86@chipx86.com>
parents:
5568
diff
changeset
|
2724 /* Away Queueing */ |
5e7de337a053
[gaim-migrate @ 5976]
Christian Hammond <chipx86@chipx86.com>
parents:
5568
diff
changeset
|
2725 gaim_prefs_add_none("/gaim/gtk/away"); |
5e7de337a053
[gaim-migrate @ 5976]
Christian Hammond <chipx86@chipx86.com>
parents:
5568
diff
changeset
|
2726 gaim_prefs_add_bool("/gaim/gtk/away/queue_messages", FALSE); |
5e7de337a053
[gaim-migrate @ 5976]
Christian Hammond <chipx86@chipx86.com>
parents:
5568
diff
changeset
|
2727 |
8283 | 2728 #ifndef _WIN32 |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2729 /* Browsers */ |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2730 gaim_prefs_add_none("/gaim/gtk/browsers"); |
8272 | 2731 gaim_prefs_add_int("/gaim/gtk/browsers/place", GAIM_BROWSER_DEFAULT); |
5560
b7319c094153
[gaim-migrate @ 5961]
Christian Hammond <chipx86@chipx86.com>
parents:
5554
diff
changeset
|
2732 gaim_prefs_add_string("/gaim/gtk/browsers/command", ""); |
5546
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
2733 gaim_prefs_add_string("/gaim/gtk/browsers/browser", "mozilla"); |
8283 | 2734 #endif |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2735 |
5550
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
2736 /* Idle */ |
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
2737 gaim_prefs_add_none("/gaim/gtk/idle"); |
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
2738 gaim_prefs_add_string("/gaim/gtk/idle/reporting_method", "system"); |
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
2739 |
5949
90d0849abd3c
[gaim-migrate @ 6393]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
2740 /* Plugins */ |
5982
35d3c1ac5ece
[gaim-migrate @ 6430]
Christian Hammond <chipx86@chipx86.com>
parents:
5981
diff
changeset
|
2741 gaim_prefs_add_none("/gaim/gtk/plugins"); |
5949
90d0849abd3c
[gaim-migrate @ 6393]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
2742 gaim_prefs_add_string_list("/gaim/gtk/plugins/loaded", NULL); |
90d0849abd3c
[gaim-migrate @ 6393]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
2743 |
5539
de09863bd4b5
[gaim-migrate @ 5939]
Christian Hammond <chipx86@chipx86.com>
parents:
5535
diff
changeset
|
2744 /* Smiley Themes */ |
5546
22cf337e8b8f
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
2745 gaim_prefs_add_none("/gaim/gtk/smileys"); |
5771
f63a008726c6
[gaim-migrate @ 6196]
Christian Hammond <chipx86@chipx86.com>
parents:
5770
diff
changeset
|
2746 gaim_prefs_add_string("/gaim/gtk/smileys/theme", ""); |
5770
a86051df9122
[gaim-migrate @ 6195]
Christian Hammond <chipx86@chipx86.com>
parents:
5753
diff
changeset
|
2747 |
a86051df9122
[gaim-migrate @ 6195]
Christian Hammond <chipx86@chipx86.com>
parents:
5753
diff
changeset
|
2748 /* Smiley Callbacks */ |
a86051df9122
[gaim-migrate @ 6195]
Christian Hammond <chipx86@chipx86.com>
parents:
5753
diff
changeset
|
2749 gaim_prefs_connect_callback("/gaim/gtk/smileys/theme", |
a86051df9122
[gaim-migrate @ 6195]
Christian Hammond <chipx86@chipx86.com>
parents:
5753
diff
changeset
|
2750 smiley_theme_pref_cb, NULL); |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
2751 } |
8905 | 2752 |
2753 void gaim_gtk_prefs_update_old() { | |
2754 /* Rename some old prefs */ | |
2755 gaim_prefs_rename("/gaim/gtk/logging/log_ims", "/core/logging/log_ims"); | |
2756 gaim_prefs_rename("/gaim/gtk/logging/log_chats", "/core/logging/log_chats"); | |
2757 gaim_prefs_rename("/core/conversations/placement", | |
8998 | 2758 "/gaim/gtk/conversations/placement"); |
8905 | 2759 |
9025 | 2760 gaim_prefs_rename("/gaim/gtk/conversations/use_custom_font", |
2761 "/gaim/gtk/conversations/send_formatting"); | |
2762 | |
8905 | 2763 /* Remove some no-longer-used prefs */ |
8945 | 2764 gaim_prefs_remove("/gaim/gtk/blist/show_group_count"); |
8946 | 2765 gaim_prefs_remove("/gaim/gtk/conversations/icons_on_tabs"); |
9049 | 2766 #if 0 /* PREFSLASH04 */ |
8944 | 2767 gaim_prefs_remove("/gaim/gtk/conversations/ignore_colors"); |
2768 gaim_prefs_remove("/gaim/gtk/conversations/ignore_fonts"); | |
2769 gaim_prefs_remove("/gaim/gtk/conversations/ignore_font_sizes"); | |
9049 | 2770 #endif |
8905 | 2771 gaim_prefs_remove("/gaim/gtk/conversations/show_urls_as_links"); |
2772 gaim_prefs_remove("/gaim/gtk/conversations/show_smileys"); | |
8941 | 2773 gaim_prefs_remove("/gaim/gtk/conversations/chat/tab_completion"); |
2774 gaim_prefs_remove("/gaim/gtk/conversations/chat/old_tab_complete"); | |
8947 | 2775 gaim_prefs_remove("/gaim/gtk/sound/signon"); |
2776 gaim_prefs_remove("/gaim/gtk/sound/silent_signon"); | |
8998 | 2777 gaim_prefs_remove("/gaim/gtk/logging/individual_logs"); |
9025 | 2778 gaim_prefs_remove("/gaim/gtk/conversations/use_custom_bgcolor"); |
2779 gaim_prefs_remove("/gaim/gtk/conversations/use_custom_fgcolor"); | |
2780 gaim_prefs_remove("/gaim/gtk/conversations/use_custom_size"); | |
8905 | 2781 } |