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