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