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