aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-window-actions.c
blob: bc1fcea27bcd4be80e4da4b3ab3c6042ea643afb (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
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*-
 * e-shell-window-actions.c
 *
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of version 2 of the GNU General Public
 * License as published by the Free Software Foundation.
 *
 * 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
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 */

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

#include "e-shell.h"
#include "e-shell-importer.h"

#include "e-util/e-dialog-utils.h"
#include "e-util/e-error.h"
#include "e-util/e-print.h"

#include <string.h>
#include <libedataserverui/e-passwords.h>

#define EVOLUTION_COPYRIGHT \
    "Copyright \xC2\xA9 1999 - 2008 Novell, Inc. and Others"

#define EVOLUTION_FAQ \
    "http://www.go-evolution.org/FAQ"

#define EVOLUTION_WEBSITE \
    "http://www.gnome.org/projects/evolution/"

/* Authors and Documenters
 *
 * The names below must be in UTF8.  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 UTF8 and not all editors can handle it.
 */
static const gchar *authors[] = {
    "Aaron Weber",
    "Abel Cheung",
    "Abhishek Parwal",
    "Adam Weinberger",
    "Adi Attar",
    "Ahmad Riza H Nst",
    "Aidan Delaney",
    "Aishwarya K",
    "Akagic Amila",
    "Akhil Laddha",
    "Akira Tagoh",
    "Alastair McKinstry",
    "Alastair Tse",
    "Alejandro Andres",
    "Alessandro Decina",
    "Alex Graveley",
    "Alex Jiang",
    "Alex Jones",
    "Alex Kloss",
    "Alexander Shopov",
    "Alfred Peng",
    "Ali Abdin",
    "Ali Akcaagac",
    "Almer S. Tigelaar",
    "Amish",
    "Anand V M",
    "Anders Carlsson",
    "Andre Klapper",
    "Andrea Campi",
    "Andreas Henriksson",
    "Andreas Hyden",
    "Andreas J. Guelzow",
    "Andreas K\xC3\xB6hler",
    "Andreas Köhler",
    "Andrew Ruthven",
    "Andrew T. Veliath",
    "Andrew Wu",
    "Ankit Patel",
    "Anna Marie Dirks",
    "Antonio Xu",
    "Arafat Medini",
    "Arangel Angov",
    "Archit Baweja",
    "Ariel Rios",
    "Arik Devens",
    "Armin Bauer",
    "Arturo Espinosa Aldama",
    "Arulanandan P",
    "Arun Prakash",
    "Arvind Sundararajan",
    "Arvind",
    "Ashish",
    "B S Srinidhi",
    "Bastien Nocera",
    "Behnam Esfahbod",
    "Ben Gamari",
    "Benjamin Berg",
    "Benjamin Kahn",
    "Benoît Dejean",
    "Bernard Leach",
    "Bertrand Guiheneuf",
    "Bharath Acharya",
    "Bill Zhu",
    "Bj\xC3\xB6rn Torkelsson",
    "Björn Lindqvist",
    "Bob Doan",
    "Bob Mauchin",
    "Boby Wang",
    "Bolian Yin",
    "Brian Mury",
    "Brian Pepple",
    "Bruce Tao",
    "Calvin Liu",
    "Cantona Su",
    "Carl Sun",
    "Carlos Garcia Campos",
    "Carlos Garnacho Parro",
    "Carlos Perell\xC3\xB3" " Mar\xC3\xAD" "n",
    "Carsten Guenther",
    "Carsten Schaar",
    "Changwoo Ryu",
    "Chao-Hsiung Liao",
    "Charles Zhang",
    "Chema Celorio",
    "Chenthill Palanisamy",
    "Chpe",
    "Chris Halls",
    "Chris Heath",
    "Chris Phelps",
    "Chris Toshok",
    "Christian Hammond",
    "Christian Kellner",
    "Christian Kirbach",
    "Christian Krause",
    "Christian Kreibich",
    "Christian Neumair",
    "Christophe Fergeau",
    "Christophe Merlet",
    "Christopher Blizzard",
    "Christopher J. Lahey",
    "Christopher R. Gabriel",
    "Claude Paroz",
    "Claudio Saavedra",
    "Clifford R. Conover",
    "Cody Russell",
    "Colin Leroy",
    "Craig Small",
    "Dafydd Harries",
    "Damian Ivereigh",
    "Damien Carbery",
    "Damon Chaplin",
    "Dan Berger",
    "Dan Damian",
    "Dan Nguyen",
    "Dan Winship",
    "Daniel Gryniewicz",
    "Daniel Nylander",
    "Daniel van Eeden",
    "Daniel Veillard",
    "Daniel Yacob",
    "Danilo \xC5\xA0" "egan",
    "Danilo Segan",
    "Darin Adler",
    "Dave Benson",
    "Dave Camp",
    "Dave Fallon",
    "Dave Malcolm",
    "Dave West",
    "David Farning",
    "David Kaelbling",
    "David Malcolm",
    "David Moore",
    "David Mosberger",
    "David Richards",
    "David Trowbridge",
    "David Turner",
    "David Woodhouse",
    "Denis Washington",
    "Devashish Sharma",
    "Diego Escalante Urrelo",
    "Diego Gonzalez",
    "Diego Sevilla Ruiz",
    "Dietmar Maurer",
    "Dinesh Layek",
    "Djihed Afifi",
    "Dmitry Mastrukov",
    "Dodji Seketeli",
    "Duarte Loreto",
    "Dulmandakh Sukhbaatar",
    "Duncan Mak",
    "Ebby Wiselyn",
    "Ed Catmur",
    "Edd Dumbill",
    "Edgar Luna Díaz",
    "Edward Rudd",
    "Elijah Newren",
    "Elizabeth Greene",
    "Elliot Lee",
    "Elliot Turner",
    "Eneko Lacunza",
    "Enver Altin",
    "Erdal Ronahi",
    "Eric Busboom",
    "Eric Zhao",
    "Eskil Heyn Olsen",
    "Ettore Perazzoli",
    "Evan Yan",
    "Fatih Demir",
    "Fazlu & Hannah",
    "Federico Mena Quintero",
    "Fernando Herrera",
    "Francisco Javier F. Serrador",
    "Frank Arnold",
    "Frank Belew",
    "Frederic Crozat",
    "Frederic Peters",
    "Funda Wang",
    "Gabor Kelemen",
    "Ganesh",
    "Gareth Owen",
    "Gary Coady",
    "Gary Ekker",
    "Gavin Scott",
    "Gediminas Paulauskas",
    "Gerg\xC5\x91 \xC3\x89rdi",
    "George Lebl",
    "Gerardo Marin",
    "Gert Kulyk",
    "Giancarlo Capella",
    "Gil Osher",
    "Gilbert Fang",
    "Gilles Dartiguelongue",
    "Grahame Bowland",
    "Greg Hudson",
    "Gregory Leblanc",
    "Gregory McLean",
    "Grzegorz Goawski",
    "Gustavo Gir\xC3\x8E" "ldez",
    "Gustavo Maciel Dias Vieira",
    "H P Nadig",
    "H\xC3\xA9" "ctor Garc\xC3\xAD" "a \xC3\x81" "lvarez",
    "Hans Petter Jansson",
    "Hao Sheng",
    "Hari Prasad Nadig",
    "Harish K",
    "Harish Krishnaswamy",
    "Harry Lu",
    "Hasbullah Bin Pit",
    "Havoc Pennington",
    "Heath Harrelson",
    "Hein-Pieter van Braam",
    "Herbert V. Riedel",
    "Hiroyuki Ikezoe",
    "Iain Buchanan",
    "Iain Holmes",
    "Ian Campbell",
    "Ilkka Tuohela",
    "Irene Huang",
    "Ismael Olea",
    "Israel Escalante",
    "Iv\xC3\xA1" "n Frade",
    "Iván Frade",
    "J.H.M. Dassen (Ray)",
    "JP Rosevear",
    "J\xC3\xBC" "rg Billeter",
    "Jürg Billeter",
    "Jack Jia",
    "Jacob Ulysses Berkman",
    "Jacob Berkman",
    "Jaka Mocnik",
    "Jakub Steiner",
    "James Doc Livingston",
    "James Bowes",
    "James Henstridge",
    "James Willcox",
    "Jan Arne Petersen",
    "Jan Tichavsky",
    "Jan Van Buggenhout",
    "Jared Moore",
    "Jarkko Ranta",
    "Jason Leach",
    "Jason Tackaberry",
    "Jayaradha",
    "Jean-Noel Guiheneuf",
    "Jedy Wang",
    "Jeff Bailey",
    "Jeff Cai",
    "Jeff Garzik",
    "Jeffrey Stedfast",
    "Jens Granseuer",
    "Jens Seidel",
    "Jeremy Katz",
    "Jeremy Wise",
    "Jerome Lacoste",
    "Jerry Yu",
    "Jes\xC3\xBA" "s Bravo \xC3\x81" "lvarez",
    "Jesse Pavel",
    "Ji Lee",
    "Joan Sanfeliu",
    "Jody Goldberg",
    "Joe Marcus Clarke",
    "Joe Shaw",
    "John Gotts",
    "Johnny Jacob",
    "Johnny",
    "Jon Ander Hernandez",
    "Jon K Hellan",
    "Jon Oberheide",
    "Jon Trowbridge",
    "Jonas Borgstr",
    "Jonathan Blandford",
    "Jonathan Dieter",
    "Jos Dehaes",
    "Josselin Mouette",
    "JP Rosvear",
    "Jukka Zitting",
    "Jules Colding",
    "Julian Missig",
    "Julio M. Merino Vidal",
    "Jürg Billeter",
    "Karl Eichwalder",
    "Karl Relton",
    "Karsten Br\xC3\xA4" "ckelmann",
    "Kaushal Kumar",
    "Kenneth Christiansen",
    "Kenny Graunke",
    "Keshav Upadhyaya",
    "Kevin Breit",
    "Kevin Piche",
    "Kevin Vandersloot",
    "Khasim Shaheed",
    "Kidd Wang",
    "Kjartan Maraas",
    "Krishnan R",
    "Krisztian Pifko",
    "Kyle Ambroff",
    "Larry Ewing",
    "Laszlo (Laca) Peter",
    "Laurent Dhima",
    "Lauris Kaplinski",
    "Leon Zhang",
    "Li Yuan",
    "Loïc Minier",
    "Loïc Minier",
    "Lorenzo Gil Sanchez",
    "Luca Ferretti",
    "Lucky Wankhede",
    "Luis Villa",
    "Lutz M",
    "M Victor Aloysius J",
    "Maciej Stachowiak",
    "Makuchaku",
    "Malcolm Tredinnick",
    "Marco Pesenti Gritti",
    "Marius Andreiana",
    "Marius Vollmer",
    "Mark Crichton",
    "Mark G. Adams",
    "Mark Gordon",
    "Mark McLoughlin",
    "Mark Moulder",
    "Mark Tearle",
    "Martha Burke",
    "Martin Baulig",
    "Martin Hicks",
    "Martin Meyer",
    "Martin Norb\xC3\xA4" "ck",
    "Martyn Russell",
    "Masahiro Sakai",
    "Mathieu Lacage",
    "Matias Mutchinick",
    "Matt Bissiri",
    "Matt Brown",
    "Matt Loper",
    "Matt Martin",
    "Matt Wilson",
    "Matthew Barnes",
    "Matthew Daniel",
    "Matthew Hall",
    "Matthew Loper",
    "Matthew Wilson",
    "Matthias Clasen",
    "Max Horn",
    "Maxx Cao",
    "Mayank Jain",
    "Meilof Veeningen",
    "Mengjie Yu",
    "Michael Granger",
    "Michael M. Morrison",
    "Michael MacDonald",
    "Michael Meeks",
    "Michael Monreal",
    "Michael Terry",
    "Michael Zucchi",
    "Michel Daenzer",
    "Miguel Angel Lopez Hernandez",
    "Miguel de Icaza",
    "Mikael Hallendal",
    "Mikael Nilsson",
    "Mike Castle",
    "Mike Kestner",
    "Mike McEwan",
    "Mikhail Zabaluev",
    "Milan Crha",
    "Miles Lane",
    "Mohammad Damt",
    "Morten Welinder",
    "Mubeen Jukaku",
    "Murray Cumming",
    "Naba Kumar",
    "Nagappan Alagappan",
    "Nancy Cai",
    "Nat Friedman",
    "Nathan Owens",
    "Nicel KM",
    "Nicholas J Kreucher",
    "Nicholas Miell",
    "Nick Sukharev",
    "Nickolay V. Shmyrev",
    "Nike Gerdts",
    "Noel",
    "Nuno Ferreira",
    "Nyall Dawson",
    "Ondrej Jirman",
    "Oswald Rodrigues",
    "Owen Taylor",
    "Oystein Gisnas",
    "P Chenthill",
    "P S Chakravarthi",
    "Pablo Gonzalo del Campo",
    "Pablo Saratxaga",
    "Pamplona Hackers",
    "Paolo Molaro",
    "Parag Goel",
    "Parthasarathi Susarla",
    "Pascal Terjan",
    "Patrick Ohly",
    "Paul Bolle",
    "Paul Lindner",
    "Pavel Cisler",
    "Pavel Roskin",
    "Pavithran",
    "Pawan Chitrakar",
    "Pedro Villavicencio",
    "Peter Pouliot",
    "Peter Teichman",
    "Peter Williams",
    "Peteris Krisjanis",
    "Petta Pietikainen",
    "Phil Goembel",
    "Philip Van Hoof",
    "Philip Zhao",
    "Poornima Nayak",
    "Pratik V. Parikh",
    "Praveen Kumar",
    "Priit Laes",
    "Priyanshu Raj",
    "Radek Doul\xC3\xADk",
    "Raghavendran R",
    "Raja R Harinath",
    "Rajeev Ramanathan",
    "Rajesh Ranjan",
    "Rakesh k.g",
    "Ramiro Estrugo",
    "Ranjan Somani",
    "Ray Strode",
    "Rhys Jones",
    "Ricardo Markiewicz",
    "Richard Boulton",
    "Richard Hult",
    "Richard Li",
    "Rob Bradford",
    "Robert Brady",
    "Robert Sedak",
    "Robin Slomkowski",
    "Rodney Dawes",
    "Rodrigo Moya",
    "Rohini S",
    "Rohini",
    "Roland Illig",
    "Ronald Kuetemeier",
    "Roozbeh Pournader",
    "Ross Burton",
    "Rouslan Solomakhin",
    "Runa Bhattacharjee",
    "Russell Steinthal",
    "Rusty Conover",
    "Ryan P. Skadberg",
    "S Antony Vincent Pandian",
    "S N Tejasvi",
    "S. \xC3\x87" "a\xC4\x9F" "lar Onur",
    "S.Antony Vincent Pandian",
    "S. Caglar Onur",
    "Sam Creasey",
    "Sam Yang",
    "Sam\xC3\xBA" "el J\xC3\xB3" "n Gunnarsson",
    "Sankar P",
    "Sanlig Badral",
    "Sanshao Jiang",
    "Sarfraaz Ahmed",
    "Sayamindu Dasgupta",
    "Sean Atkinson",
    "Sean Gao",
    "Sebastian Rittau",
    "Sebastian Wilhelmi",
    "Sebastien Bacher",
    "Sergey Panov",
    "Seth Alves",
    "Seth Nickell",
    "Shakti Sen",
    "Shi Pu",
    "Shilpa C",
    "Shree Krishnan",
    "Shreyas Srinivasan",
    "Simon Zheng",
    "Simos Xenitellis",
    "Sivaiah Nallagatla",
    "Srinivasa Ragavan",
    "Stanislav Brabec",
    "Stanislav Visnovsky",
    "Stéphane Raimbault",
    "Stephen Cook",
    "Steve Murphy",
    "Steven Zhang",
    "Stuart Parmenter",
    "Subodh Soni",
    "Suman Manjunath",
    "Sunil Mohan Adapa",
    "Suresh Chandrasekharan",
    "Sushma Rai",
    "Sven Herzberg",
    "Szabolcs Ban",
    "T\xC3\xB5" "ivo Leedj\xC3\xA4" "rv",
    "Takao Fujiwara",
    "Takayuki Kusano",
    "Takeshi Aihana",
    "Tambet Ingo",
    "Taylor Hayward",
    "Ted Percival",
    "Theppitak Karoonboonyanan",
    "Thomas Cataldo",
    "Thomas Klausner",
    "Thomas Mirlacher",
    "Thouis R. Jones",
    "Tim Wo",
    "Tim Yamin",
    "Timo Hoenig",
    "Timo Sirainen",
    "Timothy Lee",
    "Timur Bakeyev",
    "Tino Meinen",
    "Tobias Mueller",
    "Tõivo Leedjärv",
    "Tom Tromey",
    "Tomas Ogren",
    "Tomasz K\xC5\x82" "oczko",
    "Tomislav Vujec",
    "Tommi Komulainen",
    "Tommi Vainikainen",
    "Tony Tsui",
    "Tor Lillqvist",
    "Trent Lloyd",
    "Tuomas J. Lukka",
    "Tuomas Kuosmanen",
    "Ulrich Neumann",
    "Umesh Tiwari",
    "Umeshtej",
    "Ushveen Kaur",
    "V Ravi Kumar Raju",
    "Vadim Strizhevsky",
    "Valek Filippov",
    "Vandana Shenoy .B",
    "Vardhman Jain",
    "Veerapuram Varadhan",
    "Vincent Noel",
    "Vincent van Adrighem",
    "Viren",
    "Vivek Jain",
    "Vladimer Sichinava",
    "Vladimir Vukicevic",
    "Wadim Dziedzic",
    "Wang Jian",
    "Wang Xin",
    "Wayne Davis",
    "William Jon McCann",
    "Wouter Bolsterlee",
    "Xan Lopez",
    "Xiurong Simon Zheng",
    "Yanko Kaneti",
    "Yi Jin",
    "Yong Sun",
    "Yu Mengjie",
    "Yuedong Du",
    "Yukihiro Nakai",
    "Yuri Pankov",
    "Yuri Syrota",
    "Zach Frey",
    "Zan Lynx",
    "Zbigniew Chyla",
    "\xC3\x98ystein Gisn\xC3\xA5s",
    "\xC5\xBDygimantas Beru\xC4\x8Dka",
    NULL
};

static const gchar *documenters[] = {
    "Aaron Weber",
    "Binika Preet",
    "Dan Winship",
    "David Trowbridge",
    "Jessica Prabhakar",
    "JP Rosevear",
    "Radhika Nair",
    NULL
};

static void
action_about_cb (GtkAction *action,
                 EShellWindow *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 (window),
        "program-name", "Evolution",
        "version", VERSION,
        "copyright", EVOLUTION_COPYRIGHT,
        "comments", _("Groupware Suite"),
        "website", EVOLUTION_WEBSITE,
        "website-label", _("Evolution Website"),
        "authors", authors,
        "documenters", documenters,
        "translator-credits", translator_credits,
        "logo-icon-name", "evolution",
        NULL);
}

