aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-window-actions.c
blob: 937ce5b391e79923d5e44beb4208ac6f9ed027d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
/*
 * e-shell-window-actions.c
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) version 3.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with the program; if not, see <http://www.gnu.org/licenses/>
 *
 *
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
 *
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include "e-shell-window-private.h"

#define EVOLUTION_COPYRIGHT \
    "Copyright \xC2\xA9 1999 - 2008 Novell, Inc. and Others\n" \
    "Copyright \xC2\xA9 2008 - 2013 The Evolution Team"

/* Authors and Documenters
 *
 * The names below must be in UTF-8.  The breaking of escaped strings
 * is so the hexadecimal sequences don't swallow too many characters.
 *
 * SO THAT MEANS, FOR 8-BIT CHARACTERS USE \xXX HEX ENCODING ONLY!
 *
 * Not all environments are UTF-8 and not all editors can handle it.
 */
static const gchar *authors[] = {
    "The Evolution Team",
    "",
    "Matthew Barnes <mbarnes@redhat.com>",
    "Milan Crha <mcrha@redhat.com>",
    "Dan Vr\xC3\xA1til <dvratil@redhat.com>",
    "",
    "and many past contributers",
    NULL
};

static const gchar *documenters[] = {
    "Andre Klapper",
    NULL
};

/**
 * E_SHELL_WINDOW_ACTION_ABOUT:
 * @window: an #EShellWindow
 *
 * Activation of this action displays the application's About dialog.
 *
 * Main menu item: Help -> About
 **/
static void
action_about_cb (GtkAction *action,
                 EShellWindow *shell_window)
{
    gchar *translator_credits;

    /* The translator-credits string is for translators to list
     * per-language credits for translation, displayed in the
     * about dialog. */
    translator_credits = _("translator-credits");
    if (strcmp (translator_credits, "translator-credits") == 0)
        translator_credits = NULL;

    gtk_show_about_dialog (
        GTK_WINDOW (shell_window),
        "program-name", "Evolution",
        "version", VERSION,
        "copyright", EVOLUTION_COPYRIGHT,
        "comments", _("Groupware Suite"),
        "website", PACKAGE_URL,
        "website-label", _("Evolution Website"),
        "authors", authors,
        "documenters", documenters,
        "translator-credits", translator_credits,
        "logo-icon-name", "evolution",
        "license-type", GTK_LICENSE_GPL_2_0,
        NULL);
}

/**
 * E_SHELL_WINDOW_ACTION_CLOSE:
 * @window: an #EShellWindow
 *
 * Activation of this action closes @window.  If this is the last window,
 * the application initiates shutdown.
 *
 * Main menu item: File -> Close
 **/
static void
action_close_cb (GtkAction *action,
                 EShellWindow *shell_window)
{
    GtkWidget *widget;
    GdkWindow *window;
    GdkEvent *event;

    widget = GTK_WIDGET (shell_window);
    window = gtk_widget_get_window (widget);

    /* Synthesize a delete_event on this window. */
    event = gdk_event_new (GDK_DELETE);
    event->any.window = g_object_ref (window);
    event->any.send_event = TRUE;
    gtk_main_do_event (event);
    gdk_event_free (event);
}

/**
 * E_SHELL_WINDOW_ACTION_CONTENTS:
 * @window: an #EShellWindow
 *
 * Activation of this action opens the application's user manual.
 *
 * Main menu item: Help -> Contents
 **/
static void
action_contents_cb (GtkAction *action,
                    EShellWindow *shell_window)
{
#ifdef G_OS_WIN32
    /* On Windows, link to online help instead.
     * See https://bugzilla.gnome.org/show_bug.cgi?id=576478 */
    gchar *online_help_url;

    online_help_url = g_strconcat (
        "http://library.gnome.org/users/evolution/",
        BASE_VERSION, NULL);
    e_show_uri (GTK_WINDOW (shell_window), online_help_url);
    g_free (online_help_url);
#else
    e_display_help (GTK_WINDOW (shell_window), NULL);
#endif
}

static void
action_custom_rule_cb (GtkAction *action,
                       EShellWindow *shell_window)
{
    EFilterRule *rule;
    EShellView *shell_view;
    const gchar *view_name;

    rule = g_object_get_data (G_OBJECT (action), "rule");
    g_return_if_fail (rule != NULL);

    view_name = e_shell_window_get_active_view (shell_window);
    shell_view = e_shell_window_get_shell_view (shell_window, view_name);

    rule = g_object_get_data (G_OBJECT (action), "rule");
    g_return_if_fail (E_IS_FILTER_RULE (rule));

    e_shell_view_custom_search (shell_view, rule);
}

/**
 * E_SHELL_WINDOW_ACTION_GAL_DELETE_VIEW:
 * @window: an #EShellWindow
 *
 * Activation of this action deletes the current user-created GAL view.
 *
 * Main menu item: View -> Current View -> Delete Current View
 **/
static void
action_gal_delete_view_cb (GtkAction *action,
                           EShellWindow *shell_window)
{
    EShellView *shell_view;
    GalViewInstance *view_instance;
    const gchar *view_name;
    gchar *gal_view_id;
    gint index = -1;

    view_name = e_shell_window_get_active_view (shell_window);
    shell_view = e_shell_window_get_shell_view (shell_window, view_name);
    view_instance = e_shell_view_get_view_instance (shell_view);
    g_return_if_fail (view_instance != NULL);

    /* XXX This is kinda cumbersome.  The view collection API
     *     should be using only view ID's, not index numbers. */
    gal_view_id = gal_view_instance_get_current_view_id (view_instance);
    if (gal_view_id != NULL) {
        index = gal_view_collection_get_view_index_by_id (
            view_instance->collection, gal_view_id);
        g_free (gal_view_id);
    }

    gal_view_collection_delete_view (view_instance->collection, index);

    gal_view_collection_save (view_instance->collection);
}

/**
 * E_SHELL_WINDOW_ACTION_GAL_CUSTOM_VIEW:
 * @window: an #EShellWindow
 *
 * This radio action is selected when using a custom GAL view that has
 * not been saved.
 *
 * Main menu item: View -> Current View -> Custom View
 **/
static void
action_gal_view_cb (GtkRadioAction *action,
                    GtkRadioAction *current,
                    EShellWindow *shell_window)
{
    EShellView *shell_view;
    const gchar *view_name;
    const gchar *view_id;

    view_name = e_shell_window_get_active_view (shell_window);
    shell_view = e_shell_window_get_shell_view (shell_window, view_name);
    view_id = g_object_get_data (G_OBJECT (current), "view-id");
    e_shell_view_set_view_id (shell_view, view_id);
}

/**
 * E_SHELL_WINDOW_ACTION_GAL_SAVE_CUSTOM_VIEW:
 * @window: an #EShellWindow
 *
 * Activation of this action saves a custom GAL view.
 *
 * Main menu item: View -> Current View -> Save Custom View...
 **/
