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