static void
action_close_cb (GtkAction *action,
                 EShellWindow *window)
{
    GtkWidget *widget = GTK_WIDGET (window);
    GdkEvent *event;

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

static void
action_contents_cb (GtkAction *action,
                    EShellWindow *window)
{
    /* FIXME  Unfinished. */
}

static void
action_faq_cb (GtkAction *action,
               EShellWindow *window)
{
    GError *error = NULL;

    gtk_show_uri (NULL, EVOLUTION_FAQ, GDK_CURRENT_TIME, &error);

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

static void
action_forget_passwords_cb (GtkAction *action,
                            EShellWindow *window)
{
    gint response;

    response = e_error_run (
        GTK_WINDOW (window), "shell:forget-passwords", NULL);

    if (response == GTK_RESPONSE_OK)
        e_passwords_forget_passwords ();
}

static void
action_import_cb (GtkAction *action,
                  EShellWindow *window)
{
    e_shell_importer_start_import (window);
}

static void
action_new_window_cb (GtkAction *action,
                      EShellWindow *window)
{
    EShell *shell;

    shell = e_shell_window_get_shell (window);
    e_shell_create_window (shell);
}

static void
action_page_setup_cb (GtkAction *action,
                      EShellWindow *window)
{
    e_print_run_page_setup_dialog (GTK_WINDOW (window));
}

static void
action_preferences_cb (GtkAction *action,
                       EShellWindow *window)
{
    GtkWidget *preferences_window;

    preferences_window = e_shell_get_preferences_window ();
    gtk_window_present (GTK_WINDOW (preferences_window));

    /* FIXME Switch to a page appropriate for the current view. */
}

static void
action_quick_reference_cb (GtkAction *action,
                           EShellWindow *window)
{
    const gchar * const *language_names;

    language_names = g_get_language_names ();
    while (*language_names != NULL) {
        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);

            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);
    }
}

