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