static void
action_gal_save_custom_view_cb (GtkAction *action,
                                EShellWindow *shell_window)
{
    EShellView *shell_view;
    GalViewInstance *view_instance;
    const gchar *view_name;

    view_name = e_shell_window_get_active_view (shell_window);
    shell_view = e_shell_window_get_shell_view (shell_window, view_name);
    view_instance = e_shell_view_get_view_instance (shell_view);

    gal_view_instance_save_as (view_instance);
}

/**
 * E_SHELL_WINDOW_ACTION_IMPORT:
 * @window: an #EShellWindow
 *
 * Activation of this action opens the Evolution Import Assistant.
 *
 * Main menu item: File -> Import...
 **/
static void
action_import_cb (GtkAction *action,
                  EShellWindow *shell_window)
{
    GtkWidget *assistant;

    assistant = e_import_assistant_new (GTK_WINDOW (shell_window));

    /* These are "Run Last" signals, so use g_signal_connect_after()
     * to give the default handlers a chance to run before we destroy
     * the window. */

    g_signal_connect_after (
        assistant, "cancel",
        G_CALLBACK (gtk_widget_destroy), NULL);

    g_signal_connect_after (
        assistant, "finished",
        G_CALLBACK (gtk_widget_destroy), NULL);

    gtk_widget_show (assistant);
}

/**
 * E_SHELL_WINDOW_ACTION_NEW_WINDOW:
 * @window: an #EShellWindow
 *
 * Activation of this action opens a new shell window.
 *
 * Main menu item: File -> New Window
 **/
static void
action_new_window_cb (GtkAction *action,
                      EShellWindow *shell_window)
{
    EShell *shell;
    const gchar *view_name;

    shell = e_shell_window_get_shell (shell_window);
    view_name = e_shell_window_get_active_view (shell_window);

    e_shell_create_shell_window (shell, view_name);
}

/**
 * E_SHELL_WINDOW_ACTION_PAGE_SETUP:
 * @window: an #EShellWindow
 *
 * Activation of this action opens the application's Page Setup dialog.
 *
 * Main menu item: File -> Page Setup...
 **/
static void
action_page_setup_cb (GtkAction *action,
                      EShellWindow *shell_window)
{
    e_print_run_page_setup_dialog (GTK_WINDOW (shell_window));
}

/**
 * E_SHELL_WINDOW_ACTION_CATEGORIES
 * @window: and #EShellWindow
 *
 * Activation of this action opens the Categories Editor dialog.
 *
 * Main menu item: Edit -> Available categories
 **/
static void
action_categories_cb (GtkAction *action,
                      EShellWindow *shell_window)
{
    GtkWidget *content_area;
    GtkWidget *dialog;
    GtkWidget *editor;

    editor = e_categories_editor_new ();
    e_categories_editor_set_entry_visible (
        E_CATEGORIES_EDITOR (editor), FALSE);

    dialog = gtk_dialog_new_with_buttons (
        _("Categories Editor"),
        GTK_WINDOW (shell_window),
        GTK_DIALOG_DESTROY_WITH_PARENT,
        GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE, NULL);
    gtk_container_set_border_width (GTK_CONTAINER (dialog), 12);
    content_area = gtk_dialog_get_content_area (GTK_DIALOG (dialog));
    gtk_box_pack_start (
        GTK_BOX (content_area), GTK_WIDGET (editor), TRUE, TRUE, 6);
    gtk_box_set_spacing (GTK_BOX (content_area), 12);

    gtk_dialog_run (GTK_DIALOG (dialog));

    gtk_widget_destroy (dialog);
}

/**
 * E_SHELL_WINDOW_ACTION_PREFERENCES:
 * @window: an #EShellWindow
 *
 * Activation of this action opens the application's Preferences window.
 *
 * Main menu item: Edit -> Preferences
 **/
static void
action_preferences_cb (GtkAction *action,
                       EShellWindow *shell_window)
{
    EShell *shell;
    GtkWidget *preferences_window;
    EShellView *shell_view;
    EShellBackend *shell_backend;
    EShellBackendClass *shell_backend_class;
    const gchar *view_name;

    shell = e_shell_window_get_shell (shell_window);
    preferences_window = e_shell_get_preferences_window (shell);
    e_preferences_window_setup (E_PREFERENCES_WINDOW (preferences_window));

    gtk_window_set_transient_for (
        GTK_WINDOW (preferences_window),
        GTK_WINDOW (shell_window));
    gtk_window_set_position (
        GTK_WINDOW (preferences_window),
        GTK_WIN_POS_CENTER_ON_PARENT);
    gtk_window_present (GTK_WINDOW (preferences_window));

    view_name = e_shell_window_get_active_view (shell_window);
    shell_view = e_shell_window_get_shell_view (shell_window, view_name);

    shell_backend = e_shell_view_get_shell_backend (shell_view);
    shell_backend_class = E_SHELL_BACKEND_GET_CLASS (shell_backend);

    if (shell_backend_class->preferences_page != NULL)
        e_preferences_window_show_page (
            E_PREFERENCES_WINDOW (preferences_window),
            shell_backend_class->preferences_page);
}

/**
 * E_SHELL_WINDOW_ACTION_QUICK_REFERENCE:
 * @window: an #EShellWindow
 *
 * Activation of this action opens a printable table of useful shortcut
 * keys for this application.
 *
 * Main menu item: Help -> Quick Reference
 **/
static void
action_quick_reference_cb (GtkAction *action,
                           EShellWindow *shell_window)
{
    const gchar * const *language_names;
    gboolean app_launched = FALSE;

    language_names = g_get_language_names ();
    while (*language_names != NULL && !app_launched) {
        const gchar *language = *language_names++;
        gchar *filename;

        /* This must be a valid language AND a language with
         * no encoding suffix.  The next language should have
         * no encoding suffix. */
        if (language == NULL || strchr (language, '.') != NULL)
            continue;

        filename = g_build_filename (
            EVOLUTION_HELPDIR, "quickref",
            language, "quickref.pdf", NULL);

        if (g_file_test (filename, G_FILE_TEST_EXISTS)) {
            GFile *file;
            gchar *uri;
            GError *error = NULL;

            file = g_file_new_for_path (filename);
            uri = g_file_get_uri (file);

            app_launched = g_app_info_launch_default_for_uri (
                uri, NULL, &error);

            if (error != NULL) {
                /* FIXME Show an error dialog. */
                g_warning ("%s", error->message);
                g_error_free (error);
            }

            g_object_unref (file);
            g_free (uri);
        }

        g_free (filename);
    }
}

/**
 * E_SHELL_WINDOW_ACTION_QUIT:
 * @window: an #EShellWindow
 *
 * Activation of this action initiates application shutdown.
 *
 * Main menu item: File -> Quit
 **/
static void
action_quit_cb (GtkAction *action,
                EShellWindow *shell_window)
{
    EShell *shell;

    shell = e_shell_window_get_shell (shell_window);
    e_shell_quit (shell, E_SHELL_QUIT_ACTION);
}

