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