static void
action_quit_cb (GtkAction *action,
                EShellWindow *window)
{
    EShell *shell;

    shell = e_shell_window_get_shell (window);
    e_shell_quit (shell);
}

static void
action_send_receive_cb (GtkAction *action,
                        EShellWindow *window)
{
    EShell *shell;

    shell = e_shell_window_get_shell (window);
    e_shell_send_receive (shell, GTK_WINDOW (window));
}

static void
action_shell_view_cb (GtkRadioAction *action,
                      GtkRadioAction *current,
                      EShellWindow *window)
{
    const gchar *view_name;

    view_name = g_object_get_data (G_OBJECT (current), "view-name");
    e_shell_window_set_current_view (window, view_name);
}

static void
action_show_sidebar_cb (GtkToggleAction *action,
                        EShellWindow *window)
{
    GtkWidget *widget;
    gboolean active;

    widget = window->priv->sidebar;
    active = gtk_toggle_action_get_active (action);
    g_object_set (widget, "visible", active, NULL);
}

static void
action_show_statusbar_cb (GtkToggleAction *action,
                          EShellWindow *window)
{
    GtkWidget *widget;
    gboolean active;

    widget = window->priv->status_area;
    active = gtk_toggle_action_get_active (action);
    g_object_set (widget, "visible", active, NULL);
}

