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