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