/**
 * E_SHELL_WINDOW_ACTION_SEARCH_ADVANCED:
 * @window: an #EShellWindow
 *
 * Activation of this action opens an Advanced Search dialog.
 *
 * Main menu item: Search -> Advanced Search...
 **/
static void
action_search_advanced_cb (GtkAction *action,
                           EShellWindow *shell_window)
{
    EShellView *shell_view;
    EShellContent *shell_content;
    const gchar *view_name;

    view_name = e_shell_window_get_active_view (shell_window);
    shell_view = e_shell_window_get_shell_view (shell_window, view_name);
    shell_content = e_shell_view_get_shell_content (shell_view);

    e_shell_content_run_advanced_search_dialog (shell_content);
    e_shell_window_update_search_menu (shell_window);
}

/**
 * E_SHELL_WINDOW_ACTION_SEARCH_CLEAR:
 * @window: an #EShellWindow
 *
 * Activation of this action clears the most recent search results.
 *
 * Main menu item: Search -> Clear
 **/
static void
action_search_clear_cb (GtkAction *action,
                        EShellWindow *shell_window)
{
    EShellView *shell_view;
    const gchar *view_name;

    view_name = e_shell_window_get_active_view (shell_window);
    shell_view = e_shell_window_get_shell_view (shell_window, view_name);

    e_shell_view_clear_search (shell_view);
}

/**
 * E_SHELL_WINDOW_ACTION_SEARCH_EDIT:
 * @window: an #EShellWindow
 *
 * Activation of this action opens a dialog for editing saved searches.
 *
 * Main menu item: Search -> Edit Saved Searches...
 **/
static void
action_search_edit_cb (GtkAction *action,
                       EShellWindow *shell_window)
{
    EShellView *shell_view;
    EShellContent *shell_content;
    const gchar *view_name;

    view_name = e_shell_window_get_active_view (shell_window);
    shell_view = e_shell_window_get_shell_view (shell_window, view_name);
    shell_content = e_shell_view_get_shell_content (shell_view);

    e_shell_content_run_edit_searches_dialog (shell_content);
    e_shell_window_update_search_menu (shell_window);
}

/**
 * E_SHELL_WINDOW_ACTION_SEARCH_OPTIONS:
 * @window: an #EShellWindow
 *
 * Activation of this action displays a menu of search options.
 * This appears as a "find" icon in the window's search entry.
 **/
static void
action_search_options_cb (GtkAction *action,
                          EShellWindow *shell_window)
{
    EShellView *shell_view;
    EShellViewClass *shell_view_class;
    const gchar *view_name;
    const gchar *widget_path;

    view_name = e_shell_window_get_active_view (shell_window);
    shell_view = e_shell_window_get_shell_view (shell_window, view_name);
    shell_view_class = E_SHELL_VIEW_GET_CLASS (shell_view);

    widget_path = shell_view_class->search_options;
    e_shell_view_show_popup_menu (shell_view, widget_path, NULL);
}

/**
 * E_SHELL_WINDOW_ACTION_SEARCH_QUICK:
 * @window: an #EShellWindow
 *
 * Activation of this action executes the current search conditions.
 *
 * Main menu item: Search -> Find Now
 **/
static void
action_search_quick_cb (GtkAction *action,
                        EShellWindow *shell_window)
{
    EShellView *shell_view;
    const gchar *view_name;

    view_name = e_shell_window_get_active_view (shell_window);
    shell_view = e_shell_window_get_shell_view (shell_window, view_name);

    e_shell_view_execute_search (shell_view);
}

/**
 * E_SHELL_WINDOW_ACTION_SEARCH_SAVE:
 * @window: an #EShellWindow
 *
 * Activation of this action saves the current search conditions.
 *
 * Main menu item: Search -> Save Search...
 **/
static void
action_search_save_cb (GtkAction *action,
                       EShellWindow *shell_window)
{
    EShellView *shell_view;
    EShellContent *shell_content;
    const gchar *view_name;

    view_name = e_shell_window_get_active_view (shell_window);
    shell_view = e_shell_window_get_shell_view (shell_window, view_name);
    shell_content = e_shell_view_get_shell_content (shell_view);

    e_shell_content_run_save_search_dialog (shell_content);
    e_shell_window_update_search_menu (shell_window);
}

/**
 * E_SHELL_WINDOW_ACTION_SHOW_SIDEBAR:
 * @window: an #EShellWindow
 *
 * This toggle action controls whether the side bar is visible.
 *
 * Main menu item: View -> Layout -> Show Side Bar
 **/

/**
 * E_SHELL_WINDOW_ACTION_SHOW_SWITCHER:
 * @window: an #EShellWindow
 *
 * This toggle action controls whether the switcher buttons are visible.
 *
 * Main menu item: View -> Switcher Appearance -> Show Buttons
 **/

/**
 * E_SHELL_WINDOW_ACTION_SHOW_TASKBAR:
 * @window: an #EShellWindow
 *
 * This toggle action controls whether the task bar is visible.
 *
 * Main menu item: View -> Layout -> Show Status Bar
 **/

/**
 * E_SHELL_WINDOW_ACTION_SHOW_TOOLBAR:
 * @window: an #EShellWindow
 *
 * This toggle action controls whether the tool bar is visible.
 *
 * Main menu item: View -> Layout -> Show Tool Bar
 **/

/**
 * E_SHELL_WINDOW_ACTION_SUBMIT_BUG:
 * @window: an #EShellWindow
 *
 * Activation of this action allows users to report a bug using
 * Bug Buddy.
 *
 * Main menu item: Help -> Submit Bug Report
 **/
static void
action_submit_bug_cb (GtkAction *action,
                      EShellWindow *shell_window)
{
    const gchar *command_line;
    GError *error = NULL;

    command_line = "bug-buddy --package=Evolution";

    g_debug ("Spawning: %s", command_line);
    g_spawn_command_line_async (command_line, &error);

    if (error != NULL) {
        e_notice (
            shell_window, GTK_MESSAGE_ERROR,
            error->code == G_SPAWN_ERROR_NOENT ?
            _("Bug Buddy is not installed.") :
            _("Bug Buddy could not be run."));
        g_error_free (error);
    }
}

static void
action_switcher_cb (GtkRadioAction *action,
                    GtkRadioAction *current,
                    EShellWindow *shell_window)
{
    const gchar *view_name;

    view_name = g_object_get_data (G_OBJECT (current), "view-name");
    e_shell_window_switch_to_view (shell_window, view_name);
}

static void
action_new_view_window_cb (GtkAction *action,
                           EShellWindow *shell_window)
{
    EShell *shell;
    const gchar *view_name;

    shell = e_shell_window_get_shell (shell_window);
    view_name = g_object_get_data (G_OBJECT (action), "view-name");

    fprintf (stderr, "create new window: %s\n", view_name);

    e_shell_create_shell_window (shell, view_name);
}

