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