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