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