Mercurial > audlegacy
annotate audacious/ui_preferences.c @ 2296:b9895bba71d0 trunk
[svn] - fix XML definition for missing action: "track info" -> "current track info"
author | nenolod |
---|---|
date | Sun, 07 Jan 2007 15:23:46 -0800 |
parents | 05ea2b608e3d |
children |
rev | line source |
---|---|
1073 | 1 /* Audacious - Cross-platform multimedia player |
2 * Copyright (C) 2005-2006 Audacious development team. | |
3 * | |
4 * BMP - Cross-platform multimedia player | |
0 | 5 * Copyright (C) 2003-2004 BMP development team. |
6 * | |
7 * This program is free software; you can redistribute it and/or modify | |
1460 | 8 * it under the terms of the GNU General Public License as published by |
2105
f18a5b617c34
[svn] - move to GPLv2-only. Based on my interpretation of the license, we are
nenolod
parents:
2073
diff
changeset
|
9 * the Free Software Foundation; under version 2 of the License. |
0 | 10 * |
11 * This program is distributed in the hope that it will be useful, | |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 * GNU General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU General Public License | |
17 * along with this program; if not, write to the Free Software | |
1459 | 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
0 | 19 */ |
20 | |
21 #ifdef HAVE_CONFIG_H | |
22 # include "config.h" | |
23 #endif | |
24 | |
25 #include <glib.h> | |
26 #include <glib/gi18n.h> | |
27 #include <gtk/gtk.h> | |
28 #include <glade/glade.h> | |
29 #include <string.h> | |
887 | 30 #include <stddef.h> |
31 #include <stdio.h> | |
32 #include <sys/types.h> | |
33 #include <dirent.h> | |
34 #include <unistd.h> | |
35 #include <errno.h> | |
36 #include <sys/types.h> | |
37 #include <sys/stat.h> | |
0 | 38 |
39 #include "glade.h" | |
40 | |
41 #include "plugin.h" | |
42 #include "pluginenum.h" | |
43 #include "input.h" | |
44 #include "effect.h" | |
45 #include "general.h" | |
46 #include "output.h" | |
47 #include "visualization.h" | |
48 | |
49 #include "main.h" | |
1547 | 50 #include "widgets/widgetcore.h" |
2073 | 51 #include "libaudacious/urldecode.h" |
0 | 52 #include "util.h" |
53 #include "dnd.h" | |
54 #include "libaudacious/configdb.h" | |
55 | |
2237 | 56 #include "ui_main.h" |
383 | 57 #include "ui_playlist.h" |
2244 | 58 #include "ui_skinselector.h" |
59 #include "ui_preferences.h" | |
60 | |
816
8073d8300502
[svn] display audacious version and revision in the prefs window
giacomo
parents:
625
diff
changeset
|
61 #include "build_stamp.h" |
0 | 62 |
63 enum CategoryViewCols { | |
64 CATEGORY_VIEW_COL_ICON, | |
65 CATEGORY_VIEW_COL_NAME, | |
66 CATEGORY_VIEW_COL_ID, | |
67 CATEGORY_VIEW_N_COLS | |
68 }; | |
69 | |
70 enum PluginViewCols { | |
71 PLUGIN_VIEW_COL_ACTIVE, | |
72 PLUGIN_VIEW_COL_DESC, | |
73 PLUGIN_VIEW_COL_FILENAME, | |
74 PLUGIN_VIEW_COL_ID, | |
75 PLUGIN_VIEW_N_COLS | |
76 }; | |
77 | |
78 | |
79 typedef struct { | |
80 const gchar *icon_path; | |
81 const gchar *name; | |
82 gint id; | |
83 } Category; | |
84 | |
85 typedef struct { | |
86 const gchar *name; | |
87 const gchar *tag; | |
88 } | |
89 TitleFieldTag; | |
90 | |
91 static GtkWidget *prefswin = NULL; | |
1413 | 92 static GtkWidget *filepopup_settings = NULL; |
2187
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
93 static GtkWidget *colorize_settings = NULL; |
1175 | 94 static GtkWidget *category_treeview = NULL; |
95 static GtkWidget *category_notebook = NULL; | |
1388
b8e521f642e4
[svn] - when the playlist page of the preferences window is shown, the checkbox for filepopup follows the popup menu now.
yaz
parents:
1384
diff
changeset
|
96 GtkWidget *filepopupbutton = NULL; |
0 | 97 |
98 static Category categories[] = { | |
99 {DATA_DIR "/images/appearance.png", N_("Appearance"), 1}, | |
1143 | 100 {DATA_DIR "/images/audio.png", N_("Audio"), 6}, |
1074 | 101 {DATA_DIR "/images/connectivity.png", N_("Connectivity"), 5}, |
0 | 102 {DATA_DIR "/images/eq.png", N_("Equalizer"), 4}, |
103 {DATA_DIR "/images/mouse.png", N_("Mouse"), 2}, | |
104 {DATA_DIR "/images/playlist.png", N_("Playlist"), 3}, | |
105 {DATA_DIR "/images/plugins.png", N_("Plugins"), 0}, | |
106 }; | |
107 | |
108 static gint n_categories = G_N_ELEMENTS(categories); | |
109 | |
110 static TitleFieldTag title_field_tags[] = { | |
111 { N_("Artist") , "%p" }, | |
112 { N_("Album") , "%a" }, | |
113 { N_("Title") , "%t" }, | |
114 { N_("Tracknumber"), "%n" }, | |
115 { N_("Genre") , "%g" }, | |
116 { N_("Filename") , "%f" }, | |
117 { N_("Filepath") , "%F" }, | |
118 { N_("Date") , "%d" }, | |
119 { N_("Year") , "%y" }, | |
120 { N_("Comment") , "%c" } | |
121 }; | |
122 | |
1184
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
123 typedef struct { |
1352
8b249765fdd1
[svn] - GList cannot handle circular queues, so I integrated one into CategoryQueueEntry. No fuss, no muss.
nenolod
parents:
1188
diff
changeset
|
124 void *next; |
1184
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
125 GtkWidget *container; |
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
126 char *pg_name; |
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
127 char *img_url; |
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
128 } CategoryQueueEntry; |
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
129 |
1352
8b249765fdd1
[svn] - GList cannot handle circular queues, so I integrated one into CategoryQueueEntry. No fuss, no muss.
nenolod
parents:
1188
diff
changeset
|
130 CategoryQueueEntry *category_queue = NULL; |
1184
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
131 |
0 | 132 static const guint n_title_field_tags = G_N_ELEMENTS(title_field_tags); |
133 | |
963
e42ce60c308f
[svn] - GLib 2.6 compatibility wrapper, per bug #469
nenolod
parents:
962
diff
changeset
|
134 /* GLib 2.6 compatibility */ |
e42ce60c308f
[svn] - GLib 2.6 compatibility wrapper, per bug #469
nenolod
parents:
962
diff
changeset
|
135 #if (! ((GLIB_MAJOR_VERSION > 2) || ((GLIB_MAJOR_VERSION == 2) && (GLIB_MINOR_VERSION >= 8)))) |
e42ce60c308f
[svn] - GLib 2.6 compatibility wrapper, per bug #469
nenolod
parents:
962
diff
changeset
|
136 static const char * |
e42ce60c308f
[svn] - GLib 2.6 compatibility wrapper, per bug #469
nenolod
parents:
962
diff
changeset
|
137 g_get_host_name (void) |
e42ce60c308f
[svn] - GLib 2.6 compatibility wrapper, per bug #469
nenolod
parents:
962
diff
changeset
|
138 { |
e42ce60c308f
[svn] - GLib 2.6 compatibility wrapper, per bug #469
nenolod
parents:
962
diff
changeset
|
139 static char hostname [HOST_NAME_MAX + 1]; |
e42ce60c308f
[svn] - GLib 2.6 compatibility wrapper, per bug #469
nenolod
parents:
962
diff
changeset
|
140 if (gethostname (hostname, HOST_NAME_MAX) == -1) { |
e42ce60c308f
[svn] - GLib 2.6 compatibility wrapper, per bug #469
nenolod
parents:
962
diff
changeset
|
141 return _("localhost"); |
e42ce60c308f
[svn] - GLib 2.6 compatibility wrapper, per bug #469
nenolod
parents:
962
diff
changeset
|
142 } |
e42ce60c308f
[svn] - GLib 2.6 compatibility wrapper, per bug #469
nenolod
parents:
962
diff
changeset
|
143 return hostname; |
e42ce60c308f
[svn] - GLib 2.6 compatibility wrapper, per bug #469
nenolod
parents:
962
diff
changeset
|
144 } |
e42ce60c308f
[svn] - GLib 2.6 compatibility wrapper, per bug #469
nenolod
parents:
962
diff
changeset
|
145 #endif |
0 | 146 |
1184
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
147 static void prefswin_page_queue_destroy(CategoryQueueEntry *ent); |
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
148 |
0 | 149 static GladeXML * |
150 prefswin_get_xml(void) | |
151 { | |
152 return GLADE_XML(g_object_get_data(G_OBJECT(prefswin), "glade-xml")); | |
153 } | |
154 | |
155 static void | |
156 change_category(GtkNotebook * notebook, | |
157 GtkTreeSelection * selection) | |
158 { | |
159 GtkTreeModel *model; | |
160 GtkTreeIter iter; | |
161 gint index; | |
162 | |
163 if (!gtk_tree_selection_get_selected(selection, &model, &iter)) | |
164 return; | |
165 | |
166 gtk_tree_model_get(model, &iter, CATEGORY_VIEW_COL_ID, &index, -1); | |
167 gtk_notebook_set_current_page(notebook, index); | |
168 } | |
169 | |
170 void | |
171 prefswin_set_category(gint index) | |
172 { | |
173 GladeXML *xml; | |
174 GtkWidget *notebook; | |
175 | |
176 g_return_if_fail(index >= 0 && index < n_categories); | |
177 | |
178 xml = prefswin_get_xml(); | |
179 notebook = glade_xml_get_widget(xml, "category_view"); | |
180 gtk_notebook_set_current_page(GTK_NOTEBOOK(notebook), index); | |
181 } | |
182 | |
183 | |
184 static void | |
185 input_plugin_open_prefs(GtkTreeView * treeview, | |
186 gpointer data) | |
187 { | |
188 GtkTreeSelection *selection; | |
189 GtkTreeModel *model; | |
190 GtkTreeIter iter; | |
191 gint id; | |
192 | |
193 selection = gtk_tree_view_get_selection(treeview); | |
194 if (!gtk_tree_selection_get_selected(selection, &model, &iter)) | |
195 return; | |
196 | |
197 gtk_tree_model_get(model, &iter, PLUGIN_VIEW_COL_ID, &id, -1); | |
198 input_configure(id); | |
199 } | |
200 | |
201 static void | |
202 input_plugin_open_info(GtkTreeView * treeview, | |
203 gpointer data) | |
204 { | |
205 GtkTreeSelection *selection; | |
206 GtkTreeModel *model; | |
207 GtkTreeIter iter; | |
208 gint id; | |
209 | |
210 selection = gtk_tree_view_get_selection(treeview); | |
211 if (!gtk_tree_selection_get_selected(selection, &model, &iter)) | |
212 return; | |
213 | |
214 gtk_tree_model_get(model, &iter, PLUGIN_VIEW_COL_ID, &id, -1); | |
215 input_about(id); | |
216 } | |
217 | |
218 static void | |
219 output_plugin_open_prefs(GtkComboBox * cbox, | |
220 gpointer data) | |
221 { | |
222 output_configure(gtk_combo_box_get_active(cbox)); | |
223 } | |
224 | |
225 static void | |
226 output_plugin_open_info(GtkComboBox * cbox, | |
227 gpointer data) | |
228 { | |
229 output_about(gtk_combo_box_get_active(cbox)); | |
230 } | |
231 | |
232 static void | |
233 general_plugin_open_prefs(GtkTreeView * treeview, | |
234 gpointer data) | |
235 { | |
236 GtkTreeSelection *selection; | |
237 GtkTreeModel *model; | |
238 GtkTreeIter iter; | |
239 gint id; | |
240 | |
241 selection = gtk_tree_view_get_selection(treeview); | |
242 if (!gtk_tree_selection_get_selected(selection, &model, &iter)) | |
243 return; | |
244 | |
245 gtk_tree_model_get(model, &iter, PLUGIN_VIEW_COL_ID, &id, -1); | |
246 general_configure(id); | |
247 } | |
248 | |
249 static void | |
250 general_plugin_open_info(GtkTreeView * treeview, | |
251 gpointer data) | |
252 { | |
253 GtkTreeSelection *selection; | |
254 GtkTreeModel *model; | |
255 GtkTreeIter iter; | |
256 gint id; | |
257 | |
258 selection = gtk_tree_view_get_selection(treeview); | |
259 if (!gtk_tree_selection_get_selected(selection, &model, &iter)) | |
260 return; | |
261 | |
262 gtk_tree_model_get(model, &iter, PLUGIN_VIEW_COL_ID, &id, -1); | |
263 general_about(id); | |
264 } | |
265 | |
266 static void | |
267 input_plugin_toggle(GtkCellRendererToggle * cell, | |
268 const gchar * path_str, | |
269 gpointer data) | |
270 { | |
271 GtkTreeModel *model = GTK_TREE_MODEL(data); | |
272 GtkTreeIter iter; | |
273 GtkTreePath *path = gtk_tree_path_new_from_string(path_str); | |
274 gboolean fixed; | |
275 gint pluginnr; | |
276 gchar *filename, *basename; | |
277 /*GList *diplist, *tmplist; */ | |
278 | |
279 /* get toggled iter */ | |
280 gtk_tree_model_get_iter(model, &iter, path); | |
281 gtk_tree_model_get(model, &iter, | |
282 PLUGIN_VIEW_COL_ACTIVE, &fixed, | |
283 PLUGIN_VIEW_COL_ID, &pluginnr, | |
284 PLUGIN_VIEW_COL_FILENAME, &filename, | |
285 -1); | |
286 | |
287 basename = g_path_get_basename(filename); | |
288 g_free(filename); | |
289 | |
290 /* do something with the value */ | |
291 fixed ^= 1; | |
292 | |
293 g_hash_table_replace(plugin_matrix, basename, GINT_TO_POINTER(fixed)); | |
294 /* g_hash_table_foreach(pluginmatrix, (GHFunc) disp_matrix, NULL); */ | |
295 | |
296 /* set new value */ | |
297 gtk_list_store_set(GTK_LIST_STORE(model), &iter, | |
298 PLUGIN_VIEW_COL_ACTIVE, fixed, -1); | |
299 | |
300 /* clean up */ | |
301 gtk_tree_path_free(path); | |
302 } | |
303 | |
304 | |
305 static void | |
306 vis_plugin_toggle(GtkCellRendererToggle * cell, | |
307 const gchar * path_str, | |
308 gpointer data) | |
309 { | |
310 GtkTreeModel *model = GTK_TREE_MODEL(data); | |
311 GtkTreeIter iter; | |
312 GtkTreePath *path = gtk_tree_path_new_from_string(path_str); | |
313 gboolean fixed; | |
314 gint pluginnr; | |
315 | |
316 /* get toggled iter */ | |
317 gtk_tree_model_get_iter(model, &iter, path); | |
318 gtk_tree_model_get(model, &iter, | |
319 PLUGIN_VIEW_COL_ACTIVE, &fixed, | |
320 PLUGIN_VIEW_COL_ID, &pluginnr, -1); | |
321 | |
322 /* do something with the value */ | |
323 fixed ^= 1; | |
324 | |
325 enable_vis_plugin(pluginnr, fixed); | |
326 | |
327 /* set new value */ | |
328 gtk_list_store_set(GTK_LIST_STORE(model), &iter, | |
329 PLUGIN_VIEW_COL_ACTIVE, fixed, -1); | |
330 | |
331 /* clean up */ | |
332 gtk_tree_path_free(path); | |
333 } | |
334 | |
335 static void | |
336 effect_plugin_toggle(GtkCellRendererToggle * cell, | |
337 const gchar * path_str, | |
338 gpointer data) | |
339 { | |
340 GtkTreeModel *model = GTK_TREE_MODEL(data); | |
341 GtkTreeIter iter; | |
342 GtkTreePath *path = gtk_tree_path_new_from_string(path_str); | |
343 gboolean fixed; | |
344 gint pluginnr; | |
345 | |
346 /* get toggled iter */ | |
347 gtk_tree_model_get_iter(model, &iter, path); | |
348 gtk_tree_model_get(model, &iter, | |
349 PLUGIN_VIEW_COL_ACTIVE, &fixed, | |
350 PLUGIN_VIEW_COL_ID, &pluginnr, -1); | |
351 | |
352 /* do something with the value */ | |
353 fixed ^= 1; | |
354 | |
355 enable_effect_plugin(pluginnr, fixed); | |
356 | |
357 /* set new value */ | |
358 gtk_list_store_set(GTK_LIST_STORE(model), &iter, | |
359 PLUGIN_VIEW_COL_ACTIVE, fixed, -1); | |
360 | |
361 /* clean up */ | |
362 gtk_tree_path_free(path); | |
363 } | |
364 static void | |
365 general_plugin_toggle(GtkCellRendererToggle * cell, | |
366 const gchar * path_str, | |
367 gpointer data) | |
368 { | |
369 GtkTreeModel *model = GTK_TREE_MODEL(data); | |
370 GtkTreeIter iter; | |
371 GtkTreePath *path = gtk_tree_path_new_from_string(path_str); | |
372 gboolean fixed; | |
373 gint pluginnr; | |
374 | |
375 /* get toggled iter */ | |
376 gtk_tree_model_get_iter(model, &iter, path); | |
377 gtk_tree_model_get(model, &iter, | |
378 PLUGIN_VIEW_COL_ACTIVE, &fixed, | |
379 PLUGIN_VIEW_COL_ID, &pluginnr, -1); | |
380 | |
381 /* do something with the value */ | |
382 fixed ^= 1; | |
383 | |
384 enable_general_plugin(pluginnr, fixed); | |
385 | |
386 /* set new value */ | |
387 gtk_list_store_set(GTK_LIST_STORE(model), &iter, | |
388 PLUGIN_VIEW_COL_ACTIVE, fixed, -1); | |
389 | |
390 /* clean up */ | |
391 gtk_tree_path_free(path); | |
392 } | |
393 | |
394 static void | |
395 on_output_plugin_cbox_changed(GtkComboBox * combobox, | |
396 gpointer data) | |
397 { | |
398 gint selected; | |
399 selected = gtk_combo_box_get_active(combobox); | |
400 | |
401 set_current_output_plugin(selected); | |
402 } | |
403 | |
404 static void | |
405 on_output_plugin_cbox_realize(GtkComboBox * cbox, | |
406 gpointer data) | |
407 { | |
408 GList *olist = get_output_list(); | |
409 OutputPlugin *op, *cp = get_current_output_plugin(); | |
410 gint i = 0, selected = 0; | |
411 | |
412 if (!olist) { | |
413 gtk_widget_set_sensitive(GTK_WIDGET(cbox), FALSE); | |
414 return; | |
415 } | |
416 | |
417 for (i = 0; olist; i++, olist = g_list_next(olist)) { | |
418 op = OUTPUT_PLUGIN(olist->data); | |
419 | |
420 if (olist->data == cp) | |
421 selected = i; | |
422 | |
423 gtk_combo_box_append_text(cbox, op->description); | |
424 } | |
425 | |
426 gtk_combo_box_set_active(cbox, selected); | |
427 g_signal_connect(cbox, "changed", | |
428 G_CALLBACK(on_output_plugin_cbox_changed), NULL); | |
429 } | |
430 | |
431 | |
432 static void | |
433 on_input_plugin_view_realize(GtkTreeView * treeview, | |
434 gpointer data) | |
435 { | |
436 GtkListStore *store; | |
437 GtkTreeIter iter; | |
438 | |
439 GtkCellRenderer *renderer; | |
440 GtkTreeViewColumn *column; | |
441 | |
442 GList *ilist; | |
443 gchar *description[2]; | |
444 InputPlugin *ip; | |
445 gint id = 0; | |
446 | |
447 gboolean enabled; | |
448 | |
449 store = gtk_list_store_new(PLUGIN_VIEW_N_COLS, | |
450 G_TYPE_BOOLEAN, G_TYPE_STRING, | |
451 G_TYPE_STRING, G_TYPE_INT); | |
452 | |
453 column = gtk_tree_view_column_new(); | |
454 gtk_tree_view_column_set_title(column, _("Enabled")); | |
455 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_FIXED); | |
456 gtk_tree_view_column_set_spacing(column, 4); | |
457 gtk_tree_view_column_set_resizable(column, FALSE); | |
458 gtk_tree_view_column_set_fixed_width(column, 50); | |
459 | |
460 renderer = gtk_cell_renderer_toggle_new(); | |
461 g_signal_connect(renderer, "toggled", | |
462 G_CALLBACK(input_plugin_toggle), store); | |
463 gtk_tree_view_column_pack_start(column, renderer, TRUE); | |
464 gtk_tree_view_column_set_attributes(column, renderer, "active", | |
465 PLUGIN_VIEW_COL_ACTIVE, NULL); | |
466 | |
467 gtk_tree_view_append_column(treeview, column); | |
468 | |
469 column = gtk_tree_view_column_new(); | |
470 gtk_tree_view_column_set_title(column, _("Description")); | |
471 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE); | |
472 gtk_tree_view_column_set_spacing(column, 4); | |
473 gtk_tree_view_column_set_resizable(column, TRUE); | |
474 | |
475 | |
476 renderer = gtk_cell_renderer_text_new(); | |
477 gtk_tree_view_column_pack_start(column, renderer, FALSE); | |
478 gtk_tree_view_column_set_attributes(column, renderer, | |
479 "text", PLUGIN_VIEW_COL_DESC, NULL); | |
480 gtk_tree_view_append_column(treeview, column); | |
481 | |
482 column = gtk_tree_view_column_new(); | |
483 | |
484 gtk_tree_view_column_set_title(column, _("Filename")); | |
485 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE); | |
486 gtk_tree_view_column_set_spacing(column, 4); | |
487 gtk_tree_view_column_set_resizable(column, TRUE); | |
488 | |
489 renderer = gtk_cell_renderer_text_new(); | |
490 gtk_tree_view_column_pack_start(column, renderer, TRUE); | |
491 gtk_tree_view_column_set_attributes(column, renderer, "text", | |
492 PLUGIN_VIEW_COL_FILENAME, NULL); | |
493 | |
494 gtk_tree_view_append_column(treeview, column); | |
495 | |
496 for (ilist = get_input_list(); ilist; ilist = g_list_next(ilist)) { | |
497 ip = INPUT_PLUGIN(ilist->data); | |
498 | |
499 description[0] = g_strdup(ip->description); | |
500 description[1] = g_strdup(ip->filename); | |
501 | |
502 enabled = input_is_enabled(description[1]); | |
503 | |
504 gtk_list_store_append(store, &iter); | |
505 gtk_list_store_set(store, &iter, | |
506 PLUGIN_VIEW_COL_ACTIVE, enabled, | |
507 PLUGIN_VIEW_COL_DESC, description[0], | |
508 PLUGIN_VIEW_COL_FILENAME, description[1], | |
509 PLUGIN_VIEW_COL_ID, id++, -1); | |
510 | |
511 g_free(description[1]); | |
512 g_free(description[0]); | |
513 } | |
514 | |
515 gtk_tree_view_set_model(treeview, GTK_TREE_MODEL(store)); | |
516 } | |
517 | |
518 | |
519 static void | |
520 on_general_plugin_view_realize(GtkTreeView * treeview, | |
521 gpointer data) | |
522 { | |
523 GtkListStore *store; | |
524 GtkTreeIter iter; | |
525 | |
526 GtkCellRenderer *renderer; | |
527 GtkTreeViewColumn *column; | |
528 | |
529 GList *ilist /*, *diplist */ ; | |
530 gchar *description[2]; | |
531 GeneralPlugin *gp; | |
532 gint id = 0; | |
533 | |
534 gboolean enabled; | |
535 | |
536 store = gtk_list_store_new(PLUGIN_VIEW_N_COLS, | |
537 G_TYPE_BOOLEAN, G_TYPE_STRING, | |
538 G_TYPE_STRING, G_TYPE_INT); | |
539 | |
540 column = gtk_tree_view_column_new(); | |
541 gtk_tree_view_column_set_title(column, _("Enabled")); | |
542 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_FIXED); | |
543 gtk_tree_view_column_set_spacing(column, 4); | |
544 gtk_tree_view_column_set_resizable(column, FALSE); | |
545 gtk_tree_view_column_set_fixed_width(column, 50); | |
546 | |
547 renderer = gtk_cell_renderer_toggle_new(); | |
548 g_signal_connect(renderer, "toggled", | |
549 G_CALLBACK(general_plugin_toggle), store); | |
550 gtk_tree_view_column_pack_start(column, renderer, TRUE); | |
551 gtk_tree_view_column_set_attributes(column, renderer, "active", | |
552 PLUGIN_VIEW_COL_ACTIVE, NULL); | |
553 | |
554 gtk_tree_view_append_column(treeview, column); | |
555 | |
556 column = gtk_tree_view_column_new(); | |
557 gtk_tree_view_column_set_title(column, _("Description")); | |
558 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE); | |
559 gtk_tree_view_column_set_spacing(column, 4); | |
560 gtk_tree_view_column_set_resizable(column, TRUE); | |
561 | |
562 | |
563 renderer = gtk_cell_renderer_text_new(); | |
564 gtk_tree_view_column_pack_start(column, renderer, FALSE); | |
565 gtk_tree_view_column_set_attributes(column, renderer, | |
566 "text", PLUGIN_VIEW_COL_DESC, NULL); | |
567 | |
568 gtk_tree_view_append_column(treeview, column); | |
569 | |
570 | |
571 column = gtk_tree_view_column_new(); | |
572 gtk_tree_view_column_set_title(column, _("Filename")); | |
573 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE); | |
574 gtk_tree_view_column_set_spacing(column, 4); | |
575 gtk_tree_view_column_set_resizable(column, TRUE); | |
576 | |
577 renderer = gtk_cell_renderer_text_new(); | |
578 gtk_tree_view_column_pack_start(column, renderer, TRUE); | |
579 gtk_tree_view_column_set_attributes(column, renderer, "text", | |
580 PLUGIN_VIEW_COL_FILENAME, NULL); | |
581 | |
582 gtk_tree_view_append_column(treeview, column); | |
583 | |
584 for (ilist = get_general_list(); ilist; ilist = g_list_next(ilist)) { | |
585 gp = GENERAL_PLUGIN(ilist->data); | |
586 | |
587 description[0] = g_strdup(gp->description); | |
588 description[1] = g_strdup(gp->filename); | |
589 | |
590 enabled = general_enabled(id); | |
591 | |
592 gtk_list_store_append(store, &iter); | |
593 gtk_list_store_set(store, &iter, | |
594 PLUGIN_VIEW_COL_ACTIVE, enabled, | |
595 PLUGIN_VIEW_COL_DESC, description[0], | |
596 PLUGIN_VIEW_COL_FILENAME, description[1], | |
597 PLUGIN_VIEW_COL_ID, id++, -1); | |
598 | |
599 g_free(description[1]); | |
600 g_free(description[0]); | |
601 } | |
602 | |
603 gtk_tree_view_set_model(treeview, GTK_TREE_MODEL(store)); | |
604 } | |
605 | |
606 | |
607 static void | |
608 on_vis_plugin_view_realize(GtkTreeView * treeview, | |
609 gpointer data) | |
610 { | |
611 GtkListStore *store; | |
612 GtkTreeIter iter; | |
613 | |
614 GtkCellRenderer *renderer; | |
615 GtkTreeViewColumn *column; | |
616 | |
617 GList *vlist; | |
618 gchar *description[2]; | |
619 VisPlugin *vp; | |
620 gint id = 0; | |
621 | |
622 gboolean enabled; | |
623 | |
624 | |
625 store = gtk_list_store_new(PLUGIN_VIEW_N_COLS, | |
626 G_TYPE_BOOLEAN, G_TYPE_STRING, | |
627 G_TYPE_STRING, G_TYPE_INT); | |
628 | |
629 column = gtk_tree_view_column_new(); | |
630 gtk_tree_view_column_set_title(column, _("Enabled")); | |
631 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_FIXED); | |
632 gtk_tree_view_column_set_spacing(column, 4); | |
633 gtk_tree_view_column_set_resizable(column, FALSE); | |
634 gtk_tree_view_column_set_fixed_width(column, 50); | |
635 | |
636 renderer = gtk_cell_renderer_toggle_new(); | |
637 g_signal_connect(renderer, "toggled", | |
638 G_CALLBACK(vis_plugin_toggle), store); | |
639 gtk_tree_view_column_pack_start(column, renderer, TRUE); | |
640 gtk_tree_view_column_set_attributes(column, renderer, "active", | |
641 PLUGIN_VIEW_COL_ACTIVE, NULL); | |
642 | |
643 gtk_tree_view_append_column(treeview, column); | |
644 | |
645 column = gtk_tree_view_column_new(); | |
646 gtk_tree_view_column_set_title(column, _("Description")); | |
647 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE); | |
648 gtk_tree_view_column_set_spacing(column, 4); | |
649 gtk_tree_view_column_set_resizable(column, TRUE); | |
650 | |
651 | |
652 renderer = gtk_cell_renderer_text_new(); | |
653 gtk_tree_view_column_pack_start(column, renderer, FALSE); | |
654 gtk_tree_view_column_set_attributes(column, renderer, | |
655 "text", PLUGIN_VIEW_COL_DESC, NULL); | |
656 | |
657 gtk_tree_view_append_column(treeview, column); | |
658 | |
659 | |
660 column = gtk_tree_view_column_new(); | |
661 gtk_tree_view_column_set_title(column, _("Filename")); | |
662 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE); | |
663 gtk_tree_view_column_set_spacing(column, 4); | |
664 gtk_tree_view_column_set_resizable(column, TRUE); | |
665 | |
666 renderer = gtk_cell_renderer_text_new(); | |
667 gtk_tree_view_column_pack_start(column, renderer, TRUE); | |
668 gtk_tree_view_column_set_attributes(column, renderer, "text", | |
669 PLUGIN_VIEW_COL_FILENAME, NULL); | |
670 | |
671 gtk_tree_view_append_column(treeview, column); | |
672 | |
673 for (vlist = get_vis_list(); vlist; vlist = g_list_next(vlist)) { | |
674 vp = VIS_PLUGIN(vlist->data); | |
675 | |
676 description[0] = g_strdup(vp->description); | |
677 description[1] = g_strdup(vp->filename); | |
678 | |
679 enabled = vis_enabled(id); | |
680 | |
681 gtk_list_store_append(store, &iter); | |
682 gtk_list_store_set(store, &iter, | |
683 PLUGIN_VIEW_COL_ACTIVE, enabled, | |
684 PLUGIN_VIEW_COL_DESC, description[0], | |
685 PLUGIN_VIEW_COL_FILENAME, description[1], | |
686 PLUGIN_VIEW_COL_ID, id++, -1); | |
687 | |
688 g_free(description[1]); | |
689 g_free(description[0]); | |
690 } | |
691 | |
692 gtk_tree_view_set_model(treeview, GTK_TREE_MODEL(store)); | |
693 } | |
694 | |
695 static void | |
696 editable_insert_text(GtkEditable * editable, | |
697 const gchar * text, | |
698 gint * pos) | |
699 { | |
700 gtk_editable_insert_text(editable, text, strlen(text), pos); | |
701 } | |
702 | |
703 | |
704 static void | |
705 on_effect_plugin_view_realize(GtkTreeView * treeview, | |
706 gpointer data) | |
707 { | |
708 GtkListStore *store; | |
709 GtkTreeIter iter; | |
710 | |
711 GtkCellRenderer *renderer; | |
712 GtkTreeViewColumn *column; | |
713 | |
714 GList *elist; | |
715 gchar *description[2]; | |
716 gint id = 0; | |
717 | |
718 gboolean enabled; | |
719 | |
720 | |
721 store = gtk_list_store_new(PLUGIN_VIEW_N_COLS, | |
722 G_TYPE_BOOLEAN, G_TYPE_STRING, | |
723 G_TYPE_STRING, G_TYPE_INT); | |
724 | |
725 column = gtk_tree_view_column_new(); | |
726 gtk_tree_view_column_set_title(column, _("Enabled")); | |
727 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_FIXED); | |
728 gtk_tree_view_column_set_spacing(column, 4); | |
729 gtk_tree_view_column_set_resizable(column, FALSE); | |
730 gtk_tree_view_column_set_fixed_width(column, 50); | |
731 | |
732 renderer = gtk_cell_renderer_toggle_new(); | |
733 g_signal_connect(renderer, "toggled", | |
734 G_CALLBACK(effect_plugin_toggle), store); | |
735 gtk_tree_view_column_pack_start(column, renderer, TRUE); | |
736 gtk_tree_view_column_set_attributes(column, renderer, "active", | |
737 PLUGIN_VIEW_COL_ACTIVE, NULL); | |
738 | |
739 gtk_tree_view_append_column(treeview, column); | |
740 | |
741 column = gtk_tree_view_column_new(); | |
742 gtk_tree_view_column_set_title(column, _("Description")); | |
743 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE); | |
744 gtk_tree_view_column_set_spacing(column, 4); | |
745 gtk_tree_view_column_set_resizable(column, TRUE); | |
746 | |
747 | |
748 renderer = gtk_cell_renderer_text_new(); | |
749 gtk_tree_view_column_pack_start(column, renderer, FALSE); | |
750 gtk_tree_view_column_set_attributes(column, renderer, | |
751 "text", PLUGIN_VIEW_COL_DESC, NULL); | |
752 | |
753 gtk_tree_view_append_column(treeview, column); | |
754 | |
755 | |
756 column = gtk_tree_view_column_new(); | |
757 gtk_tree_view_column_set_title(column, _("Filename")); | |
758 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE); | |
759 gtk_tree_view_column_set_spacing(column, 4); | |
760 gtk_tree_view_column_set_resizable(column, TRUE); | |
761 | |
762 renderer = gtk_cell_renderer_text_new(); | |
763 gtk_tree_view_column_pack_start(column, renderer, TRUE); | |
764 gtk_tree_view_column_set_attributes(column, renderer, "text", | |
765 PLUGIN_VIEW_COL_FILENAME, NULL); | |
766 | |
767 gtk_tree_view_append_column(treeview, column); | |
768 | |
769 for (elist = get_effect_list(); elist; elist = g_list_next(elist)) { | |
770 EffectPlugin *ep = EFFECT_PLUGIN(elist->data); | |
771 | |
772 description[0] = g_strdup(ep->description); | |
773 description[1] = g_strdup(ep->filename); | |
774 | |
775 enabled = effect_enabled(id); | |
776 | |
777 gtk_list_store_append(store, &iter); | |
778 gtk_list_store_set(store, &iter, | |
779 PLUGIN_VIEW_COL_ACTIVE, enabled, | |
780 PLUGIN_VIEW_COL_DESC, description[0], | |
781 PLUGIN_VIEW_COL_FILENAME, description[1], | |
782 PLUGIN_VIEW_COL_ID, id++, -1); | |
783 | |
784 g_free(description[1]); | |
785 g_free(description[0]); | |
786 } | |
787 | |
788 gtk_tree_view_set_model(treeview, GTK_TREE_MODEL(store)); | |
789 } | |
790 | |
791 static void | |
792 titlestring_tag_menu_callback(GtkMenuItem * menuitem, | |
793 gpointer data) | |
794 { | |
795 const gchar *separator = " - "; | |
796 GladeXML *xml; | |
797 GtkWidget *entry; | |
798 gint item = GPOINTER_TO_INT(data); | |
799 gint pos; | |
800 | |
801 xml = prefswin_get_xml(); | |
802 entry = glade_xml_get_widget(xml, "titlestring_entry"); | |
803 | |
804 pos = gtk_editable_get_position(GTK_EDITABLE(entry)); | |
805 | |
806 /* insert separator as needed */ | |
807 if (g_utf8_strlen(gtk_entry_get_text(GTK_ENTRY(entry)), -1) > 0) | |
808 editable_insert_text(GTK_EDITABLE(entry), separator, &pos); | |
809 | |
810 editable_insert_text(GTK_EDITABLE(entry), _(title_field_tags[item].tag), | |
811 &pos); | |
812 | |
813 gtk_editable_set_position(GTK_EDITABLE(entry), pos); | |
814 } | |
815 | |
816 static void | |
817 on_titlestring_help_button_clicked(GtkButton * button, | |
818 gpointer data) | |
819 { | |
820 | |
821 GtkMenu *menu; | |
822 MenuPos *pos = g_new0(MenuPos, 1); | |
823 GdkWindow *parent; | |
824 | |
825 gint x_ro, y_ro; | |
826 gint x_widget, y_widget; | |
827 gint x_size, y_size; | |
828 | |
829 g_return_if_fail (button != NULL); | |
830 g_return_if_fail (GTK_IS_MENU (data)); | |
831 | |
832 parent = gtk_widget_get_parent_window(GTK_WIDGET(button)); | |
833 | |
834 gdk_drawable_get_size(parent, &x_size, &y_size); | |
835 gdk_window_get_root_origin(GTK_WIDGET(button)->window, &x_ro, &y_ro); | |
836 gdk_window_get_position(GTK_WIDGET(button)->window, &x_widget, &y_widget); | |
837 | |
838 pos->x = x_size + x_ro; | |
839 pos->y = y_size + y_ro - 100; | |
840 | |
841 menu = GTK_MENU(data); | |
842 gtk_menu_popup (menu, NULL, NULL, util_menu_position, pos, | |
843 0, GDK_CURRENT_TIME); | |
844 } | |
845 | |
846 | |
847 static void | |
848 on_titlestring_entry_realize(GtkWidget * entry, | |
849 gpointer data) | |
850 { | |
851 gtk_entry_set_text(GTK_ENTRY(entry), cfg.gentitle_format); | |
852 } | |
853 | |
854 static void | |
855 on_titlestring_entry_changed(GtkWidget * entry, | |
856 gpointer data) | |
857 { | |
858 g_free(cfg.gentitle_format); | |
859 cfg.gentitle_format = g_strdup(gtk_entry_get_text(GTK_ENTRY(entry))); | |
860 } | |
861 | |
862 static void | |
863 on_titlestring_cbox_realize(GtkWidget * cbox, | |
864 gpointer data) | |
865 { | |
866 gtk_combo_box_set_active(GTK_COMBO_BOX(cbox), cfg.titlestring_preset); | |
867 gtk_widget_set_sensitive(GTK_WIDGET(data), | |
625
0a73d1faeb4e
[svn] GCC 4.1 warning fixes by Diego 'Flameeyes' Petteno from Gentoo.
chainsaw
parents:
383
diff
changeset
|
868 (cfg.titlestring_preset == (gint)n_titlestring_presets)); |
0 | 869 } |
870 | |
871 static void | |
872 on_titlestring_cbox_changed(GtkWidget * cbox, | |
873 gpointer data) | |
874 { | |
875 gint position = gtk_combo_box_get_active(GTK_COMBO_BOX(cbox)); | |
876 | |
877 cfg.titlestring_preset = position; | |
946
8cfe13fcd0c7
[svn] - Forgot a few things regarding titlestrings!
nhjm449
parents:
893
diff
changeset
|
878 gtk_widget_set_sensitive(GTK_WIDGET(data), (position == 6)); |
0 | 879 } |
880 | |
881 static void | |
882 on_mainwin_font_button_font_set(GtkFontButton * button, | |
883 gpointer data) | |
884 { | |
885 g_free(cfg.mainwin_font); | |
886 cfg.mainwin_font = g_strdup(gtk_font_button_get_font_name(button)); | |
887 | |
124
428d3865de3c
[svn] More bitmap-font related stuff, working on a scrolling implementation too. (You can now enable or disable bitmap font support in Preferences.)
nenolod
parents:
0
diff
changeset
|
888 textbox_set_xfont(mainwin_info, cfg.mainwin_use_xfont, cfg.mainwin_font); |
428d3865de3c
[svn] More bitmap-font related stuff, working on a scrolling implementation too. (You can now enable or disable bitmap font support in Preferences.)
nenolod
parents:
0
diff
changeset
|
889 mainwin_set_info_text(); |
428d3865de3c
[svn] More bitmap-font related stuff, working on a scrolling implementation too. (You can now enable or disable bitmap font support in Preferences.)
nenolod
parents:
0
diff
changeset
|
890 draw_main_window(TRUE); |
428d3865de3c
[svn] More bitmap-font related stuff, working on a scrolling implementation too. (You can now enable or disable bitmap font support in Preferences.)
nenolod
parents:
0
diff
changeset
|
891 } |
428d3865de3c
[svn] More bitmap-font related stuff, working on a scrolling implementation too. (You can now enable or disable bitmap font support in Preferences.)
nenolod
parents:
0
diff
changeset
|
892 |
428d3865de3c
[svn] More bitmap-font related stuff, working on a scrolling implementation too. (You can now enable or disable bitmap font support in Preferences.)
nenolod
parents:
0
diff
changeset
|
893 static void |
428d3865de3c
[svn] More bitmap-font related stuff, working on a scrolling implementation too. (You can now enable or disable bitmap font support in Preferences.)
nenolod
parents:
0
diff
changeset
|
894 on_use_bitmap_fonts_realize(GtkToggleButton * button, |
428d3865de3c
[svn] More bitmap-font related stuff, working on a scrolling implementation too. (You can now enable or disable bitmap font support in Preferences.)
nenolod
parents:
0
diff
changeset
|
895 gpointer data) |
428d3865de3c
[svn] More bitmap-font related stuff, working on a scrolling implementation too. (You can now enable or disable bitmap font support in Preferences.)
nenolod
parents:
0
diff
changeset
|
896 { |
126
2d3d921a44e2
[svn] Fix realize function for the bitmap fonts option.
nenolod
parents:
124
diff
changeset
|
897 gtk_toggle_button_set_active(button, |
2d3d921a44e2
[svn] Fix realize function for the bitmap fonts option.
nenolod
parents:
124
diff
changeset
|
898 cfg.mainwin_use_xfont != FALSE ? FALSE : TRUE); |
124
428d3865de3c
[svn] More bitmap-font related stuff, working on a scrolling implementation too. (You can now enable or disable bitmap font support in Preferences.)
nenolod
parents:
0
diff
changeset
|
899 } |
428d3865de3c
[svn] More bitmap-font related stuff, working on a scrolling implementation too. (You can now enable or disable bitmap font support in Preferences.)
nenolod
parents:
0
diff
changeset
|
900 |
428d3865de3c
[svn] More bitmap-font related stuff, working on a scrolling implementation too. (You can now enable or disable bitmap font support in Preferences.)
nenolod
parents:
0
diff
changeset
|
901 static void |
428d3865de3c
[svn] More bitmap-font related stuff, working on a scrolling implementation too. (You can now enable or disable bitmap font support in Preferences.)
nenolod
parents:
0
diff
changeset
|
902 on_use_bitmap_fonts_toggled(GtkToggleButton * button, |
428d3865de3c
[svn] More bitmap-font related stuff, working on a scrolling implementation too. (You can now enable or disable bitmap font support in Preferences.)
nenolod
parents:
0
diff
changeset
|
903 gpointer data) |
428d3865de3c
[svn] More bitmap-font related stuff, working on a scrolling implementation too. (You can now enable or disable bitmap font support in Preferences.)
nenolod
parents:
0
diff
changeset
|
904 { |
428d3865de3c
[svn] More bitmap-font related stuff, working on a scrolling implementation too. (You can now enable or disable bitmap font support in Preferences.)
nenolod
parents:
0
diff
changeset
|
905 gboolean useit = gtk_toggle_button_get_active(button); |
428d3865de3c
[svn] More bitmap-font related stuff, working on a scrolling implementation too. (You can now enable or disable bitmap font support in Preferences.)
nenolod
parents:
0
diff
changeset
|
906 cfg.mainwin_use_xfont = useit != FALSE ? FALSE : TRUE; |
428d3865de3c
[svn] More bitmap-font related stuff, working on a scrolling implementation too. (You can now enable or disable bitmap font support in Preferences.)
nenolod
parents:
0
diff
changeset
|
907 textbox_set_xfont(mainwin_info, cfg.mainwin_use_xfont, cfg.mainwin_font); |
1844
425214f1d86f
[svn] - Update shaded playlist font when toggling bitmap fonts.
nhjm449
parents:
1832
diff
changeset
|
908 playlistwin_set_sinfo_font(cfg.playlist_font); |
425214f1d86f
[svn] - Update shaded playlist font when toggling bitmap fonts.
nhjm449
parents:
1832
diff
changeset
|
909 |
0 | 910 mainwin_set_info_text(); |
911 draw_main_window(TRUE); | |
1846
cc910a778b5f
[svn] - Make sure to redraw shaded playlistwin when toggling bitmap fonts.
nhjm449
parents:
1844
diff
changeset
|
912 if (cfg.playlist_shaded) { |
2140
299651a8f107
[svn] - made playlistwin_update_list depend on passed Playlist* instead of blindly using playlist_get_active(); this solves many locking issues with multiple playlists, but SHOULD be reviewed in every place playlistwin_update_list is used; added a playlist_new_from_selected() call too
giacomo
parents:
2109
diff
changeset
|
913 playlistwin_update_list(playlist_get_active()); |
1846
cc910a778b5f
[svn] - Make sure to redraw shaded playlistwin when toggling bitmap fonts.
nhjm449
parents:
1844
diff
changeset
|
914 draw_playlist_window(TRUE); |
cc910a778b5f
[svn] - Make sure to redraw shaded playlistwin when toggling bitmap fonts.
nhjm449
parents:
1844
diff
changeset
|
915 } |
0 | 916 } |
917 | |
918 static void | |
919 on_mainwin_font_button_realize(GtkFontButton * button, | |
920 gpointer data) | |
921 { | |
922 gtk_font_button_set_font_name(button, cfg.mainwin_font); | |
923 } | |
924 | |
925 static void | |
926 on_playlist_font_button_font_set(GtkFontButton * button, | |
927 gpointer data) | |
928 { | |
929 g_free(cfg.playlist_font); | |
930 cfg.playlist_font = g_strdup(gtk_font_button_get_font_name(button)); | |
931 | |
932 playlist_list_set_font(cfg.playlist_font); | |
1775 | 933 playlistwin_set_sinfo_font(cfg.playlist_font); /* propagate font setting to playlistwin_sinfo */ |
2140
299651a8f107
[svn] - made playlistwin_update_list depend on passed Playlist* instead of blindly using playlist_get_active(); this solves many locking issues with multiple playlists, but SHOULD be reviewed in every place playlistwin_update_list is used; added a playlist_new_from_selected() call too
giacomo
parents:
2109
diff
changeset
|
934 playlistwin_update_list(playlist_get_active()); |
0 | 935 draw_playlist_window(TRUE); |
936 } | |
937 | |
938 static void | |
939 on_playlist_font_button_realize(GtkFontButton * button, | |
940 gpointer data) | |
941 { | |
942 gtk_font_button_set_font_name(button, cfg.playlist_font); | |
943 } | |
944 | |
945 static void | |
946 on_playlist_show_pl_numbers_realize(GtkToggleButton * button, | |
947 gpointer data) | |
948 { | |
949 gtk_toggle_button_set_active(button, cfg.show_numbers_in_pl); | |
950 } | |
951 | |
952 static void | |
953 on_playlist_show_pl_numbers_toggled(GtkToggleButton * button, | |
954 gpointer data) | |
955 { | |
956 cfg.show_numbers_in_pl = gtk_toggle_button_get_active(button); | |
2140
299651a8f107
[svn] - made playlistwin_update_list depend on passed Playlist* instead of blindly using playlist_get_active(); this solves many locking issues with multiple playlists, but SHOULD be reviewed in every place playlistwin_update_list is used; added a playlist_new_from_selected() call too
giacomo
parents:
2109
diff
changeset
|
957 playlistwin_update_list(playlist_get_active()); |
0 | 958 draw_playlist_window(TRUE); |
959 } | |
960 | |
961 static void | |
1081 | 962 on_playlist_transparent_realize(GtkToggleButton * button, |
963 gpointer data) | |
964 { | |
965 gtk_toggle_button_set_active(button, cfg.playlist_transparent); | |
966 } | |
967 | |
968 static void | |
969 on_playlist_transparent_toggled(GtkToggleButton * button, | |
970 gpointer data) | |
971 { | |
972 cfg.playlist_transparent = gtk_toggle_button_get_active(button); | |
2140
299651a8f107
[svn] - made playlistwin_update_list depend on passed Playlist* instead of blindly using playlist_get_active(); this solves many locking issues with multiple playlists, but SHOULD be reviewed in every place playlistwin_update_list is used; added a playlist_new_from_selected() call too
giacomo
parents:
2109
diff
changeset
|
973 playlistwin_update_list(playlist_get_active()); |
1081 | 974 draw_playlist_window(TRUE); |
975 } | |
976 | |
977 static void | |
1056
21628529c615
[svn] add the config option to enable/disable separator line in the playlist
yaz
parents:
963
diff
changeset
|
978 on_playlist_show_pl_separator_realize(GtkToggleButton * button, |
21628529c615
[svn] add the config option to enable/disable separator line in the playlist
yaz
parents:
963
diff
changeset
|
979 gpointer data) |
21628529c615
[svn] add the config option to enable/disable separator line in the playlist
yaz
parents:
963
diff
changeset
|
980 { |
21628529c615
[svn] add the config option to enable/disable separator line in the playlist
yaz
parents:
963
diff
changeset
|
981 gtk_toggle_button_set_active(button, cfg.show_separator_in_pl); |
21628529c615
[svn] add the config option to enable/disable separator line in the playlist
yaz
parents:
963
diff
changeset
|
982 } |
21628529c615
[svn] add the config option to enable/disable separator line in the playlist
yaz
parents:
963
diff
changeset
|
983 |
21628529c615
[svn] add the config option to enable/disable separator line in the playlist
yaz
parents:
963
diff
changeset
|
984 static void |
21628529c615
[svn] add the config option to enable/disable separator line in the playlist
yaz
parents:
963
diff
changeset
|
985 on_playlist_show_pl_separator_toggled(GtkToggleButton * button, |
21628529c615
[svn] add the config option to enable/disable separator line in the playlist
yaz
parents:
963
diff
changeset
|
986 gpointer data) |
21628529c615
[svn] add the config option to enable/disable separator line in the playlist
yaz
parents:
963
diff
changeset
|
987 { |
21628529c615
[svn] add the config option to enable/disable separator line in the playlist
yaz
parents:
963
diff
changeset
|
988 cfg.show_separator_in_pl = gtk_toggle_button_get_active(button); |
2140
299651a8f107
[svn] - made playlistwin_update_list depend on passed Playlist* instead of blindly using playlist_get_active(); this solves many locking issues with multiple playlists, but SHOULD be reviewed in every place playlistwin_update_list is used; added a playlist_new_from_selected() call too
giacomo
parents:
2109
diff
changeset
|
989 playlistwin_update_list(playlist_get_active()); |
1056
21628529c615
[svn] add the config option to enable/disable separator line in the playlist
yaz
parents:
963
diff
changeset
|
990 draw_playlist_window(TRUE); |
21628529c615
[svn] add the config option to enable/disable separator line in the playlist
yaz
parents:
963
diff
changeset
|
991 } |
21628529c615
[svn] add the config option to enable/disable separator line in the playlist
yaz
parents:
963
diff
changeset
|
992 |
1163
ff71f891265b
[svn] - Allow to do format detection on demand; instead of immediately on add
nenolod
parents:
1147
diff
changeset
|
993 /* format detection */ |
ff71f891265b
[svn] - Allow to do format detection on demand; instead of immediately on add
nenolod
parents:
1147
diff
changeset
|
994 static void |
ff71f891265b
[svn] - Allow to do format detection on demand; instead of immediately on add
nenolod
parents:
1147
diff
changeset
|
995 on_audio_format_det_cb_toggled(GtkToggleButton * button, |
ff71f891265b
[svn] - Allow to do format detection on demand; instead of immediately on add
nenolod
parents:
1147
diff
changeset
|
996 gpointer data) |
ff71f891265b
[svn] - Allow to do format detection on demand; instead of immediately on add
nenolod
parents:
1147
diff
changeset
|
997 { |
ff71f891265b
[svn] - Allow to do format detection on demand; instead of immediately on add
nenolod
parents:
1147
diff
changeset
|
998 cfg.playlist_detect = gtk_toggle_button_get_active(button); |
ff71f891265b
[svn] - Allow to do format detection on demand; instead of immediately on add
nenolod
parents:
1147
diff
changeset
|
999 } |
ff71f891265b
[svn] - Allow to do format detection on demand; instead of immediately on add
nenolod
parents:
1147
diff
changeset
|
1000 |
ff71f891265b
[svn] - Allow to do format detection on demand; instead of immediately on add
nenolod
parents:
1147
diff
changeset
|
1001 static void |
ff71f891265b
[svn] - Allow to do format detection on demand; instead of immediately on add
nenolod
parents:
1147
diff
changeset
|
1002 on_audio_format_det_cb_realize(GtkToggleButton * button, |
ff71f891265b
[svn] - Allow to do format detection on demand; instead of immediately on add
nenolod
parents:
1147
diff
changeset
|
1003 gpointer data) |
ff71f891265b
[svn] - Allow to do format detection on demand; instead of immediately on add
nenolod
parents:
1147
diff
changeset
|
1004 { |
ff71f891265b
[svn] - Allow to do format detection on demand; instead of immediately on add
nenolod
parents:
1147
diff
changeset
|
1005 gtk_toggle_button_set_active(button, cfg.playlist_detect); |
ff71f891265b
[svn] - Allow to do format detection on demand; instead of immediately on add
nenolod
parents:
1147
diff
changeset
|
1006 } |
ff71f891265b
[svn] - Allow to do format detection on demand; instead of immediately on add
nenolod
parents:
1147
diff
changeset
|
1007 |
2109
27e0fe4de57e
[svn] - preferences pane option for extension-based detection
nenolod
parents:
2105
diff
changeset
|
1008 static void |
27e0fe4de57e
[svn] - preferences pane option for extension-based detection
nenolod
parents:
2105
diff
changeset
|
1009 on_detect_by_extension_cb_toggled(GtkToggleButton * button, |
27e0fe4de57e
[svn] - preferences pane option for extension-based detection
nenolod
parents:
2105
diff
changeset
|
1010 gpointer data) |
27e0fe4de57e
[svn] - preferences pane option for extension-based detection
nenolod
parents:
2105
diff
changeset
|
1011 { |
27e0fe4de57e
[svn] - preferences pane option for extension-based detection
nenolod
parents:
2105
diff
changeset
|
1012 cfg.use_extension_probing = gtk_toggle_button_get_active(button); |
27e0fe4de57e
[svn] - preferences pane option for extension-based detection
nenolod
parents:
2105
diff
changeset
|
1013 } |
27e0fe4de57e
[svn] - preferences pane option for extension-based detection
nenolod
parents:
2105
diff
changeset
|
1014 |
27e0fe4de57e
[svn] - preferences pane option for extension-based detection
nenolod
parents:
2105
diff
changeset
|
1015 static void |
27e0fe4de57e
[svn] - preferences pane option for extension-based detection
nenolod
parents:
2105
diff
changeset
|
1016 on_detect_by_extension_cb_realize(GtkToggleButton * button, |
27e0fe4de57e
[svn] - preferences pane option for extension-based detection
nenolod
parents:
2105
diff
changeset
|
1017 gpointer data) |
27e0fe4de57e
[svn] - preferences pane option for extension-based detection
nenolod
parents:
2105
diff
changeset
|
1018 { |
27e0fe4de57e
[svn] - preferences pane option for extension-based detection
nenolod
parents:
2105
diff
changeset
|
1019 gtk_toggle_button_set_active(button, cfg.use_extension_probing); |
27e0fe4de57e
[svn] - preferences pane option for extension-based detection
nenolod
parents:
2105
diff
changeset
|
1020 } |
27e0fe4de57e
[svn] - preferences pane option for extension-based detection
nenolod
parents:
2105
diff
changeset
|
1021 |
1070 | 1022 /* proxy */ |
1023 static void | |
1024 on_proxy_use_realize(GtkToggleButton * button, | |
1025 gpointer data) | |
1026 { | |
1027 ConfigDb *db; | |
1028 gboolean ret; | |
1029 | |
1030 db = bmp_cfg_db_open(); | |
1073 | 1031 |
1032 if (bmp_cfg_db_get_bool(db, NULL, "use_proxy", &ret) != FALSE) | |
1033 gtk_toggle_button_set_active(button, ret); | |
1034 | |
1070 | 1035 bmp_cfg_db_close(db); |
1036 } | |
1037 | |
1038 static void | |
1039 on_proxy_use_toggled(GtkToggleButton * button, | |
1040 gpointer data) | |
1041 { | |
1042 ConfigDb *db; | |
1043 gboolean ret = gtk_toggle_button_get_active(button); | |
1044 | |
1045 db = bmp_cfg_db_open(); | |
1046 bmp_cfg_db_set_bool(db, NULL, "use_proxy", ret); | |
1047 bmp_cfg_db_close(db); | |
1048 } | |
1049 | |
1050 static void | |
1051 on_proxy_auth_realize(GtkToggleButton * button, | |
1052 gpointer data) | |
1053 { | |
1054 ConfigDb *db; | |
1055 gboolean ret; | |
1056 | |
1057 db = bmp_cfg_db_open(); | |
1073 | 1058 |
1059 if (bmp_cfg_db_get_bool(db, NULL, "proxy_use_auth", &ret) != FALSE) | |
1060 gtk_toggle_button_set_active(button, ret); | |
1061 | |
1070 | 1062 bmp_cfg_db_close(db); |
1063 } | |
1064 | |
1065 static void | |
1066 on_proxy_auth_toggled(GtkToggleButton * button, | |
1067 gpointer data) | |
1068 { | |
1069 ConfigDb *db; | |
1070 gboolean ret = gtk_toggle_button_get_active(button); | |
1071 | |
1072 db = bmp_cfg_db_open(); | |
1073 bmp_cfg_db_set_bool(db, NULL, "proxy_use_auth", ret); | |
1074 bmp_cfg_db_close(db); | |
1075 } | |
1076 | |
1077 static void | |
1078 on_proxy_host_realize(GtkEntry * entry, | |
1079 gpointer data) | |
1080 { | |
1081 ConfigDb *db; | |
1082 gchar *ret; | |
1083 | |
1084 db = bmp_cfg_db_open(); | |
1085 | |
1073 | 1086 if (bmp_cfg_db_get_string(db, NULL, "proxy_host", &ret) != FALSE) |
1070 | 1087 gtk_entry_set_text(entry, ret); |
1073 | 1088 |
1089 bmp_cfg_db_close(db); | |
1070 | 1090 } |
1091 | |
1092 static void | |
1093 on_proxy_host_changed(GtkEntry * entry, | |
1094 gpointer data) | |
1095 { | |
1096 ConfigDb *db; | |
1097 gchar *ret = g_strdup(gtk_entry_get_text(entry)); | |
1098 | |
1099 db = bmp_cfg_db_open(); | |
1100 bmp_cfg_db_set_string(db, NULL, "proxy_host", ret); | |
1101 bmp_cfg_db_close(db); | |
1102 | |
1103 g_free(ret); | |
1104 } | |
1105 | |
1106 static void | |
1107 on_proxy_port_realize(GtkEntry * entry, | |
1108 gpointer data) | |
1109 { | |
1110 ConfigDb *db; | |
1111 gchar *ret; | |
1112 | |
1113 db = bmp_cfg_db_open(); | |
1114 | |
1073 | 1115 if (bmp_cfg_db_get_string(db, NULL, "proxy_port", &ret) != FALSE) |
1070 | 1116 gtk_entry_set_text(entry, ret); |
1073 | 1117 |
1118 bmp_cfg_db_close(db); | |
1070 | 1119 } |
1120 | |
1121 static void | |
1122 on_proxy_port_changed(GtkEntry * entry, | |
1123 gpointer data) | |
1124 { | |
1125 ConfigDb *db; | |
1126 gchar *ret = g_strdup(gtk_entry_get_text(entry)); | |
1127 | |
1128 db = bmp_cfg_db_open(); | |
1129 bmp_cfg_db_set_string(db, NULL, "proxy_port", ret); | |
1130 bmp_cfg_db_close(db); | |
1131 | |
1132 g_free(ret); | |
1133 } | |
1134 | |
1135 static void | |
1136 on_proxy_user_realize(GtkEntry * entry, | |
1137 gpointer data) | |
1138 { | |
1139 ConfigDb *db; | |
1140 gchar *ret; | |
1141 | |
1142 db = bmp_cfg_db_open(); | |
1143 | |
1073 | 1144 if (bmp_cfg_db_get_string(db, NULL, "proxy_user", &ret) != FALSE) |
1070 | 1145 gtk_entry_set_text(entry, ret); |
1073 | 1146 |
1147 bmp_cfg_db_close(db); | |
1070 | 1148 } |
1149 | |
1150 static void | |
1151 on_proxy_user_changed(GtkEntry * entry, | |
1152 gpointer data) | |
1153 { | |
1154 ConfigDb *db; | |
1155 gchar *ret = g_strdup(gtk_entry_get_text(entry)); | |
1156 | |
1157 db = bmp_cfg_db_open(); | |
1158 bmp_cfg_db_set_string(db, NULL, "proxy_user", ret); | |
1159 bmp_cfg_db_close(db); | |
1160 | |
1161 g_free(ret); | |
1162 } | |
1163 | |
1164 static void | |
1165 on_proxy_pass_realize(GtkEntry * entry, | |
1166 gpointer data) | |
1167 { | |
1168 ConfigDb *db; | |
1169 gchar *ret; | |
1170 | |
1171 db = bmp_cfg_db_open(); | |
1172 | |
1073 | 1173 if (bmp_cfg_db_get_string(db, NULL, "proxy_pass", &ret) != FALSE) |
1070 | 1174 gtk_entry_set_text(entry, ret); |
1073 | 1175 |
1176 bmp_cfg_db_close(db); | |
1070 | 1177 } |
1178 | |
1179 static void | |
1180 on_proxy_pass_changed(GtkEntry * entry, | |
1181 gpointer data) | |
1182 { | |
1183 ConfigDb *db; | |
1184 gchar *ret = g_strdup(gtk_entry_get_text(entry)); | |
1185 | |
1186 db = bmp_cfg_db_open(); | |
1187 bmp_cfg_db_set_string(db, NULL, "proxy_pass", ret); | |
1188 bmp_cfg_db_close(db); | |
1189 | |
1190 g_free(ret); | |
1191 } | |
1192 | |
1056
21628529c615
[svn] add the config option to enable/disable separator line in the playlist
yaz
parents:
963
diff
changeset
|
1193 static void |
0 | 1194 input_plugin_enable_prefs(GtkTreeView * treeview, |
1195 GtkButton * button) | |
1196 { | |
1197 GtkTreeSelection *selection; | |
1198 GtkTreeModel *model; | |
1199 GtkTreeIter iter; | |
1200 | |
1201 GList *plist; | |
1202 gint id; | |
1203 | |
1204 selection = gtk_tree_view_get_selection(treeview); | |
1205 if (!gtk_tree_selection_get_selected(selection, &model, &iter)) | |
1206 return; | |
1207 | |
1208 gtk_tree_model_get(model, &iter, PLUGIN_VIEW_COL_ID, &id, -1); | |
1209 | |
1210 plist = get_input_list(); | |
1211 plist = g_list_nth(plist, id); | |
1212 | |
1213 gtk_widget_set_sensitive(GTK_WIDGET(button), | |
1214 INPUT_PLUGIN(plist->data)->configure != NULL); | |
1215 } | |
1216 | |
1217 static void | |
1218 input_plugin_enable_info(GtkTreeView * treeview, | |
1219 GtkButton * button) | |
1220 { | |
1221 GtkTreeSelection *selection; | |
1222 GtkTreeModel *model; | |
1223 GtkTreeIter iter; | |
1224 GList *plist; | |
1225 gint id; | |
1226 | |
1227 selection = gtk_tree_view_get_selection(treeview); | |
1228 if (!gtk_tree_selection_get_selected(selection, &model, &iter)) | |
1229 return; | |
1230 | |
1231 gtk_tree_model_get(model, &iter, PLUGIN_VIEW_COL_ID, &id, -1); | |
1232 | |
1233 plist = get_input_list(); | |
1234 plist = g_list_nth(plist, id); | |
1235 | |
1236 gtk_widget_set_sensitive(GTK_WIDGET(button), | |
1237 INPUT_PLUGIN(plist->data)->about != NULL); | |
1238 } | |
1239 | |
1240 | |
1241 static void | |
1242 output_plugin_enable_info(GtkComboBox * cbox, GtkButton * button) | |
1243 { | |
1244 GList *plist; | |
1245 | |
1246 gint id = gtk_combo_box_get_active(cbox); | |
1247 | |
1248 plist = get_output_list(); | |
1249 plist = g_list_nth(plist, id); | |
1250 | |
1251 gtk_widget_set_sensitive(GTK_WIDGET(button), | |
1252 OUTPUT_PLUGIN(plist->data)->about != NULL); | |
1253 } | |
1254 | |
1255 static void | |
1256 output_plugin_enable_prefs(GtkComboBox * cbox, GtkButton * button) | |
1257 { | |
1258 GList *plist; | |
1259 gint id = gtk_combo_box_get_active(cbox); | |
1260 | |
1261 plist = get_output_list(); | |
1262 plist = g_list_nth(plist, id); | |
1263 | |
1264 gtk_widget_set_sensitive(GTK_WIDGET(button), | |
1265 OUTPUT_PLUGIN(plist->data)->configure != NULL); | |
1266 } | |
1267 | |
1268 | |
1269 static void | |
1270 general_plugin_enable_info(GtkTreeView * treeview, | |
1271 GtkButton * button) | |
1272 { | |
1273 GtkTreeSelection *selection; | |
1274 GtkTreeModel *model; | |
1275 GtkTreeIter iter; | |
1276 GList *plist; | |
1277 gint id; | |
1278 | |
1279 selection = gtk_tree_view_get_selection(treeview); | |
1280 if (!gtk_tree_selection_get_selected(selection, &model, &iter)) | |
1281 return; | |
1282 | |
1283 gtk_tree_model_get(model, &iter, PLUGIN_VIEW_COL_ID, &id, -1); | |
1284 | |
1285 plist = get_general_list(); | |
1286 plist = g_list_nth(plist, id); | |
1287 | |
1288 gtk_widget_set_sensitive(GTK_WIDGET(button), | |
1289 GENERAL_PLUGIN(plist->data)->about != NULL); | |
1290 } | |
1291 | |
1292 static void | |
1293 general_plugin_enable_prefs(GtkTreeView * treeview, | |
1294 GtkButton * button) | |
1295 { | |
1296 GtkTreeSelection *selection; | |
1297 GtkTreeModel *model; | |
1298 GtkTreeIter iter; | |
1299 GList *plist; | |
1300 gint id; | |
1301 | |
1302 selection = gtk_tree_view_get_selection(treeview); | |
1303 if (!gtk_tree_selection_get_selected(selection, &model, &iter)) | |
1304 return; | |
1305 | |
1306 gtk_tree_model_get(model, &iter, PLUGIN_VIEW_COL_ID, &id, -1); | |
1307 | |
1308 plist = get_general_list(); | |
1309 plist = g_list_nth(plist, id); | |
1310 | |
1311 gtk_widget_set_sensitive(GTK_WIDGET(button), | |
1312 GENERAL_PLUGIN(plist->data)->configure != NULL); | |
1313 } | |
1314 | |
1315 | |
1316 | |
1317 static void | |
1318 vis_plugin_enable_prefs(GtkTreeView * treeview, | |
1319 GtkButton * button) | |
1320 { | |
1321 GtkTreeSelection *selection; | |
1322 GtkTreeModel *model; | |
1323 GtkTreeIter iter; | |
1324 GList *plist; | |
1325 gint id; | |
1326 | |
1327 selection = gtk_tree_view_get_selection(treeview); | |
1328 if (!gtk_tree_selection_get_selected(selection, &model, &iter)) | |
1329 return; | |
1330 | |
1331 gtk_tree_model_get(model, &iter, PLUGIN_VIEW_COL_ID, &id, -1); | |
1332 | |
1333 plist = get_vis_list(); | |
1334 plist = g_list_nth(plist, id); | |
1335 | |
1336 gtk_widget_set_sensitive(GTK_WIDGET(button), | |
1337 VIS_PLUGIN(plist->data)->configure != NULL); | |
1338 } | |
1339 | |
1340 static void | |
1341 vis_plugin_enable_info(GtkTreeView * treeview, | |
1342 GtkButton * button) | |
1343 { | |
1344 GtkTreeSelection *selection; | |
1345 GtkTreeModel *model; | |
1346 GtkTreeIter iter; | |
1347 GList *plist; | |
1348 gint id; | |
1349 | |
1350 selection = gtk_tree_view_get_selection(treeview); | |
1351 if (!gtk_tree_selection_get_selected(selection, &model, &iter)) | |
1352 return; | |
1353 | |
1354 gtk_tree_model_get(model, &iter, PLUGIN_VIEW_COL_ID, &id, -1); | |
1355 | |
1356 plist = get_vis_list(); | |
1357 plist = g_list_nth(plist, id); | |
1358 | |
1359 gtk_widget_set_sensitive(GTK_WIDGET(button), | |
1360 VIS_PLUGIN(plist->data)->about != NULL); | |
1361 } | |
1362 | |
1363 static void | |
1364 vis_plugin_open_prefs(GtkTreeView * treeview, | |
1365 gpointer data) | |
1366 { | |
1367 GtkTreeSelection *selection; | |
1368 GtkTreeModel *model; | |
1369 GtkTreeIter iter; | |
1370 gint id; | |
1371 | |
1372 selection = gtk_tree_view_get_selection(treeview); | |
1373 if (!gtk_tree_selection_get_selected(selection, &model, &iter)) | |
1374 return; | |
1375 | |
1376 gtk_tree_model_get(model, &iter, PLUGIN_VIEW_COL_ID, &id, -1); | |
1377 vis_configure(id); | |
1378 } | |
1379 | |
1380 | |
1381 static void | |
1382 vis_plugin_open_info(GtkTreeView * treeview, | |
1383 gpointer data) | |
1384 { | |
1385 GtkTreeSelection *selection; | |
1386 GtkTreeModel *model; | |
1387 GtkTreeIter iter; | |
1388 gint id; | |
1389 | |
1390 selection = gtk_tree_view_get_selection(treeview); | |
1391 if (!gtk_tree_selection_get_selected(selection, &model, &iter)) | |
1392 return; | |
1393 | |
1394 gtk_tree_model_get(model, &iter, PLUGIN_VIEW_COL_ID, &id, -1); | |
1395 vis_about(id); | |
1396 } | |
1397 | |
1398 | |
1399 | |
1400 | |
1401 | |
1402 | |
1403 static void | |
1404 effect_plugin_enable_prefs(GtkTreeView * treeview, | |
1405 GtkButton * button) | |
1406 { | |
1407 GtkTreeSelection *selection; | |
1408 GtkTreeModel *model; | |
1409 GtkTreeIter iter; | |
1410 GList *plist; | |
1411 gint id; | |
1412 | |
1413 selection = gtk_tree_view_get_selection(treeview); | |
1414 if (!gtk_tree_selection_get_selected(selection, &model, &iter)) | |
1415 return; | |
1416 | |
1417 gtk_tree_model_get(model, &iter, PLUGIN_VIEW_COL_ID, &id, -1); | |
1418 | |
1419 plist = get_effect_list(); | |
1420 plist = g_list_nth(plist, id); | |
1421 | |
1422 gtk_widget_set_sensitive(GTK_WIDGET(button), | |
1423 EFFECT_PLUGIN(plist->data)->configure != NULL); | |
1424 } | |
1425 | |
1426 static void | |
1427 effect_plugin_enable_info(GtkTreeView * treeview, | |
1428 GtkButton * button) | |
1429 { | |
1430 GtkTreeSelection *selection; | |
1431 GtkTreeModel *model; | |
1432 GtkTreeIter iter; | |
1433 GList *plist; | |
1434 gint id; | |
1435 | |
1436 selection = gtk_tree_view_get_selection(treeview); | |
1437 if (!gtk_tree_selection_get_selected(selection, &model, &iter)) | |
1438 return; | |
1439 | |
1440 gtk_tree_model_get(model, &iter, PLUGIN_VIEW_COL_ID, &id, -1); | |
1441 | |
1442 plist = get_effect_list(); | |
1443 plist = g_list_nth(plist, id); | |
1444 | |
1445 gtk_widget_set_sensitive(GTK_WIDGET(button), | |
1446 EFFECT_PLUGIN(plist->data)->about != NULL); | |
1447 } | |
1448 | |
1449 static void | |
1450 effect_plugin_open_prefs(GtkTreeView * treeview, | |
1451 gpointer data) | |
1452 { | |
1453 GtkTreeSelection *selection; | |
1454 GtkTreeModel *model; | |
1455 GtkTreeIter iter; | |
1456 gint id; | |
1457 | |
1458 selection = gtk_tree_view_get_selection(treeview); | |
1459 if (!gtk_tree_selection_get_selected(selection, &model, &iter)) | |
1460 return; | |
1461 | |
1462 gtk_tree_model_get(model, &iter, PLUGIN_VIEW_COL_ID, &id, -1); | |
1463 effect_configure(id); | |
1464 } | |
1465 | |
1466 | |
1467 static void | |
1468 effect_plugin_open_info(GtkTreeView * treeview, | |
1469 gpointer data) | |
1470 { | |
1471 GtkTreeSelection *selection; | |
1472 GtkTreeModel *model; | |
1473 GtkTreeIter iter; | |
1474 gint id; | |
1475 | |
1476 selection = gtk_tree_view_get_selection(treeview); | |
1477 if (!gtk_tree_selection_get_selected(selection, &model, &iter)) | |
1478 return; | |
1479 | |
1480 gtk_tree_model_get(model, &iter, PLUGIN_VIEW_COL_ID, &id, -1); | |
1481 effect_about(id); | |
1482 } | |
1483 | |
1147 | 1484 static void |
1485 on_output_plugin_bufsize_realize(GtkSpinButton *button, | |
1486 gpointer data) | |
1487 { | |
1488 gtk_spin_button_set_value(button, cfg.output_buffer_size); | |
1489 } | |
0 | 1490 |
1147 | 1491 static void |
1492 on_output_plugin_bufsize_value_changed(GtkSpinButton *button, | |
1493 gpointer data) | |
1494 { | |
1495 cfg.output_buffer_size = gtk_spin_button_get_value_as_int(button); | |
1496 } | |
0 | 1497 |
1498 static void | |
1499 on_mouse_wheel_volume_realize(GtkSpinButton * button, | |
1500 gpointer data) | |
1501 { | |
1502 gtk_spin_button_set_value(button, cfg.mouse_change); | |
1503 } | |
1504 | |
1505 static void | |
1506 on_mouse_wheel_volume_changed(GtkSpinButton * button, | |
1507 gpointer data) | |
1508 { | |
1509 cfg.mouse_change = gtk_spin_button_get_value_as_int(button); | |
1510 } | |
1511 | |
1512 static void | |
1513 on_pause_between_songs_time_realize(GtkSpinButton * button, | |
1514 gpointer data) | |
1515 { | |
1516 gtk_spin_button_set_value(button, cfg.pause_between_songs_time); | |
1517 } | |
1518 | |
1519 static void | |
1520 on_pause_between_songs_time_changed(GtkSpinButton * button, | |
1521 gpointer data) | |
1522 { | |
1523 cfg.pause_between_songs_time = gtk_spin_button_get_value_as_int(button); | |
1524 } | |
1525 | |
1526 static void | |
1527 on_mouse_wheel_scroll_pl_realize(GtkSpinButton * button, | |
1528 gpointer data) | |
1529 { | |
1530 gtk_spin_button_set_value(button, cfg.scroll_pl_by); | |
1531 } | |
1532 | |
1533 static void | |
1534 on_mouse_wheel_scroll_pl_changed(GtkSpinButton * button, | |
1535 gpointer data) | |
1536 { | |
1537 cfg.scroll_pl_by = gtk_spin_button_get_value_as_int(button); | |
1538 } | |
1539 | |
1540 static void | |
1541 on_playlist_convert_underscore_realize(GtkToggleButton * button, | |
1542 gpointer data) | |
1543 { | |
1544 gtk_toggle_button_set_active(button, cfg.convert_underscore); | |
1545 } | |
1546 | |
1547 static void | |
1548 on_playlist_convert_underscore_toggled(GtkToggleButton * button, | |
1549 gpointer data) | |
1550 { | |
1551 cfg.convert_underscore = gtk_toggle_button_get_active(button); | |
1552 } | |
1553 | |
1554 static void | |
1555 on_playlist_no_advance_realize(GtkToggleButton * button, gpointer data) | |
1556 { | |
1557 gtk_toggle_button_set_active(button, cfg.no_playlist_advance); | |
1558 } | |
1559 | |
1560 static void | |
1561 on_playlist_no_advance_toggled(GtkToggleButton * button, gpointer data) | |
1562 { | |
1563 cfg.no_playlist_advance = gtk_toggle_button_get_active(button); | |
1564 } | |
1565 | |
1566 static void | |
1382 | 1567 on_continue_playback_on_startup_realize(GtkToggleButton * button, gpointer data) |
1568 { | |
1569 gtk_toggle_button_set_active(button, cfg.resume_playback_on_startup); | |
1570 } | |
1571 | |
1572 static void | |
1573 on_continue_playback_on_startup_toggled(GtkToggleButton * button, gpointer data) | |
1574 { | |
1575 cfg.resume_playback_on_startup = gtk_toggle_button_get_active(button); | |
1576 } | |
1577 | |
1578 static void | |
893
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
1579 on_refresh_file_list_realize(GtkToggleButton * button, gpointer data) |
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
1580 { |
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
1581 gtk_toggle_button_set_active(button, cfg.refresh_file_list); |
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
1582 } |
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
1583 |
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
1584 static void |
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
1585 on_refresh_file_list_toggled(GtkToggleButton * button, gpointer data) |
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
1586 { |
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
1587 cfg.refresh_file_list = gtk_toggle_button_get_active(button); |
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
1588 } |
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
1589 |
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
1590 static void |
0 | 1591 on_playlist_convert_twenty_realize(GtkToggleButton * button, gpointer data) |
1592 { | |
1593 gtk_toggle_button_set_active(button, cfg.convert_twenty); | |
1594 } | |
1595 | |
1596 static void | |
1597 on_playlist_convert_twenty_toggled(GtkToggleButton * button, gpointer data) | |
1598 { | |
1599 cfg.convert_twenty = gtk_toggle_button_get_active(button); | |
1600 } | |
1601 | |
2019
d3a62e1075e2
[svn] Allow \ to / conversion to be switched on & off, by external contributor Chris Kehler <cbkehler@sympatico.ca>.
chainsaw
parents:
1971
diff
changeset
|
1602 static void |
d3a62e1075e2
[svn] Allow \ to / conversion to be switched on & off, by external contributor Chris Kehler <cbkehler@sympatico.ca>.
chainsaw
parents:
1971
diff
changeset
|
1603 on_playlist_convert_slash_realize(GtkToggleButton * button, gpointer data) |
d3a62e1075e2
[svn] Allow \ to / conversion to be switched on & off, by external contributor Chris Kehler <cbkehler@sympatico.ca>.
chainsaw
parents:
1971
diff
changeset
|
1604 { |
d3a62e1075e2
[svn] Allow \ to / conversion to be switched on & off, by external contributor Chris Kehler <cbkehler@sympatico.ca>.
chainsaw
parents:
1971
diff
changeset
|
1605 gtk_toggle_button_set_active(button, cfg.convert_slash); |
d3a62e1075e2
[svn] Allow \ to / conversion to be switched on & off, by external contributor Chris Kehler <cbkehler@sympatico.ca>.
chainsaw
parents:
1971
diff
changeset
|
1606 } |
d3a62e1075e2
[svn] Allow \ to / conversion to be switched on & off, by external contributor Chris Kehler <cbkehler@sympatico.ca>.
chainsaw
parents:
1971
diff
changeset
|
1607 |
d3a62e1075e2
[svn] Allow \ to / conversion to be switched on & off, by external contributor Chris Kehler <cbkehler@sympatico.ca>.
chainsaw
parents:
1971
diff
changeset
|
1608 static void |
d3a62e1075e2
[svn] Allow \ to / conversion to be switched on & off, by external contributor Chris Kehler <cbkehler@sympatico.ca>.
chainsaw
parents:
1971
diff
changeset
|
1609 on_playlist_convert_slash_toggled(GtkToggleButton * button, gpointer data) |
d3a62e1075e2
[svn] Allow \ to / conversion to be switched on & off, by external contributor Chris Kehler <cbkehler@sympatico.ca>.
chainsaw
parents:
1971
diff
changeset
|
1610 { |
d3a62e1075e2
[svn] Allow \ to / conversion to be switched on & off, by external contributor Chris Kehler <cbkehler@sympatico.ca>.
chainsaw
parents:
1971
diff
changeset
|
1611 cfg.convert_slash = gtk_toggle_button_get_active(button); |
d3a62e1075e2
[svn] Allow \ to / conversion to be switched on & off, by external contributor Chris Kehler <cbkehler@sympatico.ca>.
chainsaw
parents:
1971
diff
changeset
|
1612 } |
d3a62e1075e2
[svn] Allow \ to / conversion to be switched on & off, by external contributor Chris Kehler <cbkehler@sympatico.ca>.
chainsaw
parents:
1971
diff
changeset
|
1613 |
0 | 1614 static void |
1615 on_use_pl_metadata_realize(GtkToggleButton * button, | |
1616 gpointer data) | |
1617 { | |
1618 gboolean state = cfg.use_pl_metadata; | |
1619 gtk_toggle_button_set_active(button, state); | |
1620 gtk_widget_set_sensitive(GTK_WIDGET(data), state); | |
1621 } | |
1622 | |
1623 static void | |
1624 on_use_pl_metadata_toggled(GtkToggleButton * button, | |
1625 gpointer data) | |
1626 { | |
1627 gboolean state = gtk_toggle_button_get_active(button); | |
1628 cfg.use_pl_metadata = state; | |
1629 gtk_widget_set_sensitive(GTK_WIDGET(data), state); | |
1630 } | |
1631 | |
1632 static void | |
1633 on_pause_between_songs_realize(GtkToggleButton * button, | |
1634 gpointer data) | |
1635 { | |
1636 gboolean state = cfg.pause_between_songs; | |
1637 gtk_toggle_button_set_active(button, state); | |
1638 gtk_widget_set_sensitive(GTK_WIDGET(data), state); | |
1639 } | |
1640 | |
1641 static void | |
1642 on_pause_between_songs_toggled(GtkToggleButton * button, | |
1643 gpointer data) | |
1644 { | |
1645 gboolean state = gtk_toggle_button_get_active(button); | |
1646 cfg.pause_between_songs = state; | |
1647 gtk_widget_set_sensitive(GTK_WIDGET(data), state); | |
1648 } | |
1649 | |
1650 static void | |
1651 on_pl_metadata_on_load_realize(GtkRadioButton * button, | |
1652 gpointer data) | |
1653 { | |
1654 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), | |
1655 cfg.get_info_on_load); | |
1656 } | |
1657 | |
1658 static void | |
1659 on_pl_metadata_on_display_realize(GtkRadioButton * button, | |
1660 gpointer data) | |
1661 { | |
1662 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), | |
1663 cfg.get_info_on_demand); | |
1664 } | |
1665 | |
1666 static void | |
1667 on_pl_metadata_on_load_toggled(GtkRadioButton * button, | |
1668 gpointer data) | |
1669 { | |
1670 cfg.get_info_on_load = | |
1671 gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(button)); | |
1672 } | |
1673 | |
1674 static void | |
1675 on_pl_metadata_on_display_toggled(GtkRadioButton * button, | |
1676 gpointer data) | |
1677 { | |
1678 cfg.get_info_on_demand = | |
1679 gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(button)); | |
1680 } | |
1681 | |
1682 static void | |
1683 on_custom_cursors_realize(GtkToggleButton * button, | |
1684 gpointer data) | |
1685 { | |
1686 gtk_toggle_button_set_active(button, cfg.custom_cursors); | |
1687 } | |
1688 | |
1689 static void | |
1690 on_custom_cursors_toggled(GtkToggleButton *togglebutton, | |
1691 gpointer data) | |
1692 { | |
1693 cfg.custom_cursors = gtk_toggle_button_get_active(togglebutton); | |
1694 skin_reload_forced(); | |
1695 } | |
1696 | |
1697 static void | |
1698 on_eq_dir_preset_entry_realize(GtkEntry * entry, | |
1699 gpointer data) | |
1700 { | |
1701 gtk_entry_set_text(entry, cfg.eqpreset_default_file); | |
1702 } | |
1703 | |
1704 static void | |
1705 on_eq_dir_preset_entry_changed(GtkEntry * entry, | |
1706 gpointer data) | |
1707 { | |
1708 g_free(cfg.eqpreset_default_file); | |
1709 cfg.eqpreset_default_file = g_strdup(gtk_entry_get_text(entry)); | |
1710 } | |
1711 | |
1712 static void | |
1713 on_eq_file_preset_entry_realize(GtkEntry * entry, | |
1714 gpointer data) | |
1715 { | |
1716 gtk_entry_set_text(entry, cfg.eqpreset_extension); | |
1717 } | |
1718 | |
1719 static void | |
1720 on_eq_file_preset_entry_changed(GtkEntry * entry, gpointer data) | |
1721 { | |
1722 const gchar *text = gtk_entry_get_text(entry); | |
1723 | |
1724 while (*text == '.') | |
1725 text++; | |
1726 | |
1727 g_free(cfg.eqpreset_extension); | |
1728 cfg.eqpreset_extension = g_strdup(text); | |
1729 } | |
1730 | |
1731 | |
1732 /* FIXME: implement these */ | |
1733 | |
1734 static void | |
1735 on_eq_preset_view_realize(GtkTreeView * treeview, | |
1736 gpointer data) | |
1737 {} | |
1738 | |
1739 static void | |
1740 on_eq_preset_add_clicked(GtkButton * button, | |
1741 gpointer data) | |
1742 {} | |
1743 | |
1744 static void | |
1745 on_eq_preset_remove_clicked(GtkButton * button, | |
1746 gpointer data) | |
1747 {} | |
1748 | |
887 | 1749 static void |
1750 on_skin_refresh_button_clicked(GtkButton * button, | |
1751 gpointer data) | |
1752 { | |
1753 GladeXML *xml; | |
962
a341792533a6
[svn] - Let's not let the user press the skin refresh button while already refreshing ;)
nhjm449
parents:
954
diff
changeset
|
1754 GtkWidget *widget, *widget2; |
887 | 1755 |
1756 const mode_t mode755 = S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH; | |
1757 | |
1758 del_directory(bmp_paths[BMP_PATH_SKIN_THUMB_DIR]); | |
1759 make_directory(bmp_paths[BMP_PATH_SKIN_THUMB_DIR], mode755); | |
1760 | |
1761 xml = prefswin_get_xml(); | |
1762 | |
1763 widget = glade_xml_get_widget(xml, "skin_view"); | |
962
a341792533a6
[svn] - Let's not let the user press the skin refresh button while already refreshing ;)
nhjm449
parents:
954
diff
changeset
|
1764 widget2 = glade_xml_get_widget(xml, "skin_refresh_button"); |
a341792533a6
[svn] - Let's not let the user press the skin refresh button while already refreshing ;)
nhjm449
parents:
954
diff
changeset
|
1765 skin_view_update(GTK_TREE_VIEW(widget), GTK_WIDGET(widget2)); |
887 | 1766 } |
0 | 1767 |
1768 static gboolean | |
1832 | 1769 on_skin_view_realize(GtkTreeView * treeview, |
1770 gpointer data) | |
0 | 1771 { |
962
a341792533a6
[svn] - Let's not let the user press the skin refresh button while already refreshing ;)
nhjm449
parents:
954
diff
changeset
|
1772 GladeXML *xml; |
a341792533a6
[svn] - Let's not let the user press the skin refresh button while already refreshing ;)
nhjm449
parents:
954
diff
changeset
|
1773 GtkWidget *widget; |
a341792533a6
[svn] - Let's not let the user press the skin refresh button while already refreshing ;)
nhjm449
parents:
954
diff
changeset
|
1774 |
a341792533a6
[svn] - Let's not let the user press the skin refresh button while already refreshing ;)
nhjm449
parents:
954
diff
changeset
|
1775 xml = prefswin_get_xml(); |
a341792533a6
[svn] - Let's not let the user press the skin refresh button while already refreshing ;)
nhjm449
parents:
954
diff
changeset
|
1776 widget = glade_xml_get_widget(xml, "skin_refresh_button"); |
1832 | 1777 skin_view_realize(treeview); |
962
a341792533a6
[svn] - Let's not let the user press the skin refresh button while already refreshing ;)
nhjm449
parents:
954
diff
changeset
|
1778 skin_view_update(treeview, GTK_WIDGET(widget)); |
0 | 1779 |
1780 return TRUE; | |
1781 } | |
1782 | |
1783 static void | |
1784 on_category_view_realize(GtkTreeView * treeview, | |
1785 GtkNotebook * notebook) | |
1786 { | |
1787 GtkListStore *store; | |
1788 GtkCellRenderer *renderer; | |
1789 GtkTreeViewColumn *column; | |
1790 GtkTreeSelection *selection; | |
1791 GtkTreeIter iter; | |
1792 GdkPixbuf *img; | |
1352
8b249765fdd1
[svn] - GList cannot handle circular queues, so I integrated one into CategoryQueueEntry. No fuss, no muss.
nenolod
parents:
1188
diff
changeset
|
1793 CategoryQueueEntry *qlist; |
0 | 1794 gint i; |
1795 | |
1796 column = gtk_tree_view_column_new(); | |
1797 gtk_tree_view_column_set_title(column, _("Category")); | |
1798 gtk_tree_view_append_column(treeview, column); | |
1799 gtk_tree_view_column_set_spacing(column, 2); | |
1800 | |
1801 renderer = gtk_cell_renderer_pixbuf_new(); | |
1802 gtk_tree_view_column_pack_start(column, renderer, FALSE); | |
1803 gtk_tree_view_column_set_attributes(column, renderer, "pixbuf", 0, NULL); | |
1804 | |
1805 renderer = gtk_cell_renderer_text_new(); | |
1806 gtk_tree_view_column_pack_start(column, renderer, FALSE); | |
1807 gtk_tree_view_column_set_attributes(column, renderer, "text", 1, NULL); | |
1808 | |
1809 store = gtk_list_store_new(CATEGORY_VIEW_N_COLS, | |
1810 GDK_TYPE_PIXBUF, G_TYPE_STRING, G_TYPE_INT); | |
1811 gtk_tree_view_set_model(treeview, GTK_TREE_MODEL(store)); | |
1812 | |
1813 for (i = 0; i < n_categories; i++) { | |
1814 img = gdk_pixbuf_new_from_file(categories[i].icon_path, NULL); | |
1815 gtk_list_store_append(store, &iter); | |
1816 gtk_list_store_set(store, &iter, | |
1817 CATEGORY_VIEW_COL_ICON, img, | |
1818 CATEGORY_VIEW_COL_NAME, | |
1819 gettext(categories[i].name), CATEGORY_VIEW_COL_ID, | |
1820 categories[i].id, -1); | |
1821 g_object_unref(img); | |
1822 } | |
1823 | |
1824 selection = gtk_tree_view_get_selection(treeview); | |
1825 | |
1826 g_signal_connect_swapped(selection, "changed", | |
1827 G_CALLBACK(change_category), notebook); | |
1175 | 1828 |
1829 /* mark the treeview widget as available to third party plugins */ | |
1830 category_treeview = GTK_WIDGET(treeview); | |
1184
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
1831 |
1352
8b249765fdd1
[svn] - GList cannot handle circular queues, so I integrated one into CategoryQueueEntry. No fuss, no muss.
nenolod
parents:
1188
diff
changeset
|
1832 /* prefswin_page_queue_destroy already pops the queue forward for us. */ |
8b249765fdd1
[svn] - GList cannot handle circular queues, so I integrated one into CategoryQueueEntry. No fuss, no muss.
nenolod
parents:
1188
diff
changeset
|
1833 for (qlist = category_queue; qlist != NULL; qlist = category_queue) |
1184
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
1834 { |
1352
8b249765fdd1
[svn] - GList cannot handle circular queues, so I integrated one into CategoryQueueEntry. No fuss, no muss.
nenolod
parents:
1188
diff
changeset
|
1835 CategoryQueueEntry *ent = (CategoryQueueEntry *) qlist; |
1184
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
1836 |
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
1837 prefswin_page_new(ent->container, ent->pg_name, ent->img_url); |
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
1838 prefswin_page_queue_destroy(ent); |
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
1839 } |
0 | 1840 } |
1841 | |
1842 static void | |
1843 mainwin_drag_data_received1(GtkWidget * widget, | |
1844 GdkDragContext * context, | |
1845 gint x, gint y, | |
1846 GtkSelectionData * selection_data, | |
1847 guint info, guint time, | |
1848 gpointer user_data) | |
1849 { | |
1850 gchar *path, *decoded; | |
1851 | |
1852 if (!selection_data->data) { | |
1853 g_warning("DND data string is NULL"); | |
1854 return; | |
1855 } | |
1856 | |
1857 path = (gchar *) selection_data->data; | |
1858 | |
1859 /* FIXME: use a real URL validator/parser */ | |
1860 | |
1861 if (!str_has_prefix_nocase(path, "fonts:///")) | |
1862 return; | |
1863 | |
1864 path[strlen(path) - 2] = 0; /* Why the hell a CR&LF? */ | |
1865 path += 8; | |
1866 | |
1867 /* plain, since we already stripped the first URI part */ | |
1868 decoded = xmms_urldecode_plain(path); | |
1869 | |
1870 /* Get the old font's size, and add it to the dropped | |
1871 * font's name */ | |
1872 cfg.playlist_font = g_strconcat(decoded+1, | |
1873 strrchr(cfg.playlist_font, ' '), | |
1874 NULL); | |
1875 playlist_list_set_font(cfg.playlist_font); | |
2140
299651a8f107
[svn] - made playlistwin_update_list depend on passed Playlist* instead of blindly using playlist_get_active(); this solves many locking issues with multiple playlists, but SHOULD be reviewed in every place playlistwin_update_list is used; added a playlist_new_from_selected() call too
giacomo
parents:
2109
diff
changeset
|
1876 playlistwin_update_list(playlist_get_active()); |
0 | 1877 gtk_font_button_set_font_name(user_data, cfg.playlist_font); |
1878 | |
1879 g_free(decoded); | |
1880 } | |
1881 | |
1882 static void | |
1883 on_skin_view_drag_data_received(GtkWidget * widget, | |
1884 GdkDragContext * context, | |
1885 gint x, gint y, | |
1886 GtkSelectionData * selection_data, | |
1887 guint info, guint time, | |
1888 gpointer user_data) | |
1889 { | |
1890 ConfigDb *db; | |
1891 gchar *path; | |
1892 | |
962
a341792533a6
[svn] - Let's not let the user press the skin refresh button while already refreshing ;)
nhjm449
parents:
954
diff
changeset
|
1893 GladeXML *xml; |
a341792533a6
[svn] - Let's not let the user press the skin refresh button while already refreshing ;)
nhjm449
parents:
954
diff
changeset
|
1894 GtkWidget *widget2; |
a341792533a6
[svn] - Let's not let the user press the skin refresh button while already refreshing ;)
nhjm449
parents:
954
diff
changeset
|
1895 |
0 | 1896 if (!selection_data->data) { |
1897 g_warning("DND data string is NULL"); | |
1898 return; | |
1899 } | |
1900 | |
1901 path = (gchar *) selection_data->data; | |
1902 | |
1903 /* FIXME: use a real URL validator/parser */ | |
1904 | |
1905 if (str_has_prefix_nocase(path, "file:///")) { | |
1906 path[strlen(path) - 2] = 0; /* Why the hell a CR&LF? */ | |
1907 path += 7; | |
1908 } | |
1909 else if (str_has_prefix_nocase(path, "file:")) { | |
1910 path += 5; | |
1911 } | |
1912 | |
1913 if (file_is_archive(path)) { | |
1914 bmp_active_skin_load(path); | |
1915 skin_install_skin(path); | |
962
a341792533a6
[svn] - Let's not let the user press the skin refresh button while already refreshing ;)
nhjm449
parents:
954
diff
changeset
|
1916 xml = prefswin_get_xml(); |
a341792533a6
[svn] - Let's not let the user press the skin refresh button while already refreshing ;)
nhjm449
parents:
954
diff
changeset
|
1917 widget2 = glade_xml_get_widget(xml, "skin_refresh_button"); |
a341792533a6
[svn] - Let's not let the user press the skin refresh button while already refreshing ;)
nhjm449
parents:
954
diff
changeset
|
1918 skin_view_update(GTK_TREE_VIEW(widget), GTK_WIDGET(widget2)); |
0 | 1919 /* Change skin name in the config file */ |
1920 db = bmp_cfg_db_open(); | |
1921 bmp_cfg_db_set_string(db, NULL, "skin", path); | |
1922 bmp_cfg_db_close(db); | |
1923 } | |
1924 | |
1925 } | |
1926 | |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1927 static void |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1928 on_chardet_detector_cbox_changed(GtkComboBox * combobox, gpointer data) |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1929 { |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1930 ConfigDb *db; |
1761
70caa62ead63
[svn] - fix for "bmp_rcfile_write_string: assertion `value != NULL' failed"
yaz
parents:
1758
diff
changeset
|
1931 gint position = 0; |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1932 |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1933 position = gtk_combo_box_get_active(GTK_COMBO_BOX(combobox)); |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1934 cfg.chardet_detector = (char *)chardet_detector_presets[position]; |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1935 |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1936 db = bmp_cfg_db_open(); |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1937 bmp_cfg_db_set_string(db, NULL, "chardet_detector", cfg.chardet_detector); |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1938 bmp_cfg_db_close(db); |
1864 | 1939 if (data != NULL) |
1940 gtk_widget_set_sensitive(GTK_WIDGET(data), 1); | |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1941 } |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1942 |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1943 static void |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1944 on_chardet_detector_cbox_realize(GtkComboBox *combobox, gpointer data) |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1945 { |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1946 ConfigDb *db; |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1947 gchar *ret=NULL; |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1948 guint i=0,index=0; |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1949 |
1109
95365899992e
[svn] - audacious should pick runtime library up from ${libdir}.
yaz
parents:
1105
diff
changeset
|
1950 for(i=0; i<n_chardet_detector_presets; i++) { |
95365899992e
[svn] - audacious should pick runtime library up from ${libdir}.
yaz
parents:
1105
diff
changeset
|
1951 gtk_combo_box_append_text(combobox, chardet_detector_presets[i]); |
95365899992e
[svn] - audacious should pick runtime library up from ${libdir}.
yaz
parents:
1105
diff
changeset
|
1952 } |
95365899992e
[svn] - audacious should pick runtime library up from ${libdir}.
yaz
parents:
1105
diff
changeset
|
1953 |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1954 db = bmp_cfg_db_open(); |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1955 if(bmp_cfg_db_get_string(db, NULL, "chardet_detector", &ret) != FALSE) { |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1956 for(i=0; i<n_chardet_detector_presets; i++) { |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1957 if(!strcmp(chardet_detector_presets[i], ret)) { |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1958 cfg.chardet_detector = (char *)chardet_detector_presets[i]; |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1959 index = i; |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1960 } |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1961 } |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1962 } |
1109
95365899992e
[svn] - audacious should pick runtime library up from ${libdir}.
yaz
parents:
1105
diff
changeset
|
1963 bmp_cfg_db_close(db); |
95365899992e
[svn] - audacious should pick runtime library up from ${libdir}.
yaz
parents:
1105
diff
changeset
|
1964 |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1965 #ifdef USE_CHARDET |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1966 gtk_combo_box_set_active(GTK_COMBO_BOX(combobox), index); |
1864 | 1967 |
1968 if (data != NULL) | |
1969 gtk_widget_set_sensitive(GTK_WIDGET(data), TRUE); | |
1970 | |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1971 g_signal_connect(combobox, "changed", |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1972 G_CALLBACK(on_chardet_detector_cbox_changed), NULL); |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1973 #else |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1974 gtk_combo_box_set_active(GTK_COMBO_BOX(combobox), -1); |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1975 gtk_widget_set_sensitive(GTK_WIDGET(combobox), 0); |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1976 #endif |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1977 if(ret) |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1978 g_free(ret); |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1979 } |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1980 |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1981 static void |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1982 on_chardet_fallback_realize(GtkEntry *entry, gpointer data) |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1983 { |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1984 ConfigDb *db; |
1758
6b9e1c2b2b32
[svn] - fix for gconf_value_get_string() does not accept null string.
yaz
parents:
1609
diff
changeset
|
1985 gchar *ret = NULL; |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1986 |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1987 db = bmp_cfg_db_open(); |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1988 |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1989 if (bmp_cfg_db_get_string(db, NULL, "chardet_fallback", &ret) != FALSE) { |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1990 if(cfg.chardet_fallback) |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1991 g_free(cfg.chardet_fallback); |
1758
6b9e1c2b2b32
[svn] - fix for gconf_value_get_string() does not accept null string.
yaz
parents:
1609
diff
changeset
|
1992 |
6b9e1c2b2b32
[svn] - fix for gconf_value_get_string() does not accept null string.
yaz
parents:
1609
diff
changeset
|
1993 if(ret && strncasecmp(ret, "None", sizeof("None"))) { |
6b9e1c2b2b32
[svn] - fix for gconf_value_get_string() does not accept null string.
yaz
parents:
1609
diff
changeset
|
1994 cfg.chardet_fallback = ret; |
6b9e1c2b2b32
[svn] - fix for gconf_value_get_string() does not accept null string.
yaz
parents:
1609
diff
changeset
|
1995 } else { |
6b9e1c2b2b32
[svn] - fix for gconf_value_get_string() does not accept null string.
yaz
parents:
1609
diff
changeset
|
1996 cfg.chardet_fallback = g_strdup(""); |
6b9e1c2b2b32
[svn] - fix for gconf_value_get_string() does not accept null string.
yaz
parents:
1609
diff
changeset
|
1997 } |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1998 gtk_entry_set_text(entry, cfg.chardet_fallback); |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
1999 } |
1758
6b9e1c2b2b32
[svn] - fix for gconf_value_get_string() does not accept null string.
yaz
parents:
1609
diff
changeset
|
2000 |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
2001 bmp_cfg_db_close(db); |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
2002 } |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
2003 |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
2004 static void |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
2005 on_chardet_fallback_changed(GtkEntry *entry, gpointer data) |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
2006 { |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
2007 ConfigDb *db; |
1761
70caa62ead63
[svn] - fix for "bmp_rcfile_write_string: assertion `value != NULL' failed"
yaz
parents:
1758
diff
changeset
|
2008 gchar *ret = NULL; |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
2009 |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
2010 if(cfg.chardet_fallback) |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
2011 g_free(cfg.chardet_fallback); |
1758
6b9e1c2b2b32
[svn] - fix for gconf_value_get_string() does not accept null string.
yaz
parents:
1609
diff
changeset
|
2012 |
1761
70caa62ead63
[svn] - fix for "bmp_rcfile_write_string: assertion `value != NULL' failed"
yaz
parents:
1758
diff
changeset
|
2013 ret = g_strdup(gtk_entry_get_text(entry)); |
70caa62ead63
[svn] - fix for "bmp_rcfile_write_string: assertion `value != NULL' failed"
yaz
parents:
1758
diff
changeset
|
2014 |
70caa62ead63
[svn] - fix for "bmp_rcfile_write_string: assertion `value != NULL' failed"
yaz
parents:
1758
diff
changeset
|
2015 if(ret == NULL) |
70caa62ead63
[svn] - fix for "bmp_rcfile_write_string: assertion `value != NULL' failed"
yaz
parents:
1758
diff
changeset
|
2016 cfg.chardet_fallback = g_strdup(""); |
70caa62ead63
[svn] - fix for "bmp_rcfile_write_string: assertion `value != NULL' failed"
yaz
parents:
1758
diff
changeset
|
2017 else |
70caa62ead63
[svn] - fix for "bmp_rcfile_write_string: assertion `value != NULL' failed"
yaz
parents:
1758
diff
changeset
|
2018 cfg.chardet_fallback = ret; |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
2019 |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
2020 db = bmp_cfg_db_open(); |
1758
6b9e1c2b2b32
[svn] - fix for gconf_value_get_string() does not accept null string.
yaz
parents:
1609
diff
changeset
|
2021 |
1761
70caa62ead63
[svn] - fix for "bmp_rcfile_write_string: assertion `value != NULL' failed"
yaz
parents:
1758
diff
changeset
|
2022 if(cfg.chardet_fallback == NULL || !strcmp(cfg.chardet_fallback, "")) |
1758
6b9e1c2b2b32
[svn] - fix for gconf_value_get_string() does not accept null string.
yaz
parents:
1609
diff
changeset
|
2023 bmp_cfg_db_set_string(db, NULL, "chardet_fallback", "None"); |
6b9e1c2b2b32
[svn] - fix for gconf_value_get_string() does not accept null string.
yaz
parents:
1609
diff
changeset
|
2024 else |
6b9e1c2b2b32
[svn] - fix for gconf_value_get_string() does not accept null string.
yaz
parents:
1609
diff
changeset
|
2025 bmp_cfg_db_set_string(db, NULL, "chardet_fallback", cfg.chardet_fallback); |
6b9e1c2b2b32
[svn] - fix for gconf_value_get_string() does not accept null string.
yaz
parents:
1609
diff
changeset
|
2026 |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
2027 bmp_cfg_db_close(db); |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
2028 } |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
2029 |
1358 | 2030 static void |
2031 on_show_filepopup_for_tuple_realize(GtkToggleButton * button, gpointer data) | |
2032 { | |
1413 | 2033 GladeXML *xml = prefswin_get_xml(); |
2034 GtkWidget *settings_button = glade_xml_get_widget(xml, "filepopup_for_tuple_settings_button"); | |
2035 | |
1358 | 2036 gtk_toggle_button_set_active(button, cfg.show_filepopup_for_tuple); |
1388
b8e521f642e4
[svn] - when the playlist page of the preferences window is shown, the checkbox for filepopup follows the popup menu now.
yaz
parents:
1384
diff
changeset
|
2037 filepopupbutton = (GtkWidget *)button; |
1413 | 2038 |
2039 gtk_widget_set_sensitive(settings_button, cfg.show_filepopup_for_tuple); | |
1358 | 2040 } |
2041 | |
2042 static void | |
2043 on_show_filepopup_for_tuple_toggled(GtkToggleButton * button, gpointer data) | |
2044 { | |
1413 | 2045 GladeXML *xml = prefswin_get_xml(); |
2046 GtkWidget *settings_button = glade_xml_get_widget(xml, "filepopup_for_tuple_settings_button"); | |
2047 | |
1358 | 2048 cfg.show_filepopup_for_tuple = gtk_toggle_button_get_active(button); |
1413 | 2049 |
2050 gtk_widget_set_sensitive(settings_button, cfg.show_filepopup_for_tuple); | |
2051 } | |
2052 | |
2053 static void | |
1889
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2054 on_recurse_for_cover_toggled(GtkToggleButton *button, gpointer data) |
1413 | 2055 { |
1889
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2056 gtk_widget_set_sensitive(GTK_WIDGET(data), |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2057 gtk_toggle_button_get_active(button)); |
1429
a360afd8df52
[svn] Make annoying recursion that consistently returns wrong art, optional.
nemo
parents:
1413
diff
changeset
|
2058 } |
a360afd8df52
[svn] Make annoying recursion that consistently returns wrong art, optional.
nemo
parents:
1413
diff
changeset
|
2059 |
a360afd8df52
[svn] Make annoying recursion that consistently returns wrong art, optional.
nemo
parents:
1413
diff
changeset
|
2060 static void |
2187
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2061 on_colorize_button_clicked(GtkButton *button, gpointer data) |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2062 { |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2063 GladeXML *xml = prefswin_get_xml(); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2064 GtkWidget *widget; |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2065 |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2066 widget = glade_xml_get_widget(xml, "red_scale"); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2067 gtk_range_set_value(GTK_RANGE(widget), cfg.colorize_r); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2068 |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2069 widget = glade_xml_get_widget(xml, "green_scale"); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2070 gtk_range_set_value(GTK_RANGE(widget), cfg.colorize_g); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2071 |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2072 widget = glade_xml_get_widget(xml, "blue_scale"); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2073 gtk_range_set_value(GTK_RANGE(widget), cfg.colorize_b); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2074 |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2075 gtk_widget_show(colorize_settings); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2076 } |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2077 |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2078 static void |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2079 on_red_scale_value_changed(GtkHScale *scale, gpointer data) |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2080 { |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2081 GladeXML *xml = prefswin_get_xml(); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2082 GtkWidget *widget; |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2083 gint value; |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2084 |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2085 value = gtk_range_get_value(GTK_RANGE(scale)); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2086 |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2087 if (value != cfg.colorize_r) |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2088 { |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2089 cfg.colorize_r = value; |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2090 |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2091 /* reload the skin to apply the change */ |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2092 skin_reload_forced(); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2093 draw_main_window(TRUE); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2094 draw_equalizer_window(TRUE); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2095 draw_playlist_window(TRUE); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2096 } |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2097 } |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2098 |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2099 static void |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2100 on_green_scale_value_changed(GtkHScale *scale, gpointer data) |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2101 { |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2102 GladeXML *xml = prefswin_get_xml(); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2103 GtkWidget *widget; |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2104 gint value; |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2105 |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2106 value = gtk_range_get_value(GTK_RANGE(scale)); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2107 |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2108 if (value != cfg.colorize_r) |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2109 { |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2110 cfg.colorize_g = value; |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2111 |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2112 /* reload the skin to apply the change */ |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2113 skin_reload_forced(); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2114 draw_main_window(TRUE); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2115 draw_equalizer_window(TRUE); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2116 draw_playlist_window(TRUE); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2117 } |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2118 } |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2119 |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2120 static void |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2121 on_blue_scale_value_changed(GtkHScale *scale, gpointer data) |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2122 { |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2123 GladeXML *xml = prefswin_get_xml(); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2124 GtkWidget *widget; |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2125 gint value; |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2126 |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2127 value = gtk_range_get_value(GTK_RANGE(scale)); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2128 |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2129 if (value != cfg.colorize_r) |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2130 { |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2131 cfg.colorize_b = value; |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2132 |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2133 /* reload the skin to apply the change */ |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2134 skin_reload_forced(); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2135 draw_main_window(TRUE); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2136 draw_equalizer_window(TRUE); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2137 draw_playlist_window(TRUE); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2138 } |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2139 } |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2140 |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2141 static void |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2142 on_colorize_close_clicked(GtkButton *button, gpointer data) |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2143 { |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2144 gtk_widget_hide(colorize_settings); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2145 } |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2146 |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2147 static void |
1889
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2148 on_filepopup_for_tuple_settings_clicked(GtkButton *button, gpointer data) |
1429
a360afd8df52
[svn] Make annoying recursion that consistently returns wrong art, optional.
nemo
parents:
1413
diff
changeset
|
2149 { |
1889
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2150 GladeXML *xml = prefswin_get_xml(); |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2151 GtkWidget *widget, *widget2; |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2152 |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2153 widget = glade_xml_get_widget(xml, "filepopup_settings_cover_name_include"); |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2154 gtk_entry_set_text(GTK_ENTRY(widget), cfg.cover_name_include); |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2155 |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2156 widget = glade_xml_get_widget(xml, "filepopup_settings_cover_name_exclude"); |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2157 gtk_entry_set_text(GTK_ENTRY(widget), cfg.cover_name_exclude); |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2158 |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2159 widget2 = glade_xml_get_widget(xml, "filepopup_settings_recurse_for_cover"); |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2160 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget2), cfg.recurse_for_cover); |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2161 |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2162 widget = glade_xml_get_widget(xml, "filepopup_settings_recurse_for_cover_depth"); |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2163 gtk_spin_button_set_value(GTK_SPIN_BUTTON(widget), cfg.recurse_for_cover_depth); |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2164 |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2165 widget = glade_xml_get_widget(xml, "filepopup_settings_recurse_for_cover_depth_box"); |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2166 on_recurse_for_cover_toggled(GTK_TOGGLE_BUTTON(widget2), widget); |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2167 |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2168 widget = glade_xml_get_widget(xml, "filepopup_settings_use_file_cover"); |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2169 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), cfg.use_file_cover); |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2170 |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2171 gtk_widget_show(filepopup_settings); |
1429
a360afd8df52
[svn] Make annoying recursion that consistently returns wrong art, optional.
nemo
parents:
1413
diff
changeset
|
2172 } |
a360afd8df52
[svn] Make annoying recursion that consistently returns wrong art, optional.
nemo
parents:
1413
diff
changeset
|
2173 |
a360afd8df52
[svn] Make annoying recursion that consistently returns wrong art, optional.
nemo
parents:
1413
diff
changeset
|
2174 static void |
1413 | 2175 on_filepopup_settings_ok_clicked(GtkButton *button, gpointer data) |
2176 { | |
2177 GladeXML *xml = prefswin_get_xml(); | |
1889
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2178 GtkWidget *widget; |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2179 |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2180 widget = glade_xml_get_widget(xml, "filepopup_settings_cover_name_include"); |
1413 | 2181 g_free(cfg.cover_name_include); |
1889
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2182 cfg.cover_name_include = g_strdup(gtk_entry_get_text(GTK_ENTRY(widget))); |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2183 |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2184 widget = glade_xml_get_widget(xml, "filepopup_settings_cover_name_exclude"); |
1413 | 2185 g_free(cfg.cover_name_exclude); |
1889
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2186 cfg.cover_name_exclude = g_strdup(gtk_entry_get_text(GTK_ENTRY(widget))); |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2187 |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2188 widget = glade_xml_get_widget(xml, "filepopup_settings_recurse_for_cover"); |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2189 cfg.recurse_for_cover = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget)); |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2190 |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2191 widget = glade_xml_get_widget(xml, "filepopup_settings_recurse_for_cover_depth"); |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2192 cfg.recurse_for_cover_depth = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(widget)); |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2193 |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2194 widget = glade_xml_get_widget(xml, "filepopup_settings_use_file_cover"); |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2195 cfg.use_file_cover = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget)); |
1413 | 2196 |
2197 gtk_widget_hide(filepopup_settings); | |
2198 } | |
2199 | |
2200 static void | |
2201 on_filepopup_settings_cancel_clicked(GtkButton *button, gpointer data) | |
2202 { | |
2203 gtk_widget_hide(filepopup_settings); | |
1358 | 2204 } |
2205 | |
1905
6b4116c34489
[svn] - change "Transparency" to "Miscillaneous UI Features" in prefswin
nenolod
parents:
1889
diff
changeset
|
2206 static void |
6b4116c34489
[svn] - change "Transparency" to "Miscillaneous UI Features" in prefswin
nenolod
parents:
1889
diff
changeset
|
2207 on_xmms_style_fileselector_realize(GtkToggleButton * button, |
6b4116c34489
[svn] - change "Transparency" to "Miscillaneous UI Features" in prefswin
nenolod
parents:
1889
diff
changeset
|
2208 gpointer data) |
6b4116c34489
[svn] - change "Transparency" to "Miscillaneous UI Features" in prefswin
nenolod
parents:
1889
diff
changeset
|
2209 { |
6b4116c34489
[svn] - change "Transparency" to "Miscillaneous UI Features" in prefswin
nenolod
parents:
1889
diff
changeset
|
2210 gtk_toggle_button_set_active(button, cfg.use_xmms_style_fileselector); |
6b4116c34489
[svn] - change "Transparency" to "Miscillaneous UI Features" in prefswin
nenolod
parents:
1889
diff
changeset
|
2211 } |
6b4116c34489
[svn] - change "Transparency" to "Miscillaneous UI Features" in prefswin
nenolod
parents:
1889
diff
changeset
|
2212 |
6b4116c34489
[svn] - change "Transparency" to "Miscillaneous UI Features" in prefswin
nenolod
parents:
1889
diff
changeset
|
2213 static void |
6b4116c34489
[svn] - change "Transparency" to "Miscillaneous UI Features" in prefswin
nenolod
parents:
1889
diff
changeset
|
2214 on_xmms_style_fileselector_toggled(GtkToggleButton * button, |
6b4116c34489
[svn] - change "Transparency" to "Miscillaneous UI Features" in prefswin
nenolod
parents:
1889
diff
changeset
|
2215 gpointer data) |
6b4116c34489
[svn] - change "Transparency" to "Miscillaneous UI Features" in prefswin
nenolod
parents:
1889
diff
changeset
|
2216 { |
6b4116c34489
[svn] - change "Transparency" to "Miscillaneous UI Features" in prefswin
nenolod
parents:
1889
diff
changeset
|
2217 cfg.use_xmms_style_fileselector = gtk_toggle_button_get_active(button); |
6b4116c34489
[svn] - change "Transparency" to "Miscillaneous UI Features" in prefswin
nenolod
parents:
1889
diff
changeset
|
2218 } |
6b4116c34489
[svn] - change "Transparency" to "Miscillaneous UI Features" in prefswin
nenolod
parents:
1889
diff
changeset
|
2219 |
1971
9fd04055d6cc
[svn] - add show window decorations option to appearance preferences. closes #167.
yaz
parents:
1905
diff
changeset
|
2220 static void |
9fd04055d6cc
[svn] - add show window decorations option to appearance preferences. closes #167.
yaz
parents:
1905
diff
changeset
|
2221 on_show_wm_decorations_realize(GtkToggleButton * button, |
9fd04055d6cc
[svn] - add show window decorations option to appearance preferences. closes #167.
yaz
parents:
1905
diff
changeset
|
2222 gpointer data) |
9fd04055d6cc
[svn] - add show window decorations option to appearance preferences. closes #167.
yaz
parents:
1905
diff
changeset
|
2223 { |
9fd04055d6cc
[svn] - add show window decorations option to appearance preferences. closes #167.
yaz
parents:
1905
diff
changeset
|
2224 gtk_toggle_button_set_active(button, cfg.show_wm_decorations); |
9fd04055d6cc
[svn] - add show window decorations option to appearance preferences. closes #167.
yaz
parents:
1905
diff
changeset
|
2225 } |
9fd04055d6cc
[svn] - add show window decorations option to appearance preferences. closes #167.
yaz
parents:
1905
diff
changeset
|
2226 |
9fd04055d6cc
[svn] - add show window decorations option to appearance preferences. closes #167.
yaz
parents:
1905
diff
changeset
|
2227 static void |
9fd04055d6cc
[svn] - add show window decorations option to appearance preferences. closes #167.
yaz
parents:
1905
diff
changeset
|
2228 on_show_wm_decorations_toggled(GtkToggleButton * button, |
9fd04055d6cc
[svn] - add show window decorations option to appearance preferences. closes #167.
yaz
parents:
1905
diff
changeset
|
2229 gpointer data) |
9fd04055d6cc
[svn] - add show window decorations option to appearance preferences. closes #167.
yaz
parents:
1905
diff
changeset
|
2230 { |
9fd04055d6cc
[svn] - add show window decorations option to appearance preferences. closes #167.
yaz
parents:
1905
diff
changeset
|
2231 extern GtkWidget *equalizerwin; |
9fd04055d6cc
[svn] - add show window decorations option to appearance preferences. closes #167.
yaz
parents:
1905
diff
changeset
|
2232 cfg.show_wm_decorations = gtk_toggle_button_get_active(button); |
9fd04055d6cc
[svn] - add show window decorations option to appearance preferences. closes #167.
yaz
parents:
1905
diff
changeset
|
2233 gtk_window_set_decorated(GTK_WINDOW(mainwin), cfg.show_wm_decorations); |
9fd04055d6cc
[svn] - add show window decorations option to appearance preferences. closes #167.
yaz
parents:
1905
diff
changeset
|
2234 gtk_window_set_decorated(GTK_WINDOW(playlistwin), cfg.show_wm_decorations); |
9fd04055d6cc
[svn] - add show window decorations option to appearance preferences. closes #167.
yaz
parents:
1905
diff
changeset
|
2235 gtk_window_set_decorated(GTK_WINDOW(equalizerwin), cfg.show_wm_decorations); |
9fd04055d6cc
[svn] - add show window decorations option to appearance preferences. closes #167.
yaz
parents:
1905
diff
changeset
|
2236 |
9fd04055d6cc
[svn] - add show window decorations option to appearance preferences. closes #167.
yaz
parents:
1905
diff
changeset
|
2237 } |
9fd04055d6cc
[svn] - add show window decorations option to appearance preferences. closes #167.
yaz
parents:
1905
diff
changeset
|
2238 |
0 | 2239 /* FIXME: complete the map */ |
2240 FUNC_MAP_BEGIN(prefswin_func_map) | |
2241 FUNC_MAP_ENTRY(on_input_plugin_view_realize) | |
2242 FUNC_MAP_ENTRY(on_output_plugin_cbox_realize) | |
2243 FUNC_MAP_ENTRY(on_general_plugin_view_realize) | |
2244 FUNC_MAP_ENTRY(on_vis_plugin_view_realize) | |
2245 FUNC_MAP_ENTRY(on_effect_plugin_view_realize) | |
2246 FUNC_MAP_ENTRY(on_custom_cursors_realize) | |
2247 FUNC_MAP_ENTRY(on_custom_cursors_toggled) | |
2248 FUNC_MAP_ENTRY(on_mainwin_font_button_realize) | |
2249 FUNC_MAP_ENTRY(on_mainwin_font_button_font_set) | |
124
428d3865de3c
[svn] More bitmap-font related stuff, working on a scrolling implementation too. (You can now enable or disable bitmap font support in Preferences.)
nenolod
parents:
0
diff
changeset
|
2250 FUNC_MAP_ENTRY(on_use_bitmap_fonts_realize) |
428d3865de3c
[svn] More bitmap-font related stuff, working on a scrolling implementation too. (You can now enable or disable bitmap font support in Preferences.)
nenolod
parents:
0
diff
changeset
|
2251 FUNC_MAP_ENTRY(on_use_bitmap_fonts_toggled) |
0 | 2252 FUNC_MAP_ENTRY(on_mouse_wheel_volume_realize) |
2253 FUNC_MAP_ENTRY(on_mouse_wheel_volume_changed) | |
2254 FUNC_MAP_ENTRY(on_mouse_wheel_scroll_pl_realize) | |
2255 FUNC_MAP_ENTRY(on_mouse_wheel_scroll_pl_changed) | |
2256 FUNC_MAP_ENTRY(on_pause_between_songs_time_realize) | |
2257 FUNC_MAP_ENTRY(on_pause_between_songs_time_changed) | |
2258 FUNC_MAP_ENTRY(on_pl_metadata_on_load_realize) | |
2259 FUNC_MAP_ENTRY(on_pl_metadata_on_load_toggled) | |
2260 FUNC_MAP_ENTRY(on_pl_metadata_on_display_realize) | |
2261 FUNC_MAP_ENTRY(on_pl_metadata_on_display_toggled) | |
2262 FUNC_MAP_ENTRY(on_playlist_show_pl_numbers_realize) | |
2263 FUNC_MAP_ENTRY(on_playlist_show_pl_numbers_toggled) | |
1056
21628529c615
[svn] add the config option to enable/disable separator line in the playlist
yaz
parents:
963
diff
changeset
|
2264 FUNC_MAP_ENTRY(on_playlist_show_pl_separator_realize) |
21628529c615
[svn] add the config option to enable/disable separator line in the playlist
yaz
parents:
963
diff
changeset
|
2265 FUNC_MAP_ENTRY(on_playlist_show_pl_separator_toggled) |
1081 | 2266 FUNC_MAP_ENTRY(on_playlist_transparent_realize) |
2267 FUNC_MAP_ENTRY(on_playlist_transparent_toggled) | |
0 | 2268 FUNC_MAP_ENTRY(on_playlist_convert_twenty_realize) |
2269 FUNC_MAP_ENTRY(on_playlist_convert_twenty_toggled) | |
2270 FUNC_MAP_ENTRY(on_playlist_convert_underscore_realize) | |
2271 FUNC_MAP_ENTRY(on_playlist_convert_underscore_toggled) | |
2019
d3a62e1075e2
[svn] Allow \ to / conversion to be switched on & off, by external contributor Chris Kehler <cbkehler@sympatico.ca>.
chainsaw
parents:
1971
diff
changeset
|
2272 FUNC_MAP_ENTRY(on_playlist_convert_slash_realize) |
d3a62e1075e2
[svn] Allow \ to / conversion to be switched on & off, by external contributor Chris Kehler <cbkehler@sympatico.ca>.
chainsaw
parents:
1971
diff
changeset
|
2273 FUNC_MAP_ENTRY(on_playlist_convert_slash_toggled) |
0 | 2274 FUNC_MAP_ENTRY(on_playlist_font_button_realize) |
2275 FUNC_MAP_ENTRY(on_playlist_font_button_font_set) | |
2276 FUNC_MAP_ENTRY(on_playlist_no_advance_realize) | |
2277 FUNC_MAP_ENTRY(on_playlist_no_advance_toggled) | |
893
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
2278 FUNC_MAP_ENTRY(on_refresh_file_list_realize) |
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
2279 FUNC_MAP_ENTRY(on_refresh_file_list_toggled) |
1832 | 2280 FUNC_MAP_ENTRY(on_skin_view_realize) |
0 | 2281 FUNC_MAP_ENTRY(on_titlestring_entry_realize) |
2282 FUNC_MAP_ENTRY(on_titlestring_entry_changed) | |
2283 FUNC_MAP_ENTRY(on_eq_dir_preset_entry_realize) | |
2284 FUNC_MAP_ENTRY(on_eq_dir_preset_entry_changed) | |
2285 FUNC_MAP_ENTRY(on_eq_file_preset_entry_realize) | |
2286 FUNC_MAP_ENTRY(on_eq_file_preset_entry_changed) | |
2287 FUNC_MAP_ENTRY(on_eq_preset_view_realize) | |
2288 FUNC_MAP_ENTRY(on_eq_preset_add_clicked) | |
2289 FUNC_MAP_ENTRY(on_eq_preset_remove_clicked) | |
954 | 2290 FUNC_MAP_ENTRY(on_skin_refresh_button_clicked) |
1070 | 2291 FUNC_MAP_ENTRY(on_proxy_use_toggled) |
2292 FUNC_MAP_ENTRY(on_proxy_use_realize) | |
2293 FUNC_MAP_ENTRY(on_proxy_auth_toggled) | |
2294 FUNC_MAP_ENTRY(on_proxy_auth_realize) | |
2295 FUNC_MAP_ENTRY(on_proxy_host_realize) | |
2296 FUNC_MAP_ENTRY(on_proxy_host_changed) | |
2297 FUNC_MAP_ENTRY(on_proxy_port_realize) | |
2298 FUNC_MAP_ENTRY(on_proxy_port_changed) | |
2299 FUNC_MAP_ENTRY(on_proxy_user_realize) | |
2300 FUNC_MAP_ENTRY(on_proxy_user_changed) | |
2301 FUNC_MAP_ENTRY(on_proxy_pass_realize) | |
2302 FUNC_MAP_ENTRY(on_proxy_pass_changed) | |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
2303 FUNC_MAP_ENTRY(on_chardet_detector_cbox_realize) |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
2304 FUNC_MAP_ENTRY(on_chardet_detector_cbox_changed) |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
2305 FUNC_MAP_ENTRY(on_chardet_fallback_realize) |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
2306 FUNC_MAP_ENTRY(on_chardet_fallback_changed) |
1147 | 2307 FUNC_MAP_ENTRY(on_output_plugin_bufsize_realize) |
2308 FUNC_MAP_ENTRY(on_output_plugin_bufsize_value_changed) | |
1163
ff71f891265b
[svn] - Allow to do format detection on demand; instead of immediately on add
nenolod
parents:
1147
diff
changeset
|
2309 FUNC_MAP_ENTRY(on_audio_format_det_cb_toggled) |
ff71f891265b
[svn] - Allow to do format detection on demand; instead of immediately on add
nenolod
parents:
1147
diff
changeset
|
2310 FUNC_MAP_ENTRY(on_audio_format_det_cb_realize) |
2109
27e0fe4de57e
[svn] - preferences pane option for extension-based detection
nenolod
parents:
2105
diff
changeset
|
2311 FUNC_MAP_ENTRY(on_detect_by_extension_cb_toggled) |
27e0fe4de57e
[svn] - preferences pane option for extension-based detection
nenolod
parents:
2105
diff
changeset
|
2312 FUNC_MAP_ENTRY(on_detect_by_extension_cb_realize) |
1358 | 2313 FUNC_MAP_ENTRY(on_show_filepopup_for_tuple_realize) |
2314 FUNC_MAP_ENTRY(on_show_filepopup_for_tuple_toggled) | |
1413 | 2315 FUNC_MAP_ENTRY(on_filepopup_for_tuple_settings_clicked) |
1382 | 2316 FUNC_MAP_ENTRY(on_continue_playback_on_startup_realize) |
2317 FUNC_MAP_ENTRY(on_continue_playback_on_startup_toggled) | |
1413 | 2318 |
2319 /* Filepopup settings */ | |
2320 FUNC_MAP_ENTRY(on_filepopup_settings_ok_clicked) | |
2321 FUNC_MAP_ENTRY(on_filepopup_settings_cancel_clicked) | |
1905
6b4116c34489
[svn] - change "Transparency" to "Miscillaneous UI Features" in prefswin
nenolod
parents:
1889
diff
changeset
|
2322 |
6b4116c34489
[svn] - change "Transparency" to "Miscillaneous UI Features" in prefswin
nenolod
parents:
1889
diff
changeset
|
2323 /* XMMS fileselector option -nenolod */ |
6b4116c34489
[svn] - change "Transparency" to "Miscillaneous UI Features" in prefswin
nenolod
parents:
1889
diff
changeset
|
2324 FUNC_MAP_ENTRY(on_xmms_style_fileselector_toggled) |
6b4116c34489
[svn] - change "Transparency" to "Miscillaneous UI Features" in prefswin
nenolod
parents:
1889
diff
changeset
|
2325 FUNC_MAP_ENTRY(on_xmms_style_fileselector_realize) |
1971
9fd04055d6cc
[svn] - add show window decorations option to appearance preferences. closes #167.
yaz
parents:
1905
diff
changeset
|
2326 |
9fd04055d6cc
[svn] - add show window decorations option to appearance preferences. closes #167.
yaz
parents:
1905
diff
changeset
|
2327 /* show window manager decorations */ |
9fd04055d6cc
[svn] - add show window decorations option to appearance preferences. closes #167.
yaz
parents:
1905
diff
changeset
|
2328 FUNC_MAP_ENTRY(on_show_wm_decorations_toggled) |
9fd04055d6cc
[svn] - add show window decorations option to appearance preferences. closes #167.
yaz
parents:
1905
diff
changeset
|
2329 FUNC_MAP_ENTRY(on_show_wm_decorations_realize) |
2187
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2330 |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2331 /* colorize */ |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2332 FUNC_MAP_ENTRY(on_colorize_button_clicked) |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2333 FUNC_MAP_ENTRY(on_red_scale_value_changed) |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2334 FUNC_MAP_ENTRY(on_green_scale_value_changed) |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2335 FUNC_MAP_ENTRY(on_blue_scale_value_changed) |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2336 FUNC_MAP_ENTRY(on_colorize_close_clicked) |
0 | 2337 FUNC_MAP_END |
2338 | |
2339 void | |
2340 create_prefs_window(void) | |
2341 { | |
2342 const gchar *glade_file = DATA_DIR "/glade/prefswin.glade"; | |
2343 | |
2344 GladeXML *xml; | |
2345 GtkWidget *widget, *widget2; | |
816
8073d8300502
[svn] display audacious version and revision in the prefs window
giacomo
parents:
625
diff
changeset
|
2346 GString *aud_version_string; |
0 | 2347 |
2348 GtkWidget *titlestring_tag_menu, *menu_item; | |
625
0a73d1faeb4e
[svn] GCC 4.1 warning fixes by Diego 'Flameeyes' Petteno from Gentoo.
chainsaw
parents:
383
diff
changeset
|
2349 guint i; |
0 | 2350 |
2351 /* load the interface */ | |
2352 xml = glade_xml_new_or_die(_("Preferences Window"), glade_file, NULL, | |
2353 NULL); | |
2354 | |
2355 | |
2356 /* connect the signals in the interface */ | |
2357 glade_xml_signal_autoconnect_map(xml, prefswin_func_map); | |
2358 | |
2359 prefswin = glade_xml_get_widget(xml, "prefswin"); | |
2360 g_object_set_data(G_OBJECT(prefswin), "glade-xml", xml); | |
1609
fb2ac7c9e096
[svn] - comment out some gtk_window_set_transient_for() which hide mainwin unexpectedly.
yaz
parents:
1547
diff
changeset
|
2361 /* this will hide only mainwin. it's annoying! yaz */ |
fb2ac7c9e096
[svn] - comment out some gtk_window_set_transient_for() which hide mainwin unexpectedly.
yaz
parents:
1547
diff
changeset
|
2362 // gtk_window_set_transient_for(GTK_WINDOW(prefswin), GTK_WINDOW(mainwin)); |
0 | 2363 |
2364 /* create category view */ | |
2365 widget = glade_xml_get_widget(xml, "category_view"); | |
2366 widget2 = glade_xml_get_widget(xml, "category_notebook"); | |
2367 g_signal_connect_after(G_OBJECT(widget), "realize", | |
2368 G_CALLBACK(on_category_view_realize), | |
2369 widget2); | |
2370 | |
1180 | 2371 category_treeview = GTK_WIDGET(widget); |
1175 | 2372 category_notebook = GTK_WIDGET(widget2); |
2373 | |
0 | 2374 /* plugin->input page */ |
2375 | |
2376 widget = glade_xml_get_widget(xml, "input_plugin_view"); | |
2377 widget2 = glade_xml_get_widget(xml, "input_plugin_prefs"); | |
2378 g_signal_connect(G_OBJECT(widget), "cursor-changed", | |
2379 G_CALLBACK(input_plugin_enable_prefs), | |
2380 widget2); | |
2381 | |
2382 g_signal_connect_swapped(G_OBJECT(widget2), "clicked", | |
2383 G_CALLBACK(input_plugin_open_prefs), | |
2384 widget); | |
2385 widget2 = glade_xml_get_widget(xml, "input_plugin_info"); | |
2386 g_signal_connect(G_OBJECT(widget), "cursor-changed", | |
2387 G_CALLBACK(input_plugin_enable_info), | |
2388 widget2); | |
2389 g_signal_connect_swapped(G_OBJECT(widget2), "clicked", | |
2390 G_CALLBACK(input_plugin_open_info), | |
2391 widget); | |
2392 | |
2393 /* plugin->output page */ | |
2394 | |
2395 widget = glade_xml_get_widget(xml, "output_plugin_cbox"); | |
2396 | |
2397 widget2 = glade_xml_get_widget(xml, "output_plugin_prefs"); | |
2398 g_signal_connect(G_OBJECT(widget), "changed", | |
2399 G_CALLBACK(output_plugin_enable_prefs), | |
2400 widget2); | |
2401 g_signal_connect_swapped(G_OBJECT(widget2), "clicked", | |
2402 G_CALLBACK(output_plugin_open_prefs), | |
2403 widget); | |
2404 | |
2405 widget2 = glade_xml_get_widget(xml, "output_plugin_info"); | |
2406 g_signal_connect(G_OBJECT(widget), "changed", | |
2407 G_CALLBACK(output_plugin_enable_info), | |
2408 widget2); | |
2409 g_signal_connect_swapped(G_OBJECT(widget2), "clicked", | |
2410 G_CALLBACK(output_plugin_open_info), | |
2411 widget); | |
2412 | |
2413 /* plugin->general page */ | |
2414 | |
2415 widget = glade_xml_get_widget(xml, "general_plugin_view"); | |
2416 | |
2417 widget2 = glade_xml_get_widget(xml, "general_plugin_prefs"); | |
2418 g_signal_connect(G_OBJECT(widget), "cursor-changed", | |
2419 G_CALLBACK(general_plugin_enable_prefs), | |
2420 widget2); | |
2421 g_signal_connect_swapped(G_OBJECT(widget2), "clicked", | |
2422 G_CALLBACK(general_plugin_open_prefs), | |
2423 widget); | |
2424 | |
2425 widget2 = glade_xml_get_widget(xml, "general_plugin_info"); | |
2426 g_signal_connect(G_OBJECT(widget), "cursor-changed", | |
2427 G_CALLBACK(general_plugin_enable_info), | |
2428 widget2); | |
2429 g_signal_connect_swapped(G_OBJECT(widget2), "clicked", | |
2430 G_CALLBACK(general_plugin_open_info), | |
2431 widget); | |
2432 | |
2433 | |
2434 /* plugin->vis page */ | |
2435 | |
2436 widget = glade_xml_get_widget(xml, "vis_plugin_view"); | |
2437 widget2 = glade_xml_get_widget(xml, "vis_plugin_prefs"); | |
2438 | |
2439 g_signal_connect_swapped(G_OBJECT(widget2), "clicked", | |
2440 G_CALLBACK(vis_plugin_open_prefs), | |
2441 widget); | |
2442 g_signal_connect(G_OBJECT(widget), "cursor-changed", | |
2443 G_CALLBACK(vis_plugin_enable_prefs), widget2); | |
2444 | |
2445 | |
2446 widget2 = glade_xml_get_widget(xml, "vis_plugin_info"); | |
2447 g_signal_connect(G_OBJECT(widget), "cursor-changed", | |
2448 G_CALLBACK(vis_plugin_enable_info), widget2); | |
2449 g_signal_connect_swapped(G_OBJECT(widget2), "clicked", | |
2450 G_CALLBACK(vis_plugin_open_info), | |
2451 widget); | |
2452 | |
2453 | |
2454 /* plugin->effects page */ | |
2455 | |
2456 widget = glade_xml_get_widget(xml, "effect_plugin_view"); | |
2457 widget2 = glade_xml_get_widget(xml, "effect_plugin_prefs"); | |
2458 | |
2459 g_signal_connect_swapped(G_OBJECT(widget2), "clicked", | |
2460 G_CALLBACK(effect_plugin_open_prefs), | |
2461 widget); | |
2462 g_signal_connect(G_OBJECT(widget), "cursor-changed", | |
2463 G_CALLBACK(effect_plugin_enable_prefs), widget2); | |
2464 | |
2465 | |
2466 widget2 = glade_xml_get_widget(xml, "effect_plugin_info"); | |
2467 g_signal_connect(G_OBJECT(widget), "cursor-changed", | |
2468 G_CALLBACK(effect_plugin_enable_info), widget2); | |
2469 g_signal_connect_swapped(G_OBJECT(widget2), "clicked", | |
2470 G_CALLBACK(effect_plugin_open_info), | |
2471 widget); | |
2472 | |
2473 /* playlist page */ | |
2474 | |
2475 widget = glade_xml_get_widget(xml, "pause_between_songs_box"); | |
2476 widget2 = glade_xml_get_widget(xml, "pause_between_songs"); | |
2477 g_signal_connect_after(G_OBJECT(widget2), "realize", | |
2478 G_CALLBACK(on_pause_between_songs_realize), | |
2479 widget); | |
2480 g_signal_connect(G_OBJECT(widget2), "toggled", | |
2481 G_CALLBACK(on_pause_between_songs_toggled), | |
2482 widget); | |
2483 | |
2484 widget = glade_xml_get_widget(xml, "playlist_use_metadata_box"); | |
2485 widget2 = glade_xml_get_widget(xml, "playlist_use_metadata"); | |
2486 g_signal_connect_after(G_OBJECT(widget2), "realize", | |
2487 G_CALLBACK(on_use_pl_metadata_realize), | |
2488 widget); | |
2489 g_signal_connect(G_OBJECT(widget2), "toggled", | |
2490 G_CALLBACK(on_use_pl_metadata_toggled), | |
2491 widget); | |
2492 | |
2493 widget = glade_xml_get_widget(xml, "skin_view"); | |
2494 g_signal_connect(widget, "drag-data-received", | |
2495 G_CALLBACK(on_skin_view_drag_data_received), | |
2496 NULL); | |
2497 bmp_drag_dest_set(widget); | |
2498 | |
2499 g_signal_connect(mainwin, "drag-data-received", | |
2500 G_CALLBACK(mainwin_drag_data_received), | |
2501 widget); | |
2502 | |
887 | 2503 widget = glade_xml_get_widget(xml, "skin_refresh_button"); |
2504 g_signal_connect(widget, "clicked", | |
2505 G_CALLBACK(on_skin_refresh_button_clicked), | |
2506 NULL); | |
2507 | |
2508 widget = glade_xml_get_widget(xml, "playlist_font_button"); | |
0 | 2509 g_signal_connect(mainwin, "drag-data-received", |
2510 G_CALLBACK(mainwin_drag_data_received1), | |
2511 widget); | |
2512 | |
2513 widget = glade_xml_get_widget(xml, "titlestring_cbox"); | |
2514 widget2 = glade_xml_get_widget(xml, "titlestring_entry"); | |
2515 g_signal_connect(widget, "realize", | |
2516 G_CALLBACK(on_titlestring_cbox_realize), | |
2517 widget2); | |
2518 g_signal_connect(widget, "changed", | |
2519 G_CALLBACK(on_titlestring_cbox_changed), | |
2520 widget2); | |
2521 | |
2522 /* FIXME: move this into a function */ | |
2523 /* create tag menu */ | |
2524 titlestring_tag_menu = gtk_menu_new(); | |
2525 for(i = 0; i < n_title_field_tags; i++) { | |
2526 menu_item = gtk_menu_item_new_with_label(_(title_field_tags[i].name)); | |
2527 gtk_menu_shell_append(GTK_MENU_SHELL(titlestring_tag_menu), menu_item); | |
2528 g_signal_connect(menu_item, "activate", | |
2529 G_CALLBACK(titlestring_tag_menu_callback), | |
2530 GINT_TO_POINTER(i)); | |
2531 }; | |
2532 gtk_widget_show_all(titlestring_tag_menu); | |
2533 | |
2534 widget = glade_xml_get_widget(xml, "titlestring_help_button"); | |
2535 widget2 = glade_xml_get_widget(xml, "titlestring_cbox"); | |
2536 | |
2537 g_signal_connect(widget2, "changed", | |
2538 G_CALLBACK(on_titlestring_cbox_changed), | |
2539 widget); | |
2540 g_signal_connect(widget, "clicked", | |
2541 G_CALLBACK(on_titlestring_help_button_clicked), | |
2542 titlestring_tag_menu); | |
816
8073d8300502
[svn] display audacious version and revision in the prefs window
giacomo
parents:
625
diff
changeset
|
2543 |
8073d8300502
[svn] display audacious version and revision in the prefs window
giacomo
parents:
625
diff
changeset
|
2544 /* audacious version label */ |
8073d8300502
[svn] display audacious version and revision in the prefs window
giacomo
parents:
625
diff
changeset
|
2545 widget = glade_xml_get_widget(xml, "audversionlabel"); |
8073d8300502
[svn] display audacious version and revision in the prefs window
giacomo
parents:
625
diff
changeset
|
2546 aud_version_string = g_string_new( "" ); |
822
c5eb4b762977
[svn] - only show the SVN revision if we know what it is
nenolod
parents:
818
diff
changeset
|
2547 |
824 | 2548 if (strcasecmp(svn_stamp, "exported")) |
822
c5eb4b762977
[svn] - only show the SVN revision if we know what it is
nenolod
parents:
818
diff
changeset
|
2549 { |
1135 | 2550 g_string_printf( aud_version_string , "<span size='small'>%s (r%s) (%s@%s)</span>" , "Audacious " PACKAGE_VERSION , |
822
c5eb4b762977
[svn] - only show the SVN revision if we know what it is
nenolod
parents:
818
diff
changeset
|
2551 svn_stamp , g_get_user_name() , g_get_host_name() ); |
c5eb4b762977
[svn] - only show the SVN revision if we know what it is
nenolod
parents:
818
diff
changeset
|
2552 } |
c5eb4b762977
[svn] - only show the SVN revision if we know what it is
nenolod
parents:
818
diff
changeset
|
2553 else |
c5eb4b762977
[svn] - only show the SVN revision if we know what it is
nenolod
parents:
818
diff
changeset
|
2554 { |
1135 | 2555 g_string_printf( aud_version_string , "<span size='small'>%s (%s@%s)</span>" , "Audacious " PACKAGE_VERSION , |
822
c5eb4b762977
[svn] - only show the SVN revision if we know what it is
nenolod
parents:
818
diff
changeset
|
2556 g_get_user_name() , g_get_host_name() ); |
c5eb4b762977
[svn] - only show the SVN revision if we know what it is
nenolod
parents:
818
diff
changeset
|
2557 } |
c5eb4b762977
[svn] - only show the SVN revision if we know what it is
nenolod
parents:
818
diff
changeset
|
2558 |
1135 | 2559 gtk_label_set_markup( GTK_LABEL(widget) , aud_version_string->str ); |
816
8073d8300502
[svn] display audacious version and revision in the prefs window
giacomo
parents:
625
diff
changeset
|
2560 g_string_free( aud_version_string , TRUE ); |
1413 | 2561 |
2562 /* Create window for filepopup settings */ | |
2563 filepopup_settings = glade_xml_get_widget(xml, "filepopup_for_tuple_settings"); | |
2564 gtk_window_set_transient_for(GTK_WINDOW(filepopup_settings), GTK_WINDOW(prefswin)); | |
1889
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2565 |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2566 widget = glade_xml_get_widget(xml, "filepopup_settings_recurse_for_cover_depth_box"); |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2567 widget2 = glade_xml_get_widget(xml, "filepopup_settings_recurse_for_cover"); |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2568 g_signal_connect(G_OBJECT(widget2), "toggled", |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2569 G_CALLBACK(on_recurse_for_cover_toggled), |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1864
diff
changeset
|
2570 widget); |
2187
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2571 |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2572 /* Create window for filepopup settings */ |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2573 colorize_settings = glade_xml_get_widget(xml, "colorize_popup"); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2574 gtk_window_set_transient_for(GTK_WINDOW(colorize_settings), GTK_WINDOW(prefswin)); |
3a5a895ce665
[svn] - allow changing the colourtheme from preferences
nenolod
parents:
2140
diff
changeset
|
2575 gtk_widget_hide(colorize_settings); |
0 | 2576 } |
2577 | |
2578 void | |
2579 show_prefs_window(void) | |
2580 { | |
2581 gtk_widget_show(prefswin); | |
2582 } | |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1081
diff
changeset
|
2583 |
1184
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
2584 static void |
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
2585 prefswin_page_queue_new(GtkWidget *container, gchar *name, gchar *imgurl) |
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
2586 { |
1352
8b249765fdd1
[svn] - GList cannot handle circular queues, so I integrated one into CategoryQueueEntry. No fuss, no muss.
nenolod
parents:
1188
diff
changeset
|
2587 CategoryQueueEntry *ent = g_malloc0(sizeof(CategoryQueueEntry)); |
1184
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
2588 |
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
2589 ent->container = container; |
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
2590 ent->pg_name = name; |
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
2591 ent->img_url = imgurl; |
1352
8b249765fdd1
[svn] - GList cannot handle circular queues, so I integrated one into CategoryQueueEntry. No fuss, no muss.
nenolod
parents:
1188
diff
changeset
|
2592 |
8b249765fdd1
[svn] - GList cannot handle circular queues, so I integrated one into CategoryQueueEntry. No fuss, no muss.
nenolod
parents:
1188
diff
changeset
|
2593 if (category_queue) |
8b249765fdd1
[svn] - GList cannot handle circular queues, so I integrated one into CategoryQueueEntry. No fuss, no muss.
nenolod
parents:
1188
diff
changeset
|
2594 ent->next = category_queue; |
8b249765fdd1
[svn] - GList cannot handle circular queues, so I integrated one into CategoryQueueEntry. No fuss, no muss.
nenolod
parents:
1188
diff
changeset
|
2595 |
8b249765fdd1
[svn] - GList cannot handle circular queues, so I integrated one into CategoryQueueEntry. No fuss, no muss.
nenolod
parents:
1188
diff
changeset
|
2596 category_queue = ent; |
1184
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
2597 } |
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
2598 |
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
2599 static void |
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
2600 prefswin_page_queue_destroy(CategoryQueueEntry *ent) |
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
2601 { |
1352
8b249765fdd1
[svn] - GList cannot handle circular queues, so I integrated one into CategoryQueueEntry. No fuss, no muss.
nenolod
parents:
1188
diff
changeset
|
2602 category_queue = ent->next; |
1184
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
2603 g_free(ent); |
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
2604 } |
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
2605 |
1175 | 2606 /* |
2607 * Public APIs for adding new pages to the prefs window. | |
2608 * | |
2609 * Basically, the concept here is that third party components can register themselves in the root | |
2610 * preferences window. | |
2611 * | |
2612 * From a usability standpoint this makes the application look more "united", instead of cluttered | |
2613 * and malorganised. Hopefully this option will be used further in the future. | |
2614 * | |
2615 * - nenolod | |
2616 */ | |
1185 | 2617 gint |
1178 | 2618 prefswin_page_new(GtkWidget *container, gchar *name, gchar *imgurl) |
1175 | 2619 { |
2620 GtkTreeModel *model; | |
2621 GtkTreeIter iter; | |
2622 GdkPixbuf *img = NULL; | |
2623 GtkTreeView *treeview = GTK_TREE_VIEW(category_treeview); | |
2624 gint id; | |
2625 | |
1352
8b249765fdd1
[svn] - GList cannot handle circular queues, so I integrated one into CategoryQueueEntry. No fuss, no muss.
nenolod
parents:
1188
diff
changeset
|
2626 if (treeview == NULL || category_notebook == NULL) |
1184
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
2627 { |
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
2628 prefswin_page_queue_new(container, name, imgurl); |
1185 | 2629 return -1; |
1184
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
2630 } |
1175 | 2631 |
2632 model = gtk_tree_view_get_model(treeview); | |
2633 | |
2634 if (model == NULL) | |
1184
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
2635 { |
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
2636 prefswin_page_queue_new(container, name, imgurl); |
1185 | 2637 return -1; |
1184
b146ec74d778
[svn] - place plugins we cannot register UIs for right now in a queue and register them later
nenolod
parents:
1180
diff
changeset
|
2638 } |
1175 | 2639 |
1186
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2640 /* Make sure the widgets are visible. */ |
1180 | 2641 gtk_widget_show(container); |
1175 | 2642 id = gtk_notebook_append_page(GTK_NOTEBOOK(category_notebook), container, NULL); |
2643 | |
2644 if (id == -1) | |
1185 | 2645 return -1; |
1175 | 2646 |
2647 if (imgurl != NULL) | |
2648 img = gdk_pixbuf_new_from_file(imgurl, NULL); | |
2649 | |
2650 gtk_list_store_append(GTK_LIST_STORE(model), &iter); | |
2651 gtk_list_store_set(GTK_LIST_STORE(model), &iter, | |
2652 CATEGORY_VIEW_COL_ICON, img, | |
2653 CATEGORY_VIEW_COL_NAME, | |
2654 name, CATEGORY_VIEW_COL_ID, id, -1); | |
2655 | |
2656 if (img != NULL) | |
2657 g_object_unref(img); | |
2658 | |
1185 | 2659 return id; |
1175 | 2660 } |
1186
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2661 |
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2662 void |
1188 | 2663 prefswin_page_destroy(GtkWidget *container) |
1186
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2664 { |
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2665 GtkTreeModel *model; |
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2666 GtkTreeIter iter; |
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2667 GtkTreeView *treeview = GTK_TREE_VIEW(category_treeview); |
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2668 gboolean ret; |
1188 | 2669 gint id; |
1384 | 2670 gint index = -1; |
1188 | 2671 |
2672 if (category_notebook == NULL || treeview == NULL || container == NULL) | |
2673 return; | |
2674 | |
2675 id = gtk_notebook_page_num(GTK_NOTEBOOK(category_notebook), container); | |
2676 | |
2677 if (id == -1) | |
1186
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2678 return; |
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2679 |
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2680 gtk_notebook_remove_page(GTK_NOTEBOOK(category_notebook), id); |
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2681 |
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2682 model = gtk_tree_view_get_model(treeview); |
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2683 |
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2684 if (model == NULL) |
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2685 return; |
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2686 |
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2687 ret = gtk_tree_model_get_iter_first(model, &iter); |
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2688 |
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2689 while (ret == TRUE) |
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2690 { |
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2691 gtk_tree_model_get(model, &iter, CATEGORY_VIEW_COL_ID, &index, -1); |
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2692 |
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2693 if (index == id) |
1384 | 2694 { |
1186
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2695 gtk_list_store_remove(GTK_LIST_STORE(model), &iter); |
1384 | 2696 ret = gtk_tree_model_get_iter_first(model, &iter); |
2697 } | |
2698 | |
2699 if (index > id) | |
2700 { | |
2701 index--; | |
2702 gtk_list_store_set(GTK_LIST_STORE(model), &iter, CATEGORY_VIEW_COL_ID, index, -1); | |
2703 } | |
1186
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2704 |
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2705 ret = gtk_tree_model_iter_next(model, &iter); |
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2706 } |
d7848ff5bbe5
[svn] - prefswin_page_destroy() code, example will be added to the scrobbler plugin momentarily
nenolod
parents:
1185
diff
changeset
|
2707 } |