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