/**
 * E_SHELL_WINDOW_ACTION_SWITCHER_STYLE_BOTH:
 * @window: an #EShellWindow
 *
 * This radio action displays switcher buttons with icons and text.
 *
 * Main menu item: View -> Switcher Appearance -> Icons and Text
 **/

/**
 * E_SHELL_WINDOW_ACTION_SWITCHER_STYLE_ICONS:
 * @window: an #EShellWindow
 *
 * This radio action displays switcher buttons with icons only.
 *
 * Main menu item: View -> Switcher Appearance -> Icons Only
 **/

/**
 * E_SHELL_WINDOW_ACTION_SWITCHER_STYLE_TEXT:
 * @window: an #EShellWindow
 *
 * This radio action displays switcher buttons with text only.
 *
 * Main menu item: View -> Switcher Appearance -> Text Only
 **/

/**
 * E_SHELL_WINDOW_ACTION_SWITCHER_STYLE_USER:
 * @window: an #EShellWindow
 *
 * This radio action displays switcher buttons according to the desktop
 * toolbar setting.
 *
 * Main menu item: View -> Switcher Appearance -> Toolbar Style
 **/
static void
action_switcher_style_cb (GtkRadioAction *action,
                          GtkRadioAction *current,
                          EShellWindow *shell_window)
{
    EShellSwitcher *switcher;
    GtkToolbarStyle style;

    switcher = E_SHELL_SWITCHER (shell_window->priv->switcher);
    style = gtk_radio_action_get_current_value (action);

    switch (style) {
        case GTK_TOOLBAR_ICONS:
        case GTK_TOOLBAR_TEXT:
        case GTK_TOOLBAR_BOTH:
        case GTK_TOOLBAR_BOTH_HORIZ:
            e_shell_switcher_set_style (switcher, style);
            break;

        default:
            e_shell_switcher_unset_style (switcher);
            break;
    }
}

/**
 * E_SHELL_WINDOW_ACTION_WORK_OFFLINE:
 * @window: an #EShellWindow
 *
 * Activation of this action puts the application into offline mode.
 *
 * Main menu item: File -> Work Offline
 **/
static void
action_work_offline_cb (GtkAction *action,
                        EShellWindow *shell_window)
{
    EShell *shell;
    GSettings *settings;

    shell = e_shell_window_get_shell (shell_window);

    e_shell_set_online (shell, FALSE);

    /* XXX The boolean sense of the setting is backwards.  Would
     *     be more intuitive and less error-prone as "start-online". */
    settings = g_settings_new ("org.gnome.evolution.shell");
    g_settings_set_boolean (settings, "start-offline", TRUE);
    g_object_unref (settings);
}

/**
 * E_SHELL_WINDOW_ACTION_WORK_ONLINE:
 * @window: an #EShellWindow
 *
 * Activation of this action puts the application into online mode.
 *
 * Main menu item: File -> Work Online
 **/
static void
action_work_online_cb (GtkAction *action,
                       EShellWindow *shell_window)
{
    EShell *shell;
    GSettings *settings;

    shell = e_shell_window_get_shell (shell_window);

    e_shell_set_online (shell, TRUE);

    /* XXX The boolean sense of the setting is backwards.  Would
     *     be more intuitive and less error-prone as "start-online". */
    settings = g_settings_new ("org.gnome.evolution.shell");
    g_settings_set_boolean (settings, "start-offline", FALSE);
    g_object_unref (settings);
}

/**
 * E_SHELL_WINDOW_ACTION_GROUP_CUSTOM_RULES:
 * @window: an #EShellWindow
 **/

/**
 * E_SHELL_WINDOW_ACTION_GROUP_GAL_VIEW:
 * @window: an #EShellWindow
 **/

/**
 * E_SHELL_WINDOW_ACTION_GROUP_NEW_ITEM:
 * @window: an #EShellWindow
 **/

/**
 * E_SHELL_WINDOW_ACTION_GROUP_NEW_SOURCE:
 * @window: an #EShellWindow
 **/

/**
 * E_SHELL_WINDOW_ACTION_GROUP_SHELL:
 * @window: an #EShellWindow
 **/

/**
 * E_SHELL_WINDOW_ACTION_GROUP_SWITCHER:
 * @window: an #EShellWindow
 **/

