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