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