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