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