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