static GtkActionEntry shell_entries[] = {

    { "about",
      GTK_STOCK_ABOUT,
      NULL,
      NULL,
      N_("Show information about Evolution"),
      G_CALLBACK (action_about_cb) },

    { "close",
      GTK_STOCK_CLOSE,
      N_("_Close Window"),
      "<Control>w",
      N_("Close this window"),
      G_CALLBACK (action_close_cb) },

    { "close-window-menu",
      GTK_STOCK_CLOSE,
      NULL,
      "<Control>w",
      N_("Close this window"),
      G_CALLBACK (action_close_cb) },

    { "close-window",
      GTK_STOCK_CLOSE,
      N_("_Close Window"),
      "<Control>w",
      N_("Close this window"),
      G_CALLBACK (action_close_cb) },

    { "contents",
      GTK_STOCK_HELP,
      N_("_Contents"),
      "F1",
      N_("Open the Evolution User Guide"),
      G_CALLBACK (action_contents_cb) },

    { "copy-clipboard",
      GTK_STOCK_COPY,
      NULL,
      NULL,
      N_("Copy the selection"),
      NULL },  /* Handled by EFocusTracker */

    { "cut-clipboard",
      GTK_STOCK_CUT,
      NULL,
      NULL,
      N_("Cut the selection"),
      NULL },  /* Handled by EFocusTracker */

    { "delete-selection",
      GTK_STOCK_DELETE,
      NULL,
      NULL,
      N_("Delete the selection"),
      NULL },  /* Handled by EFocusTracker */

    { "import",
      "stock_mail-import",
      N_("I_mport..."),
      NULL,
      N_("Import data from other programs"),
      G_CALLBACK (action_import_cb) },

    { "new-window",
      "window-new",
      N_("New _Window"),
      "<Control><Shift>w",
      N_("Create a new window displaying this view"),
      G_CALLBACK (action_new_window_cb) },

    { "paste-clipboard",
      GTK_STOCK_PASTE,
      NULL,
      NULL,
      N_("Paste the clipboard"),
      NULL },  /* Handled by EFocusTracker */

    { "categories",
      NULL,
      N_("Available Cate_gories"),
      NULL,
      N_("Manage available categories"),
      G_CALLBACK (action_categories_cb) },

    { "preferences",
      GTK_STOCK_PREFERENCES,
      NULL,
      "<Control><Shift>s",
      N_("Configure Evolution"),
      G_CALLBACK (action_preferences_cb) },

    { "quick-reference",
      NULL,
      N_("_Quick Reference"),
      NULL,
      N_("Show Evolution's shortcut keys"),
      G_CALLBACK (action_quick_reference_cb) },

    { "quit",
      GTK_STOCK_QUIT,
      NULL,
      NULL,
      N_("Exit the program"),
      G_CALLBACK (action_quit_cb) },

    { "search-advanced",
      NULL,
      N_("_Advanced Search..."),
      NULL,
      N_("Construct a more advanced search"),
      G_CALLBACK (action_search_advanced_cb) },

    { "search-clear",
      GTK_STOCK_CLEAR,
      NULL,
      "<Control><Shift>q",
      N_("Clear the current search parameters"),
      G_CALLBACK (action_search_clear_cb) },

    { "search-edit",
      NULL,
      N_("_Edit Saved Searches..."),
      NULL,
      N_("Manage your saved searches"),
      G_CALLBACK (action_search_edit_cb) },

    { "search-options",
      GTK_STOCK_FIND,
      NULL,
      NULL,
      N_("Click here to change the search type"),
      G_CALLBACK (action_search_options_cb) },

    { "search-quick",
      GTK_STOCK_FIND,
      N_("_Find Now"),
      "",      /* Block the default Ctrl+F. */
      N_("Execute the current search parameters"),
      G_CALLBACK (action_search_quick_cb) },

    { "search-save",
      NULL,
      N_("_Save Search..."),
      NULL,
      N_("Save the current search parameters"),
      G_CALLBACK (action_search_save_cb) },

    { "select-all",
      GTK_STOCK_SELECT_ALL,
      NULL,
      "<Control>a",
      N_("Select all text"),
      NULL },  /* Handled by EFocusTracker */

    { "submit-bug",
      NULL,
      N_("Submit _Bug Report..."),
      NULL,
      N_("Submit a bug report using Bug Buddy"),
      G_CALLBACK (action_submit_bug_cb) },

    { "work-offline",
      "stock_disconnect",
      N_("_Work Offline"),
      NULL,
      N_("Put Evolution into offline mode"),
      G_CALLBACK (action_work_offline_cb) },

    { "work-online",
      "stock_connect",
      N_("_Work Online"),
      NULL,
      N_("Put Evolution into online mode"),
      G_CALLBACK (action_work_online_cb) },

    /*** Menus ***/

    { "edit-menu",
      NULL,
      N_("_Edit"),
      NULL,
      NULL,
      NULL },

    { "file-menu",
      NULL,
      N_("_File"),
      NULL,
      NULL,
      NULL },

    { "help-menu",
      NULL,
      N_("_Help"),
      NULL,
      NULL,
      NULL },

    { "layout-menu",
      NULL,
      N_("Lay_out"),
      NULL,
      NULL,
      NULL },

    { "new-menu",
      GTK_STOCK_NEW,
      N_("_New"),
      "",
      NULL,
      NULL },

    { "search-menu",
      NULL,
      N_("_Search"),
      NULL,
      NULL,
      NULL },

    { "switcher-menu",
      NULL,
      N_("_Switcher Appearance"),
      NULL,
      NULL,
      NULL },

    { "view-menu",
      NULL,
      N_("_View"),
      NULL,
      NULL,
      NULL },

    { "window-menu",
      NULL,
      N_("_Window"),
      NULL,
      NULL,
      NULL }
};

static EPopupActionEntry shell_popup_entries[] = {

    { "popup-copy-clipboard",
      NULL,
      "copy-clipboard" },

    { "popup-cut-clipboard",
      NULL,
      "cut-clipboard" },

    { "popup-delete-selection",
      NULL,
      "delete-selection" },

    { "popup-paste-clipboard",
      NULL,
      "paste-clipboard" }
};

static GtkToggleActionEntry shell_toggle_entries[] = {

    { "show-sidebar",
      NULL,
      N_("Show Side _Bar"),
      "F9",
      N_("Show the side bar"),
      NULL,
      TRUE },

    { "show-switcher",
      NULL,
      N_("Show _Buttons"),
      NULL,
      N_("Show the switcher buttons"),
      NULL,
      TRUE },

    { "show-taskbar",
      NULL,
      N_("Show _Status Bar"),
      NULL,
      N_("Show the status bar"),
      NULL,
      TRUE },

    { "show-toolbar",
      NULL,
      N_("Show _Tool Bar"),
      NULL,
      N_("Show the tool bar"),
      NULL,
      TRUE }
};

static GtkRadioActionEntry shell_switcher_entries[] = {

    /* This action represents the initial active shell view.
     * It should not be visible in the UI, nor should it be
     * possible to switch to it from another shell view. */
    { "switcher-initial",
      NULL,
      NULL,
      NULL,
      NULL,
      -1 }
};

static GtkRadioActionEntry shell_switcher_style_entries[] = {

    { "switcher-style-icons",
      NULL,
      N_("_Icons Only"),
      NULL,
      N_("Display window buttons with icons only"),
      GTK_TOOLBAR_ICONS },

    { "switcher-style-text",
      NULL,
      N_("_Text Only"),
      NULL,
      N_("Display window buttons with text only"),
      GTK_TOOLBAR_TEXT },

    { "switcher-style-both",
      NULL,
      N_("Icons _and Text"),
      NULL,
      N_("Display window buttons with icons and text"),
      GTK_TOOLBAR_BOTH_HORIZ },

    { "switcher-style-user",
      NULL,
      N_("Tool_bar Style"),
      NULL,
      N_("Display window buttons using the desktop toolbar setting"),
      -1 }
};

static GtkActionEntry shell_gal_view_entries[] = {

    { "gal-delete-view",
      NULL,
      N_("Delete Current View"),
      NULL,
      NULL,  /* Set in update_view_menu() */
      G_CALLBACK (action_gal_delete_view_cb) },

    { "gal-save-custom-view",
      NULL,
      N_("Save Custom View..."),
      NULL,
      N_("Save current custom view"),
      G_CALLBACK (action_gal_save_custom_view_cb) },

    /*** Menus ***/

    { "gal-view-menu",
      NULL,
      N_("C_urrent View"),
      NULL,
      NULL,
      NULL }
};

static GtkRadioActionEntry shell_gal_view_radio_entries[] = {

    { "gal-custom-view",
      NULL,
      N_("Custom View"),
      NULL,
      N_("Current view is a customized view"),
      -1 }
};

static GtkActionEntry shell_lockdown_print_setup_entries[] = {

    { "page-setup",
      GTK_STOCK_PAGE_SETUP,
      NULL,
      NULL,
      N_("Change the page settings for your current printer"),
      G_CALLBACK (action_page_setup_cb) }
};