static void
action_show_switcher_cb (GtkToggleAction *action,
                         EShellWindow *window)
{
    ESidebar *sidebar;
    gboolean active;

    sidebar = E_SIDEBAR (window->priv->sidebar);
    active = gtk_toggle_action_get_active (action);
    e_sidebar_set_actions_visible (sidebar, active);
}

static void
action_show_toolbar_cb (GtkToggleAction *action,
                        EShellWindow *window)
{
    GtkWidget *widget;
    gboolean active;

    widget = window->priv->main_toolbar;
    active = gtk_toggle_action_get_active (action);
    g_object_set (widget, "visible", active, NULL);
}

static void
action_submit_bug_cb (GtkAction *action,
                      EShellWindow *window)
{
    const gchar *command_line;
    GError *error = NULL;

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

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

    if (error != NULL) {
        const gchar *message;

        if (error->code == G_SPAWN_ERROR_NOENT)
            message = _("Bug Buddy is not installed.");
        else
            message = _("Bug Buddy could not be run.");
        e_notice (window, GTK_MESSAGE_ERROR, message);
        g_error_free (error);
    }
}

static void
action_switcher_style_cb (GtkRadioAction *action,
                          GtkRadioAction *current,
                          EShellWindow *window)
{
    ESidebar *sidebar;
    GtkToolbarStyle style;

    sidebar = E_SIDEBAR (window->priv->sidebar);
    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_sidebar_set_style (sidebar, style);
            break;

        default:
            e_sidebar_unset_style (sidebar);
            break;
    }
}

