load desktop files in idle time
[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, (FileViewType) gtk_radio_action_get_current_value(action));
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                 layout_util_sync_views(lw); /* show the overlay state, default channel and mode in the menu */
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(GtkToggleAction *action, gpointer data)
813 {
814         LayoutWindow *lw = data;
815
816         if (layout_image_slideshow_active(lw) == gtk_toggle_action_get_active(action)) return;
817         layout_image_slideshow_toggle(lw);
818 }
819
820 static void layout_menu_slideshow_pause_cb(GtkAction *action, gpointer data)
821 {
822         LayoutWindow *lw = data;
823
824         layout_image_slideshow_pause_toggle(lw);
825 }
826
827 static void layout_menu_help_cb(GtkAction *action, gpointer data)
828 {
829         LayoutWindow *lw = data;
830
831         layout_exit_fullscreen(lw);
832         help_window_show("html_contents");
833 }
834
835 static void layout_menu_help_keys_cb(GtkAction *action, gpointer data)
836 {
837         LayoutWindow *lw = data;
838
839         layout_exit_fullscreen(lw);
840         help_window_show("documentation");
841 }
842
843 static void layout_menu_notes_cb(GtkAction *action, gpointer data)
844 {
845         LayoutWindow *lw = data;
846         
847         layout_exit_fullscreen(lw);
848         help_window_show("release_notes");
849 }
850
851 static void layout_menu_about_cb(GtkAction *action, gpointer data)
852 {
853         LayoutWindow *lw = data;
854
855         layout_exit_fullscreen(lw);
856         show_about_window();
857 }
858
859 static void layout_menu_log_window_cb(GtkAction *action, gpointer data)
860 {
861         LayoutWindow *lw = data;
862
863         layout_exit_fullscreen(lw);
864         log_window_new();
865 }
866
867
868 /*
869  *-----------------------------------------------------------------------------
870  * select menu
871  *-----------------------------------------------------------------------------
872  */
873
874 static void layout_menu_select_all_cb(GtkAction *action, gpointer data)
875 {
876         LayoutWindow *lw = data;
877
878         layout_select_all(lw);
879 }
880
881 static void layout_menu_unselect_all_cb(GtkAction *action, gpointer data)
882 {
883         LayoutWindow *lw = data;
884
885         layout_select_none(lw);
886 }
887
888 static void layout_menu_invert_selection_cb(GtkAction *action, gpointer data)
889 {
890         LayoutWindow *lw = data;
891
892         layout_select_invert(lw);
893 }
894
895 static void layout_menu_marks_cb(GtkToggleAction *action, gpointer data)
896 {
897         LayoutWindow *lw = data;
898
899         layout_marks_set(lw, gtk_toggle_action_get_active(action));
900 }
901
902
903 static void layout_menu_set_mark_sel_cb(GtkAction *action, gpointer data)
904 {
905         LayoutWindow *lw = data;
906         gint mark = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(action), "mark_num"));
907         g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE);
908
909         layout_selection_to_mark(lw, mark, STM_MODE_SET);
910 }
911
912 static void layout_menu_res_mark_sel_cb(GtkAction *action, gpointer data)
913 {
914         LayoutWindow *lw = data;
915         gint mark = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(action), "mark_num"));
916         g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE);
917
918         layout_selection_to_mark(lw, mark, STM_MODE_RESET);
919 }
920
921 static void layout_menu_toggle_mark_sel_cb(GtkAction *action, gpointer data)
922 {
923         LayoutWindow *lw = data;
924         gint mark = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(action), "mark_num"));
925         g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE);
926
927         layout_selection_to_mark(lw, mark, STM_MODE_TOGGLE);
928 }
929
930 static void layout_menu_sel_mark_cb(GtkAction *action, gpointer data)
931 {
932         LayoutWindow *lw = data;
933         gint mark = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(action), "mark_num"));
934         g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE);
935
936         layout_mark_to_selection(lw, mark, MTS_MODE_SET);
937 }
938
939 static void layout_menu_sel_mark_or_cb(GtkAction *action, gpointer data)
940 {
941         LayoutWindow *lw = data;
942         gint mark = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(action), "mark_num"));
943         g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE);
944
945         layout_mark_to_selection(lw, mark, MTS_MODE_OR);
946 }
947
948 static void layout_menu_sel_mark_and_cb(GtkAction *action, gpointer data)
949 {
950         LayoutWindow *lw = data;
951         gint mark = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(action), "mark_num"));
952         g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE);
953
954         layout_mark_to_selection(lw, mark, MTS_MODE_AND);
955 }
956
957 static void layout_menu_sel_mark_minus_cb(GtkAction *action, gpointer data)
958 {
959         LayoutWindow *lw = data;
960         gint mark = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(action), "mark_num"));
961         g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE);
962
963         layout_mark_to_selection(lw, mark, MTS_MODE_MINUS);
964 }
965
966 static void layout_menu_mark_filter_toggle_cb(GtkAction *action, gpointer data)
967 {
968         LayoutWindow *lw = data;
969         gint mark = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(action), "mark_num"));
970         g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE);
971
972         layout_marks_set(lw, TRUE);
973         layout_mark_filter_toggle(lw, mark);
974 }
975
976
977 /*
978  *-----------------------------------------------------------------------------
979  * go menu
980  *-----------------------------------------------------------------------------
981  */
982
983 static void layout_menu_image_first_cb(GtkAction *action, gpointer data)
984 {
985         LayoutWindow *lw = data;
986         layout_image_first(lw);
987 }
988
989 static void layout_menu_image_prev_cb(GtkAction *action, gpointer data)
990 {
991         LayoutWindow *lw = data;
992         layout_image_prev(lw);
993 }
994
995 static void layout_menu_image_next_cb(GtkAction *action, gpointer data)
996 {
997         LayoutWindow *lw = data;
998         layout_image_next(lw);
999 }
1000
1001 static void layout_menu_image_last_cb(GtkAction *action, gpointer data)
1002 {
1003         LayoutWindow *lw = data;
1004         layout_image_last(lw);
1005 }
1006
1007 static void layout_menu_back_cb(GtkAction *action, gpointer data)
1008 {
1009         LayoutWindow *lw = data;
1010         FileData *dir_fd;
1011         gchar *path = NULL;
1012         GList *list = history_list_get_by_key("path_list");
1013         gint n = 0;
1014
1015         while (list)
1016                 {
1017                 if (n == 1) {
1018                         /* Previous path from history */
1019                         path = (gchar *)list->data;
1020                         break;
1021                 }
1022                 list = list->next;
1023                 n++;
1024                 }
1025
1026         if (!path) return;
1027         
1028         /* Open previous path */
1029         dir_fd = file_data_new_simple(path);
1030         layout_set_fd(lw, dir_fd);
1031         file_data_unref(dir_fd);
1032 }
1033
1034 static void layout_menu_home_cb(GtkAction *action, gpointer data)
1035 {
1036         LayoutWindow *lw = data;
1037         const gchar *path;
1038         
1039         if (lw->options.home_path && *lw->options.home_path)
1040                 path = lw->options.home_path;
1041         else
1042                 path = homedir();
1043
1044         if (path)
1045                 {
1046                 FileData *dir_fd = file_data_new_simple(path);
1047                 layout_set_fd(lw, dir_fd);
1048                 file_data_unref(dir_fd);
1049                 }
1050 }
1051
1052
1053 /*
1054  *-----------------------------------------------------------------------------
1055  * edit menu
1056  *-----------------------------------------------------------------------------
1057  */
1058
1059 static void layout_menu_edit_cb(GtkAction *action, gpointer data)
1060 {
1061         LayoutWindow *lw = data;
1062         const gchar *key = gtk_action_get_name(action);
1063         
1064         if (!editor_window_flag_set(key))
1065                 layout_exit_fullscreen(lw);
1066
1067         file_util_start_editor_from_filelist(key, layout_selection_list(lw), layout_get_path(lw), lw->window);
1068 }
1069
1070
1071 static void layout_menu_metadata_write_cb(GtkAction *action, gpointer data)
1072 {
1073         metadata_write_queue_confirm(TRUE, NULL, NULL);
1074 }
1075
1076
1077 /*
1078  *-----------------------------------------------------------------------------
1079  * color profile button (and menu)
1080  *-----------------------------------------------------------------------------
1081  */
1082
1083 static void layout_color_menu_enable_cb(GtkToggleAction *action, gpointer data)
1084 {
1085 #ifdef HAVE_LCMS
1086         LayoutWindow *lw = data;
1087
1088         layout_image_color_profile_set_use(lw, gtk_toggle_action_get_active(action));
1089         layout_util_sync_color(lw);
1090         layout_image_refresh(lw);
1091 #endif
1092 }
1093
1094 static void layout_color_menu_use_image_cb(GtkToggleAction *action, gpointer data)
1095 {
1096 #ifdef HAVE_LCMS
1097         LayoutWindow *lw = data;
1098         gint input;
1099         gboolean use_image;
1100
1101         if (!layout_image_color_profile_get(lw, &input, &use_image)) return;
1102         layout_image_color_profile_set(lw, input, gtk_toggle_action_get_active(action));
1103         layout_util_sync_color(lw);
1104         layout_image_refresh(lw);
1105 #endif
1106 }
1107
1108 static void layout_color_menu_input_cb(GtkRadioAction *action, GtkRadioAction *current, gpointer data)
1109 {
1110 #ifdef HAVE_LCMS
1111         LayoutWindow *lw = data;
1112         gint type;
1113         gint input;
1114         gboolean use_image;
1115
1116         type = gtk_radio_action_get_current_value(action);
1117         if (type < 0 || type >= COLOR_PROFILE_FILE + COLOR_PROFILE_INPUTS) return;
1118
1119         if (!layout_image_color_profile_get(lw, &input, &use_image)) return;
1120         if (type == input) return;
1121
1122         layout_image_color_profile_set(lw, type, use_image);
1123         layout_image_refresh(lw);
1124 #endif
1125 }
1126
1127
1128 /*
1129  *-----------------------------------------------------------------------------
1130  * recent menu
1131  *-----------------------------------------------------------------------------
1132  */
1133
1134 static void layout_menu_recent_cb(GtkWidget *widget, gpointer data)
1135 {
1136         gint n;
1137         gchar *path;
1138
1139         n = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(widget), "recent_index"));
1140
1141         path = g_list_nth_data(history_list_get_by_key("recent"), n);
1142
1143         if (!path) return;
1144
1145         /* make a copy of it */
1146         path = g_strdup(path);
1147         collection_window_new(path);
1148         g_free(path);
1149 }
1150
1151 static void layout_menu_recent_update(LayoutWindow *lw)
1152 {
1153         GtkWidget *menu;
1154         GtkWidget *recent;
1155         GtkWidget *item;
1156         GList *list;
1157         gint n;
1158
1159         if (!lw->ui_manager) return;
1160
1161         list = history_list_get_by_key("recent");
1162         n = 0;
1163
1164         menu = gtk_menu_new();
1165
1166         while (list)
1167                 {
1168                 const gchar *filename = filename_from_path((gchar *)list->data);
1169                 gchar *name;
1170                 gboolean free_name = FALSE;
1171
1172                 if (file_extension_match(filename, GQ_COLLECTION_EXT))
1173                         {
1174                         name = remove_extension_from_path(filename);
1175                         free_name = TRUE;
1176                         }
1177                 else
1178                         {
1179                         name = (gchar *) filename;
1180                         }
1181
1182                 item = menu_item_add_simple(menu, name, G_CALLBACK(layout_menu_recent_cb), lw);
1183                 if (free_name) g_free(name);
1184                 g_object_set_data(G_OBJECT(item), "recent_index", GINT_TO_POINTER(n));
1185                 list = list->next;
1186                 n++;
1187                 }
1188
1189         if (n == 0)
1190                 {
1191                 menu_item_add(menu, _("Empty"), NULL, NULL);
1192                 }
1193
1194         recent = gtk_ui_manager_get_widget(lw->ui_manager, "/MainMenu/FileMenu/OpenRecent");
1195         gtk_menu_item_set_submenu(GTK_MENU_ITEM(recent), menu);
1196         gtk_widget_set_sensitive(recent, (n != 0));
1197 }
1198
1199 void layout_recent_update_all(void)
1200 {
1201         GList *work;
1202
1203         work = layout_window_list;
1204         while (work)
1205                 {
1206                 LayoutWindow *lw = work->data;
1207                 work = work->next;
1208
1209                 layout_menu_recent_update(lw);
1210                 }
1211 }
1212
1213 void layout_recent_add_path(const gchar *path)
1214 {
1215         if (!path) return;
1216
1217         history_list_add_to_key("recent", path, options->open_recent_list_maxsize);
1218
1219         layout_recent_update_all();
1220 }
1221
1222 /*
1223  *-----------------------------------------------------------------------------
1224  * menu
1225  *-----------------------------------------------------------------------------
1226  */
1227
1228 #define CB G_CALLBACK
1229
1230 static GtkActionEntry menu_entries[] = {
1231   { "FileMenu",         NULL,                   N_("_File"),                            NULL,                   NULL,                                   NULL },
1232   { "GoMenu",           NULL,                   N_("_Go"),                              NULL,                   NULL,                                   NULL },
1233   { "EditMenu",         NULL,                   N_("_Edit"),                            NULL,                   NULL,                                   NULL },
1234   { "SelectMenu",       NULL,                   N_("_Select"),                          NULL,                   NULL,                                   NULL },
1235   { "OrientationMenu",  NULL,                   N_("_Orientation"),                     NULL,                   NULL,                                   NULL },
1236   { "ExternalMenu",     NULL,                   N_("E_xternal Editors"),                NULL,                   NULL,                                   NULL },
1237   { "PreferencesMenu",  NULL,                   N_("P_references"),                     NULL,                   NULL,                                   NULL },
1238   { "ViewMenu",         NULL,                   N_("_View"),                            NULL,                   NULL,                                   NULL },
1239   { "FileDirMenu",      NULL,                   N_("_Files and Folders"),               NULL,                   NULL,                                   NULL },
1240   { "ZoomMenu",         NULL,                   N_("_Zoom"),                            NULL,                   NULL,                                   NULL },
1241   { "ColorMenu",        NULL,                   N_("_Color Management"),                NULL,                   NULL,                                   NULL },
1242   { "ConnectZoomMenu",  NULL,                   N_("_Connected Zoom"),                  NULL,                   NULL,                                   NULL },
1243   { "SplitMenu",        NULL,                   N_("Spli_t"),                           NULL,                   NULL,                                   NULL },
1244   { "OverlayMenu",      NULL,                   N_("Image _Overlay"),                   NULL,                   NULL,                                   NULL },
1245   { "HelpMenu",         NULL,                   N_("_Help"),                            NULL,                   NULL,                                   NULL },
1246
1247   { "FirstImage",       GTK_STOCK_GOTO_TOP,     N_("_First Image"),                     "Home",                 N_("First Image"),                      CB(layout_menu_image_first_cb) },
1248   { "PrevImage",        GTK_STOCK_GO_UP,        N_("_Previous Image"),                  "BackSpace",            N_("Previous Image"),                   CB(layout_menu_image_prev_cb) },
1249   { "PrevImageAlt1",    GTK_STOCK_GO_UP,        N_("_Previous Image"),                  "Page_Up",              N_("Previous Image"),                   CB(layout_menu_image_prev_cb) },
1250   { "PrevImageAlt2",    GTK_STOCK_GO_UP,        N_("_Previous Image"),                  "KP_Page_Up",           N_("Previous Image"),                   CB(layout_menu_image_prev_cb) },
1251   { "NextImage",        GTK_STOCK_GO_DOWN,      N_("_Next Image"),                      "space",                N_("Next Image"),                       CB(layout_menu_image_next_cb) },
1252   { "NextImageAlt1",    GTK_STOCK_GO_DOWN,      N_("_Next Image"),                      "Page_Down",            N_("Next Image"),                       CB(layout_menu_image_next_cb) },
1253   { "NextImageAlt2",    GTK_STOCK_GO_DOWN,      N_("_Next Image"),                      "KP_Page_Down",         N_("Next Image"),                       CB(layout_menu_image_next_cb) },
1254   { "LastImage",        GTK_STOCK_GOTO_BOTTOM,  N_("_Last Image"),                      "End",                  N_("Last Image"),                       CB(layout_menu_image_last_cb) },
1255   { "Back",             GTK_STOCK_GO_BACK,      N_("_Back"),                            NULL,                   N_("Back"),                             CB(layout_menu_back_cb) },
1256   { "Home",             GTK_STOCK_HOME,         N_("_Home"),                            NULL,                   N_("Home"),                             CB(layout_menu_home_cb) },
1257
1258   { "NewWindow",        GTK_STOCK_NEW,          N_("New _window"),                      "<control>N",           N_("New window"),                       CB(layout_menu_new_window_cb) },
1259   { "NewCollection",    GTK_STOCK_INDEX,        N_("_New collection"),                  "C",                    N_("New collection"),                   CB(layout_menu_new_cb) },
1260   { "OpenCollection",   GTK_STOCK_OPEN,         N_("_Open collection..."),              "O",                    N_("Open collection..."),               CB(layout_menu_open_cb) },
1261   { "OpenRecent",       NULL,                   N_("Open recen_t"),                     NULL,                   N_("Open recent"),                      NULL },
1262   { "Search",           GTK_STOCK_FIND,         N_("_Search..."),                       "F3",                   N_("Search..."),                        CB(layout_menu_search_cb) },
1263   { "FindDupes",        GTK_STOCK_FIND,         N_("_Find duplicates..."),              "D",                    N_("Find duplicates..."),               CB(layout_menu_dupes_cb) },
1264   { "PanView",          NULL,                   N_("Pa_n view"),                        "<control>J",           N_("Pan view"),                         CB(layout_menu_pan_cb) },
1265   { "Print",            GTK_STOCK_PRINT,        N_("_Print..."),                        "<shift>P",             N_("Print..."),                         CB(layout_menu_print_cb) },
1266   { "NewFolder",        GTK_STOCK_DIRECTORY,    N_("N_ew folder..."),                   "<control>F",           N_("New folder..."),                    CB(layout_menu_dir_cb) },
1267   { "Copy",             GTK_STOCK_COPY,         N_("_Copy..."),                         "<control>C",           N_("Copy..."),                          CB(layout_menu_copy_cb) },
1268   { "Move",             NULL,                   N_("_Move..."),                         "<control>M",           N_("Move..."),                          CB(layout_menu_move_cb) },
1269   { "Rename",           NULL,                   N_("_Rename..."),                       "<control>R",           N_("Rename..."),                        CB(layout_menu_rename_cb) },
1270   { "Delete",           GTK_STOCK_DELETE,       N_("_Delete..."),                       "<control>D",           N_("Delete..."),                        CB(layout_menu_delete_cb) },
1271   { "DeleteAlt1",       GTK_STOCK_DELETE,       N_("_Delete..."),                       "Delete",               N_("Delete..."),                        CB(layout_menu_delete_cb) },
1272   { "DeleteAlt2",       GTK_STOCK_DELETE,       N_("_Delete..."),                       "KP_Delete",            N_("Delete..."),                        CB(layout_menu_delete_cb) },
1273   { "EnableGrouping",   NULL,                   N_("Enable file _grouping"),            NULL,                   N_("Enable file grouping"),             CB(layout_menu_enable_grouping_cb) },
1274   { "DisableGrouping",  NULL,                   N_("Disable file groupi_ng"),           NULL,                   N_("Disable file grouping"),            CB(layout_menu_disable_grouping_cb) },
1275   { "CopyPath",         NULL,                   N_("_Copy path to clipboard"),          NULL,                   N_("Copy path to clipboard"),           CB(layout_menu_copy_path_cb) },
1276   { "CloseWindow",      GTK_STOCK_CLOSE,        N_("C_lose window"),                    "<control>W",           N_("Close window"),                     CB(layout_menu_close_cb) },
1277   { "Quit",             GTK_STOCK_QUIT,         N_("_Quit"),                            "<control>Q",           N_("Quit"),                             CB(layout_menu_exit_cb) },
1278   { "RotateCW",         NULL,                   N_("_Rotate clockwise"),                "bracketright",         N_("Rotate clockwise"),                 CB(layout_menu_alter_90_cb) },
1279   { "RotateCCW",        NULL,                   N_("Rotate _counterclockwise"),         "bracketleft",          N_("Rotate counterclockwise"),          CB(layout_menu_alter_90cc_cb) },
1280   { "Rotate180",        NULL,                   N_("Rotate 1_80"),                      "<shift>R",             N_("Rotate 180"),                       CB(layout_menu_alter_180_cb) },
1281   { "Mirror",           NULL,                   N_("_Mirror"),                          "<shift>M",             N_("Mirror"),                           CB(layout_menu_alter_mirror_cb) },
1282   { "Flip",             NULL,                   N_("_Flip"),                            "<shift>F",             N_("Flip"),                             CB(layout_menu_alter_flip_cb) },
1283   { "AlterNone",        NULL,                   N_("_Original state"),                  "<shift>O",             N_("Original state"),                   CB(layout_menu_alter_none_cb) },
1284   { "SelectAll",        NULL,                   N_("Select _all"),                      "<control>A",           N_("Select all"),                       CB(layout_menu_select_all_cb) },
1285   { "SelectNone",       NULL,                   N_("Select _none"),                     "<control><shift>A",    N_("Select none"),                      CB(layout_menu_unselect_all_cb) },
1286   { "SelectInvert",     NULL,                   N_("_Invert Selection"),                "<control><shift>I",    N_("Invert Selection"),                 CB(layout_menu_invert_selection_cb) },
1287   { "Preferences",      GTK_STOCK_PREFERENCES,  N_("P_references..."),                  "<control>O",           N_("Preferences..."),                   CB(layout_menu_config_cb) },
1288   { "Editors",          GTK_STOCK_PREFERENCES,  N_("Configure _Editors..."),            NULL,                   N_("Configure Editors..."),             CB(layout_menu_editors_cb) },
1289   { "LayoutConfig",     GTK_STOCK_PREFERENCES,  N_("_Configure this window..."),        NULL,                   N_("Configure this window..."),         CB(layout_menu_layout_config_cb) },
1290   { "Maintenance",      NULL,                   N_("_Thumbnail maintenance..."),        NULL,                   N_("Thumbnail maintenance..."),         CB(layout_menu_remove_thumb_cb) },
1291   { "Wallpaper",        NULL,                   N_("Set as _wallpaper"),                NULL,                   N_("Set as wallpaper"),                 CB(layout_menu_wallpaper_cb) },
1292   { "SaveMetadata",     GTK_STOCK_SAVE,         N_("_Save metadata"),                   "<control>S",           N_("Save metadata"),                    CB(layout_menu_metadata_write_cb) },
1293   { "ZoomIn",           GTK_STOCK_ZOOM_IN,      N_("Zoom _in"),                         "equal",                N_("Zoom in"),                          CB(layout_menu_zoom_in_cb) },
1294   { "ZoomInAlt1",       GTK_STOCK_ZOOM_IN,      N_("Zoom _in"),                         "KP_Add",               N_("Zoom in"),                          CB(layout_menu_zoom_in_cb) },
1295   { "ZoomOut",          GTK_STOCK_ZOOM_OUT,     N_("Zoom _out"),                        "minus",                N_("Zoom out"),                         CB(layout_menu_zoom_out_cb) },
1296   { "ZoomOutAlt1",      GTK_STOCK_ZOOM_OUT,     N_("Zoom _out"),                        "KP_Subtract",          N_("Zoom out"),                         CB(layout_menu_zoom_out_cb) },
1297   { "Zoom100",          GTK_STOCK_ZOOM_100,     N_("Zoom _1:1"),                        "Z",                    N_("Zoom 1:1"),                         CB(layout_menu_zoom_1_1_cb) },
1298   { "Zoom100Alt1",      GTK_STOCK_ZOOM_100,     N_("Zoom _1:1"),                        "KP_Divide",            N_("Zoom 1:1"),                         CB(layout_menu_zoom_1_1_cb) },
1299   { "ZoomFit",          GTK_STOCK_ZOOM_FIT,     N_("_Zoom to fit"),                     "X",                    N_("Zoom to fit"),                      CB(layout_menu_zoom_fit_cb) },
1300   { "ZoomFitAlt1",      GTK_STOCK_ZOOM_FIT,     N_("_Zoom to fit"),                     "KP_Multiply",          N_("Zoom to fit"),                      CB(layout_menu_zoom_fit_cb) },
1301   { "ZoomFillHor",      NULL,                   N_("Fit _Horizontally"),                "H",                    N_("Fit Horizontally"),                 CB(layout_menu_zoom_fit_hor_cb) },
1302   { "ZoomFillVert",     NULL,                   N_("Fit _Vertically"),                  "W",                    N_("Fit Vertically"),                   CB(layout_menu_zoom_fit_vert_cb) },
1303   { "Zoom200",          NULL,                   N_("Zoom _2:1"),                        NULL,                   N_("Zoom 2:1"),                         CB(layout_menu_zoom_2_1_cb) },
1304   { "Zoom300",          NULL,                   N_("Zoom _3:1"),                        NULL,                   N_("Zoom 3:1"),                         CB(layout_menu_zoom_3_1_cb) },
1305   { "Zoom400",          NULL,                   N_("Zoom _4:1"),                        NULL,                   N_("Zoom 4:1"),                         CB(layout_menu_zoom_4_1_cb) },
1306   { "Zoom50",           NULL,                   N_("Zoom 1:2"),                         NULL,                   N_("Zoom 1:2"),                         CB(layout_menu_zoom_1_2_cb) },
1307   { "Zoom33",           NULL,                   N_("Zoom 1:3"),                         NULL,                   N_("Zoom 1:3"),                         CB(layout_menu_zoom_1_3_cb) },
1308   { "Zoom25",           NULL,                   N_("Zoom 1:4"),                         NULL,                   N_("Zoom 1:4"),                         CB(layout_menu_zoom_1_4_cb) },
1309   { "ConnectZoomIn",    GTK_STOCK_ZOOM_IN,      N_("Zoom _in"),                         "plus",                 N_("Connected Zoom in"),                CB(layout_menu_connect_zoom_in_cb) },
1310   { "ConnectZoomInAlt1",GTK_STOCK_ZOOM_IN,      N_("Zoom _in"),                         "<shift>KP_Add",        N_("Connected Zoom in"),                CB(layout_menu_connect_zoom_in_cb) },
1311   { "ConnectZoomOut",   GTK_STOCK_ZOOM_OUT,     N_("Zoom _out"),                        "underscore",           N_("Connected Zoom out"),               CB(layout_menu_connect_zoom_out_cb) },
1312   { "ConnectZoomOutAlt1",GTK_STOCK_ZOOM_OUT,    N_("Zoom _out"),                        "<shift>KP_Subtract",   N_("Connected Zoom out"),               CB(layout_menu_connect_zoom_out_cb) },
1313   { "ConnectZoom100",   GTK_STOCK_ZOOM_100,     N_("Zoom _1:1"),                        "<shift>Z",             N_("Connected Zoom 1:1"),               CB(layout_menu_connect_zoom_1_1_cb) },
1314   { "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) },
1315   { "ConnectZoomFit",   GTK_STOCK_ZOOM_FIT,     N_("_Zoom to fit"),                     "<shift>X",             N_("Connected Zoom to fit"),            CB(layout_menu_connect_zoom_fit_cb) },
1316   { "ConnectZoomFitAlt1",GTK_STOCK_ZOOM_FIT,    N_("_Zoom to fit"),                     "<shift>KP_Multiply",   N_("Connected Zoom to fit"),            CB(layout_menu_connect_zoom_fit_cb) },
1317   { "ConnectZoomFillHor",NULL,                  N_("Fit _Horizontally"),                "<shift>H",             N_("Connected Fit Horizontally"),       CB(layout_menu_connect_zoom_fit_hor_cb) },
1318   { "ConnectZoomFillVert",NULL,                 N_("Fit _Vertically"),                  "<shift>W",             N_("Connected Fit Vertically"),         CB(layout_menu_connect_zoom_fit_vert_cb) },
1319   { "ConnectZoom200",   NULL,                   N_("Zoom _2:1"),                        NULL,                   N_("Connected Zoom 2:1"),               CB(layout_menu_connect_zoom_2_1_cb) },
1320   { "ConnectZoom300",   NULL,                   N_("Zoom _3:1"),                        NULL,                   N_("Connected Zoom 3:1"),               CB(layout_menu_connect_zoom_3_1_cb) },
1321   { "ConnectZoom400",   NULL,                   N_("Zoom _4:1"),                        NULL,                   N_("Connected Zoom 4:1"),               CB(layout_menu_connect_zoom_4_1_cb) },
1322   { "ConnectZoom50",    NULL,                   N_("Zoom 1:2"),                         NULL,                   N_("Connected Zoom 1:2"),               CB(layout_menu_connect_zoom_1_2_cb) },
1323   { "ConnectZoom33",    NULL,                   N_("Zoom 1:3"),                         NULL,                   N_("Connected Zoom 1:3"),               CB(layout_menu_connect_zoom_1_3_cb) },
1324   { "ConnectZoom25",    NULL,                   N_("Zoom 1:4"),                         NULL,                   N_("Connected Zoom 1:4"),               CB(layout_menu_connect_zoom_1_4_cb) },
1325   { "ViewInNewWindow",  NULL,                   N_("_View in new window"),              "<control>V",           N_("View in new window"),               CB(layout_menu_view_in_new_window_cb) },
1326   { "FullScreen",       GTK_STOCK_FULLSCREEN,   N_("F_ull screen"),                     "F",                    N_("Full screen"),                      CB(layout_menu_fullscreen_cb) },
1327   { "FullScreenAlt1",   GTK_STOCK_FULLSCREEN,   N_("F_ull screen"),                     "V",                    N_("Full screen"),                      CB(layout_menu_fullscreen_cb) },
1328   { "FullScreenAlt2",   GTK_STOCK_FULLSCREEN,   N_("F_ull screen"),                     "F11",                  N_("Full screen"),                      CB(layout_menu_fullscreen_cb) },
1329   { "Escape",           GTK_STOCK_LEAVE_FULLSCREEN,N_("_Leave full screen"),            "Escape",               N_("Leave full screen"),                CB(layout_menu_escape_cb) },
1330   { "EscapeAlt1",       GTK_STOCK_LEAVE_FULLSCREEN,N_("_Leave full screen"),            "Q",                    N_("Leave full screen"),                CB(layout_menu_escape_cb) },
1331   { "ImageOverlayCycle",NULL,                   N_("_Cycle through overlay modes"),     "I",                    N_("Cycle through Overlay modes"),      CB(layout_menu_overlay_toggle_cb) },
1332   { "HistogramChanCycle",NULL,                  N_("Cycle through histogram ch_annels"),"K",                    N_("Cycle through histogram channels"), CB(layout_menu_histogram_toggle_channel_cb) },
1333   { "HistogramModeCycle",NULL,                  N_("Cycle through histogram mo_des"),   "J",                    N_("Cycle through histogram modes"),    CB(layout_menu_histogram_toggle_mode_cb) },
1334   { "HideTools",        NULL,                   N_("_Hide file list"),                  "<control>H",           N_("Hide file list"),                   CB(layout_menu_hide_cb) },
1335   { "SlideShowPause",   GTK_STOCK_MEDIA_PAUSE,  N_("_Pause slideshow"),                 "P",                    N_("Pause slideshow"),                  CB(layout_menu_slideshow_pause_cb) },
1336   { "Refresh",          GTK_STOCK_REFRESH,      N_("_Refresh"),                         "R",                    N_("Refresh"),                          CB(layout_menu_refresh_cb) },
1337   { "HelpContents",     GTK_STOCK_HELP,         N_("_Contents"),                        "F1",                   N_("Contents"),                         CB(layout_menu_help_cb) },
1338   { "HelpShortcuts",    NULL,                   N_("_Keyboard shortcuts"),              NULL,                   N_("Keyboard shortcuts"),               CB(layout_menu_help_keys_cb) },
1339   { "HelpNotes",        NULL,                   N_("_Release notes"),                   NULL,                   N_("Release notes"),                    CB(layout_menu_notes_cb) },
1340   { "About",            GTK_STOCK_ABOUT,        N_("_About"),                           NULL,                   N_("About"),                            CB(layout_menu_about_cb) },
1341   { "LogWindow",        NULL,                   N_("_Log Window"),                      NULL,                   N_("Log Window"),                       CB(layout_menu_log_window_cb) },
1342   { "ExifWin",          NULL,                   N_("_Exif window"),                     "<control>E",           N_("Exif window"),                      CB(layout_menu_bar_exif_cb) },
1343
1344 };
1345
1346 static GtkToggleActionEntry menu_toggle_entries[] = {
1347   { "Thumbnails",       PIXBUF_INLINE_ICON_THUMB,N_("Show _Thumbnails"),                "T",                    N_("Show Thumbnails"),                  CB(layout_menu_thumb_cb),        FALSE },
1348   { "ShowMarks",        NULL,                   N_("Show _Marks"),                      "M",                    N_("Show Marks"),                       CB(layout_menu_marks_cb),        FALSE  },
1349   { "ShowInfoPixel",    GTK_STOCK_COLOR_PICKER, N_("Pi_xel Info"),                      NULL,                   N_("Show Pixel Info"),                  CB(layout_menu_info_pixel_cb),   FALSE  },
1350   { "FloatTools",       PIXBUF_INLINE_ICON_FLOAT,N_("_Float file list"),                "L",                    N_("Float file list"),                  CB(layout_menu_float_cb),        FALSE  },
1351   { "HideToolbar",      NULL,                   N_("Hide tool_bar"),                    NULL,                   N_("Hide toolbar"),                     CB(layout_menu_toolbar_cb),      FALSE  },
1352   { "SBar",             NULL,                   N_("_Info sidebar"),                    "<control>K",           N_("Info sidebar"),                     CB(layout_menu_bar_cb),          FALSE  },
1353   { "SBarSort",         NULL,                   N_("Sort _manager"),                    "<shift>S",             N_("Sort manager"),                     CB(layout_menu_bar_sort_cb),     FALSE  },
1354   { "SlideShow",        GTK_STOCK_MEDIA_PLAY,   N_("Toggle _slideshow"),                "S",                    N_("Toggle slideshow"),                 CB(layout_menu_slideshow_cb),    FALSE  },
1355   { "UseColorProfiles", GTK_STOCK_SELECT_COLOR, N_("Use _color profiles"),              NULL,                   N_("Use color profiles"),               CB(layout_color_menu_enable_cb), FALSE},
1356   { "UseImageProfile",  NULL,                   N_("Use profile from _image"),          NULL,                   N_("Use profile from image"),           CB(layout_color_menu_use_image_cb), FALSE},
1357   { "Grayscale",        NULL,                   N_("Toggle _grayscale"),                "<shift>G",             N_("Toggle grayscale"),                 CB(layout_menu_alter_desaturate_cb), FALSE},
1358   { "ImageOverlay",     NULL,                   N_("Image _Overlay"),                   NULL,                   N_("Image Overlay"),                    CB(layout_menu_overlay_cb),      FALSE },
1359   { "ImageHistogram",   NULL,                   N_("_Show Histogram"),                  NULL,                   N_("Show Histogram"),                   CB(layout_menu_histogram_cb),    FALSE },
1360 };
1361
1362 static GtkRadioActionEntry menu_radio_entries[] = {
1363   { "ViewList",         NULL,                   N_("Image _List"),                      "<control>L",           N_("View Images as List"),              FILEVIEW_LIST },
1364   { "ViewIcons",        NULL,                   N_("I_cons"),                           "<control>I",           N_("View Images as Icons"),             FILEVIEW_ICON }
1365 };
1366
1367 static GtkRadioActionEntry menu_view_dir_radio_entries[] = {
1368   { "FolderList",       NULL,                   N_("Folder Li_st"),                     "<meta>L",              N_("View Folders as List"),             DIRVIEW_LIST },
1369   { "FolderTree",       NULL,                   N_("Folder T_ree"),                     "<control>T",           N_("View Folders as Tree"),             DIRVIEW_TREE },
1370 };
1371
1372 static GtkRadioActionEntry menu_split_radio_entries[] = {
1373   { "SplitHorizontal",  NULL,                   N_("_Horizontal"),                      "E",                    N_("Split Horizontal"),                 SPLIT_HOR },
1374   { "SplitVertical",    NULL,                   N_("_Vertical"),                        "U",                    N_("Split Vertical"),                           SPLIT_VERT },
1375   { "SplitQuad",        NULL,                   N_("_Quad"),                            NULL,                   N_("Split Quad"),                               SPLIT_QUAD },
1376   { "SplitSingle",      NULL,                   N_("_Single"),                          "Y",                    N_("Split Single"),                             SPLIT_NONE }
1377 };
1378
1379 static GtkRadioActionEntry menu_color_radio_entries[] = {
1380   { "ColorProfile0",    NULL,                   N_("Input _0: sRGB"),                   NULL,                   N_("Input 0: sRGB"),                    COLOR_PROFILE_SRGB },
1381   { "ColorProfile1",    NULL,                   N_("Input _1: AdobeRGB compatible"),    NULL,                   N_("Input 1: AdobeRGB compatible"),     COLOR_PROFILE_ADOBERGB },
1382   { "ColorProfile2",    NULL,                   N_("Input _2"),                         NULL,                   N_("Input 2"),                          COLOR_PROFILE_FILE },
1383   { "ColorProfile3",    NULL,                   N_("Input _3"),                         NULL,                   N_("Input 3"),                          COLOR_PROFILE_FILE + 1 },
1384   { "ColorProfile4",    NULL,                   N_("Input _4"),                         NULL,                   N_("Input 4"),                          COLOR_PROFILE_FILE + 2 },
1385   { "ColorProfile5",    NULL,                   N_("Input _5"),                         NULL,                   N_("Input 5"),                          COLOR_PROFILE_FILE + 3 }
1386 };
1387
1388 static GtkRadioActionEntry menu_histogram_channel[] = {
1389   { "HistogramChanR",   NULL,                   N_("Histogram on _Red"),                NULL,                   N_("Histogram on Red"),         HCHAN_R },
1390   { "HistogramChanG",   NULL,                   N_("Histogram on _Green"),              NULL,                   N_("Histogram on Green"),       HCHAN_G },
1391   { "HistogramChanB",   NULL,                   N_("Histogram on _Blue"),               NULL,                   N_("Histogram on Blue"),        HCHAN_B },
1392   { "HistogramChanRGB", NULL,                   N_("_Histogram on RGB"),                        NULL,                   N_("Histogram on RGB"),         HCHAN_RGB },
1393   { "HistogramChanV",   NULL,                   N_("Histogram on _Value"),              NULL,                   N_("Histogram on Value"),       HCHAN_MAX }
1394 };
1395
1396 static GtkRadioActionEntry menu_histogram_mode[] = {
1397   { "HistogramModeLin", NULL,                   N_("Li_near Histogram"),                NULL,                   N_("Linear Histogram"),         0 },
1398   { "HistogramModeLog", NULL,                   N_("_Log Histogram"),                   NULL,                   N_("Log Histogram"),            1 },
1399 };
1400
1401
1402 #undef CB
1403
1404 static const gchar *menu_ui_description =
1405 "<ui>"
1406 "  <menubar name='MainMenu'>"
1407 "    <menu action='FileMenu'>"
1408 "      <menuitem action='NewWindow'/>"
1409 "      <menuitem action='NewCollection'/>"
1410 "      <menuitem action='OpenCollection'/>"
1411 "      <menuitem action='OpenRecent'/>"
1412 "      <placeholder name='OpenSection'/>"
1413 "      <separator/>"
1414 "      <menuitem action='Search'/>"
1415 "      <menuitem action='FindDupes'/>"
1416 "      <placeholder name='SearchSection'/>"
1417 "      <separator/>"
1418 "      <menuitem action='Print'/>"
1419 "      <placeholder name='PrintSection'/>"
1420 "      <separator/>"
1421 "      <menuitem action='NewFolder'/>"
1422 "      <menuitem action='Copy'/>"
1423 "      <menuitem action='Move'/>"
1424 "      <menuitem action='Rename'/>"
1425 "      <menuitem action='Delete'/>"
1426 "      <placeholder name='FileOpsSection'/>"
1427 "      <separator/>"
1428 "      <placeholder name='QuitSection'/>"
1429 "      <menuitem action='CloseWindow'/>"
1430 "      <menuitem action='Quit'/>"
1431 "      <separator/>"
1432 "    </menu>"
1433 "    <menu action='GoMenu'>"
1434 "      <menuitem action='FirstImage'/>"
1435 "      <menuitem action='PrevImage'/>"
1436 "      <menuitem action='NextImage'/>"
1437 "      <menuitem action='LastImage'/>"
1438 "      <separator/>"
1439 "      <menuitem action='Back'/>"
1440 "      <menuitem action='Home'/>"
1441 "      <separator/>"
1442 "    </menu>"
1443 "    <menu action='SelectMenu'>"
1444 "      <menuitem action='SelectAll'/>"
1445 "      <menuitem action='SelectNone'/>"
1446 "      <menuitem action='SelectInvert'/>"
1447 "      <placeholder name='SelectSection'/>"
1448 "      <separator/>"
1449 "      <menuitem action='CopyPath'/>"
1450 "      <placeholder name='ClipboardSection'/>"
1451 "      <separator/>"
1452 "      <menuitem action='ShowMarks'/>"
1453 "      <placeholder name='MarksSection'/>"
1454 "      <separator/>"
1455 "    </menu>"
1456 "    <menu action='EditMenu'>"
1457 "      <menu action='ExternalMenu'>"
1458 "      </menu>"
1459 "      <placeholder name='EditSection'/>"
1460 "      <separator/>"
1461 "      <menu action='OrientationMenu'>"
1462 "        <menuitem action='RotateCW'/>"
1463 "        <menuitem action='RotateCCW'/>"
1464 "        <menuitem action='Rotate180'/>"
1465 "        <menuitem action='Mirror'/>"
1466 "        <menuitem action='Flip'/>"
1467 "        <menuitem action='AlterNone'/>"
1468 "      </menu>"
1469 "      <menuitem action='SaveMetadata'/>"
1470 "      <placeholder name='PropertiesSection'/>"
1471 "      <separator/>"
1472 "        <menu action='PreferencesMenu'>"
1473 "        <menuitem action='Preferences'/>"
1474 "        <menuitem action='Editors'/>"
1475 "        <menuitem action='LayoutConfig'/>"
1476 "        <menuitem action='Maintenance'/>"
1477 "      </menu>"
1478 "      <placeholder name='PreferencesSection'/>"
1479 "      <separator/>"
1480 "      <menuitem action='Wallpaper'/>"
1481 "      <separator/>"
1482 "    </menu>"
1483 "    <menu action='ViewMenu'>"
1484 "      <menuitem action='ViewInNewWindow'/>"
1485 "      <menuitem action='PanView'/>"
1486 "      <menuitem action='ExifWin'/>"
1487 "      <placeholder name='WindowSection'/>"
1488 "      <separator/>"
1489 "      <menu action='FileDirMenu'>"
1490 "        <menuitem action='FolderList'/>"
1491 "        <menuitem action='FolderTree'/>"
1492 "        <placeholder name='FolderSection'/>"
1493 "        <separator/>"
1494 "        <menuitem action='ViewList'/>"
1495 "        <menuitem action='ViewIcons'/>"
1496 "        <menuitem action='Thumbnails'/>"
1497 "        <placeholder name='ListSection'/>"
1498 "        <separator/>"
1499 "        <menuitem action='FloatTools'/>"
1500 "        <menuitem action='HideTools'/>"
1501 "        <menuitem action='HideToolbar'/>"
1502 "      </menu>"
1503 "      <placeholder name='DirSection'/>"
1504 "      <separator/>"
1505 "      <menu action='ZoomMenu'>"
1506 "        <menu action='ConnectZoomMenu'>"
1507 "          <menuitem action='ConnectZoomIn'/>"
1508 "          <menuitem action='ConnectZoomOut'/>"
1509 "          <menuitem action='ConnectZoomFit'/>"
1510 "          <menuitem action='ConnectZoomFillHor'/>"
1511 "          <menuitem action='ConnectZoomFillVert'/>"
1512 "          <menuitem action='ConnectZoom100'/>"
1513 "          <menuitem action='ConnectZoom200'/>"
1514 "          <menuitem action='ConnectZoom300'/>"
1515 "          <menuitem action='ConnectZoom400'/>"
1516 "          <menuitem action='ConnectZoom50'/>"
1517 "          <menuitem action='ConnectZoom33'/>"
1518 "          <menuitem action='ConnectZoom25'/>"
1519 "        </menu>"
1520 "        <menuitem action='ZoomIn'/>"
1521 "        <menuitem action='ZoomOut'/>"
1522 "        <menuitem action='ZoomFit'/>"
1523 "        <menuitem action='ZoomFillHor'/>"
1524 "        <menuitem action='ZoomFillVert'/>"
1525 "        <menuitem action='Zoom100'/>"
1526 "        <menuitem action='Zoom200'/>"
1527 "        <menuitem action='Zoom300'/>"
1528 "        <menuitem action='Zoom400'/>"
1529 "        <menuitem action='Zoom50'/>"
1530 "        <menuitem action='Zoom33'/>"
1531 "        <menuitem action='Zoom25'/>"
1532 "      </menu>"
1533 "      <menu action='SplitMenu'>"
1534 "        <menuitem action='SplitHorizontal'/>"
1535 "        <menuitem action='SplitVertical'/>"
1536 "        <menuitem action='SplitQuad'/>"
1537 "        <menuitem action='SplitSingle'/>"
1538 "      </menu>"
1539 "      <menu action='ColorMenu'>"
1540 "        <menuitem action='UseColorProfiles'/>"
1541 "        <menuitem action='UseImageProfile'/>"
1542 "        <menuitem action='ColorProfile0'/>"
1543 "        <menuitem action='ColorProfile1'/>"
1544 "        <menuitem action='ColorProfile2'/>"
1545 "        <menuitem action='ColorProfile3'/>"
1546 "        <menuitem action='ColorProfile4'/>"
1547 "        <menuitem action='ColorProfile5'/>"
1548 "        <separator/>"
1549 "        <menuitem action='Grayscale'/>"
1550 "      </menu>"
1551 "      <menu action='OverlayMenu'>"
1552 "        <menuitem action='ImageOverlay'/>"
1553 "        <menuitem action='ImageHistogram'/>"
1554 "        <menuitem action='ImageOverlayCycle'/>"
1555 "        <separator/>"
1556 "        <menuitem action='HistogramChanR'/>"
1557 "        <menuitem action='HistogramChanG'/>"
1558 "        <menuitem action='HistogramChanB'/>"
1559 "        <menuitem action='HistogramChanRGB'/>"
1560 "        <menuitem action='HistogramChanV'/>"
1561 "        <menuitem action='HistogramChanCycle'/>"
1562 "        <separator/>"
1563 "        <menuitem action='HistogramModeLin'/>"
1564 "        <menuitem action='HistogramModeLog'/>"
1565 "        <menuitem action='HistogramModeCycle'/>"
1566 "      </menu>"
1567 "      <menuitem action='FullScreen'/>"
1568 "      <placeholder name='ViewSection'/>"
1569 "      <separator/>"
1570 "      <menuitem action='SBar'/>"
1571 "      <menuitem action='SBarSort'/>"
1572 "      <menuitem action='ShowInfoPixel'/>"
1573 "      <placeholder name='ToolsSection'/>"
1574 "      <separator/>"
1575 "      <menuitem action='SlideShow'/>"
1576 "      <menuitem action='SlideShowPause'/>"
1577 "      <menuitem action='Refresh'/>"
1578 "      <placeholder name='SlideShowSection'/>"
1579 "      <separator/>"
1580 "    </menu>"
1581 "    <menu action='HelpMenu'>"
1582 "      <separator/>"
1583 "      <menuitem action='HelpContents'/>"
1584 "      <menuitem action='HelpShortcuts'/>"
1585 "      <menuitem action='HelpNotes'/>"
1586 "      <placeholder name='HelpSection'/>"
1587 "      <separator/>"
1588 "      <menuitem action='About'/>"
1589 "      <separator/>"
1590 "      <menuitem action='LogWindow'/>"
1591 "      <separator/>"
1592 "    </menu>"
1593 "  </menubar>"
1594 "  <toolbar name='ToolBar'>"
1595 "  </toolbar>"
1596 "  <toolbar name='StatusBar'>"
1597 "  </toolbar>"
1598 "<accelerator action='PrevImageAlt1'/>"
1599 "<accelerator action='PrevImageAlt2'/>"
1600 "<accelerator action='NextImageAlt1'/>"
1601 "<accelerator action='NextImageAlt2'/>"
1602 "<accelerator action='DeleteAlt1'/>"
1603 "<accelerator action='DeleteAlt2'/>"
1604 "<accelerator action='FullScreenAlt1'/>"
1605 "<accelerator action='FullScreenAlt2'/>"
1606 "<accelerator action='Escape'/>"
1607 "<accelerator action='EscapeAlt1'/>"
1608
1609 "<accelerator action='ZoomInAlt1'/>"
1610 "<accelerator action='ZoomOutAlt1'/>"
1611 "<accelerator action='Zoom100Alt1'/>"
1612 "<accelerator action='ZoomFitAlt1'/>"
1613
1614 "<accelerator action='ConnectZoomInAlt1'/>"
1615 "<accelerator action='ConnectZoomOutAlt1'/>"
1616 "<accelerator action='ConnectZoom100Alt1'/>"
1617 "<accelerator action='ConnectZoomFitAlt1'/>"
1618 "</ui>";
1619
1620 static gchar *menu_translate(const gchar *path, gpointer data)
1621 {
1622         return (gchar *)(_(path));
1623 }
1624
1625 static void layout_actions_setup_mark(LayoutWindow *lw, gint mark, gchar *name_tmpl,
1626                                       gchar *label_tmpl, gchar *accel_tmpl, gchar *tooltip_tmpl, GCallback cb)
1627 {
1628         gchar name[50];
1629         gchar label[100];
1630         gchar accel[50];
1631         gchar tooltip[100];
1632         GtkActionEntry entry = { name, NULL, label, accel, tooltip, cb };
1633         GtkAction *action;
1634
1635         g_snprintf(name, sizeof(name), name_tmpl, mark);
1636         g_snprintf(label, sizeof(label), label_tmpl, mark);
1637                 
1638         if (accel_tmpl)
1639                 g_snprintf(accel, sizeof(accel), accel_tmpl, mark % 10);
1640         else
1641                 entry.accelerator = NULL;
1642
1643         if (tooltip_tmpl)
1644                 g_snprintf(tooltip, sizeof(tooltip), tooltip_tmpl, mark);
1645         else
1646                 entry.tooltip = NULL;
1647                 
1648         gtk_action_group_add_actions(lw->action_group, &entry, 1, lw);
1649         action = gtk_action_group_get_action(lw->action_group, name);
1650         g_object_set_data(G_OBJECT(action), "mark_num", GINT_TO_POINTER(mark));
1651 }
1652
1653 static void layout_actions_setup_marks(LayoutWindow *lw)
1654 {
1655         gint mark;
1656         GError *error;
1657         GString *desc = g_string_new(
1658                                 "<ui>"
1659                                 "  <menubar name='MainMenu'>"
1660                                 "    <menu action='SelectMenu'>");
1661
1662         for (mark = 1; mark <= FILEDATA_MARKS_SIZE; mark++)
1663                 {
1664                 layout_actions_setup_mark(lw, mark, "Mark%d",           _("Mark _%d"), NULL, NULL, NULL);
1665                 layout_actions_setup_mark(lw, mark, "SetMark%d",        _("_Set mark %d"),                      NULL,           _("Set mark %d"), G_CALLBACK(layout_menu_set_mark_sel_cb));
1666                 layout_actions_setup_mark(lw, mark, "ResetMark%d",      _("_Reset mark %d"),                    NULL,           _("Reset mark %d"), G_CALLBACK(layout_menu_res_mark_sel_cb));
1667                 layout_actions_setup_mark(lw, mark, "ToggleMark%d",     _("_Toggle mark %d"),                   "%d",           _("Toggle mark %d"), G_CALLBACK(layout_menu_toggle_mark_sel_cb));
1668                 layout_actions_setup_mark(lw, mark, "ToggleMark%dAlt1", _("_Toggle mark %d"),                   "KP_%d",        _("Toggle mark %d"), G_CALLBACK(layout_menu_toggle_mark_sel_cb));
1669                 layout_actions_setup_mark(lw, mark, "SelectMark%d",     _("Se_lect mark %d"),                   "<control>%d",  _("Select mark %d"), G_CALLBACK(layout_menu_sel_mark_cb));
1670                 layout_actions_setup_mark(lw, mark, "SelectMark%dAlt1", _("_Select mark %d"),                   "<control>KP_%d", _("Select mark %d"), G_CALLBACK(layout_menu_sel_mark_cb));
1671                 layout_actions_setup_mark(lw, mark, "AddMark%d",        _("_Add mark %d"),                      NULL,           _("Add mark %d"), G_CALLBACK(layout_menu_sel_mark_or_cb));
1672                 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));
1673                 layout_actions_setup_mark(lw, mark, "UnselMark%d",      _("_Unselect mark %d"),                 NULL,           _("Unselect mark %d"), G_CALLBACK(layout_menu_sel_mark_minus_cb));
1674                 layout_actions_setup_mark(lw, mark, "FilterMark%d",     _("_Filter mark %d"),                   NULL,           _("Filter mark %d"), G_CALLBACK(layout_menu_mark_filter_toggle_cb));
1675
1676                 g_string_append_printf(desc,
1677                                 "      <menu action='Mark%d'>"
1678                                 "        <menuitem action='ToggleMark%d'/>"
1679                                 "        <menuitem action='SetMark%d'/>"
1680                                 "        <menuitem action='ResetMark%d'/>"
1681                                 "        <separator/>"
1682                                 "        <menuitem action='SelectMark%d'/>"
1683                                 "        <menuitem action='AddMark%d'/>"
1684                                 "        <menuitem action='IntMark%d'/>"
1685                                 "        <menuitem action='UnselMark%d'/>"
1686                                 "        <separator/>"
1687                                 "        <menuitem action='FilterMark%d'/>"
1688                                 "      </menu>",
1689                                 mark, mark, mark, mark, mark, mark, mark, mark, mark);
1690                 }
1691
1692         g_string_append(desc,
1693                                 "    </menu>"
1694                                 "  </menubar>");
1695         for (mark = 1; mark <= FILEDATA_MARKS_SIZE; mark++)
1696                 {
1697                 g_string_append_printf(desc,
1698                                 "<accelerator action='ToggleMark%dAlt1'/>"
1699                                 "<accelerator action='SelectMark%dAlt1'/>",
1700                                 mark, mark);
1701                 }
1702         g_string_append(desc,   "</ui>" );
1703
1704         error = NULL;
1705         if (!gtk_ui_manager_add_ui_from_string(lw->ui_manager, desc->str, -1, &error))
1706                 {
1707                 g_message("building menus failed: %s", error->message);
1708                 g_error_free(error);
1709                 exit(EXIT_FAILURE);
1710                 }
1711         g_string_free(desc, TRUE);
1712 }
1713
1714 static GList *layout_actions_editor_menu_path(EditorDescription *editor)
1715 {
1716         gchar **split = g_strsplit(editor->menu_path, "/", 0);
1717         gint i = 0;
1718         GList *ret = NULL;
1719         
1720         if (split[0] == NULL) 
1721                 {
1722                 g_strfreev(split);
1723                 return NULL;
1724                 }
1725         
1726         while (split[i])
1727                 {
1728                 ret = g_list_prepend(ret, g_strdup(split[i]));
1729                 i++;
1730                 }
1731         
1732         g_strfreev(split);
1733         
1734         ret = g_list_prepend(ret, g_strdup(editor->key));
1735         
1736         return g_list_reverse(ret);
1737 }
1738
1739 static void layout_actions_editor_add(GString *desc, GList *path, GList *old_path)
1740 {
1741         gint to_open, to_close, i;
1742         while (path && old_path && strcmp((gchar *)path->data, (gchar *)old_path->data) == 0)
1743                 {
1744                 path = path->next;
1745                 old_path = old_path->next;
1746                 }
1747         to_open = g_list_length(path) - 1;
1748         to_close = g_list_length(old_path) - 1;
1749         
1750         if (to_close > 0)
1751                 {
1752                 old_path = g_list_last(old_path);
1753                 old_path = old_path->prev;
1754                 }
1755         
1756         for (i =  0; i < to_close; i++)
1757                 {
1758                 gchar *name = old_path->data;
1759                 if (g_str_has_suffix(name, "Section"))
1760                         {
1761                         g_string_append(desc,   "      </placeholder>");
1762                         }
1763                 else if (g_str_has_suffix(name, "Menu"))
1764                         {
1765                         g_string_append(desc,   "    </menu>");
1766                         }
1767                 else
1768                         {
1769                         g_warning("invalid menu path item %s", name);
1770                         }
1771                 old_path = old_path->prev;
1772                 }
1773
1774         for (i =  0; i < to_open; i++)
1775                 {
1776                 gchar *name = path->data;
1777                 if (g_str_has_suffix(name, "Section"))
1778                         {
1779                         g_string_append_printf(desc,    "      <placeholder name='%s'>", name);
1780                         }
1781                 else if (g_str_has_suffix(name, "Menu"))
1782                         {
1783                         g_string_append_printf(desc,    "    <menu action='%s'>", name);
1784                         }
1785                 else
1786                         {
1787                         g_warning("invalid menu path item %s", name);
1788                         }
1789                 path = path->next;
1790                 }
1791         
1792         if (path)
1793                 g_string_append_printf(desc, "      <menuitem action='%s'/>", (gchar *)path->data);
1794 }
1795
1796 static void layout_actions_setup_editors(LayoutWindow *lw)
1797 {
1798         GError *error;
1799         GList *editors_list;
1800         GList *work;
1801         GList *old_path;
1802         GString *desc;
1803         
1804         if (lw->action_group_editors)
1805                 {
1806                 gtk_ui_manager_remove_action_group(lw->ui_manager, lw->action_group_editors);
1807                 g_object_unref(lw->action_group_editors);
1808                 }
1809         lw->action_group_editors = gtk_action_group_new("MenuActionsExternal");
1810         gtk_ui_manager_insert_action_group(lw->ui_manager, lw->action_group_editors, 1);
1811
1812         /* lw->action_group_editors contains translated entries, no translate func is required */
1813         desc = g_string_new(
1814                                 "<ui>"
1815                                 "  <menubar name='MainMenu'>");
1816
1817         editors_list = editor_list_get();
1818         
1819         old_path = NULL;
1820         work = editors_list;
1821         while (work)
1822                 {
1823                 GList *path;
1824                 EditorDescription *editor = work->data;
1825                 GtkActionEntry entry = { editor->key, 
1826                                          NULL,
1827                                          editor->name,
1828                                          editor->hotkey, 
1829                                          editor->comment ? editor->comment : editor->name,
1830                                          G_CALLBACK(layout_menu_edit_cb) };
1831                 
1832                 if (editor->icon)
1833                         {
1834                         entry.stock_id = editor->key;
1835                         }
1836                 gtk_action_group_add_actions(lw->action_group_editors, &entry, 1, lw);
1837                 
1838                 path = layout_actions_editor_menu_path(editor);
1839                 layout_actions_editor_add(desc, path, old_path);
1840                 
1841                 string_list_free(old_path);
1842                 old_path = path;
1843                 work = work->next;
1844                 }
1845
1846         layout_actions_editor_add(desc, NULL, old_path);
1847         string_list_free(old_path);
1848
1849         g_string_append(desc,   "  </menubar>"
1850                                 "</ui>" );
1851
1852         error = NULL;
1853         
1854         lw->ui_editors_id = gtk_ui_manager_add_ui_from_string(lw->ui_manager, desc->str, -1, &error);
1855         if (!lw->ui_editors_id)
1856                 {
1857                 g_message("building menus failed: %s", error->message);
1858                 g_error_free(error);
1859                 exit(EXIT_FAILURE);
1860                 }
1861         g_string_free(desc, TRUE);
1862         g_list_free(editors_list);
1863 }
1864
1865 void layout_actions_setup(LayoutWindow *lw)
1866 {
1867         GError *error;
1868         gint i;
1869
1870         DEBUG_1("%s layout_actions_setup: start", get_exec_time());
1871         if (lw->ui_manager) return;
1872
1873         lw->action_group = gtk_action_group_new("MenuActions");
1874         gtk_action_group_set_translate_func(lw->action_group, menu_translate, NULL, NULL);
1875
1876         gtk_action_group_add_actions(lw->action_group,
1877                                      menu_entries, G_N_ELEMENTS(menu_entries), lw);
1878         gtk_action_group_add_toggle_actions(lw->action_group,
1879                                             menu_toggle_entries, G_N_ELEMENTS(menu_toggle_entries), lw);
1880         gtk_action_group_add_radio_actions(lw->action_group,
1881                                            menu_radio_entries, G_N_ELEMENTS(menu_radio_entries),
1882                                            0, G_CALLBACK(layout_menu_list_cb), lw);
1883         gtk_action_group_add_radio_actions(lw->action_group,
1884                                            menu_split_radio_entries, G_N_ELEMENTS(menu_split_radio_entries),
1885                                            0, G_CALLBACK(layout_menu_split_cb), lw);
1886         gtk_action_group_add_radio_actions(lw->action_group,
1887                                            menu_view_dir_radio_entries, VIEW_DIR_TYPES_COUNT,
1888                                            0, G_CALLBACK(layout_menu_view_dir_as_cb), lw);
1889         gtk_action_group_add_radio_actions(lw->action_group,
1890                                            menu_color_radio_entries, COLOR_PROFILE_FILE + COLOR_PROFILE_INPUTS,
1891                                            0, G_CALLBACK(layout_color_menu_input_cb), lw);
1892         gtk_action_group_add_radio_actions(lw->action_group,
1893                                            menu_histogram_channel, G_N_ELEMENTS(menu_histogram_channel),
1894                                            0, G_CALLBACK(layout_menu_histogram_channel_cb), lw);
1895         gtk_action_group_add_radio_actions(lw->action_group,
1896                                            menu_histogram_mode, G_N_ELEMENTS(menu_histogram_mode),
1897                                            0, G_CALLBACK(layout_menu_histogram_mode_cb), lw);
1898
1899
1900         lw->ui_manager = gtk_ui_manager_new();
1901         gtk_ui_manager_set_add_tearoffs(lw->ui_manager, TRUE);
1902         gtk_ui_manager_insert_action_group(lw->ui_manager, lw->action_group, 0);
1903
1904         DEBUG_1("%s layout_actions_setup: add menu", get_exec_time());
1905         error = NULL;
1906         if (!gtk_ui_manager_add_ui_from_string(lw->ui_manager, menu_ui_description, -1, &error))
1907                 {
1908                 g_message("building menus failed: %s", error->message);
1909                 g_error_free(error);
1910                 exit(EXIT_FAILURE);
1911                 }
1912         
1913         DEBUG_1("%s layout_actions_setup: add toolbar", get_exec_time());
1914         for (i = 0; i < TOOLBAR_COUNT; i++)
1915                 {
1916                 layout_toolbar_clear(lw, i);
1917                 layout_toolbar_add_default(lw, i);
1918                 }
1919         
1920
1921         DEBUG_1("%s layout_actions_setup: marks", get_exec_time());
1922         layout_actions_setup_marks(lw);
1923
1924         DEBUG_1("%s layout_actions_setup: editors", get_exec_time());
1925         layout_actions_setup_editors(lw);
1926
1927         DEBUG_1("%s layout_actions_setup: status_update_write", get_exec_time());
1928         layout_util_status_update_write(lw);
1929         
1930         DEBUG_1("%s layout_actions_setup: actions_add_window", get_exec_time());
1931         layout_actions_add_window(lw, lw->window);
1932         DEBUG_1("%s layout_actions_setup: end", get_exec_time());
1933 }
1934
1935 static gint layout_editors_reload_idle_id = -1;
1936 static GList *layout_editors_desktop_files = NULL;
1937
1938 static gboolean layout_editors_reload_idle_cb(gpointer data)
1939 {
1940         if (!layout_editors_desktop_files)
1941                 {
1942                 DEBUG_1("%s layout_editors_reload_idle_cb: get_desktop_files", get_exec_time());
1943                 layout_editors_desktop_files = editor_get_desktop_files();
1944                 return TRUE;
1945                 }
1946         
1947         editor_read_desktop_file(layout_editors_desktop_files->data);
1948         g_free(layout_editors_desktop_files->data);
1949         layout_editors_desktop_files = g_list_delete_link(layout_editors_desktop_files, layout_editors_desktop_files);
1950         
1951         
1952         if (!layout_editors_desktop_files)
1953                 {
1954                 GList *work;
1955                 DEBUG_1("%s layout_editors_reload_idle_cb: setup_editors", get_exec_time());
1956                 editor_table_finish();
1957
1958                 work = layout_window_list;
1959                 while (work)
1960                         {
1961                         LayoutWindow *lw = work->data;
1962                         work = work->next;
1963                         layout_actions_setup_editors(lw);
1964                         }
1965
1966                 DEBUG_1("%s layout_editors_reload_idle_cb: setup_editors done", get_exec_time());
1967                 
1968                 layout_editors_reload_idle_id = -1;
1969                 return FALSE;
1970                 }
1971         return TRUE;
1972 }
1973
1974 void layout_editors_reload_start(void)
1975 {
1976         GList *work;
1977
1978         DEBUG_1("%s layout_editors_reload_start", get_exec_time());
1979
1980         if (layout_editors_reload_idle_id != -1)
1981                 {
1982                 g_source_remove(layout_editors_reload_idle_id);
1983                 string_list_free(layout_editors_desktop_files);
1984                 }
1985
1986         work = layout_window_list;
1987         while (work)
1988                 {
1989                 LayoutWindow *lw = work->data;
1990                 work = work->next;
1991
1992                 gtk_ui_manager_remove_ui(lw->ui_manager, lw->ui_editors_id);
1993                 gtk_ui_manager_remove_action_group(lw->ui_manager, lw->action_group_editors);
1994                 g_object_unref(lw->action_group_editors);
1995                 lw->action_group_editors = NULL;
1996                 }
1997         editor_table_clear();
1998         layout_editors_reload_idle_id = g_idle_add(layout_editors_reload_idle_cb, NULL);
1999 }
2000         
2001 void layout_editors_reload_finish(void)
2002 {
2003         if (layout_editors_reload_idle_id != -1)
2004                 {
2005                 DEBUG_1("%s layout_editors_reload_finish", get_exec_time());
2006                 g_source_remove(layout_editors_reload_idle_id);
2007                 while (layout_editors_reload_idle_id != -1)
2008                         {
2009                         layout_editors_reload_idle_cb(NULL);
2010                         }
2011                 }
2012 }
2013
2014 void layout_actions_add_window(LayoutWindow *lw, GtkWidget *window)
2015 {
2016         GtkAccelGroup *group;
2017
2018         if (!lw->ui_manager) return;
2019
2020         group = gtk_ui_manager_get_accel_group(lw->ui_manager);
2021         gtk_window_add_accel_group(GTK_WINDOW(window), group);
2022 }
2023
2024 GtkWidget *layout_actions_menu_bar(LayoutWindow *lw)
2025 {
2026         if (lw->menu_bar) return lw->menu_bar;
2027         lw->menu_bar = gtk_ui_manager_get_widget(lw->ui_manager, "/MainMenu");
2028         g_object_ref(lw->menu_bar);
2029         return lw->menu_bar;
2030 }
2031
2032 GtkWidget *layout_actions_toolbar(LayoutWindow *lw, ToolbarType type)
2033 {
2034         if (lw->toolbar[type]) return lw->toolbar[type];
2035         switch (type)
2036                 {
2037                 case TOOLBAR_MAIN:
2038                         lw->toolbar[type] = gtk_ui_manager_get_widget(lw->ui_manager, "/ToolBar");
2039                         gtk_toolbar_set_icon_size(GTK_TOOLBAR(lw->toolbar[type]), GTK_ICON_SIZE_SMALL_TOOLBAR);
2040                         gtk_toolbar_set_style(GTK_TOOLBAR(lw->toolbar[type]), GTK_TOOLBAR_ICONS);
2041                         break;
2042                 case TOOLBAR_STATUS:
2043                         lw->toolbar[type] = gtk_ui_manager_get_widget(lw->ui_manager, "/StatusBar");
2044                         gtk_toolbar_set_icon_size(GTK_TOOLBAR(lw->toolbar[type]), GTK_ICON_SIZE_MENU);
2045                         gtk_toolbar_set_style(GTK_TOOLBAR(lw->toolbar[type]), GTK_TOOLBAR_ICONS);
2046                         gtk_toolbar_set_show_arrow(GTK_TOOLBAR(lw->toolbar[type]), FALSE);
2047                         break;
2048                 default:
2049                         break;
2050                 }
2051         g_object_ref(lw->toolbar[type]);
2052         return lw->toolbar[type];
2053 }
2054
2055 void layout_toolbar_clear(LayoutWindow *lw, ToolbarType type)
2056 {
2057         if (lw->toolbar_merge_id[type]) 
2058                 {
2059                 gtk_ui_manager_remove_ui(lw->ui_manager, lw->toolbar_merge_id[type]);
2060                 gtk_ui_manager_ensure_update(lw->ui_manager);
2061                 }
2062         string_list_free(lw->toolbar_actions[type]);
2063         lw->toolbar_actions[type] = NULL;
2064         
2065         lw->toolbar_merge_id[type] = gtk_ui_manager_new_merge_id(lw->ui_manager);
2066 }
2067         
2068
2069 void layout_toolbar_add(LayoutWindow *lw, ToolbarType type, const gchar *action)
2070 {
2071         const gchar *path = NULL;
2072         if (!action || !lw->ui_manager) return;
2073         
2074         if (g_list_find_custom(lw->toolbar_actions[type], action, (GCompareFunc)strcmp)) return;
2075
2076         switch (type)
2077                 {
2078                 case TOOLBAR_MAIN:
2079                         path = "/ToolBar";
2080                         break;
2081                 case TOOLBAR_STATUS:
2082                         path = "/StatusBar";
2083                         break;
2084                 default:
2085                         break;
2086                 }
2087         
2088         
2089         if (g_str_has_suffix(action, ".desktop"))
2090                 {
2091                 /* this may be called before the external editors are read
2092                    create a dummy action for now */
2093                   
2094                 if (!lw->action_group_editors)
2095                         {
2096                         lw->action_group_editors = gtk_action_group_new("MenuActionsExternal");
2097                         gtk_ui_manager_insert_action_group(lw->ui_manager, lw->action_group_editors, 1);
2098                         }
2099                 if (!gtk_action_group_get_action(lw->action_group_editors, action))
2100                         {
2101                         GtkActionEntry entry = { action, 
2102                                                  GTK_STOCK_MISSING_IMAGE,
2103                                                  action,
2104                                                  NULL, 
2105                                                  NULL,
2106                                                  NULL };
2107                         DEBUG_1("Creating temporary action %s", action);
2108                         gtk_action_group_add_actions(lw->action_group_editors, &entry, 1, lw);
2109                         }
2110                 }
2111         gtk_ui_manager_add_ui(lw->ui_manager, lw->toolbar_merge_id[type], path, action, action, GTK_UI_MANAGER_TOOLITEM, FALSE); 
2112         lw->toolbar_actions[type] = g_list_append(lw->toolbar_actions[type], g_strdup(action));
2113 }
2114
2115
2116 void layout_toolbar_add_default(LayoutWindow *lw, ToolbarType type)
2117 {
2118         switch (type)
2119                 {
2120                 case TOOLBAR_MAIN:
2121                         layout_toolbar_add(lw, type, "Thumbnails");
2122                         layout_toolbar_add(lw, type, "Back");
2123                         layout_toolbar_add(lw, type, "Home");
2124                         layout_toolbar_add(lw, type, "Refresh");
2125                         layout_toolbar_add(lw, type, "ZoomIn");
2126                         layout_toolbar_add(lw, type, "ZoomOut");
2127                         layout_toolbar_add(lw, type, "ZoomFit");
2128                         layout_toolbar_add(lw, type, "Zoom100");
2129                         layout_toolbar_add(lw, type, "Preferences");
2130                         layout_toolbar_add(lw, type, "FloatTools");
2131                         break;
2132                 case TOOLBAR_STATUS:
2133                         layout_toolbar_add(lw, type, "ShowInfoPixel");
2134                         layout_toolbar_add(lw, type, "UseColorProfiles");
2135                         layout_toolbar_add(lw, type, "SaveMetadata");
2136                         break;
2137                 default:
2138                         break;
2139                 }
2140 }
2141
2142 void layout_toolbar_write_config(LayoutWindow *lw, ToolbarType type, GString *outstr, gint indent)
2143 {
2144         const gchar *name = NULL;
2145         GList *work = lw->toolbar_actions[type];
2146
2147         switch (type)
2148                 {
2149                 case TOOLBAR_MAIN:
2150                         name = "toolbar";
2151                         break;
2152                 case TOOLBAR_STATUS:
2153                         name = "statusbar";
2154                         break;
2155                 default:
2156                         break;
2157                 }
2158
2159         WRITE_NL(); WRITE_STRING("<%s>", name);
2160         indent++;
2161         WRITE_NL(); WRITE_STRING("<clear/>");
2162         while (work)
2163                 {
2164                 gchar *action = work->data;
2165                 work = work->next;
2166                 WRITE_NL(); WRITE_STRING("<toolitem ");
2167                 write_char_option(outstr, indent + 1, "action", action);
2168                 WRITE_STRING("/>");
2169                 }
2170         indent--;
2171         WRITE_NL(); WRITE_STRING("</%s>", name);
2172 }
2173
2174 void layout_toolbar_add_from_config(LayoutWindow *lw, ToolbarType type, const gchar **attribute_names, const gchar **attribute_values)
2175 {
2176         gchar *action = NULL;
2177         
2178         while (*attribute_names)
2179                 {
2180                 const gchar *option = *attribute_names++;
2181                 const gchar *value = *attribute_values++;
2182
2183                 if (READ_CHAR_FULL("action", action)) continue;
2184
2185                 log_printf("unknown attribute %s = %s\n", option, value);
2186                 }
2187
2188         layout_toolbar_add(lw, type, action);
2189         g_free(action); 
2190 }
2191
2192 /*
2193  *-----------------------------------------------------------------------------
2194  * misc
2195  *-----------------------------------------------------------------------------
2196  */
2197
2198 void layout_util_status_update_write(LayoutWindow *lw)
2199 {
2200         GtkAction *action;
2201         gint n = metadata_queue_length();
2202         action = gtk_action_group_get_action(lw->action_group, "SaveMetadata");
2203         gtk_action_set_sensitive(action, n > 0);
2204         if (n > 0)
2205                 {
2206                 gchar *buf = g_strdup_printf(_("Number of files with unsaved metadata: %d"), n);
2207                 g_object_set(G_OBJECT(action), "tooltip", buf, NULL);
2208                 g_free(buf);
2209                 }
2210         else
2211                 {
2212                 g_object_set(G_OBJECT(action), "tooltip", _("No unsaved metadata"), NULL);
2213                 }
2214 }
2215
2216 void layout_util_status_update_write_all(void)
2217 {
2218         GList *work;
2219
2220         work = layout_window_list;
2221         while (work)
2222                 {
2223                 LayoutWindow *lw = work->data;
2224                 work = work->next;
2225
2226                 layout_util_status_update_write(lw);
2227                 }
2228 }
2229
2230 static gchar *layout_color_name_parse(const gchar *name)
2231 {
2232         if (!name || !*name) return g_strdup(_("Empty"));
2233         return g_strdelimit(g_strdup(name), "_", '-');
2234 }
2235
2236 void layout_util_sync_color(LayoutWindow *lw)
2237 {
2238         GtkAction *action;
2239         gint input = 0;
2240         gboolean use_color;
2241         gboolean use_image = FALSE;
2242         gint i;
2243         gchar action_name[15];
2244         gchar *image_profile;
2245         gchar *screen_profile;
2246
2247
2248         if (!lw->action_group) return;
2249         if (!layout_image_color_profile_get(lw, &input, &use_image)) return;
2250         
2251         use_color = layout_image_color_profile_get_use(lw);
2252
2253         action = gtk_action_group_get_action(lw->action_group, "UseColorProfiles");
2254 #ifdef HAVE_LCMS
2255         gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), use_color);
2256         if (layout_image_color_profile_get_status(lw, &image_profile, &screen_profile))
2257                 {
2258                 gchar *buf;
2259                 buf = g_strdup_printf(_("Image profile: %s\nScreen profile: %s"), image_profile, screen_profile);
2260                 g_object_set(G_OBJECT(action), "tooltip", buf, NULL);
2261                 g_free(image_profile);
2262                 g_free(screen_profile);
2263                 g_free(buf);
2264                 }
2265         else
2266                 {
2267                 g_object_set(G_OBJECT(action), "tooltip", _("Click to enable color management"), NULL);
2268                 }
2269 #else
2270         gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), FALSE);
2271         gtk_action_set_sensitive(action, FALSE);
2272         g_object_set(G_OBJECT(action), "tooltip", _("Color profiles not supported"), NULL);
2273 #endif
2274
2275         action = gtk_action_group_get_action(lw->action_group, "UseImageProfile");
2276         gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), use_image);
2277         gtk_action_set_sensitive(action, use_color);
2278
2279         for (i = 0; i < COLOR_PROFILE_FILE + COLOR_PROFILE_INPUTS; i++)
2280                 {
2281                 sprintf(action_name, "ColorProfile%d", i);
2282                 action = gtk_action_group_get_action(lw->action_group, action_name);
2283                 
2284                 if (i >= COLOR_PROFILE_FILE)
2285                         {
2286                         const gchar *name = options->color_profile.input_name[i - COLOR_PROFILE_FILE];
2287                         const gchar *file = options->color_profile.input_file[i - COLOR_PROFILE_FILE];
2288                         gchar *end;
2289                         gchar *buf;
2290
2291                         if (!name || !name[0]) name = filename_from_path(file);
2292
2293                         end = layout_color_name_parse(name);
2294                         buf = g_strdup_printf(_("Input _%d: %s"), i, end);
2295                         g_free(end);
2296
2297                         g_object_set(G_OBJECT(action), "label", buf, NULL);
2298                         g_free(buf);
2299
2300                         gtk_action_set_visible(action, file && file[0]);
2301                         }
2302
2303                 gtk_action_set_sensitive(action, !use_image);
2304                 gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), (i == input));
2305                 }
2306
2307         action = gtk_action_group_get_action(lw->action_group, "Grayscale");
2308         gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), layout_image_get_desaturate(lw));
2309 }
2310
2311 static void layout_util_sync_views(LayoutWindow *lw)
2312 {
2313         GtkAction *action;
2314         OsdShowFlags osd_flags = image_osd_get(lw->image);
2315
2316         if (!lw->action_group) return;
2317
2318         action = gtk_action_group_get_action(lw->action_group, "FolderTree");
2319         radio_action_set_current_value(GTK_RADIO_ACTION(action), lw->options.dir_view_type);
2320
2321         action = gtk_action_group_get_action(lw->action_group, "SplitSingle");
2322         radio_action_set_current_value(GTK_RADIO_ACTION(action), lw->split_mode);
2323
2324         action = gtk_action_group_get_action(lw->action_group, "ViewIcons");
2325         radio_action_set_current_value(GTK_RADIO_ACTION(action), lw->options.file_view_type);
2326
2327         action = gtk_action_group_get_action(lw->action_group, "FloatTools");
2328         gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), lw->options.tools_float);
2329
2330         action = gtk_action_group_get_action(lw->action_group, "SBar");
2331         gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), layout_bar_enabled(lw));
2332
2333         action = gtk_action_group_get_action(lw->action_group, "SBarSort");
2334         gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), layout_bar_sort_enabled(lw));
2335
2336         action = gtk_action_group_get_action(lw->action_group, "HideToolbar");
2337         gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), lw->options.toolbar_hidden);
2338         
2339         action = gtk_action_group_get_action(lw->action_group, "ShowInfoPixel");
2340         gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), lw->options.show_info_pixel);
2341
2342         action = gtk_action_group_get_action(lw->action_group, "ShowMarks");
2343         gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), lw->options.show_marks);
2344
2345         action = gtk_action_group_get_action(lw->action_group, "SlideShow");
2346         gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), layout_image_slideshow_active(lw));
2347
2348         action = gtk_action_group_get_action(lw->action_group, "ImageOverlay");
2349         gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), osd_flags != OSD_SHOW_NOTHING);
2350
2351         action = gtk_action_group_get_action(lw->action_group, "ImageHistogram");
2352         gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), osd_flags & OSD_SHOW_HISTOGRAM);
2353
2354         if (osd_flags & OSD_SHOW_HISTOGRAM)
2355                 {
2356                 action = gtk_action_group_get_action(lw->action_group, "HistogramChanR");
2357                 radio_action_set_current_value(GTK_RADIO_ACTION(action), image_osd_histogram_get_channel(lw->image));
2358
2359                 action = gtk_action_group_get_action(lw->action_group, "HistogramModeLin");
2360                 radio_action_set_current_value(GTK_RADIO_ACTION(action), image_osd_histogram_get_mode(lw->image));
2361                 }
2362
2363         action = gtk_action_group_get_action(lw->action_group, "ConnectZoomMenu");
2364         gtk_action_set_sensitive(action, lw->split_mode != SPLIT_NONE);
2365
2366         layout_util_sync_color(lw);
2367 }
2368
2369 void layout_util_sync_thumb(LayoutWindow *lw)
2370 {
2371         GtkAction *action;
2372
2373         if (!lw->action_group) return;
2374
2375         action = gtk_action_group_get_action(lw->action_group, "Thumbnails");
2376         gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), lw->options.show_thumbnails);
2377         g_object_set(action, "sensitive", (lw->options.file_view_type == FILEVIEW_LIST), NULL);
2378 }
2379
2380 void layout_util_sync(LayoutWindow *lw)
2381 {
2382         layout_util_sync_views(lw);
2383         layout_util_sync_thumb(lw);
2384         layout_menu_recent_update(lw);
2385 //      layout_menu_edit_update(lw);
2386 }
2387
2388
2389 /*
2390  *-----------------------------------------------------------------------------
2391  * sidebars
2392  *-----------------------------------------------------------------------------
2393  */
2394
2395 static gboolean layout_bar_enabled(LayoutWindow *lw)
2396 {
2397         return lw->bar && GTK_WIDGET_VISIBLE(lw->bar);
2398 }
2399
2400 static void layout_bar_destroyed(GtkWidget *widget, gpointer data)
2401 {
2402         LayoutWindow *lw = data;
2403
2404         lw->bar = NULL;
2405 /* 
2406     do not call layout_util_sync_views(lw) here
2407     this is called either when whole layout is destroyed - no need for update
2408     or when the bar is replaced - sync is called by upper function at the end of whole operation
2409
2410 */
2411 }
2412
2413 static void layout_bar_set_default(LayoutWindow *lw)
2414 {
2415         GtkWidget *bar;
2416         
2417         if (!lw->utility_box) return;
2418
2419         bar = bar_new(lw);
2420         
2421         layout_bar_set(lw, bar);
2422         
2423         bar_populate_default(bar);
2424 }
2425
2426 static void layout_bar_close(LayoutWindow *lw)
2427 {
2428         if (lw->bar)
2429                 {
2430                 bar_close(lw->bar);
2431                 lw->bar = NULL;
2432                 }
2433 }
2434
2435
2436 void layout_bar_set(LayoutWindow *lw, GtkWidget *bar)
2437 {
2438         if (!lw->utility_box) return;
2439
2440         layout_bar_close(lw); /* if any */
2441
2442         if (!bar) return;
2443         lw->bar = bar;
2444
2445         g_signal_connect(G_OBJECT(lw->bar), "destroy",
2446                          G_CALLBACK(layout_bar_destroyed), lw);
2447
2448
2449 //      gtk_box_pack_start(GTK_BOX(lw->utility_box), lw->bar, FALSE, FALSE, 0);
2450         gtk_paned_pack2(GTK_PANED(lw->utility_paned), lw->bar, FALSE, TRUE); 
2451
2452         bar_set_fd(lw->bar, layout_image_get_fd(lw));
2453 }
2454
2455
2456 void layout_bar_toggle(LayoutWindow *lw)
2457 {
2458         if (layout_bar_enabled(lw))
2459                 {
2460                 gtk_widget_hide(lw->bar);
2461                 }
2462         else
2463                 {
2464                 if (!lw->bar)
2465                         {
2466                         layout_bar_set_default(lw);
2467                         }
2468                 gtk_widget_show(lw->bar);
2469                 bar_set_fd(lw->bar, layout_image_get_fd(lw));
2470                 }
2471         layout_util_sync_views(lw);
2472 }
2473
2474 static void layout_bar_new_image(LayoutWindow *lw)
2475 {
2476         if (!layout_bar_enabled(lw)) return;
2477
2478         bar_set_fd(lw->bar, layout_image_get_fd(lw));
2479 }
2480
2481 static void layout_bar_new_selection(LayoutWindow *lw, gint count)
2482 {
2483         if (!layout_bar_enabled(lw)) return;
2484
2485         bar_notify_selection(lw->bar, count);
2486 }
2487
2488 static gboolean layout_bar_sort_enabled(LayoutWindow *lw)
2489 {
2490         return lw->bar_sort && GTK_WIDGET_VISIBLE(lw->bar_sort);
2491 }
2492
2493
2494 static void layout_bar_sort_destroyed(GtkWidget *widget, gpointer data)
2495 {
2496         LayoutWindow *lw = data;
2497
2498         lw->bar_sort = NULL;
2499
2500 /* 
2501     do not call layout_util_sync_views(lw) here
2502     this is called either when whole layout is destroyed - no need for update
2503     or when the bar is replaced - sync is called by upper function at the end of whole operation
2504
2505 */
2506 }
2507
2508 static void layout_bar_sort_set_default(LayoutWindow *lw)
2509 {
2510         GtkWidget *bar;
2511         
2512         if (!lw->utility_box) return;
2513
2514         bar = bar_sort_new_default(lw);
2515         
2516         layout_bar_sort_set(lw, bar);
2517 }
2518
2519 static void layout_bar_sort_close(LayoutWindow *lw)
2520 {
2521         if (lw->bar_sort)
2522                 {
2523                 bar_sort_close(lw->bar_sort);
2524                 lw->bar_sort = NULL;
2525                 }
2526 }
2527
2528 void layout_bar_sort_set(LayoutWindow *lw, GtkWidget *bar)
2529 {
2530         if (!lw->utility_box) return;
2531
2532         layout_bar_sort_close(lw); /* if any */
2533
2534         if (!bar) return;
2535         lw->bar_sort = bar;
2536
2537         g_signal_connect(G_OBJECT(lw->bar_sort), "destroy",
2538                          G_CALLBACK(layout_bar_sort_destroyed), lw);
2539
2540         gtk_box_pack_end(GTK_BOX(lw->utility_box), lw->bar_sort, FALSE, FALSE, 0);
2541 }
2542
2543 void layout_bar_sort_toggle(LayoutWindow *lw)
2544 {
2545         if (layout_bar_sort_enabled(lw))
2546                 {
2547                 gtk_widget_hide(lw->bar_sort);
2548                 }
2549         else
2550                 {
2551                 if (!lw->bar_sort)
2552                         {
2553                         layout_bar_sort_set_default(lw);
2554                         }
2555                 gtk_widget_show(lw->bar_sort);
2556                 }
2557         layout_util_sync_views(lw);
2558 }
2559
2560 void layout_bars_new_image(LayoutWindow *lw)
2561 {
2562         layout_bar_new_image(lw);
2563
2564         if (lw->exif_window) advanced_exif_set_fd(lw->exif_window, layout_image_get_fd(lw));
2565
2566         /* this should be called here to handle the metadata edited in bars */
2567         if (options->metadata.confirm_on_image_change)
2568                 metadata_write_queue_confirm(FALSE, NULL, NULL);
2569 }
2570
2571 void layout_bars_new_selection(LayoutWindow *lw, gint count)
2572 {
2573         layout_bar_new_selection(lw, count);
2574 }
2575
2576 GtkWidget *layout_bars_prepare(LayoutWindow *lw, GtkWidget *image)
2577 {
2578         if (lw->utility_box) return lw->utility_box;
2579         lw->utility_box = gtk_hbox_new(FALSE, PREF_PAD_GAP);
2580         lw->utility_paned = gtk_hpaned_new();
2581         gtk_box_pack_start(GTK_BOX(lw->utility_box), lw->utility_paned, TRUE, TRUE, 0);
2582
2583         gtk_paned_pack1(GTK_PANED(lw->utility_paned), image, TRUE, FALSE); 
2584         gtk_widget_show(lw->utility_paned);
2585         
2586         gtk_widget_show(image);
2587
2588         g_object_ref(lw->utility_box);
2589         return lw->utility_box;
2590 }
2591
2592 void layout_bars_close(LayoutWindow *lw)
2593 {
2594         layout_bar_sort_close(lw);
2595         layout_bar_close(lw);
2596 }
2597
2598 static void layout_exif_window_destroy(GtkWidget *widget, gpointer data)
2599 {
2600         LayoutWindow *lw = data;
2601         lw->exif_window = NULL;
2602 }
2603
2604 void layout_exif_window_new(LayoutWindow *lw)
2605 {
2606         if (lw->exif_window) return; 
2607         
2608         lw->exif_window = advanced_exif_new();
2609         if (!lw->exif_window) return;
2610         g_signal_connect(G_OBJECT(lw->exif_window), "destroy",
2611                          G_CALLBACK(layout_exif_window_destroy), lw);
2612         advanced_exif_set_fd(lw->exif_window, layout_image_get_fd(lw));
2613 }
2614
2615 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */