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