split filelist.c to filefilter.c and filedata.c
[geeqie.git] / src / preferences.c
1 /*
2  * Geeqie
3  * (C) 2006 John Ellis
4  * Copyright (C) 2008 The Geeqie Team
5  *
6  * Author: John Ellis
7  *
8  * This software is released under the GNU General Public License (GNU GPL).
9  * Please read the included file COPYING for more information.
10  * This software comes with no warranty of any kind, use at your own risk!
11  */
12
13
14 #include "main.h"
15 #include "preferences.h"
16
17 #include "cache_maint.h"
18 #include "debug.h"
19 #include "editors.h"
20 #include "filedata.h"
21 #include "filefilter.h"
22 #include "fullscreen.h"
23 #include "image.h"
24 #include "image-overlay.h"
25 #include "color-man.h"
26 #include "img-view.h"
27 #include "layout_config.h"
28 #include "layout_util.h"
29 #include "pixbuf_util.h"
30 #include "slideshow.h"
31 #include "utilops.h"
32 #include "ui_fileops.h"
33 #include "ui_misc.h"
34 #include "ui_tabcomp.h"
35 #include "ui_utildlg.h"
36 #include "bar_exif.h"
37 #include "exif.h"
38
39 #include <math.h>
40
41
42 #define EDITOR_NAME_MAX_LENGTH 32
43 #define EDITOR_COMMAND_MAX_LENGTH 1024
44
45
46 typedef struct _ThumbSize ThumbSize;
47 struct _ThumbSize
48 {
49         gint w;
50         gint h;
51 };
52
53 static ThumbSize thumb_size_list[] =
54 {
55         { 24, 24 },
56         { 32, 32 },
57         { 48, 48 },
58         { 64, 64 },
59         { 96, 72 },
60         { 96, 96 },
61         { 128, 96 },
62         { 128, 128 },
63         { 160, 120 },
64         { 160, 160 },
65         { 192, 144 },
66         { 192, 192 },
67         { 256, 192 },
68         { 256, 256 }
69 };
70
71 enum {
72         FE_ENABLE,
73         FE_EXTENSION,
74         FE_DESCRIPTION
75 };
76
77 /* config memory values */
78 static ConfOptions *c_options = NULL;
79
80
81 #ifdef DEBUG
82 static gint debug_c;
83 #endif
84
85 static GtkWidget *configwindow = NULL;
86 static GtkWidget *startup_path_entry;
87 static GtkListStore *filter_store = NULL;
88 static GtkWidget *editor_name_entry[GQ_EDITOR_SLOTS];
89 static GtkWidget *editor_command_entry[GQ_EDITOR_SLOTS];
90
91 static GtkWidget *layout_widget;
92
93 static GtkWidget *safe_delete_path_entry;
94
95 static GtkWidget *color_profile_input_file_entry[COLOR_PROFILE_INPUTS];
96 static GtkWidget *color_profile_input_name_entry[COLOR_PROFILE_INPUTS];
97 static GtkWidget *color_profile_screen_file_entry;
98
99 static GtkWidget *sidecar_ext_entry;
100
101
102 #define CONFIG_WINDOW_DEF_WIDTH         700
103 #define CONFIG_WINDOW_DEF_HEIGHT        500
104
105 /*
106  *-----------------------------------------------------------------------------
107  * option widget callbacks (private)
108  *-----------------------------------------------------------------------------
109  */
110
111 static void startup_path_set_current(GtkWidget *widget, gpointer data)
112 {
113         gtk_entry_set_text(GTK_ENTRY(startup_path_entry), layout_get_path(NULL));
114 }
115
116 static void zoom_mode_original_cb(GtkWidget *widget, gpointer data)
117 {
118         if (GTK_TOGGLE_BUTTON (widget)->active)
119                 c_options->image.zoom_mode = ZOOM_RESET_ORIGINAL;
120 }
121
122 static void zoom_mode_fit_cb(GtkWidget *widget, gpointer data)
123 {
124         if (GTK_TOGGLE_BUTTON (widget)->active)
125                 c_options->image.zoom_mode = ZOOM_RESET_FIT_WINDOW;
126 }
127
128 static void zoom_mode_none_cb(GtkWidget *widget, gpointer data)
129 {
130         if (GTK_TOGGLE_BUTTON (widget)->active)
131                 c_options->image.zoom_mode = ZOOM_RESET_NONE;
132 }
133
134 static void zoom_increment_cb(GtkWidget *spin, gpointer data)
135 {
136         c_options->image.zoom_increment = (gint)(gtk_spin_button_get_value(GTK_SPIN_BUTTON(spin)) * 10.0 + 0.01);
137 }
138
139 static void slideshow_delay_cb(GtkWidget *spin, gpointer data)
140 {
141         c_options->slideshow.delay = (gint)(gtk_spin_button_get_value(GTK_SPIN_BUTTON(spin)) *
142                                    (double)SLIDESHOW_SUBSECOND_PRECISION + 0.01);
143 }
144
145 /*
146  *-----------------------------------------------------------------------------
147  * sync progam to config window routine (private)
148  *-----------------------------------------------------------------------------
149  */
150
151 static void config_window_apply(void)
152 {
153         const gchar *buf;
154         gint new_style;
155         gint i;
156         gint refresh = FALSE;
157
158         for (i = 0; i < GQ_EDITOR_SLOTS; i++)
159                 {
160                 if (i < GQ_EDITOR_GENERIC_SLOTS)
161                         {
162                         g_free(options->editor_name[i]);
163                         options->editor_name[i] = NULL;
164                         buf = gtk_entry_get_text(GTK_ENTRY(editor_name_entry[i]));
165                         if (buf && strlen(buf) > 0) options->editor_name[i] = g_strdup(buf);
166                         }
167
168                 g_free(options->editor_command[i]);
169                 options->editor_command[i] = NULL;
170                 buf = gtk_entry_get_text(GTK_ENTRY(editor_command_entry[i]));
171                 if (buf && strlen(buf) > 0) options->editor_command[i] = g_strdup(buf);
172                 }
173         layout_edit_update_all();
174
175         g_free(options->startup_path);
176         options->startup_path = NULL;
177         buf = gtk_entry_get_text(GTK_ENTRY(startup_path_entry));
178         if (buf && strlen(buf) > 0) options->startup_path = remove_trailing_slash(buf);
179
180         g_free(options->file_ops.safe_delete_path);
181         options->file_ops.safe_delete_path = NULL;
182         buf = gtk_entry_get_text(GTK_ENTRY(safe_delete_path_entry));
183         if (buf && strlen(buf) > 0) options->file_ops.safe_delete_path = remove_trailing_slash(buf);
184
185         if (options->file_filter.show_hidden_files != c_options->file_filter.show_hidden_files) refresh = TRUE;
186         if (options->file_filter.show_dot_directory != c_options->file_filter.show_dot_directory) refresh = TRUE;
187         if (options->file_sort.case_sensitive != c_options->file_sort.case_sensitive) refresh = TRUE;
188         if (options->file_filter.disable != c_options->file_filter.disable) refresh = TRUE;
189
190         options->startup_path_enable = c_options->startup_path_enable;
191         options->file_ops.confirm_delete = c_options->file_ops.confirm_delete;
192         options->file_ops.enable_delete_key = c_options->file_ops.enable_delete_key;
193         options->file_ops.safe_delete_enable = c_options->file_ops.safe_delete_enable;
194         options->file_ops.safe_delete_folder_maxsize = c_options->file_ops.safe_delete_folder_maxsize;
195         options->layout.tools_restore_state = c_options->layout.tools_restore_state;
196         options->layout.save_window_positions = c_options->layout.save_window_positions;
197         options->image.zoom_mode = c_options->image.zoom_mode;
198         options->image.zoom_2pass = c_options->image.zoom_2pass;
199         options->image.fit_window_to_image = c_options->image.fit_window_to_image;
200         options->image.limit_window_size = c_options->image.limit_window_size;
201         options->image.zoom_to_fit_allow_expand = c_options->image.zoom_to_fit_allow_expand;
202         options->image.max_window_size = c_options->image.max_window_size;
203         options->image.limit_autofit_size = c_options->image.limit_autofit_size;
204         options->image.max_autofit_size = c_options->image.max_autofit_size;
205         options->progressive_key_scrolling = c_options->progressive_key_scrolling;
206         options->thumbnails.max_width = c_options->thumbnails.max_width;
207         options->thumbnails.max_height = c_options->thumbnails.max_height;
208         options->thumbnails.enable_caching = c_options->thumbnails.enable_caching;
209         options->thumbnails.cache_into_dirs = c_options->thumbnails.cache_into_dirs;
210         options->thumbnails.fast = c_options->thumbnails.fast;
211 #if 0
212         options->thumbnails.use_xvpics = c_options->thumbnails.use_xvpics;
213 #endif
214         options->thumbnails.spec_standard = c_options->thumbnails.spec_standard;
215         options->enable_metadata_dirs = c_options->enable_metadata_dirs;
216         options->file_filter.show_hidden_files = c_options->file_filter.show_hidden_files;
217         options->file_filter.show_dot_directory = c_options->file_filter.show_dot_directory;
218
219         options->file_sort.case_sensitive = c_options->file_sort.case_sensitive;
220         options->file_filter.disable = c_options->file_filter.disable;
221
222         sidecar_ext_parse(gtk_entry_get_text(GTK_ENTRY(sidecar_ext_entry)), FALSE);
223
224         options->slideshow.random = c_options->slideshow.random;
225         options->slideshow.repeat = c_options->slideshow.repeat;
226         options->slideshow.delay = c_options->slideshow.delay;
227
228         options->mousewheel_scrolls = c_options->mousewheel_scrolls;
229
230         options->file_ops.enable_in_place_rename = c_options->file_ops.enable_in_place_rename;
231
232         options->collections.rectangular_selection = c_options->collections.rectangular_selection;
233
234         options->image.tile_cache_max = c_options->image.tile_cache_max;
235
236         options->image.read_buffer_size = c_options->image.read_buffer_size;
237         options->image.idle_read_loop_count = c_options->image.idle_read_loop_count;
238
239         options->thumbnails.quality = c_options->thumbnails.quality;
240         options->image.zoom_quality = c_options->image.zoom_quality;
241
242         options->image.zoom_increment = c_options->image.zoom_increment;
243
244         options->image.enable_read_ahead = c_options->image.enable_read_ahead;
245
246         if (options->image.use_custom_border_color != c_options->image.use_custom_border_color
247             || !gdk_color_equal(&options->image.border_color, &c_options->image.border_color))
248                 {
249                 options->image.use_custom_border_color = c_options->image.use_custom_border_color;
250                 options->image.border_color = c_options->image.border_color;
251                 layout_colors_update();
252                 view_window_colors_update();
253                 }
254
255         options->fullscreen.screen = c_options->fullscreen.screen;
256         options->fullscreen.clean_flip = c_options->fullscreen.clean_flip;
257         options->fullscreen.disable_saver = c_options->fullscreen.disable_saver;
258         options->fullscreen.above = c_options->fullscreen.above;
259         options->image_overlay.common.show_at_startup = c_options->image_overlay.common.show_at_startup;
260         if (c_options->image_overlay.common.template_string)
261                 {
262                 g_free(options->image_overlay.common.template_string);
263                 options->image_overlay.common.template_string = g_strdup(c_options->image_overlay.common.template_string);
264                 }
265
266         options->update_on_time_change = c_options->update_on_time_change;
267         options->image.exif_rotate_enable = c_options->image.exif_rotate_enable;
268
269         options->duplicates_similarity_threshold = c_options->duplicates_similarity_threshold;
270
271         options->tree_descend_subdirs = c_options->tree_descend_subdirs;
272
273         options->open_recent_list_maxsize = c_options->open_recent_list_maxsize;
274         options->dnd_icon_size = c_options->dnd_icon_size;
275         
276         if (options->show_copy_path != c_options->show_copy_path)
277                 {
278                 options->show_copy_path = c_options->show_copy_path;
279                 layout_copy_path_update_all();
280                 }
281
282 #ifdef DEBUG
283         set_debug_level(debug_c);
284 #endif
285
286 #ifdef HAVE_LCMS
287         for (i = 0; i < COLOR_PROFILE_INPUTS; i++)
288                 {
289                 g_free(options->color_profile.input_name[i]);
290                 options->color_profile.input_name[i] = NULL;
291                 buf = gtk_entry_get_text(GTK_ENTRY(color_profile_input_name_entry[i]));
292                 if (buf && strlen(buf) > 0) options->color_profile.input_name[i] = g_strdup(buf);
293
294                 g_free(options->color_profile.input_file[i]);
295                 options->color_profile.input_file[i] = NULL;
296                 buf = gtk_entry_get_text(GTK_ENTRY(color_profile_input_file_entry[i]));
297                 if (buf && strlen(buf) > 0) options->color_profile.input_file[i] = g_strdup(buf);
298                 }
299         g_free(options->color_profile.screen_file);
300         options->color_profile.screen_file = NULL;
301         buf = gtk_entry_get_text(GTK_ENTRY(color_profile_screen_file_entry));
302         if (buf && strlen(buf) > 0) options->color_profile.screen_file = g_strdup(buf);
303 #endif
304
305         for (i = 0; ExifUIList[i].key; i++)
306                 {
307                 ExifUIList[i].current = ExifUIList[i].temp;
308                 }
309
310         {
311         gchar *layout_order = layout_config_get(layout_widget, &new_style);
312
313         if (new_style != options->layout.style ||
314             (layout_order == NULL) != (options->layout.order == NULL) ||
315             !options->layout.order ||
316             strcmp(layout_order, options->layout.order) != 0)
317                 {
318                 if (refresh) filter_rebuild();
319                 refresh = FALSE;
320
321                 g_free(options->layout.order);
322                 options->layout.order = layout_order;
323                 layout_order = NULL; /* g_free() later */
324
325                 options->layout.style = new_style;
326
327                 layout_styles_update();
328                 }
329
330         g_free(layout_order);
331         }
332
333         image_options_sync();
334
335         if (refresh)
336                 {
337                 filter_rebuild();
338                 layout_refresh(NULL);
339                 }
340 }
341
342 /*
343  *-----------------------------------------------------------------------------
344  * config window main button callbacks (private)
345  *-----------------------------------------------------------------------------
346  */
347
348 static void config_window_close_cb(GtkWidget *widget, gpointer data)
349 {
350         gtk_widget_destroy(configwindow);
351         configwindow = NULL;
352         filter_store = NULL;
353 }
354
355 static gint config_window_delete(GtkWidget *w, GdkEventAny *event, gpointer data)
356 {
357         config_window_close_cb(NULL, NULL);
358         return TRUE;
359 }
360
361 static void config_window_ok_cb(GtkWidget *widget, gpointer data)
362 {
363         config_window_apply();
364         config_window_close_cb(NULL, NULL);
365 }
366
367 static void config_window_apply_cb(GtkWidget *widget, gpointer data)
368 {
369         config_window_apply();
370 }
371
372 /*
373  *-----------------------------------------------------------------------------
374  * config window setup (private)
375  *-----------------------------------------------------------------------------
376  */
377
378 static void exif_item_cb(GtkWidget *combo, gpointer data)
379 {
380         gint *option = data;
381         *option = gtk_combo_box_get_active(GTK_COMBO_BOX(combo));
382 }
383
384 static void exif_item(GtkWidget *table, gint column, gint row,
385                       const gchar *text, gint option, gint *option_c)
386 {
387         GtkWidget *combo;
388
389         *option_c = option;
390
391         pref_table_label(table, column, row, text, 0.0);
392
393         combo = gtk_combo_box_new_text();
394
395         /* note: the order is important, it must match the values of
396          * EXIF_UI_OFF, _IFSET, _ON */
397         gtk_combo_box_append_text(GTK_COMBO_BOX(combo), _("Never"));
398         gtk_combo_box_append_text(GTK_COMBO_BOX(combo), _("If set"));
399         gtk_combo_box_append_text(GTK_COMBO_BOX(combo), _("Always"));
400
401         gtk_combo_box_set_active(GTK_COMBO_BOX(combo), option);
402
403         g_signal_connect(G_OBJECT(combo), "changed",
404                          G_CALLBACK(exif_item_cb), option_c);
405
406         gtk_table_attach(GTK_TABLE(table), combo,
407                          column + 1, column + 2, row, row + 1,
408                          GTK_EXPAND | GTK_FILL, 0, 0, 0);
409         gtk_widget_show(combo);
410 }
411
412 static void quality_menu_cb(GtkWidget *combo, gpointer data)
413 {
414         gint *option = data;
415
416         switch (gtk_combo_box_get_active(GTK_COMBO_BOX(combo)))
417                 {
418                 case 0:
419                 default:
420                         *option = GDK_INTERP_NEAREST;
421                         break;
422                 case 1:
423                         *option = GDK_INTERP_TILES;
424                         break;
425                 case 2:
426                         *option = GDK_INTERP_BILINEAR;
427                         break;
428                 case 3:
429                         *option = GDK_INTERP_HYPER;
430                         break;
431                 }
432 }
433
434 static void add_quality_menu(GtkWidget *table, gint column, gint row, const gchar *text,
435                              gint option, gint *option_c)
436 {
437         GtkWidget *combo;
438         gint current = 0;
439
440         *option_c = option;
441
442         pref_table_label(table, column, row, text, 0.0);
443
444         combo = gtk_combo_box_new_text();
445
446         gtk_combo_box_append_text(GTK_COMBO_BOX(combo), _("Nearest (worst, but fastest)"));
447         if (option == GDK_INTERP_NEAREST) current = 0;
448         gtk_combo_box_append_text(GTK_COMBO_BOX(combo), _("Tiles"));
449         if (option == GDK_INTERP_TILES) current = 1;
450         gtk_combo_box_append_text(GTK_COMBO_BOX(combo), _("Bilinear"));
451         if (option == GDK_INTERP_BILINEAR) current = 2;
452         gtk_combo_box_append_text(GTK_COMBO_BOX(combo), _("Hyper (best, but slowest)"));
453         if (option == GDK_INTERP_HYPER) current = 3;
454
455         gtk_combo_box_set_active(GTK_COMBO_BOX(combo), current);
456
457         g_signal_connect(G_OBJECT(combo), "changed",
458                          G_CALLBACK(quality_menu_cb), option_c);
459
460         gtk_table_attach(GTK_TABLE(table), combo, column + 1, column + 2, row, row + 1,
461                          GTK_EXPAND | GTK_FILL, 0, 0, 0);
462         gtk_widget_show(combo);
463 }
464
465 #if 0
466 static void add_dither_menu(gint option, gint *option_c, gchar *text, GtkWidget *box)
467 {
468         GtkWidget *hbox;
469         GtkWidget *omenu;
470         GtkWidget *menu;
471
472         *option_c = option;
473
474         hbox = pref_box_new(box, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_SPACE);
475         pref_label_new(hbox, text);
476
477         omenu = gtk_option_menu_new();
478         menu = gtk_menu_new();
479
480         add_menu_item(menu, _("None"), option_c, (gint)GDK_RGB_DITHER_NONE);
481         add_menu_item(menu, _("Normal"), option_c, (gint)GDK_RGB_DITHER_NORMAL);
482         add_menu_item(menu, _("Best"), option_c, (gint)GDK_RGB_DITHER_MAX);
483
484         gtk_option_menu_set_menu(GTK_OPTION_MENU(omenu), menu);
485         gtk_option_menu_set_history(GTK_OPTION_MENU(omenu), *option_c);
486
487         gtk_box_pack_start(GTK_BOX(hbox), omenu, FALSE, FALSE, 0);
488         gtk_widget_show(omenu);
489 }
490 #endif
491
492 static void thumb_size_menu_cb(GtkWidget *combo, gpointer data)
493 {
494         gint n;
495
496         n = gtk_combo_box_get_active(GTK_COMBO_BOX(combo));
497
498         if (n >= 0 && n < sizeof(thumb_size_list) / sizeof(ThumbSize))
499                 {
500                 c_options->thumbnails.max_width = thumb_size_list[n].w;
501                 c_options->thumbnails.max_height = thumb_size_list[n].h;
502                 }
503         else if (n > 0)
504                 {
505                 c_options->thumbnails.max_width = options->thumbnails.max_width;
506                 c_options->thumbnails.max_height = options->thumbnails.max_height;
507                 }
508 }
509
510 static void add_thumb_size_menu(GtkWidget *table, gint column, gint row, gchar *text)
511 {
512         GtkWidget *combo;
513         gint current;
514         gint i;
515
516         c_options->thumbnails.max_width = options->thumbnails.max_width;
517         c_options->thumbnails.max_height = options->thumbnails.max_height;
518
519         pref_table_label(table, column, row, text, 0.0);
520
521         combo = gtk_combo_box_new_text();
522
523         current = -1;
524         for (i = 0; i < sizeof(thumb_size_list) / sizeof(ThumbSize); i++)
525                 {
526                 gint w, h;
527                 gchar *buf;
528
529                 w = thumb_size_list[i].w;
530                 h = thumb_size_list[i].h;
531
532                 buf = g_strdup_printf("%d x %d", w, h);
533                 gtk_combo_box_append_text(GTK_COMBO_BOX(combo), buf);
534                 g_free(buf);
535
536                 if (w == options->thumbnails.max_width && h == options->thumbnails.max_height) current = i;
537                 }
538
539         if (current == -1)
540                 {
541                 gchar *buf;
542
543                 buf = g_strdup_printf("%s %d x %d", _("Custom"), options->thumbnails.max_width, options->thumbnails.max_height);
544                 gtk_combo_box_append_text(GTK_COMBO_BOX(combo), buf);
545                 g_free(buf);
546
547                 current = i;
548                 }
549
550         gtk_combo_box_set_active(GTK_COMBO_BOX(combo), current);
551         g_signal_connect(G_OBJECT(combo), "changed",
552                          G_CALLBACK(thumb_size_menu_cb), NULL);
553
554         gtk_table_attach(GTK_TABLE(table), combo, column + 1, column + 2, row, row + 1,
555                          GTK_EXPAND | GTK_FILL, 0, 0, 0);
556         gtk_widget_show(combo);
557 }
558
559 static void filter_store_populate(void)
560 {
561         GList *work;
562
563         if (!filter_store) return;
564
565         gtk_list_store_clear(filter_store);
566
567         work = filter_get_list();
568         while (work)
569                 {
570                 FilterEntry *fe;
571                 GtkTreeIter iter;
572
573                 fe = work->data;
574                 work = work->next;
575
576                 gtk_list_store_append(filter_store, &iter);
577                 gtk_list_store_set(filter_store, &iter, 0, fe, -1);
578                 }
579 }
580
581 static void filter_store_ext_edit_cb(GtkCellRendererText *cell, gchar *path_str,
582                                      gchar *new_text, gpointer data)
583 {
584         GtkWidget *model = data;
585         FilterEntry *fe = data;
586         GtkTreePath *tpath;
587         GtkTreeIter iter;
588
589         if (!new_text || strlen(new_text) < 1) return;
590
591         tpath = gtk_tree_path_new_from_string(path_str);
592         gtk_tree_model_get_iter(GTK_TREE_MODEL(model), &iter, tpath);
593         gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, 0, &fe, -1);
594
595         g_free(fe->extensions);
596         fe->extensions = g_strdup(new_text);
597
598         gtk_tree_path_free(tpath);
599         filter_rebuild();
600 }
601
602 static void filter_store_desc_edit_cb(GtkCellRendererText *cell, gchar *path_str,
603                                       gchar *new_text, gpointer data)
604 {
605         GtkWidget *model = data;
606         FilterEntry *fe;
607         GtkTreePath *tpath;
608         GtkTreeIter iter;
609
610         if (!new_text || strlen(new_text) < 1) return;
611
612         tpath = gtk_tree_path_new_from_string(path_str);
613         gtk_tree_model_get_iter(GTK_TREE_MODEL(model), &iter, tpath);
614         gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, 0, &fe, -1);
615
616         g_free(fe->description);
617         fe->description = g_strdup(new_text);
618
619         gtk_tree_path_free(tpath);
620 }
621
622 static void filter_store_enable_cb(GtkCellRendererToggle *renderer,
623                                    gchar *path_str, gpointer data)
624 {
625         GtkWidget *model = data;
626         FilterEntry *fe;
627         GtkTreePath *tpath;
628         GtkTreeIter iter;
629
630         tpath = gtk_tree_path_new_from_string(path_str);
631         gtk_tree_model_get_iter(GTK_TREE_MODEL(model), &iter, tpath);
632         gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, 0, &fe, -1);
633
634         fe->enabled = !fe->enabled;
635
636         gtk_tree_path_free(tpath);
637         filter_rebuild();
638 }
639
640 static void filter_set_func(GtkTreeViewColumn *tree_column, GtkCellRenderer *cell,
641                             GtkTreeModel *tree_model, GtkTreeIter *iter, gpointer data)
642 {
643         FilterEntry *fe;
644
645         gtk_tree_model_get(tree_model, iter, 0, &fe, -1);
646
647         switch(GPOINTER_TO_INT(data))
648                 {
649                 case FE_ENABLE:
650                         g_object_set(GTK_CELL_RENDERER(cell),
651                                      "active", fe->enabled, NULL);
652                         break;
653                 case FE_EXTENSION:
654                         g_object_set(GTK_CELL_RENDERER(cell),
655                                      "text", fe->extensions, NULL);
656                         break;
657                 case FE_DESCRIPTION:
658                         g_object_set(GTK_CELL_RENDERER(cell),
659                                      "text", fe->description, NULL);
660                         break;
661                 }
662 }
663
664 static void filter_add_cb(GtkWidget *widget, gpointer data)
665 {
666         filter_add_unique("description", ".new", FORMAT_CLASS_IMAGE, TRUE);
667         filter_store_populate();
668
669         /* FIXME: implement the scroll to/select row stuff for tree view */
670 }
671
672 static void filter_remove_cb(GtkWidget *widget, gpointer data)
673 {
674         GtkWidget *filter_view = data;
675         GtkTreeSelection *selection;
676         GtkTreeIter iter;
677         FilterEntry *fe;
678
679         if (!filter_store) return;
680         selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(filter_view));
681         if (!gtk_tree_selection_get_selected(selection, NULL, &iter)) return;
682         gtk_tree_model_get(GTK_TREE_MODEL(filter_store), &iter, 0, &fe, -1);
683         if (!fe) return;
684
685         filter_remove_entry(fe);
686         filter_rebuild();
687         filter_store_populate();
688 }
689
690 static void filter_default_ok_cb(GenericDialog *gd, gpointer data)
691 {
692         filter_reset();
693         filter_add_defaults();
694         filter_rebuild();
695         filter_store_populate();
696 }
697
698 static void dummy_cancel_cb(GenericDialog *gd, gpointer data)
699 {
700         /* no op, only so cancel button appears */
701 }
702
703 static void filter_default_cb(GtkWidget *widget, gpointer data)
704 {
705         GenericDialog *gd;
706
707         gd = generic_dialog_new(_("Reset filters"),
708                                 GQ_WMCLASS, "reset_filter", widget, TRUE,
709                                 dummy_cancel_cb, NULL);
710         generic_dialog_add_message(gd, GTK_STOCK_DIALOG_QUESTION, _("Reset filters"),
711                                    _("This will reset the file filters to the defaults.\nContinue?"));
712         generic_dialog_add_button(gd, GTK_STOCK_OK, NULL, filter_default_ok_cb, TRUE);
713         gtk_widget_show(gd->dialog);
714 }
715
716 static void filter_disable_cb(GtkWidget* widget, gpointer data)
717 {
718         GtkWidget *frame = data;
719
720         gtk_widget_set_sensitive(frame,
721                                  !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget)));
722 }
723
724 static void editor_default_ok_cb(GenericDialog *gd, gpointer data)
725 {
726         gint i;
727
728         editor_reset_defaults();
729         if (!configwindow) return;
730
731         for (i = 0; i < GQ_EDITOR_SLOTS; i++)
732                 {
733                 if (i < GQ_EDITOR_GENERIC_SLOTS)
734                         gtk_entry_set_text(GTK_ENTRY(editor_name_entry[i]),
735                                    (options->editor_name[i]) ? options->editor_name[i] : "");
736                 gtk_entry_set_text(GTK_ENTRY(editor_command_entry[i]),
737                                    (options->editor_command[i]) ? options->editor_command[i] : "");
738                 }
739 }
740
741 static void editor_default_cb(GtkWidget *widget, gpointer data)
742 {
743         GenericDialog *gd;
744
745         gd = generic_dialog_new(_("Reset editors"),
746                                 GQ_WMCLASS, "reset_filter", widget, TRUE,
747                                 dummy_cancel_cb, NULL);
748         generic_dialog_add_message(gd, GTK_STOCK_DIALOG_QUESTION, _("Reset editors"),
749                                    _("This will reset the edit commands to the defaults.\nContinue?"));
750         generic_dialog_add_button(gd, GTK_STOCK_OK, NULL, editor_default_ok_cb, TRUE);
751         gtk_widget_show(gd->dialog);
752 }
753
754 static void editor_help_cb(GtkWidget *widget, gpointer data)
755 {
756         help_window_show("editors");
757 }
758
759 static void safe_delete_view_cb(GtkWidget* widget, gpointer data)
760 {
761         layout_set_path(NULL, gtk_entry_get_text(GTK_ENTRY(safe_delete_path_entry)));
762 }
763
764 static void safe_delete_clear_ok_cb(GenericDialog *gd, gpointer data)
765 {
766         file_util_trash_clear();
767 }
768
769 static void safe_delete_clear_cb(GtkWidget* widget, gpointer data)
770 {
771         GenericDialog *gd;
772         GtkWidget *entry;
773         gd = generic_dialog_new(_("Clear trash"),
774                                 GQ_WMCLASS, "clear_trash", widget, TRUE,
775                                 dummy_cancel_cb, NULL);
776         generic_dialog_add_message(gd, GTK_STOCK_DIALOG_QUESTION, _("Clear trash"),
777                                     _("This will remove the trash contents."));
778         generic_dialog_add_button(gd, GTK_STOCK_OK, NULL, safe_delete_clear_ok_cb, TRUE);
779         entry = gtk_entry_new();
780         GTK_WIDGET_UNSET_FLAGS(entry, GTK_CAN_FOCUS);
781         gtk_editable_set_editable(GTK_EDITABLE(entry), FALSE);
782         if (options->file_ops.safe_delete_path) gtk_entry_set_text(GTK_ENTRY(entry), options->file_ops.safe_delete_path);
783         gtk_box_pack_start(GTK_BOX(gd->vbox), entry, FALSE, FALSE, 0);
784         gtk_widget_show(entry);
785         gtk_widget_show(gd->dialog);
786 }
787
788 static void image_overlay_template_view_changed_cb(GtkWidget* widget, gpointer data)
789 {
790         GtkWidget *pTextView;
791         GtkTextBuffer* pTextBuffer;
792         GtkTextIter iStart;
793         GtkTextIter iEnd;
794
795         pTextView = GTK_WIDGET(data);
796
797         pTextBuffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(pTextView));
798         gtk_text_buffer_get_start_iter(pTextBuffer, &iStart);
799         gtk_text_buffer_get_end_iter(pTextBuffer, &iEnd);
800
801         if (c_options->image_overlay.common.template_string) g_free(c_options->image_overlay.common.template_string);
802         c_options->image_overlay.common.template_string = gtk_text_buffer_get_text(pTextBuffer, &iStart, &iEnd, TRUE);
803 }
804
805 static void image_overlay_default_template_ok_cb(GenericDialog *gd, gpointer data)
806 {
807         GtkTextView *text_view = data;
808         GtkTextBuffer *buffer;
809
810         set_default_image_overlay_template_string(options);
811         if (!configwindow) return;
812
813         buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(text_view));
814         gtk_text_buffer_set_text(buffer, options->image_overlay.common.template_string, -1);
815 }
816
817 static void image_overlay_default_template_cb(GtkWidget *widget, gpointer data)
818 {
819         GenericDialog *gd;
820
821         gd = generic_dialog_new(_("Reset image overlay template string"),
822                                 GQ_WMCLASS, "reset_image_overlay_template_string", widget, TRUE,
823                                 dummy_cancel_cb, data);
824         generic_dialog_add_message(gd, GTK_STOCK_DIALOG_QUESTION, _("Reset image overlay template string"),
825                                    _("This will reset the image overlay template string to the default.\nContinue?"));
826         generic_dialog_add_button(gd, GTK_STOCK_OK, NULL, image_overlay_default_template_ok_cb, TRUE);
827         gtk_widget_show(gd->dialog);
828 }
829
830
831 /* general options tab */
832 static void config_tab_general(GtkWidget *notebook)
833 {
834         GtkWidget *label;
835         GtkWidget *hbox;
836         GtkWidget *vbox;
837         GtkWidget *group;
838         GtkWidget *subgroup;
839         GtkWidget *button;
840         GtkWidget *tabcomp;
841         GtkWidget *ct_button;
842         GtkWidget *table;
843         GtkWidget *spin;
844
845         vbox = gtk_vbox_new(FALSE, 0);
846         gtk_container_set_border_width(GTK_CONTAINER(vbox), PREF_PAD_BORDER);
847         gtk_widget_show(vbox);
848         label = gtk_label_new(_("General"));
849         gtk_notebook_append_page(GTK_NOTEBOOK(notebook), vbox, label);
850
851         group = pref_group_new(vbox, FALSE, _("Startup"), GTK_ORIENTATION_VERTICAL);
852
853         button = pref_checkbox_new_int(group, _("Change to folder:"),
854                                        options->startup_path_enable, &c_options->startup_path_enable);
855
856         hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_SPACE);
857         pref_checkbox_link_sensitivity(button, hbox);
858
859         tabcomp = tab_completion_new(&startup_path_entry, options->startup_path, NULL, NULL);
860         tab_completion_add_select_button(startup_path_entry, NULL, TRUE);
861         gtk_box_pack_start(GTK_BOX(hbox), tabcomp, TRUE, TRUE, 0);
862         gtk_widget_show(tabcomp);
863
864         button = pref_button_new(hbox, NULL, _("Use current"), FALSE,
865                                  G_CALLBACK(startup_path_set_current), NULL);
866
867         group = pref_group_new(vbox, FALSE, _("Thumbnails"), GTK_ORIENTATION_VERTICAL);
868
869         table = pref_table_new(group, 2, 2, FALSE, FALSE);
870         add_thumb_size_menu(table, 0, 0, _("Size:"));
871         add_quality_menu(table, 0, 1, _("Quality:"), options->thumbnails.quality, &c_options->thumbnails.quality);
872
873         ct_button = pref_checkbox_new_int(group, _("Cache thumbnails"),
874                                           options->thumbnails.enable_caching, &c_options->thumbnails.enable_caching);
875
876         subgroup = pref_box_new(group, FALSE, GTK_ORIENTATION_VERTICAL, PREF_PAD_GAP);
877         pref_checkbox_link_sensitivity(ct_button, subgroup);
878
879         button = pref_checkbox_new_int(subgroup, _("Use shared thumbnail cache"),
880                                        options->thumbnails.spec_standard, &c_options->thumbnails.spec_standard);
881
882         subgroup = pref_box_new(subgroup, FALSE, GTK_ORIENTATION_VERTICAL, PREF_PAD_GAP);
883         pref_checkbox_link_sensitivity_swap(button, subgroup);
884
885         pref_checkbox_new_int(subgroup, _("Cache thumbnails into .thumbnails"),
886                               options->thumbnails.cache_into_dirs, &c_options->thumbnails.cache_into_dirs);
887
888 #if 0
889         pref_checkbox_new_int(subgroup, _("Use xvpics thumbnails when found (read only)"),
890                               options->thumbnails.use_xvpics, &c_options->thumbnails.use_xvpics);
891 #endif
892
893         pref_checkbox_new_int(group, _("Faster jpeg thumbnailing (may reduce quality)"),
894                               options->thumbnails.fast, &c_options->thumbnails.fast);
895
896         group = pref_group_new(vbox, FALSE, _("Slide show"), GTK_ORIENTATION_VERTICAL);
897
898         c_options->slideshow.delay = options->slideshow.delay;
899         spin = pref_spin_new(group, _("Delay between image change:"), _("seconds"),
900                              SLIDESHOW_MIN_SECONDS, SLIDESHOW_MAX_SECONDS, 1.0, 1,
901                              options->slideshow.delay ? (double)options->slideshow.delay / SLIDESHOW_SUBSECOND_PRECISION : 10.0,
902                              G_CALLBACK(slideshow_delay_cb), NULL);
903         gtk_spin_button_set_update_policy(GTK_SPIN_BUTTON(spin), GTK_UPDATE_ALWAYS);
904
905         pref_checkbox_new_int(group, _("Random"), options->slideshow.random, &c_options->slideshow.random);
906         pref_checkbox_new_int(group, _("Repeat"), options->slideshow.repeat, &c_options->slideshow.repeat);
907 }
908
909 /* image tab */
910 static void config_tab_image(GtkWidget *notebook)
911 {
912         GtkWidget *label;
913         GtkWidget *hbox;
914         GtkWidget *vbox;
915         GtkWidget *group;
916         GtkWidget *button;
917         GtkWidget *ct_button;
918         GtkWidget *table;
919         GtkWidget *spin;
920
921         vbox = gtk_vbox_new(FALSE, 0);
922         gtk_container_set_border_width(GTK_CONTAINER(vbox), PREF_PAD_BORDER);
923         gtk_widget_show(vbox);
924         label = gtk_label_new(_("Image"));
925         gtk_notebook_append_page(GTK_NOTEBOOK(notebook), vbox, label);
926
927         group = pref_group_new(vbox, FALSE, _("Zoom"), GTK_ORIENTATION_VERTICAL);
928
929 #if 0
930         add_dither_menu(dither_quality, &c_options->image.dither_quality, _("Dithering method:"), group);
931 #endif
932         table = pref_table_new(group, 2, 1, FALSE, FALSE);
933         add_quality_menu(table, 0, 0, _("Quality:"), options->image.zoom_quality, &c_options->image.zoom_quality);
934
935         pref_checkbox_new_int(group, _("Two pass zooming"),
936                               options->image.zoom_2pass, &c_options->image.zoom_2pass);
937
938         pref_checkbox_new_int(group, _("Allow enlargement of image for zoom to fit"),
939                               options->image.zoom_to_fit_allow_expand, &c_options->image.zoom_to_fit_allow_expand);
940
941         hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_SPACE);
942         ct_button = pref_checkbox_new_int(hbox, _("Limit image size when autofitting (%):"),
943                                           options->image.limit_autofit_size, &c_options->image.limit_autofit_size);
944         spin = pref_spin_new_int(hbox, NULL, NULL,
945                                  10, 150, 1,
946                                  options->image.max_autofit_size, &c_options->image.max_autofit_size);
947         pref_checkbox_link_sensitivity(ct_button, spin);
948
949         c_options->image.zoom_increment = options->image.zoom_increment;
950         spin = pref_spin_new(group, _("Zoom increment:"), NULL,
951                              0.1, 4.0, 0.1, 1, (double)options->image.zoom_increment / 10.0,
952                              G_CALLBACK(zoom_increment_cb), NULL);
953         gtk_spin_button_set_update_policy(GTK_SPIN_BUTTON(spin), GTK_UPDATE_ALWAYS);
954
955         group = pref_group_new(vbox, FALSE, _("When new image is selected:"), GTK_ORIENTATION_VERTICAL);
956
957         c_options->image.zoom_mode = options->image.zoom_mode;
958         button = pref_radiobutton_new(group, NULL, _("Zoom to original size"),
959                                       (options->image.zoom_mode == ZOOM_RESET_ORIGINAL),
960                                       G_CALLBACK(zoom_mode_original_cb), NULL);
961         button = pref_radiobutton_new(group, button, _("Fit image to window"),
962                                       (options->image.zoom_mode == ZOOM_RESET_FIT_WINDOW),
963                                       G_CALLBACK(zoom_mode_fit_cb), NULL);
964         button = pref_radiobutton_new(group, button, _("Leave Zoom at previous setting"),
965                                       (options->image.zoom_mode == ZOOM_RESET_NONE),
966                                       G_CALLBACK(zoom_mode_none_cb), NULL);
967
968         group = pref_group_new(vbox, FALSE, _("Appearance"), GTK_ORIENTATION_VERTICAL);
969
970         pref_checkbox_new_int(group, _("Custom border color"),
971                               options->image.use_custom_border_color, &c_options->image.use_custom_border_color);
972
973         pref_color_button_new(group, _("Border color"), &options->image.border_color,
974                               G_CALLBACK(pref_color_button_set_cb), &c_options->image.border_color);
975
976         group = pref_group_new(vbox, FALSE, _("Convenience"), GTK_ORIENTATION_VERTICAL);
977
978         pref_checkbox_new_int(group, _("Refresh on file change"),
979                               options->update_on_time_change, &c_options->update_on_time_change);
980         pref_checkbox_new_int(group, _("Preload next image"),
981                               options->image.enable_read_ahead, &c_options->image.enable_read_ahead);
982         pref_checkbox_new_int(group, _("Auto rotate image using Exif information"),
983                               options->image.exif_rotate_enable, &c_options->image.exif_rotate_enable);
984 }
985
986 /* windows tab */
987 static void config_tab_windows(GtkWidget *notebook)
988 {
989         GtkWidget *label;
990         GtkWidget *hbox;
991         GtkWidget *vbox;
992         GtkWidget *group;
993         GtkWidget *ct_button;
994         GtkWidget *spin;
995
996         vbox = gtk_vbox_new(FALSE, 0);
997         gtk_container_set_border_width(GTK_CONTAINER(vbox), PREF_PAD_BORDER);
998         gtk_widget_show(vbox);
999         label = gtk_label_new(_("Windows"));
1000         gtk_notebook_append_page(GTK_NOTEBOOK(notebook), vbox, label);
1001
1002         group = pref_group_new(vbox, FALSE, _("State"), GTK_ORIENTATION_VERTICAL);
1003
1004         pref_checkbox_new_int(group, _("Remember window positions"),
1005                               options->layout.save_window_positions, &c_options->layout.save_window_positions);
1006         pref_checkbox_new_int(group, _("Remember tool state (float/hidden)"),
1007                               options->layout.tools_restore_state, &c_options->layout.tools_restore_state);
1008
1009         group = pref_group_new(vbox, FALSE, _("Size"), GTK_ORIENTATION_VERTICAL);
1010
1011         pref_checkbox_new_int(group, _("Fit window to image when tools are hidden/floating"),
1012                               options->image.fit_window_to_image, &c_options->image.fit_window_to_image);
1013
1014         hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_SPACE);
1015         ct_button = pref_checkbox_new_int(hbox, _("Limit size when auto-sizing window (%):"),
1016                                           options->image.limit_window_size, &c_options->image.limit_window_size);
1017         spin = pref_spin_new_int(hbox, NULL, NULL,
1018                                  10, 150, 1,
1019                                  options->image.max_window_size, &c_options->image.max_window_size);
1020         pref_checkbox_link_sensitivity(ct_button, spin);
1021
1022         group = pref_group_new(vbox, FALSE, _("Layout"), GTK_ORIENTATION_VERTICAL);
1023
1024         layout_widget = layout_config_new();
1025         layout_config_set(layout_widget, options->layout.style, options->layout.order);
1026         gtk_box_pack_start(GTK_BOX(group), layout_widget, FALSE, FALSE, 0);
1027         gtk_widget_show(layout_widget);
1028 }
1029
1030 /* filtering tab */
1031 static void config_tab_filtering(GtkWidget *notebook)
1032 {
1033         GtkWidget *hbox;
1034         GtkWidget *frame;
1035         GtkWidget *label;
1036         GtkWidget *vbox;
1037         GtkWidget *group;
1038         GtkWidget *button;
1039         GtkWidget *ct_button;
1040         GtkWidget *scrolled;
1041         GtkWidget *filter_view;
1042         GtkCellRenderer *renderer;
1043         GtkTreeSelection *selection;
1044         GtkTreeViewColumn *column;
1045
1046         vbox = gtk_vbox_new(FALSE, 0);
1047         gtk_container_set_border_width(GTK_CONTAINER(vbox), PREF_PAD_BORDER);
1048         gtk_widget_show(vbox);
1049         label = gtk_label_new(_("Filtering"));
1050         gtk_notebook_append_page(GTK_NOTEBOOK(notebook), vbox, label);
1051
1052         group = pref_box_new(vbox, FALSE, GTK_ORIENTATION_VERTICAL, PREF_PAD_GAP);
1053
1054         pref_checkbox_new_int(group, _("Show hidden files or folders"),
1055                               options->file_filter.show_hidden_files, &c_options->file_filter.show_hidden_files);
1056         pref_checkbox_new_int(group, _("Show dot directory"),
1057                               options->file_filter.show_dot_directory, &c_options->file_filter.show_dot_directory);
1058         pref_checkbox_new_int(group, _("Case sensitive sort"),
1059                               options->file_sort.case_sensitive, &c_options->file_sort.case_sensitive);
1060
1061         ct_button = pref_checkbox_new_int(group, _("Disable File Filtering"),
1062                                           options->file_filter.disable, &c_options->file_filter.disable);
1063
1064
1065         group = pref_group_new(vbox, FALSE, _("Grouping sidecar extensions"), GTK_ORIENTATION_VERTICAL);
1066
1067         sidecar_ext_entry = gtk_entry_new();
1068         gtk_entry_set_text(GTK_ENTRY(sidecar_ext_entry), sidecar_ext_to_string());
1069         gtk_box_pack_start(GTK_BOX(group), sidecar_ext_entry, FALSE, FALSE, 0);
1070         gtk_widget_show(sidecar_ext_entry);
1071
1072         group = pref_group_new(vbox, TRUE, _("File types"), GTK_ORIENTATION_VERTICAL);
1073
1074         frame = pref_group_parent(group);
1075         g_signal_connect(G_OBJECT(ct_button), "toggled",
1076                          G_CALLBACK(filter_disable_cb), frame);
1077         gtk_widget_set_sensitive(frame, !options->file_filter.disable);
1078
1079         scrolled = gtk_scrolled_window_new(NULL, NULL);
1080         gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolled), GTK_SHADOW_IN);
1081         gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled), GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS);
1082         gtk_box_pack_start(GTK_BOX(group), scrolled, TRUE, TRUE, 0);
1083         gtk_widget_show(scrolled);
1084
1085         filter_store = gtk_list_store_new(1, G_TYPE_POINTER);
1086         filter_view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(filter_store));
1087         g_object_unref(filter_store);
1088         selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(filter_view));
1089         gtk_tree_selection_set_mode(GTK_TREE_SELECTION(selection), GTK_SELECTION_SINGLE);
1090
1091         gtk_tree_view_set_enable_search(GTK_TREE_VIEW(filter_view), FALSE);
1092
1093         column = gtk_tree_view_column_new();
1094         gtk_tree_view_column_set_title(column, _("Filter"));
1095         gtk_tree_view_column_set_resizable(column, TRUE);
1096
1097         renderer = gtk_cell_renderer_toggle_new();
1098         g_signal_connect(G_OBJECT(renderer), "toggled",
1099                          G_CALLBACK(filter_store_enable_cb), filter_store);
1100         gtk_tree_view_column_pack_start(column, renderer, FALSE);
1101         gtk_tree_view_column_set_cell_data_func(column, renderer, filter_set_func,
1102                                                 GINT_TO_POINTER(FE_ENABLE), NULL);
1103
1104         renderer = gtk_cell_renderer_text_new();
1105         g_signal_connect(G_OBJECT(renderer), "edited",
1106                          G_CALLBACK(filter_store_ext_edit_cb), filter_store);
1107         gtk_tree_view_column_pack_start(column, renderer, TRUE);
1108         g_object_set(G_OBJECT(renderer), "editable", (gboolean)TRUE, NULL);
1109         gtk_tree_view_column_set_cell_data_func(column, renderer, filter_set_func,
1110                                                 GINT_TO_POINTER(FE_EXTENSION), NULL);
1111         gtk_tree_view_append_column(GTK_TREE_VIEW(filter_view), column);
1112
1113         column = gtk_tree_view_column_new();
1114         gtk_tree_view_column_set_title(column, _("Description"));
1115         gtk_tree_view_column_set_resizable(column, TRUE);
1116         renderer = gtk_cell_renderer_text_new();
1117         g_signal_connect(G_OBJECT(renderer), "edited",
1118                          G_CALLBACK(filter_store_desc_edit_cb), filter_store);
1119         g_object_set(G_OBJECT(renderer), "editable", (gboolean)TRUE, NULL);
1120         gtk_tree_view_column_pack_start(column, renderer, FALSE);
1121         gtk_tree_view_column_set_cell_data_func(column, renderer, filter_set_func,
1122                                                 GINT_TO_POINTER(FE_DESCRIPTION), NULL);
1123         gtk_tree_view_append_column(GTK_TREE_VIEW(filter_view), column);
1124
1125         filter_store_populate();
1126         gtk_container_add(GTK_CONTAINER(scrolled), filter_view);
1127         gtk_widget_show(filter_view);
1128
1129         hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_BUTTON_GAP);
1130
1131         button = pref_button_new(NULL, NULL, _("Defaults"), FALSE,
1132                                  G_CALLBACK(filter_default_cb), NULL);
1133         gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0);
1134         gtk_widget_show(button);
1135
1136         button = pref_button_new(NULL, GTK_STOCK_REMOVE, NULL, FALSE,
1137                                  G_CALLBACK(filter_remove_cb), filter_view);
1138         gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0);
1139         gtk_widget_show(button);
1140
1141         button = pref_button_new(NULL, GTK_STOCK_ADD, NULL, FALSE,
1142                                  G_CALLBACK(filter_add_cb), NULL);
1143         gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0);
1144         gtk_widget_show(button);
1145 }
1146
1147 /* editors tab */
1148 static void config_tab_editors(GtkWidget *notebook)
1149 {
1150         GtkWidget *hbox;
1151         GtkWidget *label;
1152         GtkWidget *vbox;
1153         GtkWidget *button;
1154         GtkWidget *table;
1155         gint i;
1156
1157         vbox = gtk_vbox_new(FALSE, PREF_PAD_GAP);
1158         gtk_container_set_border_width(GTK_CONTAINER(vbox), PREF_PAD_BORDER);
1159         gtk_widget_show(vbox);
1160         label = gtk_label_new(_("Editors"));
1161         gtk_notebook_append_page(GTK_NOTEBOOK(notebook), vbox, label);
1162
1163         table = pref_table_new(vbox, 3, 9, FALSE, FALSE);
1164         gtk_table_set_col_spacings(GTK_TABLE(table), PREF_PAD_GAP);
1165
1166         label = pref_table_label(table, 0, 0, _("#"), 1.0);
1167         pref_label_bold(label, TRUE, FALSE);
1168
1169         label = pref_table_label(table, 1, 0, _("Menu name"), 0.0);
1170         pref_label_bold(label, TRUE, FALSE);
1171
1172         label = pref_table_label(table, 2, 0, _("Command Line"), 0.0);
1173         pref_label_bold(label, TRUE, FALSE);
1174
1175         for (i = 0; i < GQ_EDITOR_SLOTS; i++)
1176                 {
1177                 GtkWidget *entry;
1178
1179                 if (i < GQ_EDITOR_GENERIC_SLOTS)
1180                         {
1181                         gchar *buf;
1182
1183                         buf = g_strdup_printf("%d", i+1);
1184                         pref_table_label(table, 0, i+1, buf, 1.0);
1185                         g_free(buf);
1186                         entry = gtk_entry_new();
1187                         gtk_entry_set_max_length(GTK_ENTRY(entry), EDITOR_NAME_MAX_LENGTH);
1188                         gtk_widget_set_size_request(entry, 80, -1);
1189                         if (options->editor_name[i])
1190                                 gtk_entry_set_text(GTK_ENTRY(entry), options->editor_name[i]);
1191                         }
1192                 else
1193                         {
1194                         entry = gtk_label_new(options->editor_name[i]);
1195                         gtk_misc_set_alignment(GTK_MISC(entry), 0.0, 0.5);
1196                         }
1197
1198                 gtk_table_attach(GTK_TABLE(table), entry, 1, 2, i+1, i+2,
1199                                  GTK_FILL | GTK_SHRINK, 0, 0, 0);
1200                 gtk_widget_show(entry);
1201                 editor_name_entry[i] = entry;
1202
1203                 entry = gtk_entry_new();
1204                 gtk_entry_set_max_length(GTK_ENTRY(entry), EDITOR_COMMAND_MAX_LENGTH);
1205                 gtk_widget_set_size_request(entry, 160, -1);
1206                 tab_completion_add_to_entry(entry, NULL, NULL);
1207                 if (options->editor_command[i])
1208                         gtk_entry_set_text(GTK_ENTRY(entry), options->editor_command[i]);
1209                 gtk_table_attach(GTK_TABLE(table), entry, 2, 3, i+1, i+2,
1210                                  GTK_FILL | GTK_EXPAND, 0, 0, 0);
1211                 gtk_widget_show(entry);
1212                 editor_command_entry[i] = entry;
1213                 }
1214
1215         hbox = pref_box_new(vbox, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_BUTTON_GAP);
1216
1217         button = pref_button_new(NULL, NULL, _("Defaults"), FALSE,
1218                                  G_CALLBACK(editor_default_cb), NULL);
1219         gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0);
1220         gtk_widget_show(button);
1221
1222         button = pref_button_new(NULL, GTK_STOCK_HELP, NULL, FALSE,
1223                                  G_CALLBACK(editor_help_cb), NULL);
1224         gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0);
1225         gtk_widget_show(button);
1226 }
1227
1228 /* properties tab */
1229 static void config_tab_properties(GtkWidget *notebook)
1230 {
1231         GtkWidget *label;
1232         GtkWidget *vbox;
1233         GtkWidget *group;
1234         GtkWidget *table;
1235         GtkWidget *scrolled;
1236         GtkWidget *viewport;
1237         gint i;
1238
1239         scrolled = gtk_scrolled_window_new(NULL, NULL);
1240         gtk_container_set_border_width(GTK_CONTAINER(scrolled), PREF_PAD_BORDER);
1241         gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled),
1242                                        GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
1243
1244         label = gtk_label_new(_("Properties"));
1245         gtk_notebook_append_page(GTK_NOTEBOOK(notebook), scrolled, label);
1246         gtk_widget_show(scrolled);
1247
1248         viewport = gtk_viewport_new(NULL, NULL);
1249         gtk_viewport_set_shadow_type(GTK_VIEWPORT(viewport), GTK_SHADOW_NONE);
1250         gtk_container_add(GTK_CONTAINER(scrolled), viewport);
1251         gtk_widget_show(viewport);
1252
1253         vbox = gtk_vbox_new(FALSE, 0);
1254         gtk_container_add(GTK_CONTAINER(viewport), vbox);
1255         gtk_widget_show(vbox);
1256
1257         group = pref_group_new(vbox, FALSE, _("Exif"),
1258                                GTK_ORIENTATION_VERTICAL);
1259
1260
1261         pref_spacer(group, PREF_PAD_INDENT - PREF_PAD_SPACE);
1262         label = pref_label_new(group, _("What to show in properties dialog:"));
1263         gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.5);
1264
1265         table = pref_table_new(group, 2, 2, FALSE, FALSE);
1266
1267         for (i = 0; ExifUIList[i].key; i++)
1268                 {
1269                 const gchar *title;
1270
1271                 title = exif_get_description_by_key(ExifUIList[i].key);
1272                 exif_item(table, 0, i, title, ExifUIList[i].current,
1273                           &ExifUIList[i].temp);
1274                 }
1275 }
1276
1277 /* advanced entry tab */
1278 static void config_tab_advanced(GtkWidget *notebook)
1279 {
1280         GtkWidget *label;
1281         GtkWidget *hbox;
1282         GtkWidget *vbox;
1283         GtkWidget *group;
1284         GtkWidget *button;
1285         GtkWidget *tabcomp;
1286         GtkWidget *ct_button;
1287         GtkWidget *table;
1288         GtkWidget *spin;
1289         GtkWidget *scrolled;
1290         GtkWidget *viewport;
1291         GtkWidget *image_overlay_template_view;
1292         GtkTextBuffer *buffer;
1293         gint i;
1294
1295         scrolled = gtk_scrolled_window_new(NULL, NULL);
1296         gtk_container_set_border_width(GTK_CONTAINER(scrolled), PREF_PAD_BORDER);
1297         gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled),
1298                                        GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
1299         label = gtk_label_new(_("Advanced"));
1300         gtk_notebook_append_page(GTK_NOTEBOOK(notebook), scrolled, label);
1301         gtk_widget_show(scrolled);
1302
1303         viewport = gtk_viewport_new(NULL, NULL);
1304         gtk_viewport_set_shadow_type(GTK_VIEWPORT(viewport), GTK_SHADOW_NONE);
1305         gtk_container_add(GTK_CONTAINER(scrolled), viewport);
1306         gtk_widget_show(viewport);
1307
1308         vbox = gtk_vbox_new(FALSE, 0);
1309         gtk_container_add(GTK_CONTAINER(viewport), vbox);
1310         gtk_widget_show(vbox);
1311
1312         group = pref_group_new(vbox, FALSE, _("Full screen"), GTK_ORIENTATION_VERTICAL);
1313
1314         c_options->fullscreen.screen = options->fullscreen.screen;
1315         c_options->fullscreen.above = options->fullscreen.above;
1316         hbox = fullscreen_prefs_selection_new(_("Location:"), &c_options->fullscreen.screen, &c_options->fullscreen.above);
1317         gtk_box_pack_start(GTK_BOX(group), hbox, FALSE, FALSE, 0);
1318         gtk_widget_show(hbox);
1319
1320         pref_checkbox_new_int(group, _("Smooth image flip"),
1321                               options->fullscreen.clean_flip, &c_options->fullscreen.clean_flip);
1322         pref_checkbox_new_int(group, _("Disable screen saver"),
1323                               options->fullscreen.disable_saver, &c_options->fullscreen.disable_saver);
1324         pref_checkbox_new_int(group, _("Always show image overlay at startup"),
1325                               options->image_overlay.common.show_at_startup, &c_options->image_overlay.common.show_at_startup);
1326         pref_label_new(group, _("Image overlay template"));
1327
1328         scrolled = gtk_scrolled_window_new(NULL, NULL);
1329         gtk_widget_set_size_request(scrolled, 200, 150);
1330         gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolled), GTK_SHADOW_IN);
1331         gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled),
1332                                        GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
1333         gtk_box_pack_start(GTK_BOX(group), scrolled, TRUE, TRUE, 5);
1334         gtk_widget_show(scrolled);
1335
1336         image_overlay_template_view = gtk_text_view_new();
1337
1338 #if GTK_CHECK_VERSION(2,12,0)
1339         gtk_widget_set_tooltip_markup(image_overlay_template_view,
1340         _("<i>%name%</i> results in the filename of the picture.\n"
1341           "Also available: <i>%collection%</i>, <i>%number%</i>, <i>%total%</i>, <i>%date%</i>,\n"
1342           "<i>%size%</i> (filesize), <i>%width%</i>, <i>%height%</i>, <i>%res%</i> (resolution)\n"
1343           "To access exif data use the exif name, e. g. <i>%formatted.Camera%</i> is the formatted camera name,\n"
1344           "<i>%Exif.Photo.DateTimeOriginal%</i> the date of the original shot.\n"
1345           "<i>%formatted.Camera:20</i> notation will truncate the displayed data to 20 characters and will add 3 dots at the end to denote the truncation.\n"
1346           "If two or more variables are connected with the |-sign, it prints available variables with a separator.\n"
1347           "<i>%formatted.ShutterSpeed%</i>|<i>%formatted.ISOSpeedRating%</i>|<i>%formatted.FocalLength%</i> could show \"1/20s - 400 - 80 mm\" or \"1/200 - 80 mm\",\n"
1348           "if there's no ISO information in the Exif data.\n"
1349           "If a line is empty, it is removed. This allows to add lines that totally disappear when no data is available.\n"
1350 ));
1351 #endif
1352         gtk_container_add(GTK_CONTAINER(scrolled), image_overlay_template_view);
1353         gtk_widget_show(image_overlay_template_view);
1354
1355         hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_BUTTON_GAP);
1356
1357         button = pref_button_new(NULL, NULL, _("Defaults"), FALSE,
1358                                  G_CALLBACK(image_overlay_default_template_cb), image_overlay_template_view);
1359         gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0);
1360         gtk_widget_show(button);
1361
1362         buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(image_overlay_template_view));
1363         if (options->image_overlay.common.template_string) gtk_text_buffer_set_text(buffer, options->image_overlay.common.template_string, -1);
1364         g_signal_connect(G_OBJECT(buffer), "changed",
1365                          G_CALLBACK(image_overlay_template_view_changed_cb), image_overlay_template_view);
1366
1367         group = pref_group_new(vbox, FALSE, _("Delete"), GTK_ORIENTATION_VERTICAL);
1368
1369         pref_checkbox_new_int(group, _("Confirm file delete"),
1370                               options->file_ops.confirm_delete, &c_options->file_ops.confirm_delete);
1371         pref_checkbox_new_int(group, _("Enable Delete key"),
1372                               options->file_ops.enable_delete_key, &c_options->file_ops.enable_delete_key);
1373
1374         ct_button = pref_checkbox_new_int(group, _("Safe delete"),
1375                                           options->file_ops.safe_delete_enable, &c_options->file_ops.safe_delete_enable);
1376
1377         hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_SPACE);
1378         pref_checkbox_link_sensitivity(ct_button, hbox);
1379
1380         pref_spacer(hbox, PREF_PAD_INDENT - PREF_PAD_SPACE);
1381         pref_label_new(hbox, _("Folder:"));
1382
1383         tabcomp = tab_completion_new(&safe_delete_path_entry, options->file_ops.safe_delete_path, NULL, NULL);
1384         tab_completion_add_select_button(safe_delete_path_entry, NULL, TRUE);
1385         gtk_box_pack_start(GTK_BOX(hbox), tabcomp, TRUE, TRUE, 0);
1386         gtk_widget_show(tabcomp);
1387
1388         hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_BUTTON_GAP);
1389         pref_checkbox_link_sensitivity(ct_button, hbox);
1390
1391         pref_spacer(hbox, PREF_PAD_INDENT - PREF_PAD_GAP);
1392         spin = pref_spin_new_int(hbox, _("Maximum size:"), _("MB"),
1393                                  0, 2048, 1, options->file_ops.safe_delete_folder_maxsize, &c_options->file_ops.safe_delete_folder_maxsize);
1394 #if GTK_CHECK_VERSION(2,12,0)
1395         gtk_widget_set_tooltip_markup(spin, _("Set to 0 for unlimited size"));
1396 #endif
1397         button = pref_button_new(NULL, NULL, _("View"), FALSE,
1398                                  G_CALLBACK(safe_delete_view_cb), NULL);
1399         gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0);
1400         gtk_widget_show(button);
1401
1402         button = pref_button_new(NULL, GTK_STOCK_CLEAR, NULL, FALSE,
1403                                  G_CALLBACK(safe_delete_clear_cb), NULL);
1404         gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0);
1405         gtk_widget_show(button);
1406
1407
1408         group = pref_group_new(vbox, FALSE, _("Behavior"), GTK_ORIENTATION_VERTICAL);
1409
1410         pref_checkbox_new_int(group, _("Rectangular selection in icon view"),
1411                               options->collections.rectangular_selection, &c_options->collections.rectangular_selection);
1412
1413         pref_checkbox_new_int(group, _("Descend folders in tree view"),
1414                               options->tree_descend_subdirs, &c_options->tree_descend_subdirs);
1415
1416         pref_checkbox_new_int(group, _("In place renaming"),
1417                               options->file_ops.enable_in_place_rename, &c_options->file_ops.enable_in_place_rename);
1418
1419         pref_checkbox_new_int(group, _("Show \"Copy path\" menu item which write the path of selected files to clipboard"),
1420                               options->show_copy_path, &c_options->show_copy_path);
1421
1422         pref_spin_new_int(group, _("Open recent list maximum size"), NULL,
1423                           1, 50, 1, options->open_recent_list_maxsize, &c_options->open_recent_list_maxsize);
1424         
1425         pref_spin_new_int(group, _("Drag'n drop icon size"), NULL,
1426                           16, 256, 16, options->dnd_icon_size, &c_options->dnd_icon_size);
1427
1428         group = pref_group_new(vbox, FALSE, _("Navigation"), GTK_ORIENTATION_VERTICAL);
1429
1430         pref_checkbox_new_int(group, _("Progressive keyboard scrolling"),
1431                               options->progressive_key_scrolling, &c_options->progressive_key_scrolling);
1432         pref_checkbox_new_int(group, _("Mouse wheel scrolls image"),
1433                               options->mousewheel_scrolls, &c_options->mousewheel_scrolls);
1434
1435         group = pref_group_new(vbox, FALSE, _("Miscellaneous"), GTK_ORIENTATION_VERTICAL);
1436
1437         pref_checkbox_new_int(group, _("Store keywords and comments local to source images"),
1438                               options->enable_metadata_dirs, &c_options->enable_metadata_dirs);
1439
1440         pref_spin_new_int(group, _("Custom similarity threshold:"), NULL,
1441                           0, 100, 1, options->duplicates_similarity_threshold, &c_options->duplicates_similarity_threshold);
1442
1443         group = pref_group_new(vbox, FALSE, _("Image loading and caching"), GTK_ORIENTATION_VERTICAL);
1444
1445         pref_spin_new_int(group, _("Offscreen cache size (Mb per image):"), NULL,
1446                           0, 128, 1, options->image.tile_cache_max, &c_options->image.tile_cache_max);
1447
1448         pref_spin_new_int(group, _("Image read buffer size (bytes):"), NULL,
1449                           IMAGE_LOADER_READ_BUFFER_SIZE_MIN, IMAGE_LOADER_READ_BUFFER_SIZE_MAX, 512,
1450                           options->image.read_buffer_size, &c_options->image.read_buffer_size);
1451
1452         pref_spin_new_int(group, _("Image idle loop read count:"), NULL,
1453                           IMAGE_LOADER_IDLE_READ_LOOP_COUNT_MIN, IMAGE_LOADER_IDLE_READ_LOOP_COUNT_MAX, 1,
1454                           options->image.idle_read_loop_count, &c_options->image.idle_read_loop_count);
1455
1456
1457         group =  pref_group_new(vbox, FALSE, _("Color profiles"), GTK_ORIENTATION_VERTICAL);
1458 #ifndef HAVE_LCMS
1459         gtk_widget_set_sensitive(pref_group_parent(group), FALSE);
1460 #endif
1461
1462         table = pref_table_new(group, 3, COLOR_PROFILE_INPUTS + 2, FALSE, FALSE);
1463         gtk_table_set_col_spacings(GTK_TABLE(table), PREF_PAD_GAP);
1464
1465         label = pref_table_label(table, 0, 0, _("Type"), 0.0);
1466         pref_label_bold(label, TRUE, FALSE);
1467
1468         label = pref_table_label(table, 1, 0, _("Menu name"), 0.0);
1469         pref_label_bold(label, TRUE, FALSE);
1470
1471         label = pref_table_label(table, 2, 0, _("File"), 0.0);
1472         pref_label_bold(label, TRUE, FALSE);
1473
1474         for (i = 0; i < COLOR_PROFILE_INPUTS; i++)
1475                 {
1476                 GtkWidget *entry;
1477                 gchar *buf;
1478
1479                 buf = g_strdup_printf("Input %d:", i + COLOR_PROFILE_FILE);
1480                 pref_table_label(table, 0, i + 1, buf, 1.0);
1481                 g_free(buf);
1482
1483                 entry = gtk_entry_new();
1484                 gtk_entry_set_max_length(GTK_ENTRY(entry), EDITOR_NAME_MAX_LENGTH);
1485                 gtk_widget_set_size_request(editor_name_entry[i], 30, -1);
1486                 if (options->color_profile.input_name[i])
1487                         {
1488                         gtk_entry_set_text(GTK_ENTRY(entry), options->color_profile.input_name[i]);
1489                         }
1490                 gtk_table_attach(GTK_TABLE(table), entry, 1, 2, i + 1, i + 2,
1491                                  GTK_FILL | GTK_EXPAND, 0, 0, 0);
1492                 gtk_widget_show(entry);
1493                 color_profile_input_name_entry[i] = entry;
1494
1495                 tabcomp = tab_completion_new(&entry, options->color_profile.input_file[i], NULL, NULL);
1496                 tab_completion_add_select_button(entry, _("Select color profile"), FALSE);
1497                 gtk_widget_set_size_request(entry, 160, -1);
1498                 gtk_table_attach(GTK_TABLE(table), tabcomp, 2, 3, i + 1, i + 2,
1499                                  GTK_FILL | GTK_EXPAND, 0, 0, 0);
1500                 gtk_widget_show(tabcomp);
1501                 color_profile_input_file_entry[i] = entry;
1502                 }
1503
1504         pref_table_label(table, 0, COLOR_PROFILE_INPUTS + 1, _("Screen:"), 1.0);
1505         tabcomp = tab_completion_new(&color_profile_screen_file_entry,
1506                                      options->color_profile.screen_file, NULL, NULL);
1507         tab_completion_add_select_button(color_profile_screen_file_entry, _("Select color profile"), FALSE);
1508         gtk_widget_set_size_request(color_profile_screen_file_entry, 160, -1);
1509         gtk_table_attach(GTK_TABLE(table), tabcomp, 2, 3,
1510                          COLOR_PROFILE_INPUTS + 1, COLOR_PROFILE_INPUTS + 2,
1511                          GTK_FILL | GTK_EXPAND, 0, 0, 0);
1512         gtk_widget_show(tabcomp);
1513
1514 #ifdef DEBUG
1515         group = pref_group_new(vbox, FALSE, _("Debugging"), GTK_ORIENTATION_VERTICAL);
1516
1517         pref_spin_new_int(group, _("Debug level:"), NULL,
1518                           DEBUG_LEVEL_MIN, DEBUG_LEVEL_MAX, 1, get_debug_level(), &debug_c);
1519 #endif
1520 }
1521
1522 /* Main preferences window */
1523 static void config_window_create(void)
1524 {
1525         GtkWidget *win_vbox;
1526         GtkWidget *hbox;
1527         GtkWidget *notebook;
1528         GtkWidget *button;
1529         GtkWidget *ct_button;
1530
1531         if (!c_options) c_options = init_options(NULL);
1532
1533         configwindow = window_new(GTK_WINDOW_TOPLEVEL, "preferences", PIXBUF_INLINE_ICON_CONFIG, NULL, _("Preferences"));
1534         gtk_window_set_type_hint(GTK_WINDOW(configwindow), GDK_WINDOW_TYPE_HINT_DIALOG);
1535         g_signal_connect(G_OBJECT(configwindow), "delete_event",
1536                          G_CALLBACK(config_window_delete), NULL);
1537         gtk_window_set_default_size(GTK_WINDOW(configwindow), CONFIG_WINDOW_DEF_WIDTH, CONFIG_WINDOW_DEF_HEIGHT);
1538         gtk_window_set_resizable(GTK_WINDOW(configwindow), TRUE);
1539         gtk_container_set_border_width(GTK_CONTAINER(configwindow), PREF_PAD_BORDER);
1540
1541         win_vbox = gtk_vbox_new(FALSE, PREF_PAD_SPACE);
1542         gtk_container_add(GTK_CONTAINER(configwindow), win_vbox);
1543         gtk_widget_show(win_vbox);
1544
1545         hbox = gtk_hbutton_box_new();
1546         gtk_button_box_set_layout(GTK_BUTTON_BOX(hbox), GTK_BUTTONBOX_END);
1547         gtk_box_set_spacing(GTK_BOX(hbox), PREF_PAD_BUTTON_GAP);
1548         gtk_box_pack_end(GTK_BOX(win_vbox), hbox, FALSE, FALSE, 0);
1549         gtk_widget_show(hbox);
1550
1551         button = pref_button_new(NULL, GTK_STOCK_OK, NULL, FALSE,
1552                                  G_CALLBACK(config_window_ok_cb), NULL);
1553         gtk_container_add(GTK_CONTAINER(hbox), button);
1554         GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT);
1555         gtk_widget_grab_default(button);
1556         gtk_widget_show(button);
1557
1558         ct_button = button;
1559
1560         button = pref_button_new(NULL, GTK_STOCK_APPLY, NULL, FALSE,
1561                                  G_CALLBACK(config_window_apply_cb), NULL);
1562         gtk_container_add(GTK_CONTAINER(hbox), button);
1563         GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT);
1564         gtk_widget_show(button);
1565
1566         button = pref_button_new(NULL, GTK_STOCK_CANCEL, NULL, FALSE,
1567                                  G_CALLBACK(config_window_close_cb), NULL);
1568         gtk_container_add(GTK_CONTAINER(hbox), button);
1569         GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT);
1570         gtk_widget_show(button);
1571
1572         if (!generic_dialog_get_alternative_button_order(configwindow))
1573                 {
1574                 gtk_box_reorder_child(GTK_BOX(hbox), ct_button, -1);
1575                 }
1576
1577         notebook = gtk_notebook_new();
1578         gtk_notebook_set_tab_pos(GTK_NOTEBOOK(notebook), GTK_POS_TOP);
1579         gtk_box_pack_start(GTK_BOX(win_vbox), notebook, TRUE, TRUE, 0);
1580
1581         config_tab_general(notebook);
1582         config_tab_image(notebook);
1583         config_tab_windows(notebook);
1584         config_tab_filtering(notebook);
1585         config_tab_editors(notebook);
1586         config_tab_properties(notebook);
1587         config_tab_advanced(notebook);
1588
1589         gtk_widget_show(notebook);
1590
1591         gtk_widget_show(configwindow);
1592 }
1593
1594 /*
1595  *-----------------------------------------------------------------------------
1596  * config window show (public)
1597  *-----------------------------------------------------------------------------
1598  */
1599
1600 void show_config_window(void)
1601 {
1602         if (configwindow)
1603                 {
1604                 gtk_window_present(GTK_WINDOW(configwindow));
1605                 return;
1606                 }
1607
1608         config_window_create();
1609 }
1610
1611 /*
1612  *-----------------
1613  * about window
1614  *-----------------
1615  */
1616
1617 static GtkWidget *about = NULL;
1618
1619 static gint about_delete_cb(GtkWidget *widget, GdkEventAny *event, gpointer data)
1620 {
1621         gtk_widget_destroy(about);
1622         about = NULL;
1623
1624         return TRUE;
1625 }
1626
1627 static void about_window_close(GtkWidget *widget, gpointer data)
1628 {
1629         if (!about) return;
1630
1631         gtk_widget_destroy(about);
1632         about = NULL;
1633 }
1634
1635 static void about_credits_cb(GtkWidget *widget, gpointer data)
1636 {
1637         help_window_show("credits");
1638 }
1639
1640 void show_about_window(void)
1641 {
1642         GtkWidget *vbox;
1643         GtkWidget *hbox;
1644         GtkWidget *label;
1645         GtkWidget *button;
1646         GdkPixbuf *pixbuf;
1647
1648         gchar *buf;
1649
1650         if (about)
1651                 {
1652                 gtk_window_present(GTK_WINDOW(about));
1653                 return;
1654                 }
1655
1656         about = window_new(GTK_WINDOW_TOPLEVEL, "about", NULL, NULL, _("About"));
1657         gtk_window_set_type_hint(GTK_WINDOW(about), GDK_WINDOW_TYPE_HINT_DIALOG);
1658         g_signal_connect(G_OBJECT(about), "delete_event",
1659                          G_CALLBACK(about_delete_cb), NULL);
1660
1661         gtk_container_set_border_width(GTK_CONTAINER(about), PREF_PAD_BORDER);
1662
1663         vbox = gtk_vbox_new(FALSE, PREF_PAD_SPACE);
1664         gtk_container_add(GTK_CONTAINER(about), vbox);
1665         gtk_widget_show(vbox);
1666
1667         pixbuf = pixbuf_inline(PIXBUF_INLINE_LOGO);
1668         button = gtk_image_new_from_pixbuf(pixbuf);
1669         g_object_unref(pixbuf);
1670         gtk_box_pack_start(GTK_BOX(vbox), button, TRUE, TRUE, 0);
1671         gtk_widget_show(button);
1672
1673         buf = g_strdup_printf(_("%s %s\n\nCopyright (c) 2006 John Ellis\nCopyright (c) %s The Geeqie Team\nwebsite: %s\nemail: %s\n\nReleased under the GNU General Public License"),
1674                               GQ_APPNAME,
1675                               VERSION,
1676                               "2008",
1677                               GQ_WEBSITE,
1678                               GQ_EMAIL_ADDRESS);
1679         label = gtk_label_new(buf);
1680         g_free(buf);
1681
1682         gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_CENTER);
1683         gtk_box_pack_start(GTK_BOX(vbox), label, TRUE, TRUE, 0);
1684         gtk_widget_show(label);
1685
1686         hbox = gtk_hbutton_box_new();
1687         gtk_button_box_set_layout(GTK_BUTTON_BOX(hbox), GTK_BUTTONBOX_END);
1688         gtk_box_set_spacing(GTK_BOX(hbox), PREF_PAD_BUTTON_GAP);
1689         gtk_box_pack_end(GTK_BOX(vbox), hbox, FALSE, FALSE, 0);
1690         gtk_widget_show(hbox);
1691
1692         button = pref_button_new(NULL, NULL, _("Credits..."), FALSE,
1693                                  G_CALLBACK(about_credits_cb), NULL);
1694         gtk_container_add(GTK_CONTAINER(hbox), button);
1695         GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT);
1696         gtk_widget_show(button);
1697
1698         button = pref_button_new(NULL, GTK_STOCK_CLOSE, NULL, FALSE,
1699                                  G_CALLBACK(about_window_close), NULL);
1700         gtk_container_add(GTK_CONTAINER(hbox), button);
1701         GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT);
1702         gtk_widget_grab_default(button);
1703         gtk_widget_show(button);
1704
1705         gtk_widget_show(about);
1706 }