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