config file format changed to XML
[geeqie.git] / src / layout_util.c
1 /*
2  * Geeqie
3  * (C) 2004 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 "layout_util.h"
16
17 #include "advanced_exif.h"
18 #include "bar_sort.h"
19 #include "bar.h"
20 #include "cache_maint.h"
21 #include "collect.h"
22 #include "collect-dlg.h"
23 #include "compat.h"
24 #include "dupe.h"
25 #include "editors.h"
26 #include "filedata.h"
27 #include "history_list.h"
28 #include "image-overlay.h"
29 #include "img-view.h"
30 #include "layout_image.h"
31 #include "logwindow.h"
32 #include "misc.h"
33 #include "pan-view.h"
34 #include "pixbuf_util.h"
35 #include "preferences.h"
36 #include "print.h"
37 #include "search.h"
38 #include "ui_fileops.h"
39 #include "ui_menu.h"
40 #include "ui_misc.h"
41 #include "ui_tabcomp.h"
42 #include "utilops.h"
43 #include "view_dir.h"
44 #include "window.h"
45 #include "metadata.h"
46
47 #include <gdk/gdkkeysyms.h> /* for keyboard values */
48
49
50 #define MENU_EDIT_ACTION_OFFSET 16
51
52
53 /*
54  *-----------------------------------------------------------------------------
55  * keyboard handler
56  *-----------------------------------------------------------------------------
57  */
58
59 static guint tree_key_overrides[] = {
60         GDK_Page_Up,    GDK_KP_Page_Up,
61         GDK_Page_Down,  GDK_KP_Page_Down,
62         GDK_Home,       GDK_KP_Home,
63         GDK_End,        GDK_KP_End
64 };
65
66 static gboolean layout_key_match(guint keyval)
67 {
68         guint i;
69
70         for (i = 0; i < sizeof(tree_key_overrides) / sizeof(guint); i++)
71                 {
72                 if (keyval == tree_key_overrides[i]) return TRUE;
73                 }
74
75         return FALSE;
76 }
77
78 gint layout_key_press_cb(GtkWidget *widget, GdkEventKey *event, gpointer data)
79 {
80         LayoutWindow *lw = data;
81         gint stop_signal = FALSE;
82         gint x = 0;
83         gint y = 0;
84
85         if (lw->path_entry && GTK_WIDGET_HAS_FOCUS(lw->path_entry))
86                 {
87                 if (event->keyval == GDK_Escape && lw->dir_fd)
88                         {
89                         gtk_entry_set_text(GTK_ENTRY(lw->path_entry), lw->dir_fd->path);
90                         }
91
92                 /* the gtkaccelgroup of the window is stealing presses before they get to the entry (and more),
93                  * so when the some widgets have focus, give them priority (HACK)
94                  */
95                 if (gtk_widget_event(lw->path_entry, (GdkEvent *)event))
96                         {
97                         return TRUE;
98                         }
99                 }
100         if (lw->vd && lw->options.dir_view_type == DIRVIEW_TREE && GTK_WIDGET_HAS_FOCUS(lw->vd->view) &&
101             !layout_key_match(event->keyval) &&
102             gtk_widget_event(lw->vd->view, (GdkEvent *)event))
103                 {
104                 return TRUE;
105                 }
106         if (lw->bar &&
107             bar_event(lw->bar, (GdkEvent *)event))
108                 {
109                 return TRUE;
110                 }
111
112 /*
113         if (event->type == GDK_KEY_PRESS && lw->full_screen &&
114             gtk_accel_groups_activate(G_OBJECT(lw->window), event->keyval, event->state))
115                 return TRUE;
116 */
117
118         if (lw->image &&
119             (GTK_WIDGET_HAS_FOCUS(lw->image->widget) || (lw->tools && widget == lw->window) || lw->full_screen) )
120                 {
121                 stop_signal = TRUE;
122                 switch (event->keyval)
123                         {
124                         case GDK_Left: case GDK_KP_Left:
125                                 x -= 1;
126                                 break;
127                         case GDK_Right: case GDK_KP_Right:
128                                 x += 1;
129                                 break;
130                         case GDK_Up: case GDK_KP_Up:
131                                 y -= 1;
132                                 break;
133                         case GDK_Down: case GDK_KP_Down:
134                                 y += 1;
135                                 break;
136                         default:
137                                 stop_signal = FALSE;
138                                 break;
139                         }
140
141                 if (!stop_signal &&
142                     !(event->state & GDK_CONTROL_MASK))
143                         {
144                         stop_signal = TRUE;
145                         switch (event->keyval)
146                                 {
147                                 case GDK_Menu:
148                                         layout_image_menu_popup(lw);
149                                         break;
150                                 default:
151                                         stop_signal = FALSE;
152                                         break;
153                                 }
154                         }
155                 }
156
157         if (x != 0 || y!= 0)
158                 {
159                 keyboard_scroll_calc(&x, &y, event);
160                 layout_image_scroll(lw, x, y, (event->state & GDK_SHIFT_MASK));
161                 }
162
163         return stop_signal;
164 }
165
166 void layout_keyboard_init(LayoutWindow *lw, GtkWidget *window)
167 {
168         g_signal_connect(G_OBJECT(window), "key_press_event",
169                          G_CALLBACK(layout_key_press_cb), lw);
170 }
171
172 /*
173  *-----------------------------------------------------------------------------
174  * menu callbacks
175  *-----------------------------------------------------------------------------
176  */
177
178
179 static GtkWidget *layout_window(LayoutWindow *lw)
180 {
181         return lw->full_screen ? lw->full_screen->window : lw->window;
182 }
183
184 static void layout_exit_fullscreen(LayoutWindow *lw)
185 {
186         if (!lw->full_screen) return;
187         layout_image_full_screen_stop(lw);
188 }
189
190 static void layout_menu_new_window_cb(GtkAction *action, gpointer data)
191 {
192         LayoutWindow *lw = data;
193         LayoutWindow *nw;
194
195         layout_exit_fullscreen(lw);
196
197         nw = layout_new(NULL, NULL);
198         layout_sort_set(nw, options->file_sort.method, options->file_sort.ascending);
199         layout_set_fd(nw, lw->dir_fd);
200 }
201
202 static void layout_menu_new_cb(GtkAction *action, gpointer data)
203 {
204         LayoutWindow *lw = data;
205
206         layout_exit_fullscreen(lw);
207         collection_window_new(NULL);
208 }
209
210 static void layout_menu_open_cb(GtkAction *action, gpointer data)
211 {
212         LayoutWindow *lw = data;
213
214         layout_exit_fullscreen(lw);
215         collection_dialog_load(NULL);
216 }
217
218 static void layout_menu_search_cb(GtkAction *action, gpointer data)
219 {
220         LayoutWindow *lw = data;
221
222         layout_exit_fullscreen(lw);
223         search_new(lw->dir_fd, layout_image_get_fd(lw));
224 }
225
226 static void layout_menu_dupes_cb(GtkAction *action, gpointer data)
227 {
228         LayoutWindow *lw = data;
229
230         layout_exit_fullscreen(lw);
231         dupe_window_new(DUPE_MATCH_NAME);
232 }
233
234 static void layout_menu_pan_cb(GtkAction *action, gpointer data)
235 {
236         LayoutWindow *lw = data;
237
238         layout_exit_fullscreen(lw);
239         pan_window_new(lw->dir_fd);
240 }
241
242 static void layout_menu_print_cb(GtkAction *action, gpointer data)
243 {
244         LayoutWindow *lw = data;
245
246         print_window_new(layout_image_get_fd(lw), layout_selection_list(lw), layout_list(lw), layout_window(lw));
247 }
248
249 static void layout_menu_dir_cb(GtkAction *action, gpointer data)
250 {
251         LayoutWindow *lw = data;
252
253         file_util_create_dir(lw->dir_fd, layout_window(lw), NULL, NULL);
254 }
255
256 static void layout_menu_copy_cb(GtkAction *action, gpointer data)
257 {
258         LayoutWindow *lw = data;
259
260         file_util_copy(NULL, layout_selection_list(lw), NULL, layout_window(lw));
261 }
262
263 static void layout_menu_copy_path_cb(GtkAction *action, gpointer data)
264 {
265         LayoutWindow *lw = data;
266
267         file_util_copy_path_list_to_clipboard(layout_selection_list(lw));
268 }
269
270 static void layout_menu_move_cb(GtkAction *action, gpointer data)
271 {
272         LayoutWindow *lw = data;
273
274         file_util_move(NULL, layout_selection_list(lw), NULL, layout_window(lw));
275 }
276
277 static void layout_menu_rename_cb(GtkAction *action, gpointer data)
278 {
279         LayoutWindow *lw = data;
280
281         file_util_rename(NULL, layout_selection_list(lw), layout_window(lw));
282 }
283
284 static void layout_menu_delete_cb(GtkAction *action, gpointer data)
285 {
286         LayoutWindow *lw = data;
287
288         file_util_delete(NULL, layout_selection_list(lw), layout_window(lw));
289 }
290
291 static void layout_menu_close_cb(GtkAction *action, gpointer data)
292 {
293         LayoutWindow *lw = data;
294
295         layout_exit_fullscreen(lw);
296         layout_close(lw);
297 }
298
299 static void layout_menu_exit_cb(GtkAction *action, gpointer data)
300 {
301         exit_program();
302 }
303
304 static void layout_menu_alter_90_cb(GtkAction *action, gpointer data)
305 {
306         LayoutWindow *lw = data;
307
308         layout_image_alter(lw, ALTER_ROTATE_90);
309 }
310
311 static void layout_menu_alter_90cc_cb(GtkAction *action, gpointer data)
312 {
313         LayoutWindow *lw = data;
314
315         layout_image_alter(lw, ALTER_ROTATE_90_CC);
316 }
317
318 static void layout_menu_alter_180_cb(GtkAction *action, gpointer data)
319 {
320         LayoutWindow *lw = data;
321
322         layout_image_alter(lw, ALTER_ROTATE_180);
323 }
324
325 static void layout_menu_alter_mirror_cb(GtkAction *action, gpointer data)
326 {
327         LayoutWindow *lw = data;
328
329         layout_image_alter(lw, ALTER_MIRROR);
330 }
331
332 static void layout_menu_alter_flip_cb(GtkAction *action, gpointer data)
333 {
334         LayoutWindow *lw = data;
335
336         layout_image_alter(lw, ALTER_FLIP);
337 }
338
339 static void layout_menu_alter_desaturate_cb(GtkAction *action, gpointer data)
340 {
341         LayoutWindow *lw = data;
342
343         layout_image_alter(lw, ALTER_DESATURATE);
344 }
345
346 static void layout_menu_alter_none_cb(GtkAction *action, gpointer data)
347 {
348         LayoutWindow *lw = data;
349
350         layout_image_alter(lw, ALTER_NONE);
351 }
352
353 static void layout_menu_config_cb(GtkAction *action, gpointer data)
354 {
355         LayoutWindow *lw = data;
356
357         layout_exit_fullscreen(lw);
358         show_config_window();
359 }
360
361 static void layout_menu_remove_thumb_cb(GtkAction *action, gpointer data)
362 {
363         LayoutWindow *lw = data;
364
365         layout_exit_fullscreen(lw);
366         cache_manager_show();
367 }
368
369 static void layout_menu_wallpaper_cb(GtkAction *action, gpointer data)
370 {
371         LayoutWindow *lw = data;
372
373         layout_image_to_root(lw);
374 }
375
376 /* single window zoom */
377 static void layout_menu_zoom_in_cb(GtkAction *action, gpointer data)
378 {
379         LayoutWindow *lw = data;
380
381         layout_image_zoom_adjust(lw, get_zoom_increment(), FALSE);
382 }
383
384 static void layout_menu_zoom_out_cb(GtkAction *action, gpointer data)
385 {
386         LayoutWindow *lw = data;
387
388         layout_image_zoom_adjust(lw, -get_zoom_increment(), FALSE);
389 }
390
391 static void layout_menu_zoom_1_1_cb(GtkAction *action, gpointer data)
392 {
393         LayoutWindow *lw = data;
394
395         layout_image_zoom_set(lw, 1.0, FALSE);
396 }
397
398 static void layout_menu_zoom_fit_cb(GtkAction *action, gpointer data)
399 {
400         LayoutWindow *lw = data;
401
402         layout_image_zoom_set(lw, 0.0, FALSE);
403 }
404
405 static void layout_menu_zoom_fit_hor_cb(GtkAction *action, gpointer data)
406 {
407         LayoutWindow *lw = data;
408
409         layout_image_zoom_set_fill_geometry(lw, FALSE, FALSE);
410 }
411
412 static void layout_menu_zoom_fit_vert_cb(GtkAction *action, gpointer data)
413 {
414         LayoutWindow *lw = data;
415
416         layout_image_zoom_set_fill_geometry(lw, TRUE, FALSE);
417 }
418
419 static void layout_menu_zoom_2_1_cb(GtkAction *action, gpointer data)
420 {
421         LayoutWindow *lw = data;
422
423         layout_image_zoom_set(lw, 2.0, FALSE);
424 }
425
426 static void layout_menu_zoom_3_1_cb(GtkAction *action, gpointer data)
427 {
428         LayoutWindow *lw = data;
429
430         layout_image_zoom_set(lw, 3.0, FALSE);
431 }
432 static void layout_menu_zoom_4_1_cb(GtkAction *action, gpointer data)
433 {
434         LayoutWindow *lw = data;
435
436         layout_image_zoom_set(lw, 4.0, FALSE);
437 }
438
439 static void layout_menu_zoom_1_2_cb(GtkAction *action, gpointer data)
440 {
441         LayoutWindow *lw = data;
442
443         layout_image_zoom_set(lw, -2.0, FALSE);
444 }
445
446 static void layout_menu_zoom_1_3_cb(GtkAction *action, gpointer data)
447 {
448         LayoutWindow *lw = data;
449
450         layout_image_zoom_set(lw, -3.0, FALSE);
451 }
452
453 static void layout_menu_zoom_1_4_cb(GtkAction *action, gpointer data)
454 {
455         LayoutWindow *lw = data;
456
457         layout_image_zoom_set(lw, -4.0, FALSE);
458 }
459
460 /* connected zoom */
461 static void layout_menu_connect_zoom_in_cb(GtkAction *action, gpointer data)
462 {
463         LayoutWindow *lw = data;
464
465         layout_image_zoom_adjust(lw, get_zoom_increment(), TRUE);
466 }
467
468 static void layout_menu_connect_zoom_out_cb(GtkAction *action, gpointer data)
469 {
470         LayoutWindow *lw = data;
471
472         layout_image_zoom_adjust(lw, -get_zoom_increment(), TRUE);
473 }
474
475 static void layout_menu_connect_zoom_1_1_cb(GtkAction *action, gpointer data)
476 {
477         LayoutWindow *lw = data;
478
479         layout_image_zoom_set(lw, 1.0, TRUE);
480 }
481
482 static void layout_menu_connect_zoom_fit_cb(GtkAction *action, gpointer data)
483 {
484         LayoutWindow *lw = data;
485
486         layout_image_zoom_set(lw, 0.0, TRUE);
487 }
488
489 static void layout_menu_connect_zoom_fit_hor_cb(GtkAction *action, gpointer data)
490 {
491         LayoutWindow *lw = data;
492
493         layout_image_zoom_set_fill_geometry(lw, FALSE, TRUE);
494 }
495
496 static void layout_menu_connect_zoom_fit_vert_cb(GtkAction *action, gpointer data)
497 {
498         LayoutWindow *lw = data;
499
500         layout_image_zoom_set_fill_geometry(lw, TRUE, TRUE);
501 }
502
503 static void layout_menu_connect_zoom_2_1_cb(GtkAction *action, gpointer data)
504 {
505         LayoutWindow *lw = data;
506
507         layout_image_zoom_set(lw, 2.0, TRUE);
508 }
509
510 static void layout_menu_connect_zoom_3_1_cb(GtkAction *action, gpointer data)
511 {
512         LayoutWindow *lw = data;
513
514         layout_image_zoom_set(lw, 3.0, TRUE);
515 }
516 static void layout_menu_connect_zoom_4_1_cb(GtkAction *action, gpointer data)
517 {
518         LayoutWindow *lw = data;
519
520         layout_image_zoom_set(lw, 4.0, TRUE);
521 }
522
523 static void layout_menu_connect_zoom_1_2_cb(GtkAction *action, gpointer data)
524 {
525         LayoutWindow *lw = data;
526
527         layout_image_zoom_set(lw, -2.0, TRUE);
528 }
529
530 static void layout_menu_connect_zoom_1_3_cb(GtkAction *action, gpointer data)
531 {
532         LayoutWindow *lw = data;
533
534         layout_image_zoom_set(lw, -3.0, TRUE);
535 }
536
537 static void layout_menu_connect_zoom_1_4_cb(GtkAction *action, gpointer data)
538 {
539         LayoutWindow *lw = data;
540
541         layout_image_zoom_set(lw, -4.0, TRUE);
542 }
543
544
545 static void layout_menu_split_cb(GtkRadioAction *action, GtkRadioAction *current, gpointer data)
546 {
547         LayoutWindow *lw = data;
548         ImageSplitMode mode;
549
550         layout_exit_fullscreen(lw);
551
552         mode = gtk_radio_action_get_current_value(action);
553         if (mode == lw->split_mode) mode = 0; /* toggle back */
554
555         layout_split_change(lw, mode);
556 }
557
558
559 static void layout_menu_thumb_cb(GtkToggleAction *action, gpointer data)
560 {
561         LayoutWindow *lw = data;
562
563         layout_thumb_set(lw, gtk_toggle_action_get_active(action));
564 }
565
566
567 static void layout_menu_list_cb(GtkRadioAction *action, GtkRadioAction *current, gpointer data)
568 {
569         LayoutWindow *lw = data;
570         
571         layout_exit_fullscreen(lw);
572         layout_views_set(lw, lw->options.dir_view_type, (gtk_radio_action_get_current_value(action) == 1) ? FILEVIEW_ICON : FILEVIEW_LIST);
573 }
574
575 static void layout_menu_view_dir_as_cb(GtkRadioAction *action, GtkRadioAction *current, gpointer data)
576 {
577         LayoutWindow *lw = data;
578
579         layout_exit_fullscreen(lw);
580         layout_views_set(lw, (DirViewType) gtk_radio_action_get_current_value(action), lw->file_view_type);
581 }
582
583 static void layout_menu_view_in_new_window_cb(GtkAction *action, gpointer data)
584 {
585         LayoutWindow *lw = data;
586
587         layout_exit_fullscreen(lw);
588         view_window_new(layout_image_get_fd(lw));
589 }
590
591 static void layout_menu_fullscreen_cb(GtkAction *action, gpointer data)
592 {
593         LayoutWindow *lw = data;
594
595         layout_image_full_screen_toggle(lw);
596 }
597
598 static void layout_menu_escape_cb(GtkAction *action, gpointer data)
599 {
600         LayoutWindow *lw = data;
601
602         layout_exit_fullscreen(lw);
603
604         /* FIXME:interrupting thumbs no longer allowed */
605 #if 0
606         interrupt_thumbs();
607 #endif
608 }
609
610 static void layout_menu_overlay_cb(GtkAction *action, gpointer data)
611 {
612         LayoutWindow *lw = data;
613
614         image_osd_toggle(lw->image);
615 }
616
617 static void layout_menu_histogram_chan_cb(GtkAction *action, gpointer data)
618 {
619         LayoutWindow *lw = data;
620
621         image_osd_histogram_chan_toggle(lw->image);
622 }
623
624 static void layout_menu_histogram_log_cb(GtkAction *action, gpointer data)
625 {
626         LayoutWindow *lw = data;
627
628         image_osd_histogram_log_toggle(lw->image);
629 }
630
631 static void layout_menu_refresh_cb(GtkAction *action, gpointer data)
632 {
633         LayoutWindow *lw = data;
634
635         layout_refresh(lw);
636 }
637
638 static void layout_menu_float_cb(GtkToggleAction *action, gpointer data)
639 {
640         LayoutWindow *lw = data;
641         
642         layout_exit_fullscreen(lw);
643
644         if (lw->options.tools_float == gtk_toggle_action_get_active(action)) return;
645         layout_tools_float_toggle(lw);
646 }
647
648 static void layout_menu_hide_cb(GtkAction *action, gpointer data)
649 {
650         LayoutWindow *lw = data;
651
652         layout_exit_fullscreen(lw);
653         layout_tools_hide_toggle(lw);
654 }
655
656 static void layout_menu_toolbar_cb(GtkToggleAction *action, gpointer data)
657 {
658         LayoutWindow *lw = data;
659
660         layout_exit_fullscreen(lw);
661
662         if (lw->options.toolbar_hidden == gtk_toggle_action_get_active(action)) return;
663         layout_toolbar_toggle(lw);
664 }
665
666 static void layout_menu_bar_cb(GtkToggleAction *action, gpointer data)
667 {
668         LayoutWindow *lw = data;
669
670         layout_exit_fullscreen(lw);
671
672         if (lw->options.panels.info.enabled == gtk_toggle_action_get_active(action)) return;
673         layout_bar_toggle(lw);
674 }
675
676 static void layout_menu_bar_exif_cb(GtkToggleAction *action, gpointer data)
677 {
678         LayoutWindow *lw = data;
679         
680         layout_exit_fullscreen(lw);
681
682         layout_exif_window_new(lw);
683 }
684
685 static void layout_menu_bar_sort_cb(GtkToggleAction *action, gpointer data)
686 {
687         LayoutWindow *lw = data;
688
689         layout_exit_fullscreen(lw);
690
691         if (lw->options.panels.sort.enabled == gtk_toggle_action_get_active(action)) return;
692         layout_bar_sort_toggle(lw);
693 }
694
695 static void layout_menu_slideshow_cb(GtkAction *action, gpointer data)
696 {
697         LayoutWindow *lw = data;
698
699         layout_image_slideshow_toggle(lw);
700 }
701
702 static void layout_menu_slideshow_pause_cb(GtkAction *action, gpointer data)
703 {
704         LayoutWindow *lw = data;
705
706         layout_image_slideshow_pause_toggle(lw);
707 }
708
709 static void layout_menu_help_cb(GtkAction *action, gpointer data)
710 {
711         LayoutWindow *lw = data;
712
713         layout_exit_fullscreen(lw);
714         help_window_show("html_contents");
715 }
716
717 static void layout_menu_help_keys_cb(GtkAction *action, gpointer data)
718 {
719         LayoutWindow *lw = data;
720
721         layout_exit_fullscreen(lw);
722         help_window_show("documentation");
723 }
724
725 static void layout_menu_notes_cb(GtkAction *action, gpointer data)
726 {
727         LayoutWindow *lw = data;
728         
729         layout_exit_fullscreen(lw);
730         help_window_show("release_notes");
731 }
732
733 static void layout_menu_about_cb(GtkAction *action, gpointer data)
734 {
735         LayoutWindow *lw = data;
736
737         layout_exit_fullscreen(lw);
738         show_about_window();
739 }
740
741 static void layout_menu_log_window_cb(GtkAction *action, gpointer data)
742 {
743         LayoutWindow *lw = data;
744
745         layout_exit_fullscreen(lw);
746         log_window_new();
747 }
748
749
750 /*
751  *-----------------------------------------------------------------------------
752  * select menu
753  *-----------------------------------------------------------------------------
754  */
755
756 static void layout_menu_select_all_cb(GtkAction *action, gpointer data)
757 {
758         LayoutWindow *lw = data;
759
760         layout_select_all(lw);
761 }
762
763 static void layout_menu_unselect_all_cb(GtkAction *action, gpointer data)
764 {
765         LayoutWindow *lw = data;
766
767         layout_select_none(lw);
768 }
769
770 static void layout_menu_invert_selection_cb(GtkAction *action, gpointer data)
771 {
772         LayoutWindow *lw = data;
773
774         layout_select_invert(lw);
775 }
776
777 static void layout_menu_marks_cb(GtkToggleAction *action, gpointer data)
778 {
779         LayoutWindow *lw = data;
780
781         layout_marks_set(lw, gtk_toggle_action_get_active(action));
782 }
783
784
785 static void layout_menu_set_mark_sel_cb(GtkAction *action, gpointer data)
786 {
787         LayoutWindow *lw = data;
788         gint mark = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(action), "mark_num"));
789         g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE);
790
791         layout_selection_to_mark(lw, mark, STM_MODE_SET);
792 }
793
794 static void layout_menu_res_mark_sel_cb(GtkAction *action, gpointer data)
795 {
796         LayoutWindow *lw = data;
797         gint mark = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(action), "mark_num"));
798         g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE);
799
800         layout_selection_to_mark(lw, mark, STM_MODE_RESET);
801 }
802
803 static void layout_menu_toggle_mark_sel_cb(GtkAction *action, gpointer data)
804 {
805         LayoutWindow *lw = data;
806         gint mark = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(action), "mark_num"));
807         g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE);
808
809         layout_selection_to_mark(lw, mark, STM_MODE_TOGGLE);
810 }
811
812 static void layout_menu_sel_mark_cb(GtkAction *action, gpointer data)
813 {
814         LayoutWindow *lw = data;
815         gint mark = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(action), "mark_num"));
816         g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE);
817
818         layout_mark_to_selection(lw, mark, MTS_MODE_SET);
819 }
820
821 static void layout_menu_sel_mark_or_cb(GtkAction *action, gpointer data)
822 {
823         LayoutWindow *lw = data;
824         gint mark = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(action), "mark_num"));
825         g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE);
826
827         layout_mark_to_selection(lw, mark, MTS_MODE_OR);
828 }
829
830 static void layout_menu_sel_mark_and_cb(GtkAction *action, gpointer data)
831 {
832         LayoutWindow *lw = data;
833         gint mark = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(action), "mark_num"));
834         g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE);
835
836         layout_mark_to_selection(lw, mark, MTS_MODE_AND);
837 }
838
839 static void layout_menu_sel_mark_minus_cb(GtkAction *action, gpointer data)
840 {
841         LayoutWindow *lw = data;
842         gint mark = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(action), "mark_num"));
843         g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE);
844
845         layout_mark_to_selection(lw, mark, MTS_MODE_MINUS);
846 }
847
848
849 /*
850  *-----------------------------------------------------------------------------
851  * go menu
852  *-----------------------------------------------------------------------------
853  */
854
855 static void layout_menu_image_first_cb(GtkAction *action, gpointer data)
856 {
857         LayoutWindow *lw = data;
858         layout_image_first(lw);
859 }
860
861 static void layout_menu_image_prev_cb(GtkAction *action, gpointer data)
862 {
863         LayoutWindow *lw = data;
864         layout_image_prev(lw);
865 }
866
867 static void layout_menu_image_next_cb(GtkAction *action, gpointer data)
868 {
869         LayoutWindow *lw = data;
870         layout_image_next(lw);
871 }
872
873 static void layout_menu_image_last_cb(GtkAction *action, gpointer data)
874 {
875         LayoutWindow *lw = data;
876         layout_image_last(lw);
877 }
878
879
880 /*
881  *-----------------------------------------------------------------------------
882  * edit menu
883  *-----------------------------------------------------------------------------
884  */
885
886 static void layout_menu_edit_cb(GtkAction *action, gpointer data)
887 {
888         LayoutWindow *lw = data;
889         GList *list;
890         const gchar *key = gtk_action_get_name(action);
891         
892         if (!editor_window_flag_set(key))
893                 layout_exit_fullscreen(lw);
894
895         list = layout_selection_list(lw);
896         file_util_start_editor_from_filelist(key, list, lw->window);
897         filelist_free(list);
898 }
899
900 #if 0
901 static void layout_menu_edit_update(LayoutWindow *lw)
902 {
903         gint i;
904
905         /* main edit menu */
906
907         if (!lw->action_group) return;
908
909         for (i = 0; i < GQ_EDITOR_GENERIC_SLOTS; i++)
910                 {
911                 gchar *key;
912                 GtkAction *action;
913                 const gchar *name;
914         
915                 key = g_strdup_printf("Editor%d", i);
916
917                 action = gtk_action_group_get_action(lw->action_group, key);
918                 g_object_set_data(G_OBJECT(action), "edit_index", GINT_TO_POINTER(i));
919
920                 name = editor_get_name(i);
921                 if (name)
922                         {
923                         gchar *text = g_strdup_printf(_("_%d %s..."), i, name);
924
925                         g_object_set(action, "label", text,
926                                              "sensitive", TRUE, NULL);
927                         g_free(text);
928                         }
929                 else
930                         {
931                         gchar *text;
932
933                         text = g_strdup_printf(_("_%d empty"), i);
934                         g_object_set(action, "label", text, "sensitive", FALSE, NULL);
935                         g_free(text);
936                         }
937
938                 g_free(key);
939                 }
940 }
941
942 void layout_edit_update_all(void)
943 {
944         GList *work;
945
946         work = layout_window_list;
947         while (work)
948                 {
949                 LayoutWindow *lw = work->data;
950                 work = work->next;
951
952                 layout_menu_edit_update(lw);
953                 }
954 }
955
956 #endif
957
958 /*
959  *-----------------------------------------------------------------------------
960  * recent menu
961  *-----------------------------------------------------------------------------
962  */
963
964 static void layout_menu_recent_cb(GtkWidget *widget, gpointer data)
965 {
966         gint n;
967         gchar *path;
968
969         n = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(widget), "recent_index"));
970
971         path = g_list_nth_data(history_list_get_by_key("recent"), n);
972
973         if (!path) return;
974
975         /* make a copy of it */
976         path = g_strdup(path);
977         collection_window_new(path);
978         g_free(path);
979 }
980
981 static void layout_menu_recent_update(LayoutWindow *lw)
982 {
983         GtkWidget *menu;
984         GtkWidget *recent;
985         GtkWidget *item;
986         GList *list;
987         gint n;
988
989         if (!lw->ui_manager) return;
990
991         list = history_list_get_by_key("recent");
992         n = 0;
993
994         menu = gtk_menu_new();
995
996         while (list)
997                 {
998                 const gchar *filename = filename_from_path((gchar *)list->data);
999                 gchar *name;
1000                 gboolean free_name = FALSE;
1001
1002                 if (file_extension_match(filename, GQ_COLLECTION_EXT))
1003                         {
1004                         name = remove_extension_from_path(filename);
1005                         free_name = TRUE;
1006                         }
1007                 else
1008                         {
1009                         name = (gchar *) filename;
1010                         }
1011
1012                 item = menu_item_add_simple(menu, name, G_CALLBACK(layout_menu_recent_cb), lw);
1013                 if (free_name) g_free(name);
1014                 g_object_set_data(G_OBJECT(item), "recent_index", GINT_TO_POINTER(n));
1015                 list = list->next;
1016                 n++;
1017                 }
1018
1019         if (n == 0)
1020                 {
1021                 menu_item_add(menu, _("Empty"), NULL, NULL);
1022                 }
1023
1024         recent = gtk_ui_manager_get_widget(lw->ui_manager, "/MainMenu/FileMenu/OpenRecent");
1025         gtk_menu_item_set_submenu(GTK_MENU_ITEM(recent), menu);
1026         gtk_widget_set_sensitive(recent, (n != 0));
1027 }
1028
1029 void layout_recent_update_all(void)
1030 {
1031         GList *work;
1032
1033         work = layout_window_list;
1034         while (work)
1035                 {
1036                 LayoutWindow *lw = work->data;
1037                 work = work->next;
1038
1039                 layout_menu_recent_update(lw);
1040                 }
1041 }
1042
1043 void layout_recent_add_path(const gchar *path)
1044 {
1045         if (!path) return;
1046
1047         history_list_add_to_key("recent", path, options->open_recent_list_maxsize);
1048
1049         layout_recent_update_all();
1050 }
1051
1052 /*
1053  *-----------------------------------------------------------------------------
1054  * copy path
1055  *-----------------------------------------------------------------------------
1056  */
1057
1058 static void layout_copy_path_update(LayoutWindow *lw)
1059 {
1060         GtkWidget *item = gtk_ui_manager_get_widget(lw->ui_manager, "/MainMenu/FileMenu/CopyPath");
1061
1062         if (!item) return;
1063         
1064         if (options->show_copy_path)
1065                 gtk_widget_show(item);
1066         else
1067                 gtk_widget_hide(item);
1068 }
1069
1070 void layout_copy_path_update_all(void)
1071 {
1072         GList *work;
1073
1074         work = layout_window_list;
1075         while (work)
1076                 {
1077                 LayoutWindow *lw = work->data;
1078                 work = work->next;
1079
1080                 layout_copy_path_update(lw);
1081                 }
1082 }
1083
1084 /*
1085  *-----------------------------------------------------------------------------
1086  * menu
1087  *-----------------------------------------------------------------------------
1088  */
1089
1090 #define CB G_CALLBACK
1091
1092 static GtkActionEntry menu_entries[] = {
1093   { "FileMenu",         NULL,           N_("_File"),                    NULL,           NULL,   NULL },
1094   { "GoMenu",           NULL,           N_("_Go"),                      NULL,           NULL,   NULL },
1095   { "EditMenu",         NULL,           N_("_Edit"),                    NULL,           NULL,   NULL },
1096   { "SelectMenu",       NULL,           N_("_Select"),                  NULL,           NULL,   NULL },
1097   { "AdjustMenu",       NULL,           N_("_Adjust"),                  NULL,           NULL,   NULL },
1098   { "ExternalMenu",     NULL,           N_("E_xternal Editors"),        NULL,           NULL,   NULL },
1099   { "ViewMenu",         NULL,           N_("_View"),                    NULL,           NULL,   NULL },
1100   { "DirMenu",          NULL,           N_("_View Directory as"),       NULL,           NULL,   NULL },
1101   { "ZoomMenu",         NULL,           N_("_Zoom"),                    NULL,           NULL,   NULL },
1102   { "ConnectZoomMenu",  NULL,           N_("_Connected Zoom"),          NULL,           NULL,   NULL },
1103   { "SplitMenu",        NULL,           N_("_Split"),                   NULL,           NULL,   NULL },
1104   { "HelpMenu",         NULL,           N_("_Help"),                    NULL,           NULL,   NULL },
1105
1106   { "FirstImage",       GTK_STOCK_GOTO_TOP,     N_("_First Image"),     "Home",         NULL,   CB(layout_menu_image_first_cb) },
1107   { "PrevImage",        GTK_STOCK_GO_UP,        N_("_Previous Image"),  "BackSpace",    NULL,   CB(layout_menu_image_prev_cb) },
1108   { "PrevImageAlt1",    GTK_STOCK_GO_UP,        N_("_Previous Image"),  "Page_Up",      NULL,   CB(layout_menu_image_prev_cb) },
1109   { "PrevImageAlt2",    GTK_STOCK_GO_UP,        N_("_Previous Image"),  "KP_Page_Up",   NULL,   CB(layout_menu_image_prev_cb) },
1110   { "NextImage",        GTK_STOCK_GO_DOWN,      N_("_Next Image"),      "space",        NULL,   CB(layout_menu_image_next_cb) },
1111   { "NextImageAlt1",    GTK_STOCK_GO_DOWN,      N_("_Next Image"),      "Page_Down",    NULL,   CB(layout_menu_image_next_cb) },
1112   { "NextImageAlt2",    GTK_STOCK_GO_DOWN,      N_("_Next Image"),      "KP_Page_Down", NULL,   CB(layout_menu_image_next_cb) },
1113   { "LastImage",        GTK_STOCK_GOTO_BOTTOM,  N_("_Last Image"),      "End",          NULL,   CB(layout_menu_image_last_cb) },
1114
1115
1116   { "NewWindow",        GTK_STOCK_NEW,  N_("New _window"),      NULL,           NULL,   CB(layout_menu_new_window_cb) },
1117   { "NewCollection",    GTK_STOCK_INDEX,N_("_New collection"),  "C",            NULL,   CB(layout_menu_new_cb) },
1118   { "OpenCollection",   GTK_STOCK_OPEN, N_("_Open collection..."),"O",          NULL,   CB(layout_menu_open_cb) },
1119   { "OpenRecent",       NULL,           N_("Open _recent"),     NULL,           NULL,   NULL },
1120   { "Search",           GTK_STOCK_FIND, N_("_Search..."),       "F3",           NULL,   CB(layout_menu_search_cb) },
1121   { "FindDupes",        GTK_STOCK_FIND, N_("_Find duplicates..."),"D",          NULL,   CB(layout_menu_dupes_cb) },
1122   { "PanView",          NULL,           N_("Pan _view"),        "<control>J",   NULL,   CB(layout_menu_pan_cb) },
1123   { "Print",            GTK_STOCK_PRINT,N_("_Print..."),        "<shift>P",     NULL,   CB(layout_menu_print_cb) },
1124   { "NewFolder",        NULL,           N_("N_ew folder..."),   "<control>F",   NULL,   CB(layout_menu_dir_cb) },
1125   { "Copy",             NULL,           N_("_Copy..."),         "<control>C",   NULL,   CB(layout_menu_copy_cb) },
1126   { "Move",             NULL,           N_("_Move..."),         "<control>M",   NULL,   CB(layout_menu_move_cb) },
1127   { "Rename",           NULL,           N_("_Rename..."),       "<control>R",   NULL,   CB(layout_menu_rename_cb) },
1128   { "Delete",   GTK_STOCK_DELETE,       N_("_Delete..."),       "<control>D",   NULL,   CB(layout_menu_delete_cb) },
1129   { "DeleteAlt1",GTK_STOCK_DELETE,      N_("_Delete..."),       "Delete",       NULL,   CB(layout_menu_delete_cb) },
1130   { "DeleteAlt2",GTK_STOCK_DELETE,      N_("_Delete..."),       "KP_Delete",    NULL,   CB(layout_menu_delete_cb) },
1131   { "CopyPath",         NULL,           N_("_Copy path to clipboard"),  NULL,           NULL,   CB(layout_menu_copy_path_cb) },
1132   { "CloseWindow",      GTK_STOCK_CLOSE,N_("C_lose window"),    "<control>W",   NULL,   CB(layout_menu_close_cb) },
1133   { "Quit",             GTK_STOCK_QUIT, N_("_Quit"),            "<control>Q",   NULL,   CB(layout_menu_exit_cb) },
1134
1135   { "RotateCW",         NULL,   N_("_Rotate clockwise"),        "bracketright", NULL,   CB(layout_menu_alter_90_cb) },
1136   { "RotateCCW",        NULL,   N_("Rotate _counterclockwise"), "bracketleft",  NULL,   CB(layout_menu_alter_90cc_cb) },
1137   { "Rotate180",        NULL,           N_("Rotate 1_80"),      "<shift>R",     NULL,   CB(layout_menu_alter_180_cb) },
1138   { "Mirror",           NULL,           N_("_Mirror"),          "<shift>M",     NULL,   CB(layout_menu_alter_mirror_cb) },
1139   { "Flip",             NULL,           N_("_Flip"),            "<shift>F",     NULL,   CB(layout_menu_alter_flip_cb) },
1140   { "Grayscale",        NULL,           N_("Toggle _grayscale"),"<shift>G",     NULL,   CB(layout_menu_alter_desaturate_cb) },
1141   { "AlterNone",        NULL,           N_("_Original state"),  "<shift>O",     NULL,   CB(layout_menu_alter_none_cb) },
1142
1143   { "SelectAll",        NULL,           N_("Select _all"),      "<control>A",   NULL,   CB(layout_menu_select_all_cb) },
1144   { "SelectNone",       NULL,           N_("Select _none"), "<control><shift>A",NULL,   CB(layout_menu_unselect_all_cb) },
1145   { "SelectInvert",     NULL,           N_("_Invert Selection"), "<control><shift>I",   NULL,   CB(layout_menu_invert_selection_cb) },
1146
1147   { "Preferences",GTK_STOCK_PREFERENCES,N_("P_references..."),  "<control>O",   NULL,   CB(layout_menu_config_cb) },
1148   { "Maintenance",      NULL,           N_("_Thumbnail maintenance..."),NULL,   NULL,   CB(layout_menu_remove_thumb_cb) },
1149   { "Wallpaper",        NULL,           N_("Set as _wallpaper"),NULL,           NULL,   CB(layout_menu_wallpaper_cb) },
1150
1151   { "ZoomIn",   GTK_STOCK_ZOOM_IN,      N_("Zoom _in"),         "equal",        NULL,   CB(layout_menu_zoom_in_cb) },
1152   { "ZoomInAlt1",GTK_STOCK_ZOOM_IN,     N_("Zoom _in"),         "KP_Add",       NULL,   CB(layout_menu_zoom_in_cb) },
1153   { "ZoomOut",  GTK_STOCK_ZOOM_OUT,     N_("Zoom _out"),        "minus",        NULL,   CB(layout_menu_zoom_out_cb) },
1154   { "ZoomOutAlt1",GTK_STOCK_ZOOM_OUT,   N_("Zoom _out"),        "KP_Subtract",  NULL,   CB(layout_menu_zoom_out_cb) },
1155   { "Zoom100",  GTK_STOCK_ZOOM_100,     N_("Zoom _1:1"),        "Z",            NULL,   CB(layout_menu_zoom_1_1_cb) },
1156   { "Zoom100Alt1",GTK_STOCK_ZOOM_100,   N_("Zoom _1:1"),        "KP_Divide",            NULL,   CB(layout_menu_zoom_1_1_cb) },
1157   { "ZoomFit",  GTK_STOCK_ZOOM_FIT,     N_("_Zoom to fit"),     "X",            NULL,   CB(layout_menu_zoom_fit_cb) },
1158   { "ZoomFitAlt1",GTK_STOCK_ZOOM_FIT,   N_("_Zoom to fit"),     "KP_Multiply",  NULL,   CB(layout_menu_zoom_fit_cb) },
1159   { "ZoomFillHor",      NULL,           N_("Fit _Horizontally"),"H",            NULL,   CB(layout_menu_zoom_fit_hor_cb) },
1160   { "ZoomFillVert",     NULL,           N_("Fit _Vertically"),  "W",            NULL,   CB(layout_menu_zoom_fit_vert_cb) },
1161   { "Zoom200",          NULL,           N_("Zoom _2:1"),        NULL,           NULL,   CB(layout_menu_zoom_2_1_cb) },
1162   { "Zoom300",          NULL,           N_("Zoom _3:1"),        NULL,           NULL,   CB(layout_menu_zoom_3_1_cb) },
1163   { "Zoom400",          NULL,           N_("Zoom _4:1"),        NULL,           NULL,   CB(layout_menu_zoom_4_1_cb) },
1164   { "Zoom50",           NULL,           N_("Zoom 1:2"),         NULL,           NULL,   CB(layout_menu_zoom_1_2_cb) },
1165   { "Zoom33",           NULL,           N_("Zoom 1:3"),         NULL,           NULL,   CB(layout_menu_zoom_1_3_cb) },
1166   { "Zoom25",           NULL,           N_("Zoom 1:4"),         NULL,           NULL,   CB(layout_menu_zoom_1_4_cb) },
1167
1168   { "ConnectZoomIn",    GTK_STOCK_ZOOM_IN,      N_("Zoom _in"),         "plus",                 NULL,   CB(layout_menu_connect_zoom_in_cb) },
1169   { "ConnectZoomInAlt1",GTK_STOCK_ZOOM_IN,      N_("Zoom _in"),         "<shift>KP_Add",        NULL,   CB(layout_menu_connect_zoom_in_cb) },
1170   { "ConnectZoomOut",   GTK_STOCK_ZOOM_OUT,     N_("Zoom _out"),        "underscore",           NULL,   CB(layout_menu_connect_zoom_out_cb) },
1171   { "ConnectZoomOutAlt1",GTK_STOCK_ZOOM_OUT,    N_("Zoom _out"),        "<shift>KP_Subtract",   NULL,   CB(layout_menu_connect_zoom_out_cb) },
1172   { "ConnectZoom100",   GTK_STOCK_ZOOM_100,     N_("Zoom _1:1"),        "<shift>Z",             NULL,   CB(layout_menu_connect_zoom_1_1_cb) },
1173   { "ConnectZoom100Alt1",GTK_STOCK_ZOOM_100,    N_("Zoom _1:1"),        "<shift>KP_Divide",     NULL,   CB(layout_menu_connect_zoom_1_1_cb) },
1174   { "ConnectZoomFit",   GTK_STOCK_ZOOM_FIT,     N_("_Zoom to fit"),     "<shift>X",             NULL,   CB(layout_menu_connect_zoom_fit_cb) },
1175   { "ConnectZoomFitAlt1",GTK_STOCK_ZOOM_FIT,    N_("_Zoom to fit"),     "<shift>KP_Multiply",   NULL,   CB(layout_menu_connect_zoom_fit_cb) },
1176   { "ConnectZoomFillHor",       NULL,           N_("Fit _Horizontally"),"<shift>H",             NULL,   CB(layout_menu_connect_zoom_fit_hor_cb) },
1177   { "ConnectZoomFillVert",      NULL,           N_("Fit _Vertically"),  "<shift>W",             NULL,   CB(layout_menu_connect_zoom_fit_vert_cb) },
1178   { "ConnectZoom200",           NULL,           N_("Zoom _2:1"),        NULL,                   NULL,   CB(layout_menu_connect_zoom_2_1_cb) },
1179   { "ConnectZoom300",           NULL,           N_("Zoom _3:1"),        NULL,                   NULL,   CB(layout_menu_connect_zoom_3_1_cb) },
1180   { "ConnectZoom400",           NULL,           N_("Zoom _4:1"),        NULL,                   NULL,   CB(layout_menu_connect_zoom_4_1_cb) },
1181   { "ConnectZoom50",            NULL,           N_("Zoom 1:2"),         NULL,                   NULL,   CB(layout_menu_connect_zoom_1_2_cb) },
1182   { "ConnectZoom33",            NULL,           N_("Zoom 1:3"),         NULL,                   NULL,   CB(layout_menu_connect_zoom_1_3_cb) },
1183   { "ConnectZoom25",            NULL,           N_("Zoom 1:4"),         NULL,                   NULL,   CB(layout_menu_connect_zoom_1_4_cb) },
1184
1185
1186   { "ViewInNewWindow",  NULL,           N_("_View in new window"),      "<control>V",           NULL,   CB(layout_menu_view_in_new_window_cb) },
1187
1188   { "FullScreen",       NULL,           N_("F_ull screen"),     "F",            NULL,   CB(layout_menu_fullscreen_cb) },
1189   { "FullScreenAlt1",   NULL,           N_("F_ull screen"),     "V",            NULL,   CB(layout_menu_fullscreen_cb) },
1190   { "FullScreenAlt2",   NULL,           N_("F_ull screen"),     "F11",          NULL,   CB(layout_menu_fullscreen_cb) },
1191   { "Escape",           NULL,           N_("Escape"),           "Escape",       NULL,   CB(layout_menu_escape_cb) },
1192   { "EscapeAlt1",       NULL,           N_("Escape"),           "Q",            NULL,   CB(layout_menu_escape_cb) },
1193   { "ImageOverlay",     NULL,           N_("_Image Overlay"),   "I",            NULL,   CB(layout_menu_overlay_cb) },
1194   { "HistogramChan",    NULL,   N_("Histogram _channels"),      "K",            NULL,   CB(layout_menu_histogram_chan_cb) },
1195   { "HistogramLog",     NULL,   N_("Histogram _log mode"),      "J",            NULL,   CB(layout_menu_histogram_log_cb) },
1196   { "HideTools",        NULL,           N_("_Hide file list"),  "<control>H",   NULL,   CB(layout_menu_hide_cb) },
1197   { "SlideShowPause",   NULL,           N_("_Pause slideshow"), "P",            NULL,   CB(layout_menu_slideshow_pause_cb) },
1198   { "Refresh",  GTK_STOCK_REFRESH,      N_("_Refresh"),         "R",            NULL,   CB(layout_menu_refresh_cb) },
1199
1200   { "HelpContents",     GTK_STOCK_HELP, N_("_Contents"),        "F1",           NULL,   CB(layout_menu_help_cb) },
1201   { "HelpShortcuts",    NULL,           N_("_Keyboard shortcuts"),NULL,         NULL,   CB(layout_menu_help_keys_cb) },
1202   { "HelpNotes",        NULL,           N_("_Release notes"),   NULL,           NULL,   CB(layout_menu_notes_cb) },
1203   { "About",            NULL,           N_("_About"),           NULL,           NULL,   CB(layout_menu_about_cb) },
1204   { "LogWindow",        NULL,           N_("_Log Window"),      NULL,           NULL,   CB(layout_menu_log_window_cb) }
1205 };
1206
1207 static GtkToggleActionEntry menu_toggle_entries[] = {
1208   { "Thumbnails",       NULL,           N_("Show _Thumbnails"), "T",            NULL,   CB(layout_menu_thumb_cb),        FALSE },
1209   { "ShowMarks",        NULL,           N_("Show _Marks"),      "M",            NULL,   CB(layout_menu_marks_cb),        FALSE  },
1210   { "FloatTools",       NULL,           N_("_Float file list"), "L",            NULL,   CB(layout_menu_float_cb),        FALSE  },
1211   { "HideToolbar",      NULL,           N_("Hide tool_bar"),    NULL,           NULL,   CB(layout_menu_toolbar_cb),      FALSE  },
1212   { "SBar",             NULL,           N_("_Info"),            "<control>K",   NULL,   CB(layout_menu_bar_cb),          FALSE  },
1213   { "ExifWin",          NULL,           N_("E_xif window"),     "<control>E",   NULL,   CB(layout_menu_bar_exif_cb),     FALSE  },
1214   { "SBarSort",         NULL,           N_("Sort _manager"),    "<control>S",   NULL,   CB(layout_menu_bar_sort_cb),     FALSE  },
1215   { "SlideShow",        NULL,           N_("Toggle _slideshow"),"S",            NULL,   CB(layout_menu_slideshow_cb),    FALSE  },
1216 };
1217
1218 static GtkRadioActionEntry menu_radio_entries[] = {
1219   { "ViewList",         NULL,           N_("View Images as _List"),             "<control>L",   NULL,   0 },
1220   { "ViewIcons",        NULL,           N_("View Images as I_cons"),            "<control>I",   NULL,   1 }
1221 };
1222
1223 static GtkRadioActionEntry menu_split_radio_entries[] = {
1224   { "SplitHorizontal",  NULL,           N_("Horizontal"),       "E",            NULL,   SPLIT_HOR },
1225   { "SplitVertical",    NULL,           N_("Vertical"),         "U",            NULL,   SPLIT_VERT },
1226   { "SplitQuad",        NULL,           N_("Quad"),             NULL,           NULL,   SPLIT_QUAD },
1227   { "SplitSingle",      NULL,           N_("Single"),           "Y",            NULL,   SPLIT_NONE }
1228 };
1229
1230
1231 #undef CB
1232
1233 static const gchar *menu_ui_description =
1234 "<ui>"
1235 "  <menubar name='MainMenu'>"
1236 "    <menu action='FileMenu'>"
1237 "      <menuitem action='NewWindow'/>"
1238 "      <menuitem action='NewCollection'/>"
1239 "      <menuitem action='OpenCollection'/>"
1240 "      <menuitem action='OpenRecent'/>"
1241 "      <placeholder name='OpenSection'/>"
1242 "      <separator/>"
1243 "      <menuitem action='Search'/>"
1244 "      <menuitem action='FindDupes'/>"
1245 "      <placeholder name='SearchSection'/>"
1246 "      <separator/>"
1247 "      <menuitem action='Print'/>"
1248 "      <placeholder name='PrintSection'/>"
1249 "      <separator/>"
1250 "      <menuitem action='NewFolder'/>"
1251 "      <menuitem action='Copy'/>"
1252 "      <menuitem action='Move'/>"
1253 "      <menuitem action='Rename'/>"
1254 "      <menuitem action='Delete'/>"
1255 "      <placeholder name='FileOpsSection'/>"
1256 "      <separator/>"
1257 "      <placeholder name='QuitSection'/>"
1258 "      <menuitem action='CloseWindow'/>"
1259 "      <menuitem action='Quit'/>"
1260 "      <separator/>"
1261 "    </menu>"
1262 "    <menu action='GoMenu'>"
1263 "      <menuitem action='FirstImage'/>"
1264 "      <menuitem action='PrevImage'/>"
1265 "      <menuitem action='NextImage'/>"
1266 "      <menuitem action='LastImage'/>"
1267 "      <separator/>"
1268 "    </menu>"
1269 "    <menu action='SelectMenu'>"
1270 "      <menuitem action='SelectAll'/>"
1271 "      <menuitem action='SelectNone'/>"
1272 "      <menuitem action='SelectInvert'/>"
1273 "      <placeholder name='SelectSection'/>"
1274 "      <separator/>"
1275 "      <menuitem action='CopyPath'/>"
1276 "      <placeholder name='ClipboardSection'/>"
1277 "      <separator/>"
1278 "      <menuitem action='ShowMarks'/>"
1279 "      <placeholder name='MarksSection'/>"
1280 "      <separator/>"
1281 "    </menu>"
1282 "    <menu action='EditMenu'>"
1283 "      <menu action='ExternalMenu'>"
1284 "      </menu>"
1285 "      <placeholder name='EditSection'/>"
1286 "      <separator/>"
1287 "      <menu action='AdjustMenu'>"
1288 "        <menuitem action='RotateCW'/>"
1289 "        <menuitem action='RotateCCW'/>"
1290 "        <menuitem action='Rotate180'/>"
1291 "        <menuitem action='Mirror'/>"
1292 "        <menuitem action='Flip'/>"
1293 "        <menuitem action='Grayscale'/>"
1294 "        <menuitem action='AlterNone'/>"
1295 "      </menu>"
1296 "      <placeholder name='PropertiesSection'/>"
1297 "      <separator/>"
1298 "      <menuitem action='Preferences'/>"
1299 "      <menuitem action='Maintenance'/>"
1300 "      <placeholder name='PreferencesSection'/>"
1301 "      <separator/>"
1302 "      <menuitem action='Wallpaper'/>"
1303 "      <separator/>"
1304 "    </menu>"
1305 "    <menu action='ViewMenu'>"
1306 "      <menuitem action='ViewInNewWindow'/>"
1307 "      <menuitem action='PanView'/>"
1308 "      <placeholder name='WindowSection'/>"
1309 "      <separator/>"
1310 "      <menu action='ZoomMenu'>"
1311 "        <menuitem action='ZoomIn'/>"
1312 "        <menuitem action='ZoomOut'/>"
1313 "        <menuitem action='ZoomFit'/>"
1314 "        <menuitem action='ZoomFillHor'/>"
1315 "        <menuitem action='ZoomFillVert'/>"
1316 "        <menuitem action='Zoom100'/>"
1317 "        <menuitem action='Zoom200'/>"
1318 "        <menuitem action='Zoom300'/>"
1319 "        <menuitem action='Zoom400'/>"
1320 "        <menuitem action='Zoom50'/>"
1321 "        <menuitem action='Zoom33'/>"
1322 "        <menuitem action='Zoom25'/>"
1323 "      </menu>"
1324 "      <menu action='ConnectZoomMenu'>"
1325 "        <menuitem action='ConnectZoomIn'/>"
1326 "        <menuitem action='ConnectZoomOut'/>"
1327 "        <menuitem action='ConnectZoomFit'/>"
1328 "        <menuitem action='ConnectZoomFillHor'/>"
1329 "        <menuitem action='ConnectZoomFillVert'/>"
1330 "        <menuitem action='ConnectZoom100'/>"
1331 "        <menuitem action='ConnectZoom200'/>"
1332 "        <menuitem action='ConnectZoom300'/>"
1333 "        <menuitem action='ConnectZoom400'/>"
1334 "        <menuitem action='ConnectZoom50'/>"
1335 "        <menuitem action='ConnectZoom33'/>"
1336 "        <menuitem action='ConnectZoom25'/>"
1337 "      </menu>"
1338 "      <placeholder name='ZoomSection'/>"
1339 "      <separator/>"
1340 "      <menu action='SplitMenu'>"
1341 "        <menuitem action='SplitHorizontal'/>"
1342 "        <menuitem action='SplitVertical'/>"
1343 "        <menuitem action='SplitQuad'/>"
1344 "        <menuitem action='SplitSingle'/>"
1345 "      </menu>"
1346 "      <separator/>"
1347 "      <menuitem action='ViewList'/>"
1348 "      <menuitem action='ViewIcons'/>"
1349 "      <menuitem action='Thumbnails'/>"
1350 "      <placeholder name='ListSection'/>"
1351 "      <separator/>"
1352 "      <menu action='DirMenu'>"
1353 "        <menuitem action='FolderList'/>"
1354 "        <menuitem action='FolderTree'/>"
1355 "      </menu>"
1356 "      <placeholder name='DirSection'/>"
1357 "      <separator/>"
1358 "      <menuitem action='ImageOverlay'/>"
1359 "      <menuitem action='HistogramChan'/>"
1360 "      <menuitem action='HistogramLog'/>"
1361 "      <menuitem action='FullScreen'/>"
1362 "      <placeholder name='OverlaySection'/>"
1363 "      <separator/>"
1364 "      <menuitem action='FloatTools'/>"
1365 "      <menuitem action='HideTools'/>"
1366 "      <menuitem action='HideToolbar'/>"
1367 "      <placeholder name='ToolsSection'/>"
1368 "      <separator/>"
1369 "      <menuitem action='SBar'/>"
1370 "      <menuitem action='ExifWin'/>"
1371 "      <menuitem action='SBarSort'/>"
1372 "      <placeholder name='SideBarSection'/>"
1373 "      <separator/>"
1374 "      <menuitem action='SlideShow'/>"
1375 "      <menuitem action='SlideShowPause'/>"
1376 "      <menuitem action='Refresh'/>"
1377 "      <placeholder name='SlideShowSection'/>"
1378 "      <separator/>"
1379 "    </menu>"
1380 "    <menu action='HelpMenu'>"
1381 "      <separator/>"
1382 "      <menuitem action='HelpContents'/>"
1383 "      <menuitem action='HelpShortcuts'/>"
1384 "      <menuitem action='HelpNotes'/>"
1385 "      <placeholder name='HelpSection'/>"
1386 "      <separator/>"
1387 "      <menuitem action='About'/>"
1388 "      <separator/>"
1389 "      <menuitem action='LogWindow'/>"
1390 "      <separator/>"
1391 "    </menu>"
1392 "  </menubar>"
1393 "<accelerator action='PrevImageAlt1'/>"
1394 "<accelerator action='PrevImageAlt2'/>"
1395 "<accelerator action='NextImageAlt1'/>"
1396 "<accelerator action='NextImageAlt2'/>"
1397 "<accelerator action='DeleteAlt1'/>"
1398 "<accelerator action='DeleteAlt2'/>"
1399 "<accelerator action='FullScreenAlt1'/>"
1400 "<accelerator action='FullScreenAlt2'/>"
1401 "<accelerator action='Escape'/>"
1402 "<accelerator action='EscapeAlt1'/>"
1403
1404 "<accelerator action='ZoomInAlt1'/>"
1405 "<accelerator action='ZoomOutAlt1'/>"
1406 "<accelerator action='Zoom100Alt1'/>"
1407 "<accelerator action='ZoomFitAlt1'/>"
1408
1409 "<accelerator action='ConnectZoomInAlt1'/>"
1410 "<accelerator action='ConnectZoomOutAlt1'/>"
1411 "<accelerator action='ConnectZoom100Alt1'/>"
1412 "<accelerator action='ConnectZoomFitAlt1'/>"
1413 "</ui>";
1414
1415
1416 static gchar *menu_translate(const gchar *path, gpointer data)
1417 {
1418         return (gchar *)(_(path));
1419 }
1420
1421 static void layout_actions_setup_mark(LayoutWindow *lw, gint mark, gchar *name_tmpl, gchar *label_tmpl, gchar *accel_tmpl,  GCallback cb)
1422 {
1423         gchar name[50];
1424         gchar label[100];
1425         gchar accel[50];
1426         GtkActionEntry entry = { name, NULL, label, accel, NULL, cb };
1427         GtkAction *action;
1428
1429         g_snprintf(name, sizeof(name), name_tmpl, mark);
1430         g_snprintf(label, sizeof(label), label_tmpl, mark);
1431         if (accel_tmpl)
1432                 g_snprintf(accel, sizeof(accel), accel_tmpl, mark % 10);
1433         else
1434                 accel[0] = 0;
1435         gtk_action_group_add_actions(lw->action_group, &entry, 1, lw);
1436         action = gtk_action_group_get_action(lw->action_group, name);
1437         g_object_set_data(G_OBJECT(action), "mark_num", GINT_TO_POINTER(mark));
1438 }
1439
1440 static void layout_actions_setup_marks(LayoutWindow *lw)
1441 {
1442         gint mark;
1443         GError *error;
1444         GString *desc = g_string_new(
1445                                 "<ui>"
1446                                 "  <menubar name='MainMenu'>"
1447                                 "    <menu action='SelectMenu'>");
1448
1449         for (mark = 1; mark <= FILEDATA_MARKS_SIZE; mark++)
1450                 {
1451                 layout_actions_setup_mark(lw, mark, "Mark%d",           _("Mark _%d"), NULL, NULL);
1452                 layout_actions_setup_mark(lw, mark, "SetMark%d",        _("_Set mark %d"),                      NULL, G_CALLBACK(layout_menu_set_mark_sel_cb));
1453                 layout_actions_setup_mark(lw, mark, "ResetMark%d",      _("_Reset mark %d"),                    NULL, G_CALLBACK(layout_menu_res_mark_sel_cb));
1454                 layout_actions_setup_mark(lw, mark, "ToggleMark%d",     _("_Toggle mark %d"),                   "%d", G_CALLBACK(layout_menu_toggle_mark_sel_cb));
1455                 layout_actions_setup_mark(lw, mark, "ToggleMark%dAlt1", _("_Toggle mark %d"),                   "KP_%d", G_CALLBACK(layout_menu_toggle_mark_sel_cb));
1456                 layout_actions_setup_mark(lw, mark, "SelectMark%d",     _("_Select mark %d"),                   "<control>%d", G_CALLBACK(layout_menu_sel_mark_cb));
1457                 layout_actions_setup_mark(lw, mark, "SelectMark%dAlt1", _("_Select mark %d"),                   "<control>KP_%d", G_CALLBACK(layout_menu_sel_mark_cb));
1458                 layout_actions_setup_mark(lw, mark, "AddMark%d",        _("_Add mark %d"),                      NULL, G_CALLBACK(layout_menu_sel_mark_or_cb));
1459                 layout_actions_setup_mark(lw, mark, "IntMark%d",        _("_Intersection with mark %d"),        NULL, G_CALLBACK(layout_menu_sel_mark_and_cb));
1460                 layout_actions_setup_mark(lw, mark, "UnselMark%d",      _("_Unselect mark %d"),                 NULL, G_CALLBACK(layout_menu_sel_mark_minus_cb));
1461
1462                 g_string_append_printf(desc,
1463                                 "      <menu action='Mark%d'>"
1464                                 "        <menuitem action='ToggleMark%d'/>"
1465                                 "        <menuitem action='SetMark%d'/>"
1466                                 "        <menuitem action='ResetMark%d'/>"
1467                                 "        <separator/>"
1468                                 "        <menuitem action='SelectMark%d'/>"
1469                                 "        <menuitem action='AddMark%d'/>"
1470                                 "        <menuitem action='IntMark%d'/>"
1471                                 "        <menuitem action='UnselMark%d'/>"
1472                                 "      </menu>",
1473                                 mark, mark, mark, mark, mark, mark, mark, mark);
1474                 }
1475
1476         g_string_append(desc,
1477                                 "    </menu>"
1478                                 "  </menubar>");
1479         for (mark = 1; mark <= FILEDATA_MARKS_SIZE; mark++)
1480                 {
1481                 g_string_append_printf(desc,
1482                                 "<accelerator action='ToggleMark%dAlt1'/>"
1483                                 "<accelerator action='SelectMark%dAlt1'/>",
1484                                 mark, mark);
1485                 }
1486         g_string_append(desc,   "</ui>" );
1487
1488         error = NULL;
1489         if (!gtk_ui_manager_add_ui_from_string(lw->ui_manager, desc->str, -1, &error))
1490                 {
1491                 g_message("building menus failed: %s", error->message);
1492                 g_error_free(error);
1493                 exit(EXIT_FAILURE);
1494                 }
1495         g_string_free(desc, TRUE);
1496 }
1497
1498 static GList *layout_actions_editor_menu_path(EditorDescription *editor)
1499 {
1500         gchar **split = g_strsplit(editor->menu_path, "/", 0);
1501         gint i = 0;
1502         GList *ret = NULL;
1503         
1504         if (split[0] == NULL) 
1505                 {
1506                 g_strfreev(split);
1507                 return NULL;
1508                 }
1509         
1510         while(split[i])
1511                 {
1512                 ret = g_list_prepend(ret, g_strdup(split[i]));
1513                 i++;
1514                 }
1515         
1516         g_strfreev(split);
1517         
1518         ret = g_list_prepend(ret, g_strdup(editor->key));
1519         
1520         return g_list_reverse(ret);
1521 }
1522
1523 static void layout_actions_editor_add(GString *desc, GList *path, GList *old_path)
1524 {
1525         gint to_open, to_close, i;
1526         while (path && old_path && strcmp((gchar *)path->data, (gchar *)old_path->data) == 0)
1527                 {
1528                 path = path->next;
1529                 old_path = old_path->next;
1530                 }
1531         to_open = g_list_length(path) - 1;
1532         to_close = g_list_length(old_path) - 1;
1533         
1534         if (to_close > 0)
1535                 {
1536                 old_path = g_list_last(old_path);
1537                 old_path = old_path->prev;
1538                 }
1539         
1540         for (i =  0; i < to_close; i++)
1541                 {
1542                 gchar *name = old_path->data;
1543                 if (g_str_has_suffix(name, "Section"))
1544                         {
1545                         g_string_append(desc,   "      </placeholder>");
1546                         }
1547                 else if (g_str_has_suffix(name, "Menu"))
1548                         {
1549                         g_string_append(desc,   "    </menu>");
1550                         }
1551                 else
1552                         {
1553                         g_warning("invalid menu path item %s", name);
1554                         }
1555                 old_path = old_path->prev;
1556                 }
1557
1558         for (i =  0; i < to_open; i++)
1559                 {
1560                 gchar *name = path->data;
1561                 if (g_str_has_suffix(name, "Section"))
1562                         {
1563                         g_string_append_printf(desc,    "      <placeholder name='%s'>", name);
1564                         }
1565                 else if (g_str_has_suffix(name, "Menu"))
1566                         {
1567                         g_string_append_printf(desc,    "    <menu action='%s'>", name);
1568                         }
1569                 else
1570                         {
1571                         g_warning("invalid menu path item %s", name);
1572                         }
1573                 path = path->next;
1574                 }
1575         
1576         if (path)
1577                 g_string_append_printf(desc, "      <menuitem action='%s'/>", (gchar *)path->data);
1578 }
1579
1580 static void layout_actions_setup_editors(LayoutWindow *lw)
1581 {
1582         GError *error;
1583         GList *editors_list;
1584         GList *work;
1585         GList *old_path;
1586         GString *desc = g_string_new(
1587                                 "<ui>"
1588                                 "  <menubar name='MainMenu'>");
1589
1590         editors_list = editor_list_get();
1591         
1592         old_path = NULL;
1593         work = editors_list;
1594         while(work)
1595                 {
1596                 GList *path;
1597                 EditorDescription *editor = work->data;
1598                 GtkActionEntry entry = { editor->key, NULL, editor->name, editor->hotkey, NULL, G_CALLBACK(layout_menu_edit_cb) };
1599                 gtk_action_group_add_actions(lw->action_group_external, &entry, 1, lw);
1600                 
1601                 path = layout_actions_editor_menu_path(editor);
1602                 layout_actions_editor_add(desc, path, old_path);
1603                 
1604                 string_list_free(old_path);
1605                 old_path = path;
1606                 work = work->next;
1607                 }
1608
1609         layout_actions_editor_add(desc, NULL, old_path);
1610         string_list_free(old_path);
1611
1612         g_string_append(desc,   "  </menubar>"
1613                                 "</ui>" );
1614
1615         error = NULL;
1616         if (!gtk_ui_manager_add_ui_from_string(lw->ui_manager, desc->str, -1, &error))
1617                 {
1618                 g_message("building menus failed: %s", error->message);
1619                 g_error_free(error);
1620                 exit(EXIT_FAILURE);
1621                 }
1622         g_string_free(desc, TRUE);
1623         g_list_free(editors_list);
1624 }
1625
1626 void layout_actions_setup(LayoutWindow *lw)
1627 {
1628         GError *error;
1629
1630         if (lw->ui_manager) return;
1631
1632         lw->action_group = gtk_action_group_new("MenuActions");
1633         gtk_action_group_set_translate_func(lw->action_group, menu_translate, NULL, NULL);
1634         lw->action_group_external = gtk_action_group_new("MenuActionsExternal");
1635         /* lw->action_group_external contains translated entries, no translate func is required */
1636
1637         gtk_action_group_add_actions(lw->action_group,
1638                                      menu_entries, G_N_ELEMENTS(menu_entries), lw);
1639         gtk_action_group_add_toggle_actions(lw->action_group,
1640                                             menu_toggle_entries, G_N_ELEMENTS(menu_toggle_entries), lw);
1641         gtk_action_group_add_radio_actions(lw->action_group,
1642                                            menu_radio_entries, G_N_ELEMENTS(menu_radio_entries),
1643                                            0, G_CALLBACK(layout_menu_list_cb), lw);
1644         gtk_action_group_add_radio_actions(lw->action_group,
1645                                            menu_split_radio_entries, G_N_ELEMENTS(menu_split_radio_entries),
1646                                            0, G_CALLBACK(layout_menu_split_cb), lw);
1647         gtk_action_group_add_radio_actions(lw->action_group,
1648                                            menu_view_dir_radio_entries, VIEW_DIR_TYPES_COUNT,
1649                                            0, G_CALLBACK(layout_menu_view_dir_as_cb), lw);
1650
1651         lw->ui_manager = gtk_ui_manager_new();
1652         gtk_ui_manager_set_add_tearoffs(lw->ui_manager, TRUE);
1653         gtk_ui_manager_insert_action_group(lw->ui_manager, lw->action_group, 0);
1654         gtk_ui_manager_insert_action_group(lw->ui_manager, lw->action_group_external, 1);
1655
1656         error = NULL;
1657         if (!gtk_ui_manager_add_ui_from_string(lw->ui_manager, menu_ui_description, -1, &error))
1658                 {
1659                 g_message("building menus failed: %s", error->message);
1660                 g_error_free(error);
1661                 exit(EXIT_FAILURE);
1662                 }
1663         
1664         layout_actions_setup_marks(lw);
1665         layout_actions_setup_editors(lw);
1666         layout_copy_path_update(lw);
1667 }
1668
1669 void layout_actions_add_window(LayoutWindow *lw, GtkWidget *window)
1670 {
1671         GtkAccelGroup *group;
1672
1673         if (!lw->ui_manager) return;
1674
1675         group = gtk_ui_manager_get_accel_group(lw->ui_manager);
1676         gtk_window_add_accel_group(GTK_WINDOW(window), group);
1677 }
1678
1679 GtkWidget *layout_actions_menu_bar(LayoutWindow *lw)
1680 {
1681         return gtk_ui_manager_get_widget(lw->ui_manager, "/MainMenu");
1682 }
1683
1684
1685 /*
1686  *-----------------------------------------------------------------------------
1687  * toolbar
1688  *-----------------------------------------------------------------------------
1689  */
1690
1691 static void layout_button_thumb_cb(GtkWidget *widget, gpointer data)
1692 {
1693         LayoutWindow *lw = data;
1694
1695         layout_thumb_set(lw, gtk_toggle_tool_button_get_active(GTK_TOGGLE_TOOL_BUTTON(widget)));
1696 }
1697
1698 /* Back button callback */
1699 static void layout_button_back_cb(GtkWidget *widget, gpointer data)
1700 {
1701         LayoutWindow *lw = data;
1702         FileData *dir_fd;
1703         gchar *path = NULL;
1704         GList *list = history_list_get_by_key("path_list");
1705         gint n = 0;
1706
1707         while (list)
1708                 {
1709                 if (n == 1) {
1710                         /* Previous path from history */
1711                         path = (gchar *)list->data;
1712                         break;
1713                 }
1714                 list = list->next;
1715                 n++;
1716                 }
1717
1718         if (!path) return;
1719         
1720         /* Open previous path */
1721         dir_fd = file_data_new_simple(path);
1722         layout_set_fd(lw, dir_fd);
1723         file_data_unref(dir_fd);
1724 }
1725
1726 static void layout_button_home_cb(GtkWidget *widget, gpointer data)
1727 {
1728         const gchar *path;
1729         
1730         if (options->layout.home_path && *options->layout.home_path)
1731                 path = options->layout.home_path;
1732         else
1733                 path = homedir();
1734
1735         if (path)
1736                 {
1737                 LayoutWindow *lw = data;
1738                 FileData *dir_fd = file_data_new_simple(path);
1739                 layout_set_fd(lw, dir_fd);
1740                 file_data_unref(dir_fd);
1741                 }
1742 }
1743
1744 static void layout_button_refresh_cb(GtkWidget *widget, gpointer data)
1745 {
1746         LayoutWindow *lw = data;
1747
1748         layout_refresh(lw);
1749 }
1750
1751 static void layout_button_zoom_in_cb(GtkWidget *widget, gpointer data)
1752 {
1753         LayoutWindow *lw = data;
1754
1755         layout_image_zoom_adjust(lw, get_zoom_increment(), TRUE);
1756 }
1757
1758 static void layout_button_zoom_out_cb(GtkWidget *widget, gpointer data)
1759 {
1760         LayoutWindow *lw = data;
1761
1762         layout_image_zoom_adjust(lw, -get_zoom_increment(), TRUE);
1763 }
1764
1765 static void layout_button_zoom_fit_cb(GtkWidget *widget, gpointer data)
1766 {
1767         LayoutWindow *lw = data;
1768
1769         layout_image_zoom_set(lw, 0.0, TRUE);
1770 }
1771
1772 static void layout_button_zoom_1_1_cb(GtkWidget *widget, gpointer data)
1773 {
1774         LayoutWindow *lw = data;
1775
1776         layout_image_zoom_set(lw, 1.0, TRUE);
1777 }
1778
1779 static void layout_button_config_cb(GtkWidget *widget, gpointer data)
1780 {
1781         show_config_window();
1782 }
1783
1784 static void layout_button_float_cb(GtkWidget *widget, gpointer data)
1785 {
1786         LayoutWindow *lw = data;
1787
1788         layout_tools_float_toggle(lw);
1789 }
1790
1791 static void layout_button_custom_icon(GtkWidget *button, const gchar *key)
1792 {
1793         GtkWidget *icon;
1794         GdkPixbuf *pixbuf;
1795
1796         pixbuf = pixbuf_inline(key);
1797         if (!pixbuf) return;
1798
1799         icon = gtk_image_new_from_pixbuf(pixbuf);
1800         g_object_unref(pixbuf);
1801
1802         pref_toolbar_button_set_icon(button, icon, NULL);
1803         gtk_widget_show(icon);
1804 }
1805
1806 GtkWidget *layout_button_bar(LayoutWindow *lw)
1807 {
1808         GtkWidget *box;
1809         GtkWidget *button;
1810
1811         box =  pref_toolbar_new(NULL, GTK_TOOLBAR_ICONS);
1812
1813         button = pref_toolbar_button(box, NULL, _("_Thumbnails"), TRUE,
1814                                      _("Show thumbnails"), G_CALLBACK(layout_button_thumb_cb), lw);
1815         layout_button_custom_icon(button, PIXBUF_INLINE_ICON_THUMB);
1816         lw->thumb_button = button;
1817         
1818         lw->back_button = pref_toolbar_button(box, GTK_STOCK_GO_BACK, NULL, FALSE,
1819                             _("Back to previous folder"), G_CALLBACK(layout_button_back_cb), lw);
1820         gtk_widget_set_sensitive(lw->back_button, FALSE);
1821
1822         pref_toolbar_button(box, GTK_STOCK_HOME, NULL, FALSE,
1823                             _("Change to home folder"), G_CALLBACK(layout_button_home_cb), lw);
1824         pref_toolbar_button(box, GTK_STOCK_REFRESH, NULL, FALSE,
1825                             _("Refresh file list"), G_CALLBACK(layout_button_refresh_cb), lw);
1826         pref_toolbar_button(box, GTK_STOCK_ZOOM_IN, NULL, FALSE,
1827                             _("Zoom in"), G_CALLBACK(layout_button_zoom_in_cb), lw);
1828         pref_toolbar_button(box, GTK_STOCK_ZOOM_OUT, NULL, FALSE,
1829                             _("Zoom out"), G_CALLBACK(layout_button_zoom_out_cb), lw);
1830         pref_toolbar_button(box, GTK_STOCK_ZOOM_FIT, NULL, FALSE,
1831                             _("Fit image to window"), G_CALLBACK(layout_button_zoom_fit_cb), lw);
1832         pref_toolbar_button(box, GTK_STOCK_ZOOM_100, NULL, FALSE,
1833                             _("Set zoom 1:1"), G_CALLBACK(layout_button_zoom_1_1_cb), lw);
1834         pref_toolbar_button(box, GTK_STOCK_PREFERENCES, NULL, FALSE,
1835                             _("Preferences"), G_CALLBACK(layout_button_config_cb), lw);
1836         button = pref_toolbar_button(box, NULL, _("_Float"), FALSE,
1837                                      _("Float file list"), G_CALLBACK(layout_button_float_cb), lw);
1838         layout_button_custom_icon(button, PIXBUF_INLINE_ICON_FLOAT);
1839
1840         return box;
1841 }
1842
1843 /*
1844  *-----------------------------------------------------------------------------
1845  * misc
1846  *-----------------------------------------------------------------------------
1847  */
1848
1849 static void layout_util_sync_views(LayoutWindow *lw)
1850 {
1851         GtkAction *action;
1852
1853         if (!lw->action_group) return;
1854
1855         action = gtk_action_group_get_action(lw->action_group, "FolderTree");
1856         radio_action_set_current_value(GTK_RADIO_ACTION(action), lw->options.dir_view_type);
1857
1858         action = gtk_action_group_get_action(lw->action_group, "ViewIcons");
1859         gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), lw->file_view_type);
1860
1861         action = gtk_action_group_get_action(lw->action_group, "FloatTools");
1862         gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), lw->options.tools_float);
1863
1864         action = gtk_action_group_get_action(lw->action_group, "SBar");
1865         gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), lw->options.panels.info.enabled);
1866
1867         action = gtk_action_group_get_action(lw->action_group, "SBarSort");
1868         gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), lw->options.panels.sort.enabled);
1869
1870         action = gtk_action_group_get_action(lw->action_group, "HideToolbar");
1871         gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), lw->options.toolbar_hidden);
1872
1873         action = gtk_action_group_get_action(lw->action_group, "ShowMarks");
1874         gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), lw->options.show_marks);
1875
1876         action = gtk_action_group_get_action(lw->action_group, "SlideShow");
1877         gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), layout_image_slideshow_active(lw));
1878
1879         action = gtk_action_group_get_action(lw->action_group, "ExifWin");
1880         gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), !!lw->exif_window);
1881
1882 }
1883
1884 void layout_util_sync_thumb(LayoutWindow *lw)
1885 {
1886         GtkAction *action;
1887
1888         if (!lw->action_group) return;
1889
1890         action = gtk_action_group_get_action(lw->action_group, "Thumbnails");
1891         gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), lw->options.show_thumbnails);
1892         g_object_set(action, "sensitive", (lw->file_view_type == FILEVIEW_LIST), NULL);
1893
1894         gtk_toggle_tool_button_set_active(GTK_TOGGLE_TOOL_BUTTON(lw->thumb_button), lw->options.show_thumbnails);
1895         gtk_widget_set_sensitive(lw->thumb_button, (lw->file_view_type == FILEVIEW_LIST));
1896 }
1897
1898 void layout_util_sync(LayoutWindow *lw)
1899 {
1900         layout_util_sync_views(lw);
1901         layout_util_sync_thumb(lw);
1902         layout_menu_recent_update(lw);
1903 //      layout_menu_edit_update(lw);
1904 }
1905
1906 /*
1907  *-----------------------------------------------------------------------------
1908  * icons (since all the toolbar icons are included here, best place as any)
1909  *-----------------------------------------------------------------------------
1910  */
1911
1912 PixmapFolders *folder_icons_new(void)
1913 {
1914         PixmapFolders *pf;
1915
1916         pf = g_new0(PixmapFolders, 1);
1917
1918         pf->close = pixbuf_inline(PIXBUF_INLINE_FOLDER_CLOSED);
1919         pf->open = pixbuf_inline(PIXBUF_INLINE_FOLDER_OPEN);
1920         pf->deny = pixbuf_inline(PIXBUF_INLINE_FOLDER_LOCKED);
1921         pf->parent = pixbuf_inline(PIXBUF_INLINE_FOLDER_UP);
1922
1923         return pf;
1924 }
1925
1926 void folder_icons_free(PixmapFolders *pf)
1927 {
1928         if (!pf) return;
1929
1930         g_object_unref(pf->close);
1931         g_object_unref(pf->open);
1932         g_object_unref(pf->deny);
1933         g_object_unref(pf->parent);
1934
1935         g_free(pf);
1936 }
1937
1938 /*
1939  *-----------------------------------------------------------------------------
1940  * sidebars
1941  *-----------------------------------------------------------------------------
1942  */
1943
1944 static void layout_bar_destroyed(GtkWidget *widget, gpointer data)
1945 {
1946         LayoutWindow *lw = data;
1947
1948         lw->bar = NULL;
1949
1950         if (lw->utility_box)
1951                 {
1952                 /* destroyed from within itself */
1953                 lw->options.panels.info.enabled = FALSE;
1954                 layout_util_sync_views(lw);
1955                 }
1956 }
1957
1958 static GList *layout_bar_list_cb(gpointer data)
1959 {
1960         LayoutWindow *lw = data;
1961
1962         return layout_selection_list(lw);
1963 }
1964
1965 static void layout_bar_sized(GtkWidget *widget, GtkAllocation *allocation, gpointer data)
1966 {
1967         LayoutWindow *lw = data;
1968
1969         if (!lw->bar) return;
1970         
1971         lw->options.panels.info.width = allocation->width;
1972 }
1973
1974 void layout_bar_new(LayoutWindow *lw, gboolean populate)
1975 {
1976         if (!lw->utility_box) return;
1977
1978         if (!lw->bar)
1979                 {
1980                 lw->bar = bar_new(lw->utility_box);
1981
1982                 if (populate)
1983                         {
1984                         bar_populate_default(lw->bar);
1985                         }
1986
1987                 bar_set_selection_func(lw->bar, layout_bar_list_cb, lw);
1988                 g_signal_connect(G_OBJECT(lw->bar), "destroy",
1989                                  G_CALLBACK(layout_bar_destroyed), lw);
1990                 g_signal_connect(G_OBJECT(lw->bar), "size_allocate",
1991                                  G_CALLBACK(layout_bar_sized), lw);
1992
1993
1994                 gtk_box_pack_start(GTK_BOX(lw->utility_box), lw->bar, FALSE, FALSE, 0);
1995                 }
1996
1997         lw->options.panels.info.enabled  = TRUE;
1998         gtk_widget_set_size_request(lw->bar, lw->options.panels.info.width, -1);
1999         bar_set_fd(lw->bar, layout_image_get_fd(lw));
2000         gtk_widget_show(lw->bar);
2001 }
2002
2003 void layout_bar_close(LayoutWindow *lw)
2004 {
2005         if (lw->bar)
2006                 {
2007                 bar_close(lw->bar);
2008                 lw->bar = NULL;
2009                 }
2010         lw->options.panels.info.enabled = FALSE;
2011 }
2012
2013 static void layout_bar_hide(LayoutWindow *lw)
2014 {
2015         if (lw->bar)
2016                 {
2017                 gtk_widget_hide(lw->bar);
2018                 }
2019         lw->options.panels.info.enabled = FALSE;
2020 }
2021
2022 void layout_bar_toggle(LayoutWindow *lw)
2023 {
2024         if (lw->options.panels.info.enabled)
2025                 {
2026                 layout_bar_hide(lw);
2027                 }
2028         else
2029                 {
2030                 layout_bar_new(lw, TRUE);
2031                 }
2032 }
2033
2034 static void layout_bar_new_image(LayoutWindow *lw)
2035 {
2036         if (!lw->bar || !lw->options.panels.info.enabled) return;
2037
2038         bar_set_fd(lw->bar, layout_image_get_fd(lw));
2039 }
2040
2041 static void layout_bar_new_selection(LayoutWindow *lw, gint count)
2042 {
2043         if (!lw->bar || !lw->options.panels.info.enabled) return;
2044
2045 //      bar_info_selection(lw->bar_info, count - 1);
2046 }
2047
2048 static void layout_bar_maint_renamed(LayoutWindow *lw)
2049 {
2050         if (!lw->bar || !lw->options.panels.info.enabled) return;
2051
2052 //      bar_maint_renamed(lw->bar_info, layout_image_get_fd(lw));
2053 }
2054
2055 static void layout_bar_sort_destroyed(GtkWidget *widget, gpointer data)
2056 {
2057         LayoutWindow *lw = data;
2058
2059         lw->bar_sort = NULL;
2060
2061         if (lw->utility_box)
2062                 {
2063                 /* destroyed from within itself */
2064                 lw->options.panels.sort.enabled = FALSE;
2065
2066                 layout_util_sync_views(lw);
2067                 }
2068 }
2069
2070 static void layout_bar_sort_new(LayoutWindow *lw)
2071 {
2072         if (!lw->utility_box) return;
2073
2074         lw->bar_sort = bar_sort_new(lw);
2075         g_signal_connect(G_OBJECT(lw->bar_sort), "destroy",
2076                          G_CALLBACK(layout_bar_sort_destroyed), lw);
2077         lw->options.panels.sort.enabled = TRUE;
2078
2079         gtk_box_pack_end(GTK_BOX(lw->utility_box), lw->bar_sort, FALSE, FALSE, 0);
2080         gtk_widget_show(lw->bar_sort);
2081 }
2082
2083 static void layout_bar_sort_close(LayoutWindow *lw)
2084 {
2085         if (lw->bar_sort)
2086                 {
2087                 bar_sort_close(lw->bar_sort);
2088                 lw->bar_sort = NULL;
2089                 }
2090         lw->options.panels.sort.enabled = FALSE;
2091 }
2092
2093 void layout_bar_sort_toggle(LayoutWindow *lw)
2094 {
2095         if (lw->options.panels.sort.enabled)
2096                 {
2097                 layout_bar_sort_close(lw);
2098                 }
2099         else
2100                 {
2101                 layout_bar_sort_new(lw);
2102                 }
2103 }
2104
2105 void layout_bars_new_image(LayoutWindow *lw)
2106 {
2107         layout_bar_new_image(lw);
2108
2109         if (lw->exif_window) advanced_exif_set_fd(lw->exif_window, layout_image_get_fd(lw));
2110
2111         /* this should be called here to handle the metadata edited in bars */
2112         if (options->metadata.confirm_on_image_change)
2113                 metadata_write_queue_confirm(NULL, NULL);
2114 }
2115
2116 void layout_bars_new_selection(LayoutWindow *lw, gint count)
2117 {
2118         layout_bar_new_selection(lw, count);
2119 }
2120
2121 GtkWidget *layout_bars_prepare(LayoutWindow *lw, GtkWidget *image)
2122 {
2123         lw->utility_box = gtk_hbox_new(FALSE, PREF_PAD_GAP);
2124         gtk_box_pack_start(GTK_BOX(lw->utility_box), image, TRUE, TRUE, 0);
2125         gtk_widget_show(image);
2126
2127         if (lw->options.panels.sort.enabled)
2128                 {
2129                 layout_bar_sort_new(lw);
2130                 }
2131
2132         if (lw->options.panels.info.enabled)
2133                 {
2134                 layout_bar_new(lw, TRUE);
2135                 }
2136
2137         return lw->utility_box;
2138 }
2139
2140 void layout_bars_close(LayoutWindow *lw)
2141 {
2142         layout_bar_sort_close(lw);
2143         layout_bar_close(lw);
2144 }
2145
2146 void layout_bars_maint_renamed(LayoutWindow *lw)
2147 {
2148         layout_bar_maint_renamed(lw);
2149 }
2150
2151 static void layout_exif_window_destroy(GtkWidget *widget, gpointer data)
2152 {
2153         LayoutWindow *lw = data;
2154         lw->exif_window = NULL;
2155 }
2156
2157 void layout_exif_window_new(LayoutWindow *lw)
2158 {
2159         if (!lw->exif_window) 
2160                 {
2161                 lw->exif_window = advanced_exif_new();
2162                 if (!lw->exif_window) return;
2163                 g_signal_connect(G_OBJECT(lw->exif_window), "destroy",
2164                                  G_CALLBACK(layout_exif_window_destroy), lw);
2165                 advanced_exif_set_fd(lw->exif_window, layout_image_get_fd(lw));
2166                 }
2167 }
2168
2169 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */