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