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