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