Sat, 14 Jun 2003 15:25:03 +0000
[gaim-migrate @ 6299]
assorted compile cleanups and fixes I came across
|
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, }; | |
| 5841 | 454 | |
| 5440 | 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); | |
|
5770
e18c7f1947f0
[gaim-migrate @ 6195]
Christian Hammond <chipx86@chipx86.com>
parents:
5753
diff
changeset
|
459 | gaim_prefs_set_string("/gaim/gtk/smileys/theme", filename); |
| 5440 | 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 | ||
| 954 | ret = gtk_vbox_new(FALSE, 18); | |
| 955 | gtk_container_set_border_width(GTK_CONTAINER(ret), 12); | |
| 956 | ||
| 957 | sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); | |
|
5530
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
958 | vbox = gaim_gtk_make_frame(ret, _("Conversations")); |
| 5440 | 959 | |
| 5858 | 960 | names = gaim_conv_placement_get_options(); |
| 5440 | 961 | |
|
5547
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
962 | label = prefs_dropdown_from_list(vbox, _("_Placement:"), GAIM_PREF_STRING, |
| 5858 | 963 | "/core/conversations/placement", |
|
5547
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
964 | names); |
| 5440 | 965 | |
| 966 | g_list_free(names); | |
| 967 | ||
| 968 | gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
| 969 | gtk_size_group_add_widget(sg, label); | |
| 970 | ||
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
971 | prefs_checkbox(_("Send _URLs as Links"), |
|
5539
a13dd0ba205a
[gaim-migrate @ 5939]
Christian Hammond <chipx86@chipx86.com>
parents:
5535
diff
changeset
|
972 | "/core/conversations/send_urls_as_links", vbox); |
| 5440 | 973 | |
|
5547
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
974 | vbox = gaim_gtk_make_frame (ret, _("Tab Options")); |
|
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
975 | |
| 5667 | 976 | names = NULL; |
| 977 | names = g_list_append(names, _("Top")); | |
| 978 | names = g_list_append(names, GINT_TO_POINTER(GTK_POS_TOP)); | |
| 979 | names = g_list_append(names, _("Bottom")); | |
| 980 | names = g_list_append(names, GINT_TO_POINTER(GTK_POS_BOTTOM)); | |
| 981 | names = g_list_append(names, _("Left")); | |
| 982 | names = g_list_append(names, GINT_TO_POINTER(GTK_POS_LEFT)); | |
| 983 | names = g_list_append(names, _("Right")); | |
| 984 | names = g_list_append(names, GINT_TO_POINTER(GTK_POS_RIGHT)); | |
| 985 | ||
| 5668 | 986 | label = prefs_dropdown(vbox, _("_Tab Placement:"), GAIM_PREF_INT, |
| 5667 | 987 | "/gaim/gtk/conversations/tab_side", |
| 5668 | 988 | _("Top"), GTK_POS_TOP, |
| 989 | _("Bottom"), GTK_POS_BOTTOM, | |
| 990 | _("Left"), GTK_POS_LEFT, | |
| 991 | _("Right"), GTK_POS_RIGHT, | |
| 992 | NULL); | |
| 5667 | 993 | |
| 994 | gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
| 995 | gtk_size_group_add_widget(sg, label); | |
| 996 | ||
|
5547
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
997 | button = prefs_checkbox(_("Show IMs and chats in _tabbed windows"), |
|
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
998 | "/gaim/gtk/conversations/tabs", vbox); |
|
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
999 | |
|
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1000 | close_checkbox = prefs_checkbox(_("Show _close button on tabs."), |
|
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1001 | "/gaim/gtk/conversations/close_on_tabs", |
|
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1002 | vbox); |
|
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1003 | |
|
5568
3c7cc231c8c4
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1004 | if (!gaim_prefs_get_bool("/gaim/gtk/conversations/tabs")) { |
|
5547
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1005 | gtk_widget_set_sensitive(GTK_WIDGET(close_checkbox), FALSE); |
|
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1006 | } |
|
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1007 | |
|
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1008 | g_signal_connect(G_OBJECT(button), "clicked", |
|
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1009 | G_CALLBACK(gaim_gtk_toggle_sensitive), close_checkbox); |
|
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1010 | |
| 5440 | 1011 | gtk_widget_show_all(ret); |
| 1012 | ||
| 1013 | return ret; | |
| 1014 | } | |
| 1015 | ||
| 1016 | GtkWidget *im_page() { | |
| 1017 | GtkWidget *ret; | |
| 1018 | GtkWidget *vbox; | |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1019 | GtkWidget *widge; |
| 5440 | 1020 | GtkSizeGroup *sg; |
| 1021 | ||
| 1022 | ret = gtk_vbox_new(FALSE, 18); | |
| 1023 | gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
| 1024 | ||
| 1025 | sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); | |
| 1026 | ||
|
5530
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1027 | vbox = gaim_gtk_make_frame (ret, _("Window")); |
|
5547
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1028 | widge = prefs_dropdown(vbox, _("Show _buttons as:"), GAIM_PREF_INT, |
|
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1029 | "/gaim/gtk/conversations/im/button_type", |
|
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1030 | _("Pictures"), GAIM_BUTTON_IMAGE, |
|
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1031 | _("Text"), GAIM_BUTTON_TEXT, |
|
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1032 | _("Pictures and text"), GAIM_BUTTON_TEXT_IMAGE, |
|
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1033 | NULL); |
|
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1034 | |
| 5440 | 1035 | gtk_size_group_add_widget(sg, widge); |
| 1036 | gtk_misc_set_alignment(GTK_MISC(widge), 0, 0); | |
|
5550
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1037 | prefs_labeled_spin_button(vbox, _("New window _width:"), |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1038 | "/gaim/gtk/conversations/im/default_width", |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1039 | 25, 9999, sg); |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1040 | prefs_labeled_spin_button(vbox, _("New window _height:"), |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1041 | "/gaim/gtk/conversations/im/default_height", |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1042 | 25, 9999, sg); |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1043 | prefs_labeled_spin_button(vbox, _("_Entry field height:"), |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1044 | "/gaim/gtk/conversations/im/entry_height", |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1045 | 25, 9999, sg); |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1046 | prefs_checkbox(_("_Raise windows on events"), |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1047 | "/gaim/gtk/conversations/im/raise_on_events", vbox); |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1048 | prefs_checkbox(_("Hide window on _send"), |
| 5631 | 1049 | "/gaim/gtk/conversations/im/hide_on_send", vbox); |
| 5440 | 1050 | gtk_widget_show (vbox); |
| 1051 | ||
|
5530
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1052 | vbox = gaim_gtk_make_frame (ret, _("Buddy Icons")); |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1053 | prefs_checkbox(_("Show buddy _icons"), |
|
5568
3c7cc231c8c4
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1054 | "/gaim/gtk/conversations/im/show_buddy_icons", vbox); |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1055 | prefs_checkbox(_("Enable buddy icon a_nimation"), |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1056 | "/gaim/gtk/conversations/im/animate_buddy_icons", vbox); |
| 5440 | 1057 | |
|
5530
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1058 | vbox = gaim_gtk_make_frame (ret, _("Display")); |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1059 | prefs_checkbox(_("Show _logins in window"), |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1060 | "/core/conversations/im/show_login", vbox); |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1061 | prefs_checkbox(_("Show a_liases in tabs/titles"), |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1062 | "/core/conversations/use_alias_for_title", vbox); |
| 5440 | 1063 | |
|
5530
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1064 | vbox = gaim_gtk_make_frame (ret, _("Typing Notification")); |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1065 | prefs_checkbox(_("Notify buddies that you are _typing to them"), |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1066 | "/core/conversations/im/send_typing", vbox); |
| 5440 | 1067 | |
| 1068 | gtk_widget_show_all(ret); | |
| 1069 | return ret; | |
| 1070 | } | |
| 1071 | ||
| 1072 | GtkWidget *chat_page() { | |
| 1073 | GtkWidget *ret; | |
| 1074 | GtkWidget *vbox; | |
| 1075 | GtkWidget *dd; | |
| 1076 | GtkSizeGroup *sg; | |
| 1077 | ||
| 1078 | ret = gtk_vbox_new(FALSE, 18); | |
| 1079 | gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
| 1080 | ||
| 1081 | sg = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL); | |
| 1082 | ||
|
5530
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1083 | vbox = gaim_gtk_make_frame (ret, _("Window")); |
|
5547
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1084 | dd = prefs_dropdown(vbox, _("Show _buttons as:"), GAIM_PREF_INT, |
|
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1085 | "/gaim/gtk/conversations/chat/button_type", |
|
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1086 | _("Pictures"), GAIM_BUTTON_IMAGE, |
|
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1087 | _("Text"), GAIM_BUTTON_TEXT, |
|
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1088 | _("Pictures and text"), GAIM_BUTTON_TEXT_IMAGE, |
|
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1089 | NULL); |
|
385f123facb7
[gaim-migrate @ 5948]
Christian Hammond <chipx86@chipx86.com>
parents:
5546
diff
changeset
|
1090 | |
| 5440 | 1091 | gtk_size_group_add_widget(sg, dd); |
| 1092 | gtk_misc_set_alignment(GTK_MISC(dd), 0, 0); | |
|
5550
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1093 | prefs_labeled_spin_button(vbox, _("New window _width:"), |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1094 | "/gaim/gtk/conversations/chat/default_width", |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1095 | 25, 9999, sg); |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1096 | prefs_labeled_spin_button(vbox, _("New window _height:"), |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1097 | "/gaim/gtk/conversations/chat/default_height", |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1098 | 25, 9999, sg); |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1099 | prefs_labeled_spin_button(vbox, _("_Entry field height:"), |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1100 | "/gaim/gtk/conversations/chat/entry_height", |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1101 | 25, 9999, sg); |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1102 | prefs_checkbox(_("_Raise windows on events"), |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1103 | "/gaim/gtk/conversations/chat/raise_on_events", vbox); |
| 5440 | 1104 | |
|
5530
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1105 | vbox = gaim_gtk_make_frame (ret, _("Tab Completion")); |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1106 | prefs_checkbox(_("_Tab-complete nicks"), |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1107 | "/gaim/gtk/conversations/chat/tab_completion", vbox); |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1108 | prefs_checkbox(_("_Old-style tab completion"), |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1109 | "/gaim/gtk/conversations/chat/old_tab_complete", vbox); |
| 5440 | 1110 | |
|
5530
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1111 | vbox = gaim_gtk_make_frame (ret, _("Display")); |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1112 | prefs_checkbox(_("_Show people joining in window"), |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1113 | "/core/conversations/chat/show_join", vbox); |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1114 | prefs_checkbox(_("_Show people leaving in window"), |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1115 | "/core/conversations/chat/show_leave", vbox); |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1116 | prefs_checkbox(_("Co_lorize screennames"), |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1117 | "/gaim/gtk/conversations/chat/color_nicks", vbox); |
| 5440 | 1118 | |
| 1119 | gtk_widget_show_all(ret); | |
| 1120 | return ret; | |
| 1121 | } | |
| 1122 | ||
| 1123 | GtkWidget *proxy_page() { | |
| 1124 | GtkWidget *ret; | |
| 1125 | GtkWidget *vbox; | |
| 1126 | GtkWidget *entry; | |
| 1127 | GtkWidget *label; | |
| 1128 | GtkWidget *hbox; | |
| 1129 | GtkWidget *table; | |
|
5681
514fbc5374dc
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1130 | GaimProxyInfo *proxy_info; |
| 5440 | 1131 | |
| 1132 | ret = gtk_vbox_new(FALSE, 18); | |
| 1133 | gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
| 1134 | ||
|
5530
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1135 | vbox = gaim_gtk_make_frame (ret, _("Proxy Type")); |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1136 | prefs_dropdown(vbox, _("Proxy _type:"), GAIM_PREF_STRING, |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1137 | "/core/proxy/type", |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1138 | _("No proxy"), "none", |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1139 | "SOCKS 4", "socks4", |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1140 | "SOCKS 5", "socks5", |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1141 | "HTTP", "http", |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1142 | NULL); |
| 5440 | 1143 | |
|
5530
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1144 | vbox = gaim_gtk_make_frame(ret, _("Proxy Server")); |
| 5440 | 1145 | prefs_proxy_frame = vbox; |
| 1146 | ||
|
5681
514fbc5374dc
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1147 | proxy_info = gaim_global_proxy_get_info(); |
|
514fbc5374dc
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1148 | |
|
514fbc5374dc
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1149 | if (proxy_info == NULL || |
|
514fbc5374dc
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1150 | gaim_proxy_info_get_type(proxy_info) == GAIM_PROXY_NONE) { |
|
514fbc5374dc
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1151 | |
| 5440 | 1152 | gtk_widget_set_sensitive(GTK_WIDGET(vbox), FALSE); |
|
5681
514fbc5374dc
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1153 | } |
| 5440 | 1154 | |
| 1155 | table = gtk_table_new(2, 4, FALSE); | |
| 1156 | gtk_container_set_border_width(GTK_CONTAINER(table), 5); | |
| 1157 | gtk_table_set_col_spacings(GTK_TABLE(table), 5); | |
| 1158 | gtk_table_set_row_spacings(GTK_TABLE(table), 10); | |
| 1159 | gtk_container_add(GTK_CONTAINER(vbox), table); | |
| 1160 | ||
| 1161 | ||
| 1162 | label = gtk_label_new_with_mnemonic(_("_Host")); | |
| 1163 | gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); | |
| 1164 | gtk_table_attach(GTK_TABLE(table), label, 0, 1, 0, 1, GTK_FILL, 0, 0, 0); | |
| 1165 | ||
| 1166 | entry = gtk_entry_new(); | |
| 1167 | gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry); | |
| 1168 | gtk_table_attach(GTK_TABLE(table), entry, 1, 2, 0, 1, GTK_FILL, 0, 0, 0); | |
| 1169 | g_signal_connect(G_OBJECT(entry), "changed", | |
| 1170 | G_CALLBACK(proxy_print_option), (void *)PROXYHOST); | |
|
5681
514fbc5374dc
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1171 | |
|
514fbc5374dc
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1172 | if (proxy_info != NULL && gaim_proxy_info_get_host(proxy_info)) |
|
514fbc5374dc
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1173 | gtk_entry_set_text(GTK_ENTRY(entry), |
|
514fbc5374dc
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1174 | gaim_proxy_info_get_host(proxy_info)); |
| 5440 | 1175 | |
| 1176 | hbox = gtk_hbox_new(TRUE, 5); | |
| 1177 | gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); | |
| 1178 | ||
| 1179 | label = gtk_label_new_with_mnemonic(_("Port")); | |
| 1180 | gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); | |
| 1181 | gtk_table_attach(GTK_TABLE(table), label, 0, 1, 1, 2, GTK_FILL, 0, 0, 0); | |
| 1182 | ||
| 1183 | entry = gtk_entry_new(); | |
| 1184 | gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry); | |
| 1185 | gtk_table_attach(GTK_TABLE(table), entry, 1, 2, 1, 2, GTK_FILL, 0, 0, 0); | |
| 1186 | g_signal_connect(G_OBJECT(entry), "changed", | |
| 1187 | G_CALLBACK(proxy_print_option), (void *)PROXYPORT); | |
| 1188 | ||
|
5681
514fbc5374dc
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1189 | if (proxy_info != NULL && gaim_proxy_info_get_port(proxy_info) != 0) { |
| 5440 | 1190 | char buf[128]; |
|
5681
514fbc5374dc
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1191 | g_snprintf(buf, sizeof(buf), "%d", |
|
514fbc5374dc
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1192 | gaim_proxy_info_get_port(proxy_info)); |
|
514fbc5374dc
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1193 | |
| 5440 | 1194 | gtk_entry_set_text(GTK_ENTRY(entry), buf); |
| 1195 | } | |
| 1196 | ||
| 1197 | label = gtk_label_new_with_mnemonic(_("_User")); | |
| 1198 | gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); | |
| 1199 | gtk_table_attach(GTK_TABLE(table), label, 0, 1, 2, 3, GTK_FILL, 0, 0, 0); | |
| 1200 | ||
| 1201 | entry = gtk_entry_new(); | |
| 1202 | gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry); | |
| 1203 | gtk_table_attach(GTK_TABLE(table), entry, 1, 2, 2, 3, GTK_FILL, 0, 0, 0); | |
| 1204 | g_signal_connect(G_OBJECT(entry), "changed", | |
| 1205 | G_CALLBACK(proxy_print_option), (void *)PROXYUSER); | |
|
5681
514fbc5374dc
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1206 | |
|
514fbc5374dc
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1207 | 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
|
1208 | gtk_entry_set_text(GTK_ENTRY(entry), |
|
514fbc5374dc
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1209 | gaim_proxy_info_get_username(proxy_info)); |
| 5440 | 1210 | |
| 1211 | hbox = gtk_hbox_new(TRUE, 5); | |
| 1212 | gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); | |
| 1213 | ||
| 1214 | label = gtk_label_new_with_mnemonic(_("Pa_ssword")); | |
| 1215 | gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); | |
| 1216 | gtk_table_attach(GTK_TABLE(table), label, 0, 1, 3, 4, GTK_FILL, 0, 0, 0); | |
| 1217 | ||
| 1218 | entry = gtk_entry_new(); | |
| 1219 | gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry); | |
| 1220 | gtk_table_attach(GTK_TABLE(table), entry, 1, 2, 3, 4, GTK_FILL , 0, 0, 0); | |
| 1221 | gtk_entry_set_visibility(GTK_ENTRY(entry), FALSE); | |
| 1222 | g_signal_connect(G_OBJECT(entry), "changed", | |
| 1223 | G_CALLBACK(proxy_print_option), (void *)PROXYPASS); | |
|
5681
514fbc5374dc
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1224 | |
|
514fbc5374dc
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1225 | 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
|
1226 | gtk_entry_set_text(GTK_ENTRY(entry), |
|
514fbc5374dc
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
1227 | gaim_proxy_info_get_password(proxy_info)); |
| 5440 | 1228 | |
| 1229 | gtk_widget_show_all(ret); | |
| 1230 | return ret; | |
| 1231 | } | |
| 1232 | ||
| 1233 | #ifndef _WIN32 | |
| 1234 | static gboolean manual_browser_set(GtkWidget *entry, GdkEventFocus *event, gpointer data) { | |
| 1235 | const char *program = gtk_entry_get_text(GTK_ENTRY(entry)); | |
| 1236 | ||
| 1237 | if (!program_is_valid(program)) { | |
| 1238 | char *error = g_strdup_printf(_("The entered manual browser " | |
| 1239 | "'%s' is not valid. Hyperlinks will " | |
| 1240 | "not work."), program); | |
| 1241 | gaim_notify_warning(NULL, NULL, error, NULL); | |
| 1242 | } | |
| 1243 | ||
|
5560
7cd6678f838b
[gaim-migrate @ 5961]
Christian Hammond <chipx86@chipx86.com>
parents:
5554
diff
changeset
|
1244 | gaim_prefs_set_string("/gaim/gtk/browsers/command", program); |
| 5440 | 1245 | |
| 1246 | /* carry on normally */ | |
| 1247 | return FALSE; | |
| 1248 | } | |
| 1249 | ||
| 5633 | 1250 | static GList *get_available_browsers() |
| 5440 | 1251 | { |
| 1252 | struct browser { | |
| 1253 | char *name; | |
| 1254 | char *command; | |
| 1255 | }; | |
| 1256 | ||
| 1257 | static struct browser possible_browsers[] = { | |
| 5633 | 1258 | {N_("Konqueror"), "kfmclient"}, |
| 1259 | {N_("Opera"), "opera"}, | |
| 1260 | {N_("Galeon"), "galeon"}, | |
| 1261 | {N_("Netscape"), "netscape"}, | |
| 1262 | {N_("Mozilla"), "mozilla"}, | |
| 5440 | 1263 | }; |
| 1264 | static const int num_possible_browsers = 5; | |
| 1265 | ||
| 1266 | GList *browsers = NULL; | |
| 1267 | int i = 0; | |
| 5819 | 1268 | char *browser_setting = (char *)gaim_prefs_get_string("/gaim/gtk/browsers/browser"); |
| 5440 | 1269 | |
|
5568
3c7cc231c8c4
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1270 | browsers = g_list_prepend(browsers, "custom"); |
| 5440 | 1271 | browsers = g_list_prepend(browsers, _("Manual")); |
|
5568
3c7cc231c8c4
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1272 | |
| 5440 | 1273 | for (i = 0; i < num_possible_browsers; i++) { |
| 1274 | if (program_is_valid(possible_browsers[i].command)) { | |
| 5633 | 1275 | browsers = g_list_prepend(browsers, |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1276 | possible_browsers[i].command); |
|
5568
3c7cc231c8c4
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1277 | browsers = g_list_prepend(browsers, _(possible_browsers[i].name)); |
| 5825 | 1278 | if(browser_setting && !strcmp(possible_browsers[i].command, browser_setting)) |
| 5819 | 1279 | browser_setting = NULL; |
| 5440 | 1280 | } |
| 1281 | } | |
| 1282 | ||
| 5819 | 1283 | if(browser_setting) |
| 1284 | gaim_prefs_set_string("/gaim/gtk/browsers/browser", "custom"); | |
| 1285 | ||
| 5440 | 1286 | return browsers; |
| 1287 | } | |
| 1288 | ||
|
5568
3c7cc231c8c4
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1289 | static void |
|
3c7cc231c8c4
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1290 | browser_changed_cb(const char *name, GaimPrefType type, gpointer value, |
|
3c7cc231c8c4
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1291 | gpointer data) |
|
3c7cc231c8c4
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1292 | { |
|
3c7cc231c8c4
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1293 | GtkWidget *hbox = data; |
|
3c7cc231c8c4
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1294 | const char *browser = value; |
|
3c7cc231c8c4
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1295 | |
|
3c7cc231c8c4
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1296 | gtk_widget_set_sensitive(hbox, !strcmp(browser, "custom")); |
|
3c7cc231c8c4
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1297 | } |
|
3c7cc231c8c4
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1298 | |
| 5440 | 1299 | GtkWidget *browser_page() { |
| 1300 | GtkWidget *ret; | |
| 1301 | GtkWidget *vbox; | |
| 1302 | GtkWidget *hbox; | |
| 1303 | GtkWidget *label; | |
| 1304 | GtkSizeGroup *sg; | |
| 1305 | GList *browsers = NULL; | |
| 1306 | ||
| 1307 | ret = gtk_vbox_new(FALSE, 18); | |
| 1308 | gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
| 1309 | ||
| 1310 | sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); | |
|
5530
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1311 | vbox = gaim_gtk_make_frame (ret, _("Browser Selection")); |
| 5440 | 1312 | |
| 1313 | browsers = get_available_browsers(); | |
| 1314 | if (browsers != NULL) { | |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1315 | label = prefs_dropdown_from_list(vbox,_("_Browser"), GAIM_PREF_STRING, |
|
5550
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1316 | "/gaim/gtk/browsers/browser", |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1317 | browsers); |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1318 | |
| 5440 | 1319 | gtk_misc_set_alignment(GTK_MISC(label), 0, 0); |
| 1320 | gtk_size_group_add_widget(sg, label); | |
| 1321 | } | |
| 1322 | ||
| 1323 | hbox = gtk_hbox_new(FALSE, 5); | |
| 1324 | gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); | |
| 1325 | label = gtk_label_new_with_mnemonic(_("_Manual: ")); | |
| 1326 | gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0); | |
| 1327 | gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
| 1328 | gtk_size_group_add_widget(sg, label); | |
| 1329 | ||
| 1330 | browser_entry = gtk_entry_new(); | |
| 1331 | gtk_label_set_mnemonic_widget(GTK_LABEL(label), browser_entry); | |
|
5560
7cd6678f838b
[gaim-migrate @ 5961]
Christian Hammond <chipx86@chipx86.com>
parents:
5554
diff
changeset
|
1332 | |
|
7cd6678f838b
[gaim-migrate @ 5961]
Christian Hammond <chipx86@chipx86.com>
parents:
5554
diff
changeset
|
1333 | if (strcmp(gaim_prefs_get_string("/gaim/gtk/browsers/browser"), "custom")) |
| 5440 | 1334 | gtk_widget_set_sensitive(hbox, FALSE); |
|
5560
7cd6678f838b
[gaim-migrate @ 5961]
Christian Hammond <chipx86@chipx86.com>
parents:
5554
diff
changeset
|
1335 | |
| 5440 | 1336 | gtk_box_pack_start (GTK_BOX (hbox), browser_entry, FALSE, FALSE, 0); |
| 1337 | ||
|
5560
7cd6678f838b
[gaim-migrate @ 5961]
Christian Hammond <chipx86@chipx86.com>
parents:
5554
diff
changeset
|
1338 | gtk_entry_set_text(GTK_ENTRY(browser_entry), |
|
7cd6678f838b
[gaim-migrate @ 5961]
Christian Hammond <chipx86@chipx86.com>
parents:
5554
diff
changeset
|
1339 | gaim_prefs_get_string("/gaim/gtk/browsers/command")); |
|
7cd6678f838b
[gaim-migrate @ 5961]
Christian Hammond <chipx86@chipx86.com>
parents:
5554
diff
changeset
|
1340 | g_signal_connect(G_OBJECT(browser_entry), "focus-out-event", |
|
7cd6678f838b
[gaim-migrate @ 5961]
Christian Hammond <chipx86@chipx86.com>
parents:
5554
diff
changeset
|
1341 | G_CALLBACK(manual_browser_set), NULL); |
| 5440 | 1342 | |
|
5568
3c7cc231c8c4
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1343 | browser_pref_id = gaim_prefs_connect_callback("/gaim/gtk/browsers/browser", |
|
3c7cc231c8c4
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1344 | browser_changed_cb, hbox); |
|
3c7cc231c8c4
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
1345 | |
| 5440 | 1346 | if (browsers != NULL) { |
|
5530
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1347 | vbox = gaim_gtk_make_frame (ret, _("Browser Options")); |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1348 | label = prefs_checkbox(_("Open new _window by default"), |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1349 | "/gaim/gtk/browsers/new_window", vbox); |
| 5440 | 1350 | } |
| 1351 | ||
| 1352 | gtk_widget_show_all(ret); | |
| 1353 | return ret; | |
| 1354 | } | |
| 1355 | #endif /*_WIN32*/ | |
| 1356 | ||
| 1357 | GtkWidget *logging_page() { | |
| 1358 | GtkWidget *ret; | |
| 1359 | GtkWidget *vbox; | |
| 1360 | ret = gtk_vbox_new(FALSE, 18); | |
| 1361 | gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
| 1362 | ||
|
5530
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1363 | vbox = gaim_gtk_make_frame (ret, _("Message Logs")); |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1364 | prefs_checkbox(_("_Log all instant messages"), |
| 5635 | 1365 | "/gaim/gtk/logging/log_ims", vbox); |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1366 | prefs_checkbox(_("Log all c_hats"), |
| 5635 | 1367 | "/gaim/gtk/logging/log_chats", vbox); |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1368 | prefs_checkbox(_("Strip _HTML from logs"), |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1369 | "/gaim/gtk/logging/strip_html", vbox); |
| 5440 | 1370 | |
|
5530
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1371 | vbox = gaim_gtk_make_frame (ret, _("System Logs")); |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1372 | prefs_checkbox(_("Log when buddies _sign on/sign off"), |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1373 | "/gaim/gtk/logging/log_signon_signoff", vbox); |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1374 | prefs_checkbox(_("Log when buddies become _idle/un-idle"), |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1375 | "/gaim/gtk/logging/log_idle_state", vbox); |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1376 | prefs_checkbox(_("Log when buddies go away/come _back"), |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1377 | "/gaim/gtk/logging/log_away_state", vbox); |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1378 | prefs_checkbox(_("Log your _own signons/idleness/awayness"), |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1379 | "/gaim/gtk/logging/log_own_states", vbox); |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1380 | prefs_checkbox(_("I_ndividual log file for each buddy's signons"), |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1381 | "/gaim/gtk/logging/individual_logs", vbox); |
| 5440 | 1382 | |
| 1383 | gtk_widget_show_all(ret); | |
| 1384 | return ret; | |
| 1385 | } | |
| 1386 | ||
| 1387 | static GtkWidget *sndcmd = NULL; | |
| 1388 | ||
| 1389 | #ifndef _WIN32 | |
| 1390 | static gint sound_cmd_yeah(GtkEntry *entry, gpointer d) | |
| 1391 | { | |
| 5684 | 1392 | gaim_prefs_set_string("/gaim/gtk/sound/command", |
| 1393 | gtk_entry_get_text(GTK_ENTRY(sndcmd))); | |
| 5440 | 1394 | return TRUE; |
| 1395 | } | |
| 1396 | #endif | |
| 1397 | ||
| 1398 | GtkWidget *sound_page() { | |
| 1399 | GtkWidget *ret; | |
| 1400 | GtkWidget *vbox; | |
| 1401 | GtkSizeGroup *sg; | |
| 1402 | #ifndef _WIN32 | |
| 1403 | GtkWidget *dd; | |
| 1404 | GtkWidget *hbox; | |
| 1405 | GtkWidget *label; | |
| 5684 | 1406 | const char *cmd; |
| 5440 | 1407 | #endif |
| 1408 | ||
| 1409 | ret = gtk_vbox_new(FALSE, 18); | |
| 1410 | gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
| 1411 | ||
| 1412 | sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); | |
| 1413 | ||
|
5530
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1414 | vbox = gaim_gtk_make_frame (ret, _("Sound Options")); |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1415 | prefs_checkbox(_("_No sounds when you log in"), |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1416 | "/gaim/gtk/sound/silent_signon", vbox); |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1417 | prefs_checkbox(_("_Sounds while away"), |
| 5684 | 1418 | "/core/sound/while_away", vbox); |
| 5440 | 1419 | |
| 1420 | #ifndef _WIN32 | |
|
5530
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1421 | vbox = gaim_gtk_make_frame (ret, _("Sound Method")); |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1422 | dd = prefs_dropdown(vbox, _("_Method"), GAIM_PREF_STRING, |
| 5684 | 1423 | "/gaim/gtk/sound/method", |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1424 | _("Console beep"), "beep", |
| 5440 | 1425 | #ifdef USE_AO |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1426 | _("Automatic"), "automatic", |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1427 | "ESD", "esd", |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1428 | "Arts", "arts", |
| 5440 | 1429 | #endif |
| 1430 | #ifdef USE_NAS_AUDIO | |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1431 | "NAS", "nas", |
| 5440 | 1432 | #endif |
| 5684 | 1433 | _("Command"), "custom", |
|
5550
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1434 | NULL); |
| 5440 | 1435 | gtk_size_group_add_widget(sg, dd); |
| 1436 | gtk_misc_set_alignment(GTK_MISC(dd), 0, 0); | |
| 1437 | ||
| 1438 | hbox = gtk_hbox_new(FALSE, 5); | |
| 1439 | gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 5); | |
| 1440 | ||
| 1441 | hbox = gtk_hbox_new(FALSE, 5); | |
| 1442 | gtk_container_add(GTK_CONTAINER(vbox), hbox); | |
| 1443 | label = gtk_label_new_with_mnemonic(_("Sound c_ommand\n(%s for filename)")); | |
| 1444 | gtk_size_group_add_widget(sg, label); | |
| 1445 | gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
| 1446 | gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 5); | |
| 1447 | ||
| 1448 | sndcmd = gtk_entry_new(); | |
| 1449 | gtk_label_set_mnemonic_widget(GTK_LABEL(label), sndcmd); | |
| 1450 | ||
| 1451 | gtk_editable_set_editable(GTK_EDITABLE(sndcmd), TRUE); | |
| 5684 | 1452 | cmd = gaim_prefs_get_string("/gaim/gtk/sound/command"); |
| 5440 | 1453 | if(cmd) |
| 1454 | gtk_entry_set_text(GTK_ENTRY(sndcmd), cmd); | |
| 1455 | gtk_widget_set_size_request(sndcmd, 75, -1); | |
| 1456 | ||
| 5684 | 1457 | gtk_widget_set_sensitive(sndcmd, |
| 1458 | !strcmp(gaim_prefs_get_string("/gaim/gtk/sound/method"), | |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1459 | "command")); |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1460 | |
| 5440 | 1461 | gtk_box_pack_start(GTK_BOX(hbox), sndcmd, TRUE, TRUE, 5); |
| 1462 | g_signal_connect(G_OBJECT(sndcmd), "changed", | |
| 1463 | G_CALLBACK(sound_cmd_yeah), NULL); | |
| 1464 | #endif /* _WIN32 */ | |
| 1465 | gtk_widget_show_all(ret); | |
| 1466 | return ret; | |
| 1467 | } | |
| 1468 | ||
| 1469 | GtkWidget *away_page() { | |
| 1470 | GtkWidget *ret; | |
| 1471 | GtkWidget *vbox; | |
| 1472 | GtkWidget *hbox; | |
| 1473 | GtkWidget *label; | |
| 1474 | GtkWidget *button; | |
| 1475 | GtkWidget *select; | |
| 1476 | GtkWidget *dd; | |
| 1477 | GtkSizeGroup *sg; | |
| 1478 | ||
| 1479 | ret = gtk_vbox_new(FALSE, 18); | |
| 1480 | gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
| 1481 | ||
| 1482 | sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); | |
| 1483 | ||
|
5530
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1484 | vbox = gaim_gtk_make_frame (ret, _("Away")); |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1485 | prefs_checkbox(_("_Sending messages removes away status"), |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1486 | "/core/conversations/away_back_on_send", vbox); |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1487 | prefs_checkbox(_("_Queue new messages when away"), |
|
5573
633880e3f137
[gaim-migrate @ 5976]
Christian Hammond <chipx86@chipx86.com>
parents:
5568
diff
changeset
|
1488 | "/gaim/gtk/away/queue_messages", vbox); |
| 5440 | 1489 | |
|
5530
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1490 | vbox = gaim_gtk_make_frame (ret, _("Auto-response")); |
| 5440 | 1491 | hbox = gtk_hbox_new(FALSE, 0); |
| 1492 | gtk_container_add(GTK_CONTAINER(vbox), hbox); | |
|
5550
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1493 | prefs_labeled_spin_button(hbox, _("Seconds before _resending:"), |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1494 | "/core/away/auto_response/sec_before_resend", |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1495 | 1, 24 * 60 * 60, sg); |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1496 | prefs_checkbox(_("_Send auto-response"), |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1497 | "/core/away/auto_response/enabled", vbox); |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1498 | prefs_checkbox(_("_Only send auto-response when idle"), |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1499 | "/core/away/auto_response/idle_only", vbox); |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1500 | prefs_checkbox(_("Send auto-response in active conversations"), |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1501 | "/core/away/auto_response/in_active_conv", vbox); |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1502 | |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1503 | if (!gaim_prefs_get_bool("/core/away/auto_response/enabled")) |
| 5440 | 1504 | gtk_widget_set_sensitive(hbox, FALSE); |
| 1505 | ||
|
5530
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1506 | vbox = gaim_gtk_make_frame (ret, _("Idle")); |
|
5550
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1507 | dd = prefs_dropdown(vbox, _("Idle _time reporting:"), GAIM_PREF_STRING, |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1508 | "/gaim/gtk/idle/reporting_method", |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1509 | _("None"), "none", |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1510 | _("Gaim usage"), "gaim", |
| 5440 | 1511 | #ifdef USE_SCREENSAVER |
| 1512 | #ifndef _WIN32 | |
|
5550
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1513 | _("X usage"), "system", |
| 5440 | 1514 | #else |
|
5550
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1515 | _("Windows usage"), "system", |
| 5440 | 1516 | #endif |
| 1517 | #endif | |
|
5550
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1518 | NULL); |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1519 | |
| 5440 | 1520 | gtk_size_group_add_widget(sg, dd); |
| 1521 | gtk_misc_set_alignment(GTK_MISC(dd), 0, 0); | |
| 1522 | ||
|
5530
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
1523 | vbox = gaim_gtk_make_frame (ret, _("Auto-away")); |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1524 | button = prefs_checkbox(_("Set away _when idle"), |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
1525 | "/core/away/away_when_idle", vbox); |
|
5550
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1526 | select = prefs_labeled_spin_button(vbox, _("_Minutes before setting away:"), |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1527 | "/core/away/mins_before_away", |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1528 | 1, 24 * 60, sg); |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1529 | |
| 5440 | 1530 | g_signal_connect(G_OBJECT(button), "clicked", |
| 1531 | G_CALLBACK(gaim_gtk_toggle_sensitive), select); | |
| 1532 | ||
| 1533 | label = gtk_label_new_with_mnemonic(_("Away m_essage:")); | |
| 1534 | gtk_size_group_add_widget(sg, label); | |
| 1535 | gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
| 1536 | hbox = gtk_hbox_new(FALSE, 0); | |
| 1537 | gtk_container_add(GTK_CONTAINER(vbox), hbox); | |
| 1538 | gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); | |
| 1539 | prefs_away_menu = gtk_option_menu_new(); | |
| 1540 | 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
|
1541 | |
| 5440 | 1542 | g_signal_connect(G_OBJECT(button), "clicked", |
| 1543 | G_CALLBACK(gaim_gtk_toggle_sensitive), prefs_away_menu); | |
| 1544 | default_away_menu_init(prefs_away_menu); | |
| 1545 | gtk_widget_show(prefs_away_menu); | |
| 1546 | gtk_box_pack_start(GTK_BOX(hbox), prefs_away_menu, FALSE, FALSE, 0); | |
| 1547 | ||
|
5550
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1548 | if (!gaim_prefs_get_bool("/core/away/away_when_idle")) { |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1549 | gtk_widget_set_sensitive(GTK_WIDGET(select), FALSE); |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1550 | gtk_widget_set_sensitive(GTK_WIDGET(prefs_away_menu), FALSE); |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1551 | } |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1552 | |
| 5440 | 1553 | gtk_widget_show_all(ret); |
|
5550
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
1554 | |
| 5440 | 1555 | return ret; |
| 1556 | } | |
| 1557 | ||
| 1558 | static GtkWidget *plugin_description=NULL, *plugin_details=NULL; | |
| 1559 | ||
| 1560 | static void prefs_plugin_sel (GtkTreeSelection *sel, GtkTreeModel *model) | |
| 1561 | { | |
| 1562 | gchar *buf, *pname, *perr, *pdesc, *pauth, *pweb; | |
| 1563 | GtkTreeIter iter; | |
| 1564 | GValue val = { 0, }; | |
| 1565 | GaimPlugin *plug; | |
| 1566 | ||
| 1567 | if (! gtk_tree_selection_get_selected (sel, &model, &iter)) | |
| 1568 | return; | |
| 1569 | gtk_tree_model_get_value (model, &iter, 2, &val); | |
| 1570 | plug = g_value_get_pointer(&val); | |
| 1571 | ||
| 1572 | pname = g_markup_escape_text(_(plug->info->name), -1); | |
| 1573 | pdesc = g_markup_escape_text(_(plug->info->description), -1); | |
| 1574 | pauth = g_markup_escape_text(_(plug->info->author), -1); | |
| 1575 | pweb = g_markup_escape_text(_(plug->info->homepage), -1); | |
| 1576 | if (plug->error != NULL) { | |
| 1577 | perr = g_markup_escape_text(_(plug->error), -1); | |
| 1578 | buf = g_strdup_printf( | |
| 1579 | "<span size=\"larger\">%s %s</span>\n\n" | |
| 1580 | "<span weight=\"bold\" color=\"red\">%s</span>\n\n" | |
| 1581 | "%s", | |
| 1582 | pname, plug->info->version, perr, pdesc); | |
| 1583 | g_free(perr); | |
| 1584 | } | |
| 1585 | else { | |
| 1586 | buf = g_strdup_printf( | |
| 1587 | "<span size=\"larger\">%s %s</span>\n\n%s", | |
| 1588 | pname, plug->info->version, pdesc); | |
| 1589 | } | |
| 1590 | gtk_label_set_markup(GTK_LABEL(plugin_description), buf); | |
| 1591 | g_free(buf); | |
| 1592 | ||
| 1593 | buf = g_strdup_printf( | |
| 1594 | #ifndef _WIN32 | |
| 1595 | _("<span size=\"larger\">%s %s</span>\n\n" | |
| 1596 | "<span weight=\"bold\">Written by:</span>\t%s\n" | |
| 1597 | "<span weight=\"bold\">Web site:</span>\t\t%s\n" | |
| 1598 | "<span weight=\"bold\">File name:</span>\t%s"), | |
| 1599 | #else | |
| 1600 | _("<span size=\"larger\">%s %s</span>\n\n" | |
| 1601 | "<span weight=\"bold\">Written by:</span> %s\n" | |
| 1602 | "<span weight=\"bold\">URL:</span> %s\n" | |
| 1603 | "<span weight=\"bold\">File name:</span> %s"), | |
| 1604 | #endif | |
| 1605 | pname, plug->info->version, pauth, pweb, plug->path); | |
| 1606 | ||
| 1607 | gtk_label_set_markup(GTK_LABEL(plugin_details), buf); | |
| 1608 | g_value_unset(&val); | |
| 1609 | g_free(buf); | |
| 1610 | g_free(pname); | |
| 1611 | g_free(pdesc); | |
| 1612 | g_free(pauth); | |
| 1613 | g_free(pweb); | |
| 1614 | } | |
| 1615 | ||
| 1616 | static void plugin_load (GtkCellRendererToggle *cell, gchar *pth, gpointer data) | |
| 1617 | { | |
| 1618 | GtkTreeModel *model = (GtkTreeModel *)data; | |
| 1619 | GtkTreeIter iter; | |
| 1620 | GtkTreePath *path = gtk_tree_path_new_from_string(pth); | |
| 1621 | GaimPlugin *plug; | |
| 1622 | gchar buf[1024]; | |
| 1623 | ||
| 1624 | GdkCursor *wait = gdk_cursor_new (GDK_WATCH); | |
| 1625 | gdk_window_set_cursor(prefs->window, wait); | |
| 1626 | gdk_cursor_unref(wait); | |
| 1627 | ||
| 1628 | gtk_tree_model_get_iter (model, &iter, path); | |
| 1629 | gtk_tree_model_get (model, &iter, 2, &plug, -1); | |
| 1630 | ||
| 1631 | if (!gaim_plugin_is_loaded(plug)) { | |
| 1632 | gaim_plugin_load(plug); | |
| 1633 | ||
| 1634 | /* | |
| 1635 | * NOTE: This is basically the same check as before | |
| 1636 | * (plug->type == plugin), but now there aren't plugin types. | |
| 1637 | * Not yet, anyway. I want to do a V2 of the plugin API. | |
| 1638 | * The thing is, we should have a flag specifying the UI type, | |
| 1639 | * or just whether it's a general plugin or a UI-specific | |
| 1640 | * plugin. We should only load this if it's UI-specific. | |
| 1641 | * | |
| 1642 | * -- ChipX86 | |
| 1643 | */ | |
| 1644 | if (GAIM_IS_GTK_PLUGIN(plug)) | |
| 1645 | { | |
| 1646 | GtkWidget *config_frame; | |
| 1647 | GaimGtkPluginUiInfo *ui_info; | |
| 1648 | ||
| 1649 | ui_info = GAIM_GTK_PLUGIN_UI_INFO(plug); | |
| 1650 | config_frame = gaim_gtk_plugin_get_config_frame(plug); | |
| 1651 | ||
| 1652 | if (config_frame != NULL) { | |
| 1653 | ui_info->iter = g_new0(GtkTreeIter, 1); | |
| 1654 | prefs_notebook_add_page(_(plug->info->name), NULL, | |
| 1655 | config_frame, ui_info->iter, | |
| 1656 | &plugin_iter, notebook_page++); | |
| 1657 | ||
| 1658 | if (gtk_tree_model_iter_n_children(GTK_TREE_MODEL(prefstree), | |
| 1659 | &plugin_iter) == 1) { | |
| 1660 | ||
| 1661 | /* Expand the tree for the first plugin added */ | |
| 1662 | GtkTreePath *path2; | |
| 1663 | ||
| 1664 | path2 = gtk_tree_model_get_path(GTK_TREE_MODEL(prefstree), | |
| 1665 | &plugin_iter); | |
| 1666 | gtk_tree_view_expand_row(GTK_TREE_VIEW(tree_v), | |
| 1667 | path2, TRUE); | |
| 1668 | gtk_tree_path_free(path2); | |
| 1669 | } | |
| 1670 | } | |
| 1671 | } | |
| 1672 | } | |
| 1673 | else { | |
| 1674 | if (GAIM_IS_GTK_PLUGIN(plug)) { | |
| 1675 | GaimGtkPluginUiInfo *ui_info; | |
| 1676 | ||
| 1677 | ui_info = GAIM_GTK_PLUGIN_UI_INFO(plug); | |
| 1678 | ||
| 1679 | if (ui_info != NULL && ui_info->iter != NULL) { | |
| 1680 | gtk_tree_store_remove(GTK_TREE_STORE(prefstree), ui_info->iter); | |
| 1681 | g_free(ui_info->iter); | |
| 1682 | ui_info->iter = NULL; | |
| 1683 | } | |
| 1684 | } | |
| 1685 | ||
| 1686 | gaim_plugin_unload(plug); | |
| 1687 | } | |
| 1688 | ||
| 1689 | gdk_window_set_cursor(prefs->window, NULL); | |
| 1690 | ||
| 1691 | if (plug->error != NULL) { | |
| 1692 | g_snprintf(buf, sizeof(buf), | |
| 1693 | "<span size=\"larger\">%s %s</span>\n\n" | |
| 1694 | "<span weight=\"bold\" color=\"red\">%s</span>\n\n" | |
| 1695 | "%s", | |
| 1696 | g_markup_escape_text(_(plug->info->name), -1), | |
| 1697 | plug->info->version, | |
| 1698 | g_markup_escape_text(plug->error, -1), | |
| 1699 | g_markup_escape_text(_(plug->info->description), -1)); | |
| 1700 | } | |
| 1701 | else { | |
| 1702 | g_snprintf(buf, sizeof(buf), | |
| 1703 | "<span size=\"larger\">%s %s</span>\n\n%s", | |
| 1704 | g_markup_escape_text(_(plug->info->name), -1), | |
| 1705 | plug->info->version, | |
| 1706 | g_markup_escape_text(_(plug->info->description), -1)); | |
| 1707 | } | |
| 1708 | ||
| 1709 | gtk_label_set_markup(GTK_LABEL(plugin_description), buf); | |
| 1710 | gtk_list_store_set (GTK_LIST_STORE (model), &iter, 0, | |
| 1711 | gaim_plugin_is_loaded(plug), -1); | |
| 1712 | ||
| 1713 | gtk_label_set_markup(GTK_LABEL(plugin_description), buf); | |
| 1714 | gtk_tree_path_free(path); | |
| 1715 | } | |
| 1716 | ||
| 1717 | static void | |
| 1718 | update_plugin_list(void *data) | |
| 1719 | { | |
| 1720 | GtkListStore *ls = GTK_LIST_STORE(data); | |
| 1721 | GtkTreeIter iter; | |
| 1722 | GList *probes; | |
| 1723 | GaimPlugin *plug; | |
| 1724 | ||
| 1725 | gtk_list_store_clear(ls); | |
| 1726 | ||
| 1727 | for (probes = gaim_plugins_get_all(); | |
| 1728 | probes != NULL; | |
| 1729 | probes = probes->next) { | |
| 1730 | ||
| 1731 | plug = probes->data; | |
| 1732 | ||
| 1733 | if (plug->info->type != GAIM_PLUGIN_STANDARD) | |
| 1734 | continue; | |
| 1735 | ||
| 1736 | gtk_list_store_append (ls, &iter); | |
| 1737 | gtk_list_store_set(ls, &iter, | |
| 1738 | 0, gaim_plugin_is_loaded(plug), | |
| 1739 | 1, plug->info->name ? _(plug->info->name) : plug->path, | |
| 1740 | 2, plug, -1); | |
| 1741 | } | |
| 1742 | } | |
| 1743 | ||
| 1744 | static GtkWidget *plugin_page () | |
| 1745 | { | |
| 1746 | GtkWidget *ret; | |
| 1747 | GtkWidget *sw, *vp; | |
| 1748 | GtkWidget *event_view; | |
| 1749 | GtkListStore *ls; | |
| 1750 | GtkCellRenderer *rend, *rendt; | |
| 1751 | GtkTreeViewColumn *col; | |
| 1752 | GtkTreeSelection *sel; | |
| 1753 | GtkTreePath *path; | |
| 1754 | GtkWidget *nb; | |
| 1755 | ||
| 1756 | ret = gtk_vbox_new(FALSE, 18); | |
| 1757 | gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
| 1758 | ||
| 1759 | sw = gtk_scrolled_window_new(NULL,NULL); | |
| 1760 | gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), GTK_POLICY_NEVER, GTK_POLICY_ALWAYS); | |
| 1761 | gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_IN); | |
| 1762 | ||
| 1763 | gtk_box_pack_start(GTK_BOX(ret), sw, TRUE, TRUE, 0); | |
| 1764 | ||
| 1765 | ls = gtk_list_store_new (3, G_TYPE_BOOLEAN, G_TYPE_STRING, G_TYPE_POINTER); | |
| 1766 | ||
| 1767 | update_plugin_list(ls); | |
| 1768 | ||
| 1769 | event_view = gtk_tree_view_new_with_model (GTK_TREE_MODEL(ls)); | |
| 1770 | ||
| 1771 | rend = gtk_cell_renderer_toggle_new(); | |
| 1772 | sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (event_view)); | |
| 1773 | ||
| 1774 | ||
| 1775 | col = gtk_tree_view_column_new_with_attributes (_("Load"), | |
| 1776 | rend, | |
| 1777 | "active", 0, | |
| 1778 | NULL); | |
| 1779 | gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col); | |
| 1780 | ||
| 1781 | rendt = gtk_cell_renderer_text_new(); | |
| 1782 | col = gtk_tree_view_column_new_with_attributes (_("Name"), | |
| 1783 | rendt, | |
| 1784 | "text", 1, | |
| 1785 | NULL); | |
| 1786 | gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col); | |
| 1787 | g_object_unref(G_OBJECT(ls)); | |
| 1788 | gtk_container_add(GTK_CONTAINER(sw), event_view); | |
| 1789 | ||
| 1790 | ||
| 1791 | nb = gtk_notebook_new(); | |
| 1792 | gtk_notebook_set_tab_pos (GTK_NOTEBOOK(nb), GTK_POS_BOTTOM); | |
| 1793 | gtk_notebook_popup_disable(GTK_NOTEBOOK(nb)); | |
| 1794 | ||
| 1795 | /* Description */ | |
| 1796 | sw = gtk_scrolled_window_new(NULL, NULL); | |
| 1797 | gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW(sw), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); | |
| 1798 | plugin_description = gtk_label_new(NULL); | |
| 1799 | ||
| 1800 | vp = gtk_viewport_new(NULL, NULL); | |
| 1801 | gtk_viewport_set_shadow_type(GTK_VIEWPORT(vp), GTK_SHADOW_NONE); | |
| 1802 | gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_NONE); | |
| 1803 | ||
| 1804 | gtk_container_add(GTK_CONTAINER(vp), plugin_description); | |
| 1805 | gtk_container_add(GTK_CONTAINER(sw), vp); | |
| 1806 | ||
| 1807 | gtk_label_set_selectable(GTK_LABEL(plugin_description), TRUE); | |
| 1808 | gtk_label_set_line_wrap(GTK_LABEL(plugin_description), TRUE); | |
| 1809 | gtk_misc_set_alignment(GTK_MISC(plugin_description), 0, 0); | |
| 1810 | gtk_misc_set_padding(GTK_MISC(plugin_description), 6, 6); | |
| 1811 | gtk_notebook_append_page(GTK_NOTEBOOK(nb), sw, gtk_label_new(_("Description"))); | |
| 1812 | ||
| 1813 | /* Details */ | |
| 1814 | sw = gtk_scrolled_window_new(NULL, NULL); | |
| 1815 | gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW(sw), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); | |
| 1816 | plugin_details = gtk_label_new(NULL); | |
| 1817 | ||
| 1818 | vp = gtk_viewport_new(NULL, NULL); | |
| 1819 | gtk_viewport_set_shadow_type(GTK_VIEWPORT(vp), GTK_SHADOW_NONE); | |
| 1820 | gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_NONE); | |
| 1821 | ||
| 1822 | gtk_container_add(GTK_CONTAINER(vp), plugin_details); | |
| 1823 | gtk_container_add(GTK_CONTAINER(sw), vp); | |
| 1824 | ||
| 1825 | gtk_label_set_selectable(GTK_LABEL(plugin_details), TRUE); | |
| 1826 | gtk_label_set_line_wrap(GTK_LABEL(plugin_details), TRUE); | |
| 1827 | gtk_misc_set_alignment(GTK_MISC(plugin_details), 0, 0); | |
| 1828 | gtk_misc_set_padding(GTK_MISC(plugin_details), 6, 6); | |
| 1829 | gtk_notebook_append_page(GTK_NOTEBOOK(nb), sw, gtk_label_new(_("Details"))); | |
| 1830 | gtk_box_pack_start(GTK_BOX(ret), nb, TRUE, TRUE, 0); | |
| 1831 | ||
| 1832 | g_signal_connect (G_OBJECT (sel), "changed", | |
| 1833 | G_CALLBACK (prefs_plugin_sel), | |
| 1834 | NULL); | |
| 1835 | g_signal_connect (G_OBJECT(rend), "toggled", | |
| 1836 | G_CALLBACK(plugin_load), ls); | |
| 1837 | ||
| 1838 | path = gtk_tree_path_new_first(); | |
| 1839 | gtk_tree_selection_select_path(sel, path); | |
| 1840 | gtk_tree_path_free(path); | |
| 1841 | ||
| 1842 | gaim_plugins_register_probe_notify_cb(update_plugin_list, ls); | |
| 1843 | ||
| 1844 | gtk_widget_show_all(ret); | |
| 1845 | return ret; | |
| 1846 | } | |
| 1847 | ||
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1848 | static void |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1849 | event_toggled(GtkCellRendererToggle *cell, gchar *pth, gpointer data) |
| 5440 | 1850 | { |
| 1851 | GtkTreeModel *model = (GtkTreeModel *)data; | |
| 1852 | GtkTreeIter iter; | |
| 1853 | GtkTreePath *path = gtk_tree_path_new_from_string(pth); | |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1854 | const char *pref; |
| 5440 | 1855 | |
| 1856 | gtk_tree_model_get_iter (model, &iter, path); | |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1857 | gtk_tree_model_get (model, &iter, |
| 5612 | 1858 | 2, &pref, |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1859 | -1); |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1860 | |
| 5684 | 1861 | 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
|
1862 | |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1863 | gtk_list_store_set(GTK_LIST_STORE (model), &iter, |
| 5612 | 1864 | 0, !gtk_cell_renderer_toggle_get_active(cell), |
| 1865 | -1); | |
| 5440 | 1866 | |
| 1867 | gtk_tree_path_free(path); | |
| 1868 | } | |
| 1869 | ||
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1870 | static void |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1871 | test_sound(GtkWidget *button, gpointer i_am_NULL) |
| 5440 | 1872 | { |
| 5684 | 1873 | char *pref; |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1874 | gboolean temp_value1, temp_value2; |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1875 | |
| 5684 | 1876 | pref = g_strdup_printf("/gaim/gtk/sound/enabled/%s", |
| 1877 | gaim_gtk_sound_get_event_option(sound_row_sel)); | |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1878 | |
| 5821 | 1879 | temp_value1 = gaim_prefs_get_bool("/core/sound/while_away"); |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1880 | temp_value2 = gaim_prefs_get_bool(pref); |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1881 | |
| 5821 | 1882 | if (!temp_value1) gaim_prefs_set_bool("/core/sound/while_away", TRUE); |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1883 | if (!temp_value2) gaim_prefs_set_bool(pref, TRUE); |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1884 | |
| 5440 | 1885 | gaim_sound_play_event(sound_row_sel); |
| 1886 | ||
| 5821 | 1887 | if (!temp_value1) gaim_prefs_set_bool("/core/sound/while_away", FALSE); |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1888 | if (!temp_value2) gaim_prefs_set_bool(pref, FALSE); |
| 5684 | 1889 | |
| 1890 | g_free(pref); | |
| 5440 | 1891 | } |
| 1892 | ||
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1893 | static void |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
1894 | reset_sound(GtkWidget *button, gpointer i_am_also_NULL) |
| 5440 | 1895 | { |
| 5684 | 1896 | char *pref = g_strdup_printf("/gaim/gtk/sound/file/%s", |
| 1897 | gaim_gtk_sound_get_event_option(sound_row_sel)); | |
| 1898 | ||
| 5440 | 1899 | /* This just resets a sound file back to default */ |
| 5684 | 1900 | gaim_prefs_set_string(pref, ""); |
| 1901 | g_free(pref); | |
| 5440 | 1902 | |
| 1903 | gtk_entry_set_text(GTK_ENTRY(sound_entry), "(default)"); | |
| 1904 | } | |
| 1905 | ||
| 1906 | void close_sounddialog(GtkWidget *w, GtkWidget *w2) | |
| 1907 | { | |
| 1908 | ||
| 1909 | GtkWidget *dest; | |
| 1910 | ||
| 1911 | if (!GTK_IS_WIDGET(w2)) | |
| 1912 | dest = w; | |
| 1913 | else | |
| 1914 | dest = w2; | |
| 1915 | ||
| 1916 | sounddialog = NULL; | |
| 1917 | ||
| 1918 | gtk_widget_destroy(dest); | |
| 1919 | } | |
| 1920 | ||
| 1921 | void do_select_sound(GtkWidget *w, int snd) | |
| 1922 | { | |
| 1923 | const char *file; | |
| 5684 | 1924 | char *pref; |
| 5440 | 1925 | |
| 1926 | file = gtk_file_selection_get_filename(GTK_FILE_SELECTION(sounddialog)); | |
| 1927 | ||
| 1928 | /* If they type in a directory, change there */ | |
| 1929 | if (file_is_dir(file, sounddialog)) | |
| 1930 | return; | |
| 1931 | ||
| 1932 | /* Set it -- and forget it */ | |
| 5684 | 1933 | pref = g_strdup_printf("/gaim/gtk/sound/file/%s", |
| 1934 | gaim_gtk_sound_get_event_option(snd)); | |
| 1935 | gaim_prefs_set_string(pref, file); | |
| 1936 | g_free(pref); | |
| 5440 | 1937 | |
| 1938 | /* Set our text entry */ | |
| 1939 | gtk_entry_set_text(GTK_ENTRY(sound_entry), file); | |
| 1940 | ||
| 1941 | /* Close the window! It's getting cold in here! */ | |
| 1942 | close_sounddialog(NULL, sounddialog); | |
| 1943 | ||
| 1944 | if (last_sound_dir) | |
| 1945 | g_free(last_sound_dir); | |
| 1946 | last_sound_dir = g_path_get_dirname(file); | |
| 1947 | } | |
| 1948 | ||
| 1949 | static void sel_sound(GtkWidget *button, gpointer being_NULL_is_fun) | |
| 1950 | { | |
| 1951 | char *buf = g_malloc(BUF_LEN); | |
| 1952 | ||
| 1953 | if (!sounddialog) { | |
| 1954 | sounddialog = gtk_file_selection_new(_("Sound Selection")); | |
| 1955 | ||
| 1956 | gtk_file_selection_hide_fileop_buttons(GTK_FILE_SELECTION(sounddialog)); | |
| 1957 | ||
| 1958 | g_snprintf(buf, BUF_LEN - 1, "%s" G_DIR_SEPARATOR_S, last_sound_dir ? last_sound_dir : gaim_home_dir()); | |
| 1959 | ||
| 1960 | gtk_file_selection_set_filename(GTK_FILE_SELECTION(sounddialog), buf); | |
| 1961 | ||
| 1962 | g_signal_connect(G_OBJECT(sounddialog), "destroy", | |
| 1963 | G_CALLBACK(close_sounddialog), sounddialog); | |
| 1964 | ||
| 1965 | g_signal_connect(G_OBJECT(GTK_FILE_SELECTION(sounddialog)->ok_button), | |
| 1966 | "clicked", | |
| 1967 | G_CALLBACK(do_select_sound), (int *)sound_row_sel); | |
| 1968 | ||
| 1969 | g_signal_connect(G_OBJECT(GTK_FILE_SELECTION(sounddialog)->cancel_button), | |
| 1970 | "clicked", | |
| 1971 | G_CALLBACK(close_sounddialog), sounddialog); | |
| 1972 | } | |
| 1973 | ||
| 1974 | g_free(buf); | |
| 1975 | gtk_widget_show(sounddialog); | |
| 1976 | gdk_window_raise(sounddialog->window); | |
| 1977 | } | |
| 1978 | ||
| 1979 | ||
| 1980 | static void prefs_sound_sel (GtkTreeSelection *sel, GtkTreeModel *model) { | |
| 1981 | GtkTreeIter iter; | |
| 1982 | GValue val = { 0, }; | |
| 5684 | 1983 | const char *file; |
| 1984 | char *pref; | |
| 5440 | 1985 | |
| 1986 | if (! gtk_tree_selection_get_selected (sel, &model, &iter)) | |
| 1987 | return; | |
| 5612 | 1988 | gtk_tree_model_get_value (model, &iter, 3, &val); |
| 5440 | 1989 | sound_row_sel = g_value_get_uint(&val); |
| 5684 | 1990 | |
| 1991 | pref = g_strdup_printf("/gaim/gtk/sound/file/%s", | |
| 1992 | gaim_gtk_sound_get_event_option(sound_row_sel)); | |
| 1993 | file = gaim_prefs_get_string(pref); | |
| 1994 | g_free(pref); | |
| 5440 | 1995 | if (sound_entry) |
| 1996 | gtk_entry_set_text(GTK_ENTRY(sound_entry), file ? file : "(default)"); | |
| 1997 | g_value_unset (&val); | |
| 1998 | if (sounddialog) | |
| 1999 | gtk_widget_destroy(sounddialog); | |
| 2000 | } | |
| 2001 | ||
| 2002 | GtkWidget *sound_events_page() { | |
| 2003 | ||
| 2004 | GtkWidget *ret; | |
| 2005 | GtkWidget *sw; | |
| 2006 | GtkWidget *button, *hbox; | |
| 2007 | GtkTreeIter iter; | |
| 2008 | GtkWidget *event_view; | |
| 2009 | GtkListStore *event_store; | |
| 2010 | GtkCellRenderer *rend; | |
| 2011 | GtkTreeViewColumn *col; | |
| 2012 | GtkTreeSelection *sel; | |
| 2013 | GtkTreePath *path; | |
| 2014 | int j; | |
| 5684 | 2015 | const char *file; |
| 2016 | char *pref; | |
| 5440 | 2017 | |
| 2018 | ret = gtk_vbox_new(FALSE, 18); | |
| 2019 | gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
| 2020 | ||
| 2021 | sw = gtk_scrolled_window_new(NULL,NULL); | |
| 2022 | gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); | |
| 2023 | gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_IN); | |
| 2024 | ||
| 2025 | gtk_box_pack_start(GTK_BOX(ret), sw, TRUE, TRUE, 0); | |
| 5612 | 2026 | event_store = gtk_list_store_new (4, G_TYPE_BOOLEAN, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_UINT); |
| 5440 | 2027 | |
| 2028 | for (j=0; j < GAIM_NUM_SOUNDS; j++) { | |
| 5684 | 2029 | char *pref = g_strdup_printf("/gaim/gtk/sound/enabled/%s", |
| 2030 | gaim_gtk_sound_get_event_option(j)); | |
| 2031 | const char *label = gaim_gtk_sound_get_event_label(j); | |
| 2032 | ||
| 2033 | if (label == NULL) | |
| 5440 | 2034 | continue; |
| 2035 | ||
| 2036 | gtk_list_store_append (event_store, &iter); | |
| 2037 | gtk_list_store_set(event_store, &iter, | |
| 5612 | 2038 | 0, gaim_prefs_get_bool(pref), |
| 5684 | 2039 | 1, _(label), |
| 5612 | 2040 | 2, pref, |
| 2041 | 3, j, | |
| 2042 | -1); | |
| 5684 | 2043 | g_free(pref); |
| 5440 | 2044 | } |
| 2045 | ||
| 2046 | event_view = gtk_tree_view_new_with_model (GTK_TREE_MODEL(event_store)); | |
| 2047 | ||
| 2048 | rend = gtk_cell_renderer_toggle_new(); | |
| 2049 | sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (event_view)); | |
| 2050 | g_signal_connect (G_OBJECT (sel), "changed", | |
| 2051 | G_CALLBACK (prefs_sound_sel), | |
| 2052 | NULL); | |
| 2053 | g_signal_connect (G_OBJECT(rend), "toggled", | |
| 2054 | G_CALLBACK(event_toggled), event_store); | |
| 2055 | path = gtk_tree_path_new_first(); | |
| 2056 | gtk_tree_selection_select_path(sel, path); | |
| 2057 | gtk_tree_path_free(path); | |
| 2058 | ||
| 2059 | col = gtk_tree_view_column_new_with_attributes (_("Play"), | |
| 2060 | rend, | |
| 2061 | "active", 0, | |
| 2062 | NULL); | |
| 2063 | gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col); | |
| 2064 | ||
| 2065 | rend = gtk_cell_renderer_text_new(); | |
| 2066 | col = gtk_tree_view_column_new_with_attributes (_("Event"), | |
| 2067 | rend, | |
| 2068 | "text", 1, | |
| 2069 | NULL); | |
| 2070 | gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col); | |
| 2071 | g_object_unref(G_OBJECT(event_store)); | |
| 2072 | gtk_container_add(GTK_CONTAINER(sw), event_view); | |
| 2073 | ||
| 2074 | hbox = gtk_hbox_new(FALSE, 6); | |
| 2075 | gtk_box_pack_start(GTK_BOX(ret), hbox, FALSE, FALSE, 0); | |
| 2076 | sound_entry = gtk_entry_new(); | |
| 5684 | 2077 | pref = g_strdup_printf("/gaim/gtk/sound/file/%s", |
| 2078 | gaim_gtk_sound_get_event_option(0)); | |
| 2079 | file = gaim_prefs_get_string(pref); | |
| 2080 | g_free(pref); | |
| 5440 | 2081 | gtk_entry_set_text(GTK_ENTRY(sound_entry), file ? file : "(default)"); |
| 2082 | gtk_editable_set_editable(GTK_EDITABLE(sound_entry), FALSE); | |
| 2083 | gtk_box_pack_start(GTK_BOX(hbox), sound_entry, FALSE, FALSE, 5); | |
| 2084 | ||
| 2085 | button = gtk_button_new_with_label(_("Test")); | |
| 2086 | g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(test_sound), NULL); | |
| 2087 | gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 1); | |
| 2088 | ||
| 2089 | button = gtk_button_new_with_label(_("Reset")); | |
| 2090 | g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(reset_sound), NULL); | |
| 2091 | gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 1); | |
| 2092 | ||
| 2093 | button = gtk_button_new_with_label(_("Choose...")); | |
| 2094 | g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(sel_sound), NULL); | |
| 2095 | gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 1); | |
| 2096 | ||
| 2097 | gtk_widget_show_all (ret); | |
| 2098 | ||
| 2099 | return ret; | |
| 2100 | } | |
| 2101 | ||
| 2102 | void away_message_sel(GtkTreeSelection *sel, GtkTreeModel *model) | |
| 2103 | { | |
| 2104 | GtkTreeIter iter; | |
| 2105 | GValue val = { 0, }; | |
| 2106 | gchar buffer[BUF_LONG]; | |
| 2107 | char *tmp; | |
| 2108 | struct away_message *am; | |
| 2109 | ||
| 2110 | if (! gtk_tree_selection_get_selected (sel, &model, &iter)) | |
| 2111 | return; | |
| 2112 | gtk_tree_model_get_value (model, &iter, 1, &val); | |
| 2113 | am = g_value_get_pointer(&val); | |
| 2114 | gtk_imhtml_clear(GTK_IMHTML(away_text)); | |
| 2115 | strncpy(buffer, am->message, BUF_LONG); | |
| 2116 | tmp = stylize(buffer, BUF_LONG); | |
| 2117 | gtk_imhtml_append_text(GTK_IMHTML(away_text), tmp, -1, GTK_IMHTML_NO_TITLE | | |
| 2118 | GTK_IMHTML_NO_COMMENTS | GTK_IMHTML_NO_SCROLL); | |
| 2119 | gtk_imhtml_append_text(GTK_IMHTML(away_text), "<BR>", -1, GTK_IMHTML_NO_TITLE | | |
| 2120 | GTK_IMHTML_NO_COMMENTS | GTK_IMHTML_NO_SCROLL); | |
| 2121 | g_free(tmp); | |
| 2122 | g_value_unset (&val); | |
| 2123 | ||
| 2124 | } | |
| 2125 | ||
| 2126 | void remove_away_message(GtkWidget *widget, GtkTreeView *tv) { | |
| 2127 | struct away_message *am; | |
| 2128 | GtkTreeIter iter; | |
| 2129 | GtkTreeSelection *sel = gtk_tree_view_get_selection(tv); | |
| 2130 | GtkTreeModel *model = GTK_TREE_MODEL(prefs_away_store); | |
| 2131 | GValue val = { 0, }; | |
| 2132 | ||
| 2133 | if (! gtk_tree_selection_get_selected (sel, &model, &iter)) | |
| 2134 | return; | |
| 2135 | gtk_tree_model_get_value (GTK_TREE_MODEL(prefs_away_store), &iter, 1, &val); | |
| 2136 | am = g_value_get_pointer (&val); | |
| 2137 | gtk_imhtml_clear(GTK_IMHTML(away_text)); | |
| 2138 | rem_away_mess(NULL, am); | |
| 2139 | } | |
| 2140 | ||
| 2141 | GtkWidget *away_message_page() { | |
| 2142 | GtkWidget *ret; | |
| 2143 | GtkWidget *hbox; | |
| 2144 | GtkWidget *button; | |
| 2145 | GtkWidget *sw; | |
| 2146 | GtkTreeIter iter; | |
| 2147 | GtkWidget *event_view; | |
| 2148 | GtkCellRenderer *rend; | |
| 2149 | GtkTreeViewColumn *col; | |
| 2150 | GtkTreeSelection *sel; | |
| 2151 | GSList *awy = away_messages; | |
| 2152 | struct away_message *a; | |
| 2153 | GtkWidget *sw2; | |
| 2154 | GtkSizeGroup *sg; | |
| 2155 | ||
| 2156 | ret = gtk_vbox_new(FALSE, 18); | |
| 2157 | gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
| 2158 | ||
| 2159 | sg = gtk_size_group_new(GTK_SIZE_GROUP_BOTH); | |
| 2160 | ||
| 2161 | sw = gtk_scrolled_window_new(NULL,NULL); | |
| 2162 | away_text = gtk_imhtml_new(NULL, NULL); | |
| 2163 | gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), GTK_POLICY_NEVER, GTK_POLICY_ALWAYS); | |
| 2164 | /* | |
| 2165 | gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_IN); | |
| 2166 | */ | |
| 2167 | gtk_box_pack_start(GTK_BOX(ret), sw, TRUE, TRUE, 0); | |
| 2168 | ||
| 2169 | prefs_away_store = gtk_list_store_new (2, G_TYPE_STRING, G_TYPE_POINTER); | |
| 2170 | while (awy) { | |
| 2171 | a = (struct away_message *)awy->data; | |
| 2172 | gtk_list_store_append (prefs_away_store, &iter); | |
| 2173 | gtk_list_store_set(prefs_away_store, &iter, | |
| 2174 | 0, a->name, | |
| 2175 | 1, a, -1); | |
| 2176 | awy = awy->next; | |
| 2177 | } | |
| 2178 | event_view = gtk_tree_view_new_with_model (GTK_TREE_MODEL(prefs_away_store)); | |
| 2179 | ||
| 2180 | ||
| 2181 | rend = gtk_cell_renderer_text_new(); | |
| 2182 | col = gtk_tree_view_column_new_with_attributes ("NULL", | |
| 2183 | rend, | |
| 2184 | "text", 0, | |
| 2185 | NULL); | |
| 2186 | gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col); | |
| 2187 | gtk_tree_view_set_headers_visible (GTK_TREE_VIEW(event_view), FALSE); | |
| 2188 | gtk_widget_show(event_view); | |
| 2189 | gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(sw), event_view); | |
| 2190 | ||
| 2191 | sw2 = gtk_scrolled_window_new(NULL, NULL); | |
| 2192 | gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw2), | |
| 2193 | GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); | |
| 2194 | gtk_box_pack_start(GTK_BOX(ret), sw2, TRUE, TRUE, 0); | |
| 2195 | ||
| 2196 | gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(sw2), away_text); | |
| 2197 | gaim_setup_imhtml(away_text); | |
| 2198 | sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (event_view)); | |
| 2199 | g_signal_connect (G_OBJECT (sel), "changed", | |
| 2200 | G_CALLBACK (away_message_sel), | |
| 2201 | NULL); | |
| 2202 | hbox = gtk_hbox_new(TRUE, 5); | |
| 2203 | gtk_box_pack_start(GTK_BOX(ret), hbox, FALSE, FALSE, 0); | |
| 2204 | button = gtk_button_new_from_stock (GTK_STOCK_ADD); | |
| 2205 | gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
| 2206 | gtk_size_group_add_widget(sg, button); | |
| 2207 | g_signal_connect(G_OBJECT(button), "clicked", | |
| 2208 | G_CALLBACK(create_away_mess), NULL); | |
| 2209 | ||
| 2210 | button = gtk_button_new_from_stock (GTK_STOCK_REMOVE); | |
| 2211 | gtk_size_group_add_widget(sg, button); | |
| 2212 | g_signal_connect(G_OBJECT(button), "clicked", | |
| 2213 | G_CALLBACK(remove_away_message), event_view); | |
| 2214 | ||
| 2215 | gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
| 2216 | ||
| 2217 | button = gaim_pixbuf_button_from_stock(_("_Edit"), GAIM_STOCK_EDIT, GAIM_BUTTON_HORIZONTAL); | |
| 2218 | gtk_size_group_add_widget(sg, button); | |
| 2219 | g_signal_connect(G_OBJECT(button), "clicked", | |
| 2220 | G_CALLBACK(create_away_mess), event_view); | |
| 2221 | gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
| 2222 | ||
| 2223 | gtk_widget_show_all(ret); | |
| 2224 | return ret; | |
| 2225 | } | |
| 2226 | ||
| 2227 | GtkTreeIter *prefs_notebook_add_page(const char *text, | |
| 2228 | GdkPixbuf *pixbuf, | |
| 2229 | GtkWidget *page, | |
| 2230 | GtkTreeIter *iter, | |
| 2231 | GtkTreeIter *parent, | |
| 2232 | int ind) { | |
| 2233 | GdkPixbuf *icon = NULL; | |
| 2234 | ||
| 2235 | if (pixbuf) | |
| 2236 | icon = gdk_pixbuf_scale_simple (pixbuf, 18, 18, GDK_INTERP_BILINEAR); | |
| 2237 | ||
| 2238 | gtk_tree_store_append (prefstree, iter, parent); | |
| 2239 | gtk_tree_store_set (prefstree, iter, 0, icon, 1, text, 2, ind, -1); | |
| 2240 | ||
| 2241 | if (pixbuf) | |
| 2242 | g_object_unref(pixbuf); | |
| 2243 | if (icon) | |
| 2244 | g_object_unref(icon); | |
| 2245 | gtk_notebook_append_page(GTK_NOTEBOOK(prefsnotebook), page, gtk_label_new(text)); | |
| 2246 | return iter; | |
| 2247 | } | |
| 2248 | ||
| 2249 | void prefs_notebook_init() { | |
| 2250 | GtkTreeIter p, p2, c; | |
| 2251 | GList *l; | |
| 2252 | GaimPlugin *plug; | |
| 2253 | prefs_notebook_add_page(_("Interface"), NULL, interface_page(), &p, NULL, notebook_page++); | |
| 2254 | prefs_notebook_add_page(_("Smiley Themes"), NULL, theme_page(), &c, &p, notebook_page++); | |
| 2255 | prefs_notebook_add_page(_("Fonts"), NULL, font_page(), &c, &p, notebook_page++); | |
| 2256 | prefs_notebook_add_page(_("Message Text"), NULL, messages_page(), &c, &p, notebook_page++); | |
| 2257 | prefs_notebook_add_page(_("Shortcuts"), NULL, hotkeys_page(), &c, &p, notebook_page++); | |
| 2258 | prefs_notebook_add_page(_("Buddy List"), NULL, list_page(), &c, &p, notebook_page++); | |
| 2259 | prefs_notebook_add_page(_("Conversations"), NULL, conv_page(), &p2, NULL, notebook_page++); | |
| 2260 | prefs_notebook_add_page(_("IMs"), NULL, im_page(), &c, &p2, notebook_page++); | |
| 2261 | prefs_notebook_add_page(_("Chats"), NULL, chat_page(), &c, &p2, notebook_page++); | |
| 2262 | prefs_notebook_add_page(_("Proxy"), NULL, proxy_page(), &p, NULL, notebook_page++); | |
| 2263 | #ifndef _WIN32 | |
| 2264 | /* We use the registered default browser in windows */ | |
| 2265 | prefs_notebook_add_page(_("Browser"), NULL, browser_page(), &p, NULL, notebook_page++); | |
| 2266 | #endif | |
| 2267 | prefs_notebook_add_page(_("Logging"), NULL, logging_page(), &p, NULL, notebook_page++); | |
| 2268 | prefs_notebook_add_page(_("Sounds"), NULL, sound_page(), &p, NULL, notebook_page++); | |
| 2269 | prefs_notebook_add_page(_("Sound Events"), NULL, sound_events_page(), &c, &p, notebook_page++); | |
| 2270 | prefs_notebook_add_page(_("Away / Idle"), NULL, away_page(), &p, NULL, notebook_page++); | |
| 2271 | prefs_notebook_add_page(_("Away Messages"), NULL, away_message_page(), &c, &p, notebook_page++); | |
| 2272 | ||
| 2273 | if (gaim_plugins_enabled()) { | |
| 2274 | prefs_notebook_add_page(_("Plugins"), NULL, plugin_page(), &plugin_iter, NULL, notebook_page++); | |
| 2275 | ||
| 2276 | for (l = gaim_plugins_get_loaded(); l != NULL; l = l->next) { | |
| 2277 | plug = l->data; | |
| 2278 | ||
| 2279 | if (GAIM_IS_GTK_PLUGIN(plug)) { | |
| 2280 | GtkWidget *config_frame; | |
| 2281 | GaimGtkPluginUiInfo *ui_info; | |
| 2282 | ||
| 2283 | ui_info = GAIM_GTK_PLUGIN_UI_INFO(plug); | |
| 2284 | config_frame = gaim_gtk_plugin_get_config_frame(plug); | |
| 2285 | ||
| 2286 | if (config_frame != NULL) { | |
| 2287 | ui_info->iter = g_new0(GtkTreeIter, 1); | |
| 2288 | prefs_notebook_add_page(_(plug->info->name), NULL, | |
| 2289 | config_frame, ui_info->iter, | |
| 2290 | &plugin_iter, notebook_page++); | |
| 2291 | } | |
| 2292 | } | |
| 2293 | } | |
| 2294 | } | |
| 2295 | } | |
| 2296 | ||
|
5530
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
2297 | void gaim_gtk_prefs_show(void) |
| 5440 | 2298 | { |
| 2299 | GtkWidget *vbox, *vbox2; | |
| 2300 | GtkWidget *hbox; | |
| 2301 | GtkWidget *frame; | |
| 2302 | GtkTreeViewColumn *column; | |
| 2303 | GtkCellRenderer *cell; | |
| 2304 | GtkTreeSelection *sel; | |
| 2305 | GtkWidget *notebook; | |
| 2306 | GtkWidget *sep; | |
| 2307 | GtkWidget *button; | |
| 2308 | GtkSizeGroup *sg = gtk_size_group_new(GTK_SIZE_GROUP_BOTH); | |
| 2309 | ||
| 2310 | if (prefs) { | |
| 2311 | gtk_window_present(GTK_WINDOW(prefs)); | |
| 2312 | return; | |
| 2313 | } | |
| 2314 | ||
| 2315 | /* copy the preferences to tmp values... | |
| 2316 | * I liked "take affect immediately" Oh well :-( */ | |
| 2317 | ||
| 2318 | /* Back to instant-apply! I win! BU-HAHAHA! */ | |
| 2319 | ||
| 2320 | /* Create the window */ | |
| 2321 | prefs = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
| 2322 | gtk_window_set_role(GTK_WINDOW(prefs), "preferences"); | |
| 2323 | gtk_widget_realize(prefs); | |
| 2324 | gtk_window_set_title(GTK_WINDOW(prefs), _("Preferences")); | |
| 2325 | gtk_window_set_resizable (GTK_WINDOW(prefs), FALSE); | |
| 2326 | g_signal_connect(G_OBJECT(prefs), "destroy", | |
| 2327 | G_CALLBACK(delete_prefs), NULL); | |
| 2328 | ||
| 2329 | vbox = gtk_vbox_new(FALSE, 5); | |
| 2330 | gtk_container_set_border_width(GTK_CONTAINER(vbox), 5); | |
| 2331 | gtk_container_add(GTK_CONTAINER(prefs), vbox); | |
| 2332 | gtk_widget_show(vbox); | |
| 2333 | ||
| 2334 | hbox = gtk_hbox_new (FALSE, 6); | |
| 2335 | gtk_container_set_border_width (GTK_CONTAINER (hbox), 6); | |
| 2336 | gtk_container_add (GTK_CONTAINER(vbox), hbox); | |
| 2337 | gtk_widget_show (hbox); | |
| 2338 | ||
| 2339 | frame = gtk_frame_new (NULL); | |
| 2340 | gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN); | |
| 2341 | gtk_box_pack_start (GTK_BOX (hbox), frame, FALSE, FALSE, 0); | |
| 2342 | gtk_widget_show (frame); | |
| 2343 | ||
| 2344 | /* The tree -- much inspired by the Gimp */ | |
| 2345 | prefstree = gtk_tree_store_new (3, GDK_TYPE_PIXBUF, G_TYPE_STRING, G_TYPE_INT); | |
| 2346 | tree_v = gtk_tree_view_new_with_model (GTK_TREE_MODEL (prefstree)); | |
| 2347 | gtk_container_add (GTK_CONTAINER (frame), tree_v); | |
| 2348 | ||
| 2349 | gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (tree_v), FALSE); | |
| 2350 | gtk_widget_show(tree_v); | |
| 2351 | /* icons */ | |
| 2352 | /* XXX: to be used at a later date | |
| 2353 | cell = gtk_cell_renderer_pixbuf_new (); | |
| 2354 | column = gtk_tree_view_column_new_with_attributes ("icons", cell, "pixbuf", 0, NULL); | |
| 2355 | */ | |
| 2356 | ||
| 2357 | /* text */ | |
| 2358 | cell = gtk_cell_renderer_text_new (); | |
| 2359 | column = gtk_tree_view_column_new_with_attributes ("text", cell, "text", 1, NULL); | |
| 2360 | ||
| 2361 | gtk_tree_view_append_column (GTK_TREE_VIEW (tree_v), column); | |
| 2362 | ||
| 2363 | /* The right side */ | |
| 2364 | frame = gtk_frame_new (NULL); | |
| 2365 | gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN); | |
| 2366 | gtk_box_pack_start (GTK_BOX (hbox), frame, TRUE, TRUE, 0); | |
| 2367 | gtk_widget_show (frame); | |
| 2368 | ||
| 2369 | vbox2 = gtk_vbox_new (FALSE, 4); | |
| 2370 | gtk_container_add (GTK_CONTAINER (frame), vbox2); | |
| 2371 | gtk_widget_show (vbox2); | |
| 2372 | ||
| 2373 | frame = gtk_frame_new (NULL); | |
| 2374 | gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_OUT); | |
| 2375 | gtk_box_pack_start (GTK_BOX (vbox2), frame, FALSE, TRUE, 0); | |
| 2376 | gtk_widget_show (frame); | |
| 2377 | ||
| 2378 | hbox = gtk_hbox_new (FALSE, 4); | |
| 2379 | gtk_container_set_border_width (GTK_CONTAINER (hbox), 4); | |
| 2380 | gtk_container_add (GTK_CONTAINER (frame), hbox); | |
| 2381 | gtk_widget_show (hbox); | |
| 2382 | ||
| 2383 | preflabel = gtk_label_new(NULL); | |
| 2384 | gtk_box_pack_end (GTK_BOX (hbox), preflabel, FALSE, FALSE, 0); | |
| 2385 | gtk_widget_show (preflabel); | |
| 2386 | ||
| 2387 | /* The notebook */ | |
| 2388 | prefsnotebook = notebook = gtk_notebook_new (); | |
| 2389 | gtk_notebook_set_show_tabs (GTK_NOTEBOOK (notebook), FALSE); | |
| 2390 | gtk_notebook_set_show_border (GTK_NOTEBOOK (notebook), FALSE); | |
| 2391 | gtk_box_pack_start (GTK_BOX (vbox2), notebook, FALSE, FALSE, 0); | |
| 2392 | ||
| 2393 | sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (tree_v)); | |
| 2394 | g_signal_connect (G_OBJECT (sel), "changed", | |
| 2395 | G_CALLBACK (pref_nb_select), | |
| 2396 | notebook); | |
| 2397 | gtk_widget_show(notebook); | |
| 2398 | sep = gtk_hseparator_new(); | |
| 2399 | gtk_widget_show(sep); | |
| 2400 | gtk_box_pack_start (GTK_BOX (vbox), sep, FALSE, FALSE, 0); | |
| 2401 | ||
| 2402 | /* The buttons^H to press! */ | |
| 2403 | hbox = gtk_hbox_new (FALSE, 6); | |
| 2404 | gtk_container_set_border_width (GTK_CONTAINER (hbox), 6); | |
| 2405 | gtk_container_add (GTK_CONTAINER(vbox), hbox); | |
| 2406 | gtk_widget_show (hbox); | |
| 2407 | ||
| 2408 | button = gtk_button_new_from_stock (GTK_STOCK_CLOSE); | |
| 2409 | gtk_size_group_add_widget(sg, button); | |
| 2410 | g_signal_connect_swapped(G_OBJECT(button), "clicked", | |
| 2411 | G_CALLBACK(gtk_widget_destroy), prefs); | |
| 2412 | gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
| 2413 | gtk_widget_show(button); | |
| 2414 | ||
| 2415 | prefs_notebook_init(); | |
| 2416 | ||
|
5568
3c7cc231c8c4
[gaim-migrate @ 5970]
Christian Hammond <chipx86@chipx86.com>
parents:
5567
diff
changeset
|
2417 | /* Show everything. */ |
| 5440 | 2418 | gtk_tree_view_expand_all (GTK_TREE_VIEW(tree_v)); |
| 2419 | gtk_widget_show(prefs); | |
| 2420 | } | |
| 2421 | ||
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2422 | #if 0 |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2423 | static void set_misc_option(GtkWidget *w, const char *key) |
| 5440 | 2424 | { |
| 2425 | ||
| 5535 | 2426 | if(option == OPT_MISC_USE_SERVER_ALIAS) { |
| 5440 | 2427 | /* XXX blist reset the aliases here */ |
| 2428 | gaim_conversation_foreach(gaim_conversation_autoset_title); | |
| 2429 | } | |
| 2430 | } | |
| 2431 | ||
| 2432 | static void set_logging_option(GtkWidget *w, int option) | |
| 2433 | { | |
| 2434 | logging_options ^= option; | |
| 2435 | ||
| 2436 | if (option == OPT_LOG_CONVOS || option == OPT_LOG_CHATS) | |
| 2437 | update_log_convs(); | |
| 2438 | } | |
| 2439 | ||
| 2440 | static void set_blist_option(GtkWidget *w, int option) | |
| 2441 | { | |
| 2442 | struct gaim_gtk_buddy_list *gtkblist; | |
| 2443 | ||
| 2444 | gtkblist = GAIM_GTK_BLIST(gaim_get_blist()); | |
| 2445 | ||
| 2446 | blist_options ^= option; | |
| 2447 | ||
| 2448 | if (!gtkblist) | |
| 2449 | return; | |
| 2450 | ||
| 2451 | if (option == OPT_BLIST_SHOW_WARN) | |
| 2452 | gaim_gtk_blist_update_columns(); | |
| 2453 | else if (option == OPT_BLIST_SHOW_IDLETIME) { | |
| 2454 | gaim_gtk_blist_update_refresh_timeout(); | |
| 2455 | gaim_gtk_blist_update_columns(); | |
| 2456 | } | |
| 2457 | else if (option == OPT_BLIST_SHOW_ICONS) { | |
| 2458 | gaim_gtk_blist_update_refresh_timeout(); | |
| 2459 | gaim_gtk_blist_refresh(gaim_get_blist()); | |
| 2460 | gaim_gtk_blist_update_columns(); | |
| 2461 | } else | |
| 2462 | gaim_gtk_blist_refresh(gaim_get_blist()); | |
| 2463 | ||
| 2464 | } | |
| 2465 | ||
| 2466 | static void set_convo_option(GtkWidget *w, int option) | |
| 2467 | { | |
| 2468 | convo_options ^= option; | |
| 2469 | ||
| 2470 | if (option == OPT_CONVO_SHOW_SMILEY) | |
| 2471 | gaim_gtkconv_toggle_smileys(); | |
| 2472 | ||
| 2473 | if (option == OPT_CONVO_SHOW_TIME) | |
| 2474 | gaim_gtkconv_toggle_timestamps(); | |
| 2475 | ||
| 2476 | if (option == OPT_CONVO_CHECK_SPELLING) | |
| 2477 | gaim_gtkconv_toggle_spellchk(); | |
| 2478 | ||
| 2479 | if (option == OPT_CONVO_NO_X_ON_TAB) | |
| 2480 | gaim_gtkconv_toggle_close_buttons(); | |
| 2481 | } | |
| 2482 | ||
| 2483 | static void set_im_option(GtkWidget *w, int option) | |
| 2484 | { | |
| 2485 | im_options ^= option; | |
| 2486 | ||
| 2487 | #if 0 | |
| 2488 | if (option == OPT_IM_ONE_WINDOW) | |
| 2489 | im_tabize(); | |
| 2490 | #endif | |
| 2491 | ||
| 2492 | if (option == OPT_IM_HIDE_ICONS) | |
| 2493 | gaim_gtkconv_hide_buddy_icons(); | |
| 2494 | ||
| 2495 | if (option == OPT_IM_ALIAS_TAB) | |
| 2496 | gaim_conversation_foreach(gaim_conversation_autoset_title); | |
| 2497 | ||
| 2498 | if (option == OPT_IM_NO_ANIMATION) | |
| 2499 | gaim_gtkconv_set_anim(); | |
| 2500 | } | |
| 2501 | ||
| 2502 | static void set_chat_option(GtkWidget *w, int option) | |
| 2503 | { | |
| 2504 | chat_options ^= option; | |
| 2505 | ||
| 2506 | #if 0 | |
| 2507 | if (option == OPT_CHAT_ONE_WINDOW) | |
| 2508 | chat_tabize(); | |
| 2509 | #endif | |
| 2510 | } | |
| 2511 | ||
| 2512 | void set_sound_option(GtkWidget *w, int option) | |
| 2513 | { | |
| 2514 | sound_options ^= option; | |
| 2515 | } | |
| 2516 | ||
| 2517 | static void set_away_option(GtkWidget *w, int option) | |
| 2518 | { | |
| 2519 | away_options ^= option; | |
| 2520 | ||
| 2521 | if (option == OPT_AWAY_QUEUE) | |
| 2522 | toggle_away_queue(); | |
| 2523 | } | |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2524 | #endif |
| 5440 | 2525 | |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2526 | static void |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2527 | set_bool_pref(GtkWidget *w, const char *key) |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2528 | { |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2529 | gaim_prefs_set_bool(key, |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2530 | gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(w))); |
|
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 | |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2533 | static GtkWidget * |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2534 | prefs_checkbox(const char *text, const char *key, GtkWidget *page) |
| 5440 | 2535 | { |
| 2536 | GtkWidget *button; | |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2537 | |
| 5440 | 2538 | button = gtk_check_button_new_with_mnemonic(text); |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2539 | gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2540 | gaim_prefs_get_bool(key)); |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2541 | |
| 5440 | 2542 | 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
|
2543 | |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2544 | g_signal_connect(G_OBJECT(button), "clicked", |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2545 | G_CALLBACK(set_bool_pref), (char *)key); |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2546 | |
| 5440 | 2547 | gtk_widget_show(button); |
| 2548 | ||
| 2549 | return button; | |
| 2550 | } | |
| 2551 | ||
| 2552 | void default_away_menu_init(GtkWidget *omenu) | |
| 2553 | { | |
| 2554 | GtkWidget *menu, *opt; | |
| 2555 | int index = 0; | |
| 2556 | GSList *awy = away_messages; | |
| 2557 | struct away_message *a; | |
| 2558 | ||
| 2559 | menu = gtk_menu_new(); | |
| 2560 | ||
| 2561 | while (awy) { | |
| 2562 | a = (struct away_message *)awy->data; | |
| 2563 | opt = gtk_menu_item_new_with_label(a->name); | |
| 2564 | g_signal_connect(G_OBJECT(opt), "activate", | |
| 2565 | G_CALLBACK(set_default_away), (gpointer)index); | |
| 2566 | gtk_widget_show(opt); | |
| 2567 | gtk_menu_shell_append(GTK_MENU_SHELL(menu), opt); | |
| 2568 | ||
| 2569 | awy = awy->next; | |
| 2570 | index++; | |
| 2571 | } | |
| 2572 | ||
| 2573 | gtk_option_menu_remove_menu(GTK_OPTION_MENU(omenu)); | |
| 2574 | gtk_option_menu_set_menu(GTK_OPTION_MENU(omenu), menu); | |
| 2575 | gtk_option_menu_set_history(GTK_OPTION_MENU(omenu), g_slist_index(away_messages, default_away)); | |
| 2576 | } | |
| 2577 | ||
| 2578 | GtkWidget *pref_fg_picture = NULL; | |
| 2579 | GtkWidget *pref_bg_picture = NULL; | |
| 2580 | ||
| 2581 | void destroy_colorsel(GtkWidget *w, gpointer d) | |
| 2582 | { | |
| 2583 | if (d) { | |
| 2584 | gtk_widget_destroy(fgcseld); | |
| 2585 | fgcseld = NULL; | |
| 2586 | } else { | |
| 2587 | gtk_widget_destroy(bgcseld); | |
| 2588 | bgcseld = NULL; | |
| 2589 | } | |
| 2590 | } | |
| 2591 | ||
| 2592 | void apply_color_dlg(GtkWidget *w, gpointer d) | |
| 2593 | { | |
| 5671 | 2594 | char buf[14]; |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2595 | |
| 5440 | 2596 | if ((int)d == 1) { |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2597 | GdkColor fgcolor; |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2598 | |
| 5440 | 2599 | gtk_color_selection_get_current_color(GTK_COLOR_SELECTION |
| 2600 | (GTK_COLOR_SELECTION_DIALOG(fgcseld)->colorsel), | |
| 2601 | &fgcolor); | |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2602 | |
| 5671 | 2603 | g_snprintf(buf, sizeof(buf), "#%04x%04x%04x", |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2604 | fgcolor.red, fgcolor.green, fgcolor.blue); |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2605 | |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2606 | gaim_prefs_set_string("/gaim/gtk/conversations/fgcolor", buf); |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2607 | |
| 5440 | 2608 | destroy_colorsel(NULL, (void *)1); |
| 2609 | update_color(NULL, pref_fg_picture); | |
| 2610 | } else { | |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2611 | GdkColor bgcolor; |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2612 | |
| 5440 | 2613 | gtk_color_selection_get_current_color(GTK_COLOR_SELECTION |
| 2614 | (GTK_COLOR_SELECTION_DIALOG(bgcseld)->colorsel), | |
| 2615 | &bgcolor); | |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2616 | |
| 5671 | 2617 | g_snprintf(buf, sizeof(buf), "#%04x%04x%04x", |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2618 | bgcolor.red, bgcolor.green, bgcolor.blue); |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2619 | |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2620 | gaim_prefs_set_string("/gaim/gtk/conversations/bgcolor", buf); |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2621 | |
| 5440 | 2622 | destroy_colorsel(NULL, (void *)0); |
| 2623 | update_color(NULL, pref_bg_picture); | |
| 2624 | } | |
| 2625 | gaim_conversation_foreach(gaim_gtkconv_update_font_colors); | |
| 2626 | } | |
| 2627 | ||
| 2628 | void set_default_away(GtkWidget *w, gpointer i) | |
| 2629 | { | |
| 2630 | ||
| 2631 | int length = g_slist_length(away_messages); | |
| 2632 | ||
| 2633 | if (away_messages == NULL) | |
| 2634 | default_away = NULL; | |
| 2635 | else if ((int)i >= length) | |
| 2636 | default_away = g_slist_nth_data(away_messages, length - 1); | |
| 2637 | else | |
| 2638 | default_away = g_slist_nth_data(away_messages, (int)i); | |
| 2639 | } | |
| 2640 | ||
| 2641 | #ifndef _WIN32 | |
| 2642 | static gboolean program_is_valid(const char *program) | |
| 2643 | { | |
| 2644 | GError *error = NULL; | |
| 2645 | char **argv; | |
| 2646 | gchar *progname; | |
| 2647 | gboolean is_valid = FALSE; | |
| 2648 | ||
| 2649 | if (program == NULL || *program == '\0') { | |
| 2650 | return FALSE; | |
| 2651 | } | |
| 2652 | ||
| 2653 | if (!g_shell_parse_argv(program, NULL, &argv, &error)) { | |
| 2654 | gaim_debug(GAIM_DEBUG_ERROR, "program_is_valid", | |
| 2655 | "Could not parse program '%s': %s\n", | |
| 2656 | program, error->message); | |
| 2657 | g_error_free(error); | |
| 2658 | return FALSE; | |
| 2659 | } | |
| 2660 | ||
| 2661 | if (argv == NULL) { | |
| 2662 | return FALSE; | |
| 2663 | } | |
| 2664 | ||
| 2665 | progname = g_find_program_in_path(argv[0]); | |
| 2666 | is_valid = (progname != NULL); | |
| 2667 | ||
| 2668 | g_strfreev(argv); | |
| 2669 | g_free(progname); | |
| 2670 | ||
| 2671 | return is_valid; | |
| 2672 | } | |
| 2673 | #endif | |
| 2674 | ||
| 2675 | static GtkWidget *show_color_pref(GtkWidget *box, gboolean fgc) | |
| 2676 | { | |
| 2677 | /* more stuff stolen from X-Chat */ | |
| 2678 | GtkWidget *swid; | |
| 2679 | GdkColor c; | |
| 2680 | GtkStyle *style; | |
| 2681 | c.pixel = 0; | |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2682 | |
| 5440 | 2683 | if (fgc) { |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2684 | 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
|
2685 | GdkColor fgcolor; |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2686 | |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2687 | gdk_color_parse( |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2688 | gaim_prefs_get_string("/gaim/gtk/conversations/fgcolor"), |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2689 | &fgcolor); |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2690 | |
| 5440 | 2691 | c.red = fgcolor.red; |
| 2692 | c.blue = fgcolor.blue; | |
| 2693 | c.green = fgcolor.green; | |
| 2694 | } else { | |
| 2695 | c.red = 0; | |
| 2696 | c.blue = 0; | |
| 2697 | c.green = 0; | |
| 2698 | } | |
| 2699 | } else { | |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2700 | 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
|
2701 | GdkColor bgcolor; |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2702 | |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2703 | gdk_color_parse( |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2704 | gaim_prefs_get_string("/gaim/gtk/conversations/bgcolor"), |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2705 | &bgcolor); |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2706 | |
| 5440 | 2707 | c.red = bgcolor.red; |
| 2708 | c.blue = bgcolor.blue; | |
| 2709 | c.green = bgcolor.green; | |
| 2710 | } else { | |
| 2711 | c.red = 0xffff; | |
| 2712 | c.blue = 0xffff; | |
| 2713 | c.green = 0xffff; | |
| 2714 | } | |
| 2715 | } | |
| 2716 | ||
| 2717 | style = gtk_style_new(); | |
| 2718 | style->bg[0] = c; | |
| 2719 | ||
| 2720 | swid = gtk_event_box_new(); | |
| 2721 | gtk_widget_set_style(GTK_WIDGET(swid), style); | |
| 2722 | g_object_unref(style); | |
| 2723 | gtk_widget_set_size_request(GTK_WIDGET(swid), 40, -1); | |
| 2724 | gtk_box_pack_start(GTK_BOX(box), swid, FALSE, FALSE, 5); | |
| 2725 | gtk_widget_show(swid); | |
| 2726 | return swid; | |
| 2727 | } | |
| 2728 | ||
| 2729 | void apply_font_dlg(GtkWidget *w, GtkWidget *f) | |
| 2730 | { | |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2731 | char *fontname, *c; |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2732 | |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2733 | fontname = |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2734 | 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
|
2735 | |
| 5440 | 2736 | destroy_fontsel(0, 0); |
| 2737 | ||
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2738 | for (c = fontname; *c != '\0'; c++) { |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2739 | if (isdigit(*c)) { |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2740 | *(--c) = '\0'; |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2741 | break; |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2742 | } |
| 5440 | 2743 | } |
| 2744 | ||
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2745 | gaim_prefs_set_string("/gaim/gtk/conversations/font_face", fontname); |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2746 | |
| 5440 | 2747 | g_free(fontname); |
| 2748 | ||
| 2749 | gaim_conversation_foreach(gaim_gtkconv_update_font_face); | |
| 2750 | } | |
| 2751 | ||
|
5770
e18c7f1947f0
[gaim-migrate @ 6195]
Christian Hammond <chipx86@chipx86.com>
parents:
5753
diff
changeset
|
2752 | static void |
|
e18c7f1947f0
[gaim-migrate @ 6195]
Christian Hammond <chipx86@chipx86.com>
parents:
5753
diff
changeset
|
2753 | smiley_theme_pref_cb(const char *name, GaimPrefType type, gpointer value, |
|
e18c7f1947f0
[gaim-migrate @ 6195]
Christian Hammond <chipx86@chipx86.com>
parents:
5753
diff
changeset
|
2754 | gpointer data) |
|
e18c7f1947f0
[gaim-migrate @ 6195]
Christian Hammond <chipx86@chipx86.com>
parents:
5753
diff
changeset
|
2755 | { |
| 5841 | 2756 | if (!strcmp(name, "/gaim/gtk/smileys/theme")) |
|
5771
e902bc50a793
[gaim-migrate @ 6196]
Christian Hammond <chipx86@chipx86.com>
parents:
5770
diff
changeset
|
2757 | load_smiley_theme((const char *)value, TRUE); |
|
5770
e18c7f1947f0
[gaim-migrate @ 6195]
Christian Hammond <chipx86@chipx86.com>
parents:
5753
diff
changeset
|
2758 | } |
|
e18c7f1947f0
[gaim-migrate @ 6195]
Christian Hammond <chipx86@chipx86.com>
parents:
5753
diff
changeset
|
2759 | |
|
5530
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
2760 | void |
|
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
2761 | gaim_gtk_prefs_init(void) |
|
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
2762 | { |
|
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
2763 | gaim_prefs_add_none("/gaim"); |
|
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
2764 | gaim_prefs_add_none("/gaim/gtk"); |
|
5550
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
2765 | gaim_prefs_add_none("/plugins/gtk"); |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
2766 | |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
2767 | /* XXX Move this! HACK! :( Aww... */ |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
2768 | gaim_prefs_add_none("/plugins/gtk/docklet"); |
|
5554
a197dfd0d8b3
[gaim-migrate @ 5955]
Christian Hammond <chipx86@chipx86.com>
parents:
5551
diff
changeset
|
2769 | gaim_prefs_add_bool("/plugins/gtk/docklet/queue_messages", FALSE); |
|
5530
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
2770 | |
|
5563
d5a7852aa0cb
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5560
diff
changeset
|
2771 | /* Accounts Dialog */ |
|
5567
248932da7121
[gaim-migrate @ 5969]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2772 | gaim_prefs_add_none("/gaim/gtk/accounts"); |
|
248932da7121
[gaim-migrate @ 5969]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2773 | gaim_prefs_add_none("/gaim/gtk/accounts/dialog"); |
|
5563
d5a7852aa0cb
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5560
diff
changeset
|
2774 | gaim_prefs_add_int("/gaim/gtk/accounts/dialog/width", 550); |
|
d5a7852aa0cb
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5560
diff
changeset
|
2775 | gaim_prefs_add_int("/gaim/gtk/accounts/dialog/height", 250); |
|
d5a7852aa0cb
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5560
diff
changeset
|
2776 | |
|
5573
633880e3f137
[gaim-migrate @ 5976]
Christian Hammond <chipx86@chipx86.com>
parents:
5568
diff
changeset
|
2777 | /* Away Queueing */ |
|
633880e3f137
[gaim-migrate @ 5976]
Christian Hammond <chipx86@chipx86.com>
parents:
5568
diff
changeset
|
2778 | gaim_prefs_add_none("/gaim/gtk/away"); |
|
633880e3f137
[gaim-migrate @ 5976]
Christian Hammond <chipx86@chipx86.com>
parents:
5568
diff
changeset
|
2779 | gaim_prefs_add_bool("/gaim/gtk/away/queue_messages", FALSE); |
|
633880e3f137
[gaim-migrate @ 5976]
Christian Hammond <chipx86@chipx86.com>
parents:
5568
diff
changeset
|
2780 | |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2781 | /* Browsers */ |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2782 | gaim_prefs_add_none("/gaim/gtk/browsers"); |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2783 | gaim_prefs_add_bool("/gaim/gtk/browsers/new_window", FALSE); |
|
5560
7cd6678f838b
[gaim-migrate @ 5961]
Christian Hammond <chipx86@chipx86.com>
parents:
5554
diff
changeset
|
2784 | gaim_prefs_add_string("/gaim/gtk/browsers/command", ""); |
|
5546
bad75481a8c6
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
2785 | gaim_prefs_add_string("/gaim/gtk/browsers/browser", "mozilla"); |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2786 | |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2787 | /* Buddy List */ |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2788 | gaim_prefs_add_none("/gaim/gtk/blist"); |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2789 | 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
|
2790 | gaim_prefs_add_bool("/gaim/gtk/blist/grey_idle_buddies", TRUE); |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2791 | gaim_prefs_add_bool("/gaim/gtk/blist/raise_on_events", FALSE); |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2792 | gaim_prefs_add_bool("/gaim/gtk/blist/show_buddy_icons", TRUE); |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2793 | gaim_prefs_add_bool("/gaim/gtk/blist/show_empty_groups", FALSE); |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2794 | gaim_prefs_add_bool("/gaim/gtk/blist/show_group_count", TRUE); |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2795 | gaim_prefs_add_bool("/gaim/gtk/blist/show_idle_time", TRUE); |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2796 | gaim_prefs_add_bool("/gaim/gtk/blist/show_offline_buddies", FALSE); |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2797 | 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
|
2798 | gaim_prefs_add_string("/gaim/gtk/blist/sort_type", ""); |
|
5560
7cd6678f838b
[gaim-migrate @ 5961]
Christian Hammond <chipx86@chipx86.com>
parents:
5554
diff
changeset
|
2799 | gaim_prefs_add_int("/gaim/gtk/blist/x", 0); |
|
7cd6678f838b
[gaim-migrate @ 5961]
Christian Hammond <chipx86@chipx86.com>
parents:
5554
diff
changeset
|
2800 | gaim_prefs_add_int("/gaim/gtk/blist/y", 0); |
|
7cd6678f838b
[gaim-migrate @ 5961]
Christian Hammond <chipx86@chipx86.com>
parents:
5554
diff
changeset
|
2801 | gaim_prefs_add_int("/gaim/gtk/blist/width", 0); |
|
7cd6678f838b
[gaim-migrate @ 5961]
Christian Hammond <chipx86@chipx86.com>
parents:
5554
diff
changeset
|
2802 | gaim_prefs_add_int("/gaim/gtk/blist/height", 0); |
|
5539
a13dd0ba205a
[gaim-migrate @ 5939]
Christian Hammond <chipx86@chipx86.com>
parents:
5535
diff
changeset
|
2803 | |
|
5550
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
2804 | /* Idle */ |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
2805 | gaim_prefs_add_none("/gaim/gtk/idle"); |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
2806 | gaim_prefs_add_string("/gaim/gtk/idle/reporting_method", "system"); |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
2807 | |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2808 | /* Logging */ |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
2809 | gaim_prefs_add_none("/gaim/gtk/logging"); |
|
5551
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2810 | gaim_prefs_add_bool("/gaim/gtk/logging/log_ims", TRUE); |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2811 | gaim_prefs_add_bool("/gaim/gtk/logging/log_chats", TRUE); |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2812 | gaim_prefs_add_bool("/gaim/gtk/logging/strip_html", TRUE); |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2813 | gaim_prefs_add_bool("/gaim/gtk/logging/log_signon_signoff", TRUE); |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2814 | gaim_prefs_add_bool("/gaim/gtk/logging/log_idle_state", TRUE); |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2815 | gaim_prefs_add_bool("/gaim/gtk/logging/log_away_state", TRUE); |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2816 | gaim_prefs_add_bool("/gaim/gtk/logging/log_own_states", TRUE); |
|
f92bd449fd90
[gaim-migrate @ 5952]
Christian Hammond <chipx86@chipx86.com>
parents:
5550
diff
changeset
|
2817 | gaim_prefs_add_bool("/gaim/gtk/logging/individual_logs", FALSE); |
|
5539
a13dd0ba205a
[gaim-migrate @ 5939]
Christian Hammond <chipx86@chipx86.com>
parents:
5535
diff
changeset
|
2818 | |
|
a13dd0ba205a
[gaim-migrate @ 5939]
Christian Hammond <chipx86@chipx86.com>
parents:
5535
diff
changeset
|
2819 | /* Smiley Themes */ |
|
5546
bad75481a8c6
[gaim-migrate @ 5947]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
2820 | gaim_prefs_add_none("/gaim/gtk/smileys"); |
|
5771
e902bc50a793
[gaim-migrate @ 6196]
Christian Hammond <chipx86@chipx86.com>
parents:
5770
diff
changeset
|
2821 | gaim_prefs_add_string("/gaim/gtk/smileys/theme", ""); |
|
5770
e18c7f1947f0
[gaim-migrate @ 6195]
Christian Hammond <chipx86@chipx86.com>
parents:
5753
diff
changeset
|
2822 | |
|
e18c7f1947f0
[gaim-migrate @ 6195]
Christian Hammond <chipx86@chipx86.com>
parents:
5753
diff
changeset
|
2823 | /* Smiley Callbacks */ |
|
e18c7f1947f0
[gaim-migrate @ 6195]
Christian Hammond <chipx86@chipx86.com>
parents:
5753
diff
changeset
|
2824 | gaim_prefs_connect_callback("/gaim/gtk/smileys/theme", |
|
e18c7f1947f0
[gaim-migrate @ 6195]
Christian Hammond <chipx86@chipx86.com>
parents:
5753
diff
changeset
|
2825 | smiley_theme_pref_cb, NULL); |
|
5530
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
2826 | } |
|
ba1ad464b56f
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
2827 |