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