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