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