static void
shell_window_extract_actions (EShellWindow *shell_window,
                              GList **source_list,
                              GList **destination_list)
{
    const gchar *current_view;
    GList *match_list = NULL;
    GList *iter;

    /* Pick out the actions from the source list that are tagged
     * as belonging to the current EShellView and move them to the
     * destination list. */

    current_view = e_shell_window_get_active_view (shell_window);

    /* Example: Suppose [A] and [C] are tagged for this EShellView.
     *
     *        source_list = [A] -> [B] -> [C]
     *                       ^             ^
     *                       |             |
     *         match_list = [ ] --------> [ ]
     *
     *
     *   destination_list = [1] -> [2]  (other actions)
     */
    for (iter = *source_list; iter != NULL; iter = iter->next) {
        GtkAction *action = iter->data;
        const gchar *backend_name;

        backend_name = g_object_get_data (
            G_OBJECT (action), "backend-name");

        if (strcmp (backend_name, current_view) != 0)
            continue;

        if (g_object_get_data (G_OBJECT (action), "primary"))
            match_list = g_list_prepend (match_list, iter);
        else
            match_list = g_list_append (match_list, iter);
    }

    /* source_list = [B]   match_list = [A] -> [C] */
    for (iter = match_list; iter != NULL; iter = iter->next) {
        GList *link = iter->data;

        iter->data = link->data;
        *source_list = g_list_delete_link (*source_list, link);
    }

    /* destination_list = [1] -> [2] -> [A] -> [C] */
    *destination_list = g_list_concat (*destination_list, match_list);
}

void
e_shell_window_actions_init (EShellWindow *shell_window)
{
    GtkActionGroup *action_group;
    EFocusTracker *focus_tracker;
    GtkUIManager *ui_manager;
    gchar *path;

    g_return_if_fail (E_IS_SHELL_WINDOW (shell_window));

    ui_manager = e_shell_window_get_ui_manager (shell_window);

    e_load_ui_manager_definition (ui_manager, "evolution-shell.ui");

    /* Shell Actions */
    action_group = ACTION_GROUP (SHELL);
    gtk_action_group_add_actions (
        action_group, shell_entries,
        G_N_ELEMENTS (shell_entries), shell_window);
    e_action_group_add_popup_actions (
        action_group, shell_popup_entries,
        G_N_ELEMENTS (shell_popup_entries));
    gtk_action_group_add_toggle_actions (
        action_group, shell_toggle_entries,
        G_N_ELEMENTS (shell_toggle_entries), shell_window);
    gtk_action_group_add_radio_actions (
        action_group, shell_switcher_style_entries,
        G_N_ELEMENTS (shell_switcher_style_entries),
        E_SHELL_SWITCHER_DEFAULT_TOOLBAR_STYLE,
        G_CALLBACK (action_switcher_style_cb), shell_window);
    gtk_action_group_add_actions (
        action_group, shell_gal_view_entries,
        G_N_ELEMENTS (shell_gal_view_entries), shell_window);
    gtk_action_group_add_radio_actions (
        action_group, shell_gal_view_radio_entries,
        G_N_ELEMENTS (shell_gal_view_radio_entries),
        0, G_CALLBACK (action_gal_view_cb), shell_window);

    /* Switcher Actions */
    action_group = ACTION_GROUP (SWITCHER);
    gtk_action_group_add_radio_actions (
        action_group, shell_switcher_entries,
        G_N_ELEMENTS (shell_switcher_entries),
        -1, G_CALLBACK (action_switcher_cb), shell_window);

    /* Lockdown Print Setup Actions */
    action_group = ACTION_GROUP (LOCKDOWN_PRINT_SETUP);
    gtk_action_group_add_actions (
        action_group, shell_lockdown_print_setup_entries,
        G_N_ELEMENTS (shell_lockdown_print_setup_entries),
        shell_window);

    /* Configure an EFocusTracker to manage selection actions. */

    focus_tracker = e_focus_tracker_new (GTK_WINDOW (shell_window));
    e_focus_tracker_set_cut_clipboard_action (
        focus_tracker, ACTION (CUT_CLIPBOARD));
    e_focus_tracker_set_copy_clipboard_action (
        focus_tracker, ACTION (COPY_CLIPBOARD));
    e_focus_tracker_set_paste_clipboard_action (
        focus_tracker, ACTION (PASTE_CLIPBOARD));
    e_focus_tracker_set_delete_selection_action (
        focus_tracker, ACTION (DELETE_SELECTION));
    e_focus_tracker_set_select_all_action (
        focus_tracker, ACTION (SELECT_ALL));
    shell_window->priv->focus_tracker = focus_tracker;

    /* Fine tuning. */

    gtk_action_set_sensitive (ACTION (SEARCH_QUICK), FALSE);

    g_object_bind_property (
        shell_window, "sidebar-visible",
        ACTION (SHOW_SIDEBAR), "active",
        G_BINDING_BIDIRECTIONAL |
        G_BINDING_SYNC_CREATE);

    g_object_bind_property (
        shell_window, "switcher-visible",
        ACTION (SHOW_SWITCHER), "active",
        G_BINDING_BIDIRECTIONAL |
        G_BINDING_SYNC_CREATE);

    g_object_bind_property (
        shell_window, "taskbar-visible",
        ACTION (SHOW_TASKBAR), "active",
        G_BINDING_BIDIRECTIONAL |
        G_BINDING_SYNC_CREATE);

    g_object_bind_property (
        shell_window, "toolbar-visible",
        ACTION (SHOW_TOOLBAR), "active",
        G_BINDING_BIDIRECTIONAL |
        G_BINDING_SYNC_CREATE);

    g_object_bind_property (
        ACTION (SHOW_SIDEBAR), "active",
        ACTION (SHOW_SWITCHER), "sensitive",
        G_BINDING_SYNC_CREATE);

    g_object_bind_property (
        ACTION (SHOW_SIDEBAR), "active",
        ACTION (SWITCHER_STYLE_BOTH), "sensitive",
        G_BINDING_SYNC_CREATE);

    g_object_bind_property (
        ACTION (SHOW_SIDEBAR), "active",
        ACTION (SWITCHER_STYLE_ICONS), "sensitive",
        G_BINDING_SYNC_CREATE);

    g_object_bind_property (
        ACTION (SHOW_SIDEBAR), "active",
        ACTION (SWITCHER_STYLE_TEXT), "sensitive",
        G_BINDING_SYNC_CREATE);

    g_object_bind_property (
        ACTION (SHOW_SIDEBAR), "active",
        ACTION (SWITCHER_STYLE_USER), "sensitive",
        G_BINDING_SYNC_CREATE);

    g_object_bind_property (
        ACTION (SHOW_SIDEBAR), "active",
        ACTION (SWITCHER_MENU), "sensitive",
        G_BINDING_SYNC_CREATE);

    /* Submitting bug reports requires bug-buddy. */
    path = g_find_program_in_path ("bug-buddy");
    if (path == NULL)
        gtk_action_set_visible (ACTION (SUBMIT_BUG), FALSE);
    g_free (path);
}

