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