static void
action_sync_options_cb (GtkAction *action,
                        EShellWindow *window)
{
    const gchar *command_line;
    GError *error = NULL;

    command_line = "gpilotd-control-applet";

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

    if (error != NULL) {
        const gchar *message;

        if (error->code == G_SPAWN_ERROR_NOENT)
            message = _("GNOME Pilot is not installed.");
        else
            message = _("GNOME Pilot could not be run.");
        e_notice (window, GTK_MESSAGE_ERROR, message);
        g_error_free (error);
    }
}

static void
action_work_offline_cb (GtkAction *action,
                        EShellWindow *window)
{
    EShell *shell;

    shell = e_shell_window_get_shell (window);
    e_shell_set_line_status (shell, E_SHELL_LINE_STATUS_OFFLINE);
}

static void
action_work_online_cb (GtkAction *action,
                       EShellWindow *window)
{
    EShell *shell;

    shell = e_shell_window_get_shell (window);
    e_shell_set_line_status (shell, E_SHELL_LINE_STATUS_ONLINE);
}

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) },

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

    { "faq",
      GTK_STOCK_DIALOG_INFO,
      N_("Evolution _FAQ"),
      NULL,
      N_("Open the Frequently Asked Questions webpage"),
      G_CALLBACK (action_faq_cb) },

    { "forget-passwords",
      NULL,
      N_("_Forget Passwords"),
      NULL,
      N_("Forget all remembered passwords"),
      G_CALLBACK (action_forget_passwords_cb) },

    { "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) },

    { "page-setup",
      GTK_STOCK_PAGE_SETUP,
      NULL,
      NULL,
      N_("Change the page settings for your current printer"),
      G_CALLBACK (action_page_setup_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) },

    { "send-receive",
      "mail-send-receive",
      N_("Send / _Receive"),
      "F9",
      N_("Send queued items and retrieve new items"),
      G_CALLBACK (action_send_receive_cb) },

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

    { "sync-options",
      NULL,
      N_("_Synchronization Options..."),
      NULL,
      N_("Set up Pilot configuration"),
      G_CALLBACK (action_sync_options_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,
      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 GtkToggleActionEntry shell_toggle_entries[] = {

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

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

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

    { "show-toolbar",
      NULL,
      N_("Show _Toolbar"),
      NULL,
      N_("Show the toolbar"),
      G_CALLBACK (action_show_toolbar_cb),
      TRUE }
};

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 gint
shell_window_compare_actions (GtkAction *action1,
                              GtkAction *action2)
{
    gchar *label1, *label2;
    gint result;

    /* XXX This is really inefficient, but we're only sorting
     *     a small number of actions (repeatedly, though). */

    g_object_get (action1, "label", &label1, NULL);
    g_object_get (action2, "label", &label2, NULL);

    result = g_utf8_collate (label1, label2);

    g_free (label1);
    g_free (label2);

    return result;
}

static void
shell_window_extract_actions (EShellWindow *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_current_view (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 *view_name;

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

        if (view_name != current_view)
            continue;

        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 *window)
{
    GtkActionGroup *action_group;
    GtkUIManager *manager;
    const gchar *domain;

    g_return_if_fail (E_IS_SHELL_WINDOW (window));

    manager = e_shell_window_get_ui_manager (window);
    domain = GETTEXT_PACKAGE;

    /* Shell Actions */
    action_group = window->priv->shell_actions;
    gtk_action_group_set_translation_domain (action_group, domain);
    gtk_action_group_add_actions (
        action_group, shell_entries,
        G_N_ELEMENTS (shell_entries), window);
    gtk_action_group_add_toggle_actions (
        action_group, shell_toggle_entries,
        G_N_ELEMENTS (shell_toggle_entries), window);
    gtk_action_group_add_radio_actions (
        action_group, shell_switcher_style_entries,
        G_N_ELEMENTS (shell_switcher_style_entries),
        E_SIDEBAR_DEFAULT_TOOLBAR_STYLE,
        G_CALLBACK (action_switcher_style_cb),  window);
    gtk_ui_manager_insert_action_group (manager, action_group, 0);

    /* New Item Actions (empty) */
    action_group = window->priv->new_item_actions;
    gtk_action_group_set_translation_domain (action_group, domain);
    gtk_ui_manager_insert_action_group (manager, action_group, 0);

    /* New Source Actions (empty) */
    action_group = window->priv->new_source_actions;
    gtk_action_group_set_translation_domain (action_group, domain);
    gtk_ui_manager_insert_action_group (manager, action_group, 0);

    /* Shell View Actions (empty) */
    action_group = window->priv->shell_view_actions;
    gtk_action_group_set_translation_domain (action_group, domain);
    gtk_ui_manager_insert_action_group (manager, action_group, 0);
}

GtkWidget *
e_shell_window_create_new_menu (EShellWindow *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 = window->priv->new_item_actions;

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

    action_group = window->priv->new_source_actions;

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

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

    shell_window_extract_actions (
        window, &new_item_actions, &list);

    shell_window_extract_actions (
        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. */

    separator = gtk_separator_menu_item_new ();
    new_item_actions = g_list_prepend (new_item_actions, separator);

    separator = gtk_separator_menu_item_new ();
    new_source_actions = g_list_prepend (new_source_actions, 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;
}

void
e_shell_window_create_shell_view_actions (EShellWindow *window)
{
    GType *children;
    GSList *group = NULL;
    GtkActionGroup *action_group;
    GtkUIManager *manager;
    guint n_children, ii;
    guint merge_id;

    g_return_if_fail (E_IS_SHELL_WINDOW (window));

    action_group = window->priv->shell_view_actions;
    children = g_type_children (E_TYPE_SHELL_VIEW, &n_children);
    manager = e_shell_window_get_ui_manager (window);
    merge_id = gtk_ui_manager_new_merge_id (manager);

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

    for (ii = 0; ii < n_children; ii++) {
        EShellViewClass *class;
        GtkRadioAction *action;
        const gchar *view_name;
        gchar *action_name;
        gchar *tooltip;

        class = g_type_class_ref (children[ii]);

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

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

        view_name = class->module->name;
        action_name = g_strdup_printf ("shell-view-%s", view_name);
        tooltip = g_strdup_printf (_("Switch to %s"), class->label);

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

        action = gtk_radio_action_new (
            action_name, class->label,
            tooltip, NULL, ii);

        g_object_set (
            G_OBJECT (action),
            "icon-name", class->icon_name, NULL);

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

        if (group == NULL) {

            /* First view is the default. */
            window->priv->default_view = view_name;

            /* Only listen to the first action. */
            g_signal_connect (
                action, "changed",
                G_CALLBACK (action_shell_view_cb), window);
        }

        gtk_radio_action_set_group (action, group);
        group = gtk_radio_action_get_group (action);

        gtk_action_group_add_action (
            action_group, GTK_ACTION (action));

        e_sidebar_add_action (
            E_SIDEBAR (window->priv->sidebar),
            GTK_ACTION (action));

        gtk_ui_manager_add_ui (
            manager, merge_id,
            "/main-menu/view-menu/window-menu",
            action_name, action_name,
            GTK_UI_MANAGER_AUTO, FALSE);

        g_free (action_name);
        g_free (tooltip);

        g_type_class_unref (class);
    }

    g_free (children);
}