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