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