GtkWidget *
e_shell_window_create_new_menu (EShellWindow *shell_window)
{
    GtkActionGroup *action_group;
    GList *new_item_actions;
    GList *new_source_actions;
    GList *iter, *list = NULL;
    GtkWidget *menu;
    GtkWidget *separator;

    /* Get sorted lists of "new item" and "new source" actions. */

    action_group = ACTION_GROUP (NEW_ITEM);

    new_item_actions = g_list_sort (
        gtk_action_group_list_actions (action_group),
        (GCompareFunc) e_action_compare_by_label);

    action_group = ACTION_GROUP (NEW_SOURCE);

    new_source_actions = g_list_sort (
        gtk_action_group_list_actions (action_group),
        (GCompareFunc) e_action_compare_by_label);

    /* Give priority to actions that belong to this shell view. */

    shell_window_extract_actions (
        shell_window, &new_item_actions, &list);

    shell_window_extract_actions (
        shell_window, &new_source_actions, &list);

    /* Convert the actions to menu item proxy widgets. */

    for (iter = list; iter != NULL; iter = iter->next)
        iter->data = gtk_action_create_menu_item (iter->data);

    for (iter = new_item_actions; iter != NULL; iter = iter->next)
        iter->data = gtk_action_create_menu_item (iter->data);

    for (iter = new_source_actions; iter != NULL; iter = iter->next)
        iter->data = gtk_action_create_menu_item (iter->data);

    /* Add menu separators. */

    if (new_item_actions != NULL) {
        separator = gtk_separator_menu_item_new ();
        new_item_actions = g_list_prepend (new_item_actions, separator);
        gtk_widget_show (GTK_WIDGET (separator));
    }

    if (new_source_actions != NULL) {
        separator = gtk_separator_menu_item_new ();
        new_source_actions = g_list_prepend (new_source_actions, separator);
        gtk_widget_show (GTK_WIDGET (separator));
    }

    /* Merge everything into one list, reflecting the menu layout. */

    list = g_list_concat (list, new_item_actions);
    new_item_actions = NULL;    /* just for clarity */

    list = g_list_concat (list, new_source_actions);
    new_source_actions = NULL;  /* just for clarity */

    /* And finally, build the menu. */

    menu = gtk_menu_new ();

    for (iter = list; iter != NULL; iter = iter->next)
        gtk_menu_shell_append (GTK_MENU_SHELL (menu), iter->data);

    g_list_free (list);

    return menu;
}

static GtkAction *
e_shell_window_create_switcher_action (GType type,
                                       EShellViewClass *class,
                                       const gchar *name,
                                       const gchar *tooltip,
                                       const gchar *view_name)
{
    GtkAction *action;

    action = g_object_new (
        type,
        "name", name,
        "label", class->label,
        "tooltip", tooltip,
        "icon-name", class->icon_name,
        NULL);

    g_object_set_data (
        G_OBJECT (action),
        "view-name", (gpointer) view_name);

    return action;
}

/*
 * Create both the actions to switch the current window, and also
 * to create each view in a new window.
 */
void
e_shell_window_create_switcher_actions (EShellWindow *shell_window)
{
    GSList *group = NULL;
    GtkRadioAction *s_action;
    GtkActionGroup *s_action_group;
    GtkActionGroup *n_action_group;
    GtkUIManager *ui_manager;
    EShellSwitcher *switcher;
    EShell *shell;
    GList *list, *iter;
    guint merge_id;
    guint ii = 0;

    g_return_if_fail (E_IS_SHELL_WINDOW (shell_window));

    s_action_group = ACTION_GROUP (SWITCHER);
    n_action_group = ACTION_GROUP (NEW_WINDOW);
    switcher = E_SHELL_SWITCHER (shell_window->priv->switcher);
    ui_manager = e_shell_window_get_ui_manager (shell_window);
    merge_id = gtk_ui_manager_new_merge_id (ui_manager);
    shell = e_shell_window_get_shell (shell_window);
    list = e_shell_get_shell_backends (shell);

    /* Construct a group of radio actions from the various EShellView
     * subclasses and register them with the EShellSwitcher.  These
     * actions are manifested as switcher buttons and View->Window
     * menu items. */

    s_action = GTK_RADIO_ACTION (ACTION (SWITCHER_INITIAL));
    gtk_radio_action_set_group (s_action, group);
    group = gtk_radio_action_get_group (s_action);

    for (iter = list; iter != NULL; iter = iter->next) {
        EShellBackend *shell_backend = iter->data;
        EShellBackendClass *backend_class;
        EShellViewClass *class;
        GtkAction *n_action;
        GType view_type;
        const gchar *view_name;
        gchar *accelerator;
        gchar *s_action_name;
        gchar *n_action_name;
        gchar *tooltip;

        /* The backend name is also the view name. */
        backend_class = E_SHELL_BACKEND_GET_CLASS (shell_backend);
        view_type = backend_class->shell_view_type;
        view_name = backend_class->name;

        if (!g_type_is_a (view_type, E_TYPE_SHELL_VIEW)) {
            g_critical (
                "%s is not a subclass of %s",
                g_type_name (view_type),
                g_type_name (E_TYPE_SHELL_VIEW));
            continue;
        }

        class = g_type_class_ref (view_type);

        if (class->label == NULL) {
            g_critical (
                "Label member not set on %s",
                G_OBJECT_CLASS_NAME (class));
            continue;
        }

        tooltip = g_strdup_printf (_("Switch to %s"), class->label);

        s_action_name = g_strdup_printf (
            E_SHELL_SWITCHER_FORMAT, view_name);

        /* Note, we have to set "icon-name" separately because
         * gtk_radio_action_new() expects a "stock-id".  Sadly,
         * GTK+ still distinguishes between the two. */

        s_action = GTK_RADIO_ACTION (
            e_shell_window_create_switcher_action (
                GTK_TYPE_RADIO_ACTION,
                class, s_action_name,
                tooltip, view_name));
        g_object_set (s_action, "value", ii++, NULL);
        gtk_radio_action_set_group (s_action, group);
        group = gtk_radio_action_get_group (s_action);

        /* The first nine views have accelerators Ctrl+(1-9). */
        if (ii < 10)
            accelerator = g_strdup_printf ("<Control>%d", ii);
        else
            accelerator = g_strdup ("");

        gtk_action_group_add_action_with_accel (
            s_action_group, GTK_ACTION (s_action), accelerator);

        g_free (accelerator);

        gtk_ui_manager_add_ui (
            ui_manager, merge_id,
            "/main-menu/view-menu/window-menu",
            s_action_name, s_action_name,
            GTK_UI_MANAGER_AUTO, FALSE);
        g_free (s_action_name);

        /* Create in new window actions */
        n_action_name = g_strdup_printf (
            E_SHELL_NEW_WINDOW_FORMAT, view_name);
        n_action = e_shell_window_create_switcher_action (
            GTK_TYPE_ACTION,
            class, n_action_name,
            tooltip, view_name);
        g_signal_connect (
            n_action, "activate",
            G_CALLBACK (action_new_view_window_cb), shell_window);
        gtk_action_group_add_action (n_action_group, n_action);

        e_shell_switcher_add_action (
            switcher, GTK_ACTION (s_action), n_action);

        g_free (n_action_name);
        g_free (tooltip);

        g_type_class_unref (class);
    }
}

