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