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