void
e_shell_window_update_view_menu (EShellWindow *shell_window)
{
    EShellView *shell_view;
    EShellViewClass *shell_view_class;
    GtkUIManager *ui_manager;
    GtkActionGroup *action_group;
    GalViewCollection *view_collection;
    GtkRadioAction *radio_action;
    GtkAction *action;
    GSList *radio_group;
    gboolean visible;
    const gchar *path;
    const gchar *view_id;
    const gchar *view_name;
    gchar *delete_tooltip = NULL;
    gboolean delete_visible = FALSE;
    guint merge_id;
    gint count, ii;

    ui_manager = e_shell_window_get_ui_manager (shell_window);
    view_name = e_shell_window_get_active_view (shell_window);
    shell_view = e_shell_window_get_shell_view (shell_window, view_name);
    g_return_if_fail (shell_view != NULL);

    shell_view_class = E_SHELL_VIEW_GET_CLASS (shell_view);
    view_collection = shell_view_class->view_collection;
    view_id = e_shell_view_get_view_id (shell_view);
    g_return_if_fail (view_collection != NULL);

    action_group = ACTION_GROUP (GAL_VIEW);
    merge_id = shell_window->priv->gal_view_merge_id;

    /* Unmerge the previous menu. */
    gtk_ui_manager_remove_ui (ui_manager, merge_id);
    e_action_group_remove_all_actions (action_group);
    gtk_ui_manager_ensure_update (ui_manager);

    /* We have a view ID, so forge ahead. */
    count = gal_view_collection_get_count (view_collection);
    path = "/main-menu/view-menu/gal-view-menu/gal-view-list";

    /* Prevent spurious activations. */
    action = ACTION (GAL_CUSTOM_VIEW);
    g_signal_handlers_block_matched (
        action, G_SIGNAL_MATCH_FUNC, 0, 0,
        NULL, action_gal_view_cb, NULL);

    /* Default to "Custom View", unless we find our view ID. */
    radio_action = GTK_RADIO_ACTION (ACTION (GAL_CUSTOM_VIEW));
    gtk_radio_action_set_group (radio_action, NULL);
    radio_group = gtk_radio_action_get_group (radio_action);
    gtk_radio_action_set_current_value (radio_action, -1);

    /* Add a menu item for each view collection item. */
    for (ii = 0; ii < count; ii++) {
        GalViewCollectionItem *item;
        gchar *action_name;
        gchar *tooltip, *title;

        item = gal_view_collection_get_view_item (view_collection, ii);

        action_name = g_strdup_printf (
            "gal-view-%s-%d", view_name, ii);
        title = e_str_without_underscores (item->title);
        tooltip = g_strdup_printf (_("Select view: %s"), title);

        radio_action = gtk_radio_action_new (
            action_name, item->title, tooltip, NULL, ii);

        action = GTK_ACTION (radio_action);
        gtk_radio_action_set_group (radio_action, radio_group);
        radio_group = gtk_radio_action_get_group (radio_action);

        g_object_set_data_full (
            G_OBJECT (radio_action), "view-id",
            g_strdup (item->id), (GDestroyNotify) g_free);

        if (view_id != NULL && strcmp (item->id, view_id) == 0) {
            gtk_radio_action_set_current_value (radio_action, ii);
            delete_visible = (!item->built_in);
            delete_tooltip = g_strdup_printf (
                _("Delete view: %s"), title);
        }

        gtk_action_group_add_action (action_group, action);

        gtk_ui_manager_add_ui (
            ui_manager, merge_id,
            path, action_name, action_name,
            GTK_UI_MANAGER_AUTO, FALSE);

        g_free (action_name);
        g_free (tooltip);
        g_free (title);
    }

    /* Doesn't matter which radio action we check. */
    visible = (gtk_radio_action_get_current_value (radio_action) < 0);

    action = ACTION (GAL_CUSTOM_VIEW);
    gtk_action_set_visible (action, visible);
    g_signal_handlers_unblock_matched (
        action, G_SIGNAL_MATCH_FUNC, 0, 0,
        NULL, action_gal_view_cb, NULL);

    action = ACTION (GAL_SAVE_CUSTOM_VIEW);
    gtk_action_set_visible (action, visible);

    action = ACTION (GAL_DELETE_VIEW);
    gtk_action_set_tooltip (action, delete_tooltip);
    gtk_action_set_visible (action, delete_visible);

    g_free (delete_tooltip);
}

void
e_shell_window_update_search_menu (EShellWindow *shell_window)
{
    EShellView *shell_view;
    EShellViewClass *shell_view_class;
    ERuleContext *context;
    EFilterRule *rule;
    GtkUIManager *ui_manager;
    GtkActionGroup *action_group;
    const gchar *source;
    const gchar *view_name;
    gboolean sensitive;
    guint merge_id;
    gint ii = 0;

    g_return_if_fail (E_IS_SHELL_WINDOW (shell_window));

    ui_manager = e_shell_window_get_ui_manager (shell_window);
    view_name = e_shell_window_get_active_view (shell_window);
    shell_view = e_shell_window_get_shell_view (shell_window, view_name);

    /* Check for a NULL shell view before proceeding.  This can
     * happen if the initial view name from GSettings is unrecognized.
     * Without this we would crash at E_SHELL_VIEW_GET_CLASS(). */
    g_return_if_fail (shell_view != NULL);

    shell_view_class = E_SHELL_VIEW_GET_CLASS (shell_view);
    context = shell_view_class->search_context;

    source = E_FILTER_SOURCE_INCOMING;

    /* Update sensitivity of search_options action. */
    sensitive = (shell_view_class->search_options != NULL);
    gtk_action_set_sensitive (ACTION (SEARCH_OPTIONS), sensitive);

    /* Add custom rules to the Search menu. */

    action_group = ACTION_GROUP (CUSTOM_RULES);
    merge_id = shell_window->priv->custom_rule_merge_id;

    /* Unmerge the previous menu. */
    gtk_ui_manager_remove_ui (ui_manager, merge_id);
    e_action_group_remove_all_actions (action_group);
    gtk_ui_manager_ensure_update (ui_manager);

    rule = e_rule_context_next_rule (context, NULL, source);
    while (rule != NULL) {
        GtkAction *action;
        gchar *action_name;
        gchar *action_label;

        action_name = g_strdup_printf ("custom-rule-%d", ii++);
        if (ii < 10)
            action_label = g_strdup_printf (
                "_%d. %s", ii, rule->name);
        else
            action_label = g_strdup (rule->name);

        action = gtk_action_new (
            action_name, action_label,
            _("Execute these search parameters"), NULL);

        g_object_set_data_full (
            G_OBJECT (action),
            "rule", g_object_ref (rule),
            (GDestroyNotify) g_object_unref);

        g_signal_connect (
            action, "activate",
            G_CALLBACK (action_custom_rule_cb), shell_window);

        gtk_action_group_add_action (action_group, action);

        gtk_ui_manager_add_ui (
            ui_manager, merge_id,
            "/main-menu/search-menu/custom-rules",
            action_name, action_name,
            GTK_UI_MANAGER_AUTO, FALSE);

        g_free (action_name);
        g_free (action_label);

        rule = e_rule_context_next_rule (context, rule, source);
    }
}