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