aboutsummaryrefslogtreecommitdiffstats
path: root/doc/reference/libeutil/libeutil-sections.txt
blob: 98b939826e5f9a6f6fd75ef1ce73257423387764 (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
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
<SECTION>
<FILE>e-action-combo-box</FILE>
<TITLE>EActionComboBox</TITLE>
EActionComboBox
e_action_combo_box_new
e_action_combo_box_new_with_action
e_action_combo_box_get_action
e_action_combo_box_set_action
e_action_combo_box_get_current_value
e_action_combo_box_set_current_value
e_action_combo_box_add_separator_before
e_action_combo_box_add_separator_after
<SUBSECTION Standard>
E_ACTION_COMBO_BOX
E_IS_ACTION_COMBO_BOX
E_TYPE_ACTION_COMBO_BOX
E_ACTION_COMBO_BOX_CLASS
E_IS_ACTION_COMBO_BOX_CLASS
E_ACTION_COMBO_BOX_GET_CLASS
EActionComboBoxClass
e_action_combo_box_get_type
<SUBSECTION Private>
EActionComboBoxPrivate
</SECTION>

<SECTION>
<FILE>e-activity</FILE>
<TITLE>EActivity</TITLE>
EActivity
e_activity_new
e_activity_describe
e_activity_get_alert_sink
e_activity_set_alert_sink
e_activity_get_cancellable
e_activity_set_cancellable
e_activity_get_icon_name
e_activity_set_icon_name
e_activity_get_percent
e_activity_set_percent
EActivityState
e_activity_get_state
e_activity_set_state
e_activity_get_text
e_activity_set_text
<SUBSECTION Standard>
E_ACTIVITY
E_IS_ACTIVITY
E_TYPE_ACTIVITY
E_ACTIVITY_CLASS
E_IS_ACTIVITY_CLASS
E_ACTIVITY_GET_CLASS
EActivityClass
e_activity_get_type
<SUBSECTION Private>
EActivityPrivate
</SECTION>

<SECTION>
<FILE>e-activity-bar</FILE>
<TITLE>EActivityBar</TITLE>
EActivityBar
e_activity_bar_new
e_activity_bar_get_activity
e_activity_bar_set_activity
<SUBSECTION Standard>
E_ACTIVITY_BAR
E_IS_ACTIVITY_BAR
E_TYPE_ACTIVITY_BAR
E_ACTIVITY_BAR_CLASS
E_IS_ACTIVITY_BAR_CLASS
E_ACTIVITY_BAR_GET_CLASS
EActivityBarClass
e_activity_bar_get_type
<SUBSECTION Private>
EActivityBarPrivate
</SECTION>

<SECTION>
<FILE>e-activity-proxy</FILE>
<TITLE>EActivityProxy</TITLE>
EActivityProxy
e_activity_proxy_new
e_activity_proxy_get_activity
<SUBSECTION Standard>
E_ACTIVITY_PROXY
E_IS_ACTIVITY_PROXY
E_TYPE_ACTIVITY_PROXY
E_ACTIVITY_PROXY_CLASS
E_IS_ACTIVITY_PROXY_CLASS
E_ACTIVITY_PROXY_GET_CLASS
EActivityProxyClass
e_activity_proxy_get_type
<SUBSECTION Private>
EActivityProxyPrivate
</SECTION>

<SECTION>
<FILE>e-alarm-selector</FILE>
<TITLE>EAlarmSelector</TITLE>
EAlarmSelector
e_alarm_selector_new
<SUBSECTION Standard>
E_ALARM_SELECTOR
E_IS_ALARM_SELECTOR
E_TYPE_ALARM_SELECTOR
E_ALARM_SELECTOR_CLASS
E_IS_ALARM_SELECTOR_CLASS
E_ALARM_SELECTOR_GET_CLASS
EAlarmSelectorClass
e_alarm_selector_get_type
<SUBSECTION Private>
EAlarmSelectorPrivate
</SECTION>

<SECTION>
<FILE>e-alert</FILE>
<TITLE>EAlert</TITLE>
E_ALERT_ASK_FILE_EXISTS_OVERWRITE
E_ALERT_NO_SAVE_FILE
E_ALERT_NO_LOAD_FILE
EAlert
e_alert_new
e_alert_new_valist
e_alert_get_default_response
e_alert_set_default_response
e_alert_get_message_type
e_alert_set_message_type
e_alert_get_primary_text
e_alert_set_primary_text
e_alert_get_secondary_text
e_alert_set_secondary_text
e_alert_get_stock_id
e_alert_add_action
e_alert_peek_actions
e_alert_create_image
e_alert_response
e_alert_start_timer
e_alert_submit
e_alert_submit_valist
<SUBSECTION Standard>
E_ALERT
E_IS_ALERT
E_TYPE_ALERT
E_ALERT_CLASS
E_IS_ALERT_CLASS
E_ALERT_GET_CLASS
EAlertClass
e_alert_get_type
<SUBSECTION Private>
EAlertPrivate
</SECTION>

<SECTION>
<FILE>e-alert-bar</FILE>
<TITLE>EAlertBar</TITLE>
EAlertBar
e_alert_bar_new
e_alert_bar_clear
e_alert_bar_add_alert
<SUBSECTION Standard>
E_ALERT_BAR
E_IS_ALERT_BAR
E_TYPE_ALERT_BAR
E_ALERT_BAR_CLASS
E_IS_ALERT_BAR_CLASS
E_ALERT_BAR_GET_CLASS
EAlertBarClass
e_alert_bar_get_type
<SUBSECTION Private>
EAlertBarPrivate
</SECTION>

<SECTION>
<FILE>e-alert-dialog</FILE>
<TITLE>EAlertDialog</TITLE>
EAlertDialog
e_alert_dialog_new
e_alert_dialog_new_for_args
e_alert_run_dialog
e_alert_run_dialog_for_args
e_alert_dialog_get_alert
e_alert_dialog_get_content_area
<SUBSECTION Standard>
E_ALERT_DIALOG
E_IS_ALERT_DIALOG
E_TYPE_ALERT_DIALOG
E_ALERT_DIALOG_CLASS
E_IS_ALERT_DIALOG_CLASS
E_ALERT_DIALOG_GET_CLASS
EAlertDialogClass
e_alert_dialog_get_type
<SUBSECTION Private>
EAlertDialogPrivate
</SECTION>

<SECTION>
<FILE>e-alert-sink</FILE>
<TITLE>EAlertSink</TITLE>
EAlertSink
EAlertSinkInterface
e_alert_sink_submit_alert
<SUBSECTION Standard>
E_ALERT_SINK
E_IS_ALERT_SINK
E_TYPE_ALERT_SINK
E_ALERT_SINK_INTERFACE
E_IS_ALERT_SINK_INTERFACE
E_ALERT_SINK_GET_INTERFACE
e_alert_sink_get_type
</SECTION>

<SECTION>
<FILE>e-attachment</FILE>
<TITLE>EAttachment</TITLE>
EAttachment
e_attachment_new
e_attachment_new_for_path
e_attachment_new_for_uri
e_attachment_new_for_message
e_attachment_add_to_multipart
e_attachment_cancel
e_attachment_get_can_show
e_attachment_set_can_show
e_attachment_get_disposition
e_attachment_set_disposition
e_attachment_get_file
e_attachment_set_file
e_attachment_get_file_info
e_attachment_set_file_info
e_attachment_get_icon
e_attachment_get_loading
e_attachment_get_mime_part
e_attachment_set_mime_part
e_attachment_get_percent
e_attachment_get_reference
e_attachment_set_reference
e_attachment_get_saving
e_attachment_get_shown
e_attachment_set_shown
e_attachment_get_encrypted
e_attachment_set_encrypted
e_attachment_get_signed
e_attachment_set_signed
e_attachment_get_description
e_attachment_get_thumbnail_path
e_attachment_is_rfc822
e_attachment_list_apps
e_attachment_load_async
e_attachment_load_finish
e_attachment_open_async
e_attachment_open_finish
e_attachment_save_async
e_attachment_save_finish
e_attachment_load_handle_error
e_attachment_open_handle_error
e_attachment_save_handle_error
<SUBSECTION Standard>
E_ATTACHMENT
E_IS_ATTACHMENT
E_TYPE_ATTACHMENT
E_ATTACHMENT_CLASS
E_IS_ATTACHMENT_CLASS
E_ATTACHMENT_GET_CLASS
EAttachmentClass
e_attachment_get_type
<SUBSECTION Private>
EAttachmentPrivate
</SECTION>

<SECTION>
<FILE>e-attachment-bar</FILE>
<TITLE>EAttachmentBar</TITLE>
EAttachmentBar
e_attachment_bar_new
e_attachment_bar_get_active_view
e_attachment_bar_set_active_view
e_attachment_bar_get_expanded
e_attachment_bar_set_expanded
e_attachment_bar_get_store
<SUBSECTION Standard>
E_ATTACHMENT_BAR
E_IS_ATTACHMENT_BAR
E_TYPE_ATTACHMENT_BAR
E_ATTACHMENT_BAR_CLASS
E_IS_ATTACHMENT_BAR_CLASS
E_ATTACHMENT_BAR_GET_CLASS
EAttachmentBarClass
e_attachment_bar_get_type
<SUBSECTION Private>
EAttachmentBarPrivate
</SECTION>

<SECTION>
<FILE>e-attachment-button</FILE>
<TITLE>EAttachmentButton</TITLE>
EAttachmentButton
e_attachment_button_new
e_attachment_button_get_view
e_attachment_button_get_attachment
e_attachment_button_set_attachment
e_attachment_button_get_expandable
e_attachment_button_set_expandable
e_attachment_button_get_expanded
e_attachment_button_set_expanded
<SUBSECTION Standard>
E_ATTACHMENT_BUTTON
E_IS_ATTACHMENT_BUTTON
E_TYPE_ATTACHMENT_BUTTON
E_ATTACHMENT_BUTTON_CLASS
E_IS_ATTACHMENT_BUTTON_CLASS
E_ATTACHMENT_BUTTON_GET_CLASS
EAttachmentButtonClass
e_attachment_button_get_type
<SUBSECTION Private>
EAttachmentButtonPrivate
</SECTION>

<SECTION>
<FILE>e-attachment-dialog</FILE>
<TITLE>EAttachmentDialog</TITLE>
EAttachmentDialog
e_attachment_dialog_new
e_attachment_dialog_get_attachment
e_attachment_dialog_set_attachment
<SUBSECTION Standard>
E_ATTACHMENT_DIALOG
E_IS_ATTACHMENT_DIALOG
E_TYPE_ATTACHMENT_DIALOG
E_ATTACHMENT_DIALOG_CLASS
E_IS_ATTACHMENT_DIALOG_CLASS
E_ATTACHMENT_DIALOG_GET_CLASS
EAttachmentDialogClass
e_attachment_dialog_get_type
<SUBSECTION Private>
EAttachmentDialogPrivate
</SECTION>

<SECTION>
<FILE>e-attachment-handler</FILE>
<TITLE>EAttachmentHandler</TITLE>
EAttachmentHandler
EAttachmentHandlerImage
EAttachmentHandlerSendto
e_attachment_handler_get_view
e_attachment_handler_get_drag_actions
e_attachment_handler_get_target_table
<SUBSECTION Standard>
E_ATTACHMENT_HANDLER
E_IS_ATTACHMENT_HANDLER
E_TYPE_ATTACHMENT_HANDLER
E_ATTACHMENT_HANDLER_CLASS
E_IS_ATTACHMENT_HANDLER_CLASS
E_ATTACHMENT_HANDLER_GET_CLASS
E_ATTACHMENT_HANDLER_IMAGE
E_IS_ATTACHMENT_HANDLER_IMAGE
E_TYPE_ATTACHMENT_HANDLER_IMAGE
E_ATTACHMENT_HANDLER_IMAGE_CLASS
E_IS_ATTACHMENT_HANDLER_IMAGE_CLASS
E_ATTACHMENT_HANDLER_IMAGE_GET_CLASS
E_ATTACHMENT_HANDLER_SENDTO
E_IS_ATTACHMENT_HANDLER_SENDTO
E_TYPE_ATTACHMENT_HANDLER_SENDTO
E_ATTACHMENT_HANDLER_SENDTO_CLASS
E_IS_ATTACHMENT_HANDLER_SENDTO_CLASS
E_ATTACHMENT_HANDLER_SENDTO_GET_CLASS
EAttachmentHandlerClass
EAttachmentHandlerImageClass
EAttachmentHandlerSendtoClass
e_attachment_handler_get_type
e_attachment_handler_image_get_type
e_attachment_handler_sendto_get_type
<SUBSECTION Private>
EAttachmentHandlerPrivate
EAttachmentHandlerImagePrivate
EAttachmentHandlerSendtoPrivate
</SECTION>

<SECTION>
<FILE>e-attachment-icon-view</FILE>
<TITLE>EAttachmentIconView</TITLE>
EAttachmentIconView
e_attachment_icon_view_new
e_attachment_icon_view_set_default_icon_size
<SUBSECTION Standard>
E_ATTACHMENT_ICON_VIEW
E_IS_ATTACHMENT_ICON_VIEW
E_TYPE_ATTACHMENT_ICON_VIEW
E_ATTACHMENT_ICON_VIEW_CLASS
E_IS_ATTACHMENT_ICON_VIEW_CLASS
E_ATTACHMENT_ICON_VIEW_GET_CLASS
EAttachmentIconViewClass
e_attachment_icon_view_get_type
<SUBSECTION Private>
EAttachmentIconViewPrivate
</SECTION>

<SECTION>
<FILE>e-attachment-paned</FILE>
<TITLE>EAttachmentPaned</TITLE>
EAttachmentPaned
e_attachment_paned_new
e_attachment_paned_get_content_area
e_attachment_paned_get_active_view
e_attachment_paned_set_active_view
e_attachment_paned_get_expanded
e_attachment_paned_set_expanded
e_attachment_paned_drag_data_received
e_attachment_paned_get_controls_container
e_attachment_paned_get_view_combo
e_attachment_paned_set_default_height
<SUBSECTION Standard>
E_ATTACHMENT_PANED
E_IS_ATTACHMENT_PANED
E_TYPE_ATTACHMENT_PANED
E_ATTACHMENT_PANED_CLASS
E_IS_ATTACHMENT_PANED_CLASS
E_ATTACHMENT_PANED_GET_CLASS
EAttachmentPanedClass
e_attachment_paned_get_type
<SUBSECTION Private>
EAttachmentPanedPrivate
</SECTION>

<SECTION>
<FILE>e-attachment-store</FILE>
<TITLE>EAttachmentStore</TITLE>
EAttachmentStore
e_attachment_store_new
e_attachment_store_add_attachment
e_attachment_store_remove_attachment
e_attachment_store_add_to_multipart
e_attachment_store_get_attachments
e_attachment_store_get_num_attachments
e_attachment_store_get_num_loading
e_attachment_store_get_total_size
e_attachment_store_run_load_dialog
e_attachment_store_run_save_dialog
e_attachment_store_get_uris_async
e_attachment_store_get_uris_finish
e_attachment_store_load_async
e_attachment_store_load_finish
e_attachment_store_save_async
e_attachment_store_save_finish
<SUBSECTION Standard>
E_ATTACHMENT_STORE
E_IS_ATTACHMENT_STORE
E_TYPE_ATTACHMENT_STORE
E_ATTACHMENT_STORE_CLASS
E_IS_ATTACHMENT_STORE_CLASS
E_ATTACHMENT_STORE_GET_CLASS
EAttachmentStoreClass
e_attachment_store_get_type
<SUBSECTION Private>
EAttachmentStorePrivate
</SECTION>

<SECTION>
<FILE>e-attachment-tree-view</FILE>
<TITLE>EAttachmentTreeView</TITLE>
EAttachmentTreeView
e_attachment_tree_view_new
<SUBSECTION Standard>
E_ATTACHMENT_TREE_VIEW
E_IS_ATTACHMENT_TREE_VIEW
E_TYPE_ATTACHMENT_TREE_VIEW
E_ATTACHMENT_TREE_VIEW_CLASS
E_IS_ATTACHMENT_TREE_VIEW_CLASS
E_ATTACHMENT_TREE_VIEW_GET_CLASS
EAttachmentTreeViewClass
e_attachment_tree_view_get_type
<SUBSECTION Private>
EAttachmentTreeViewPrivate
</SECTION>

<SECTION>
<FILE>e-attachment-view</FILE>
<TITLE>EAttachmentView</TITLE>
EAttachmentView
e_attachment_view_init
e_attachment_view_dispose
e_attachment_view_finalize
e_attachment_view_get_private
e_attachment_view_get_store
e_attachment_view_get_editable
e_attachment_view_set_editable
e_attachment_view_get_target_list
e_attachment_view_get_drag_actions
e_attachment_view_get_selected_attachments
e_attachment_view_open_path
e_attachment_view_remove_selected
e_attachment_view_button_press_event
e_attachment_view_button_release_event
e_attachment_view_motion_notify_event
e_attachment_view_key_press_event
e_attachment_view_get_path_at_pos
e_attachment_view_get_selected_paths
e_attachment_view_path_is_selected
e_attachment_view_select_path
e_attachment_view_unselect_path
e_attachment_view_select_all
e_attachment_view_unselect_all
e_attachment_view_sync_selection
e_attachment_view_drag_source_set
e_attachment_view_drag_source_unset
e_attachment_view_drag_begin
e_attachment_view_drag_end
e_attachment_view_drag_data_get
e_attachment_view_drag_dest_set
e_attachment_view_drag_dest_unset
e_attachment_view_drag_motion
e_attachment_view_drag_drop
e_attachment_view_drag_data_received
e_attachment_view_get_action
e_attachment_view_add_action_group
e_attachment_view_get_action_group
e_attachment_view_get_popup_menu
e_attachment_view_get_ui_manager
e_attachment_view_show_popup_menu
e_attachment_view_update_actions
<SUBSECTION Standard>
E_ATTACHMENT_VIEW
E_IS_ATTACHMENT_VIEW
E_TYPE_ATTACHMENT_VIEW
E_ATTACHMENT_VIEW_IFACE
E_IS_ATTACHMENT_VIEW_IFACE
E_ATTACHMENT_VIEW_GET_IFACE
EAttachmentViewIface
e_attachment_view_get_type
<SUBSECTION Private>
EAttachmentViewPrivate
</SECTION>

<SECTION>
<FILE>e-auth-combo-box</FILE>
<TITLE>EAuthComboBox</TITLE>
EAuthComboBox
e_auth_combo_box_new
e_auth_combo_box_get_provider
e_auth_combo_box_set_provider
e_auth_combo_box_update_available
<SUBSECTION Standard>
E_AUTH_COMBO_BOX
E_IS_AUTH_COMBO_BOX
E_TYPE_AUTH_COMBO_BOX
E_AUTH_COMBO_BOX_CLASS
E_IS_AUTH_COMBO_BOX_CLASS
E_AUTH_COMBO_BOX_GET_CLASS
EAuthComboBoxClass
e_auth_combo_box_get_type
<SUBSECTION Private>
EAuthComboBoxPrivate
</SECTION>

<SECTION>
<FILE>e-autocomplete-selector</FILE>
<TITLE>EAutocompleteSelector</TITLE>
EAutocompleteSelector
e_autocomplete_selector_new
<SUBSECTION Standard>
E_AUTOCOMPLETE_SELECTOR
E_IS_AUTOCOMPLETE_SELECTOR
E_TYPE_AUTOCOMPLETE_SELECTOR
E_AUTOCOMPLETE_SELECTOR_CLASS
E_IS_AUTOCOMPLETE_SELECTOR_CLASS
E_AUTOCOMPLETE_SELECTOR_GET_CLASS
EAutocompleteSelectorClass
e_autocomplete_selector_get_type
<SUBSECTION Private>
EAutocompleteSelectorPrivate
</SECTION>

<SECTION>
<FILE>e-bit-array</FILE>
<TITLE>Bit Arrays (Legacy)</TITLE>
EBitArray
e_bit_array_new
e_bit_array_value_at
e_bit_array_foreach
e_bit_array_selected_count
e_bit_array_select_all
e_bit_array_invert_selection
e_bit_array_bit_count
e_bit_array_change_one_row
e_bit_array_change_range
e_bit_array_select_single_row
e_bit_array_toggle_single_row
e_bit_array_insert
e_bit_array_delete
e_bit_array_delete_single_mode
e_bit_array_move_row
<SUBSECTION Standard>
E_BIT_ARRAY
E_IS_BIT_ARRAY
E_BIT_ARRAY_TYPE
E_BIT_ARRAY_CLASS
E_IS_BIT_ARRAY_CLASS
EBitArrayClass
e_bit_array_get_type
</SECTION>

<SECTION>
<FILE>e-book-source-config</FILE>
<TITLE>EBookSourceConfig</TITLE>
EBookSourceConfig
e_book_source_config_new
e_book_source_config_add_offline_toggle
<SUBSECTION Standard>
E_BOOK_SOURCE_CONFIG
E_IS_BOOK_SOURCE_CONFIG
E_TYPE_BOOK_SOURCE_CONFIG
E_BOOK_SOURCE_CONFIG_CLASS
E_IS_BOOK_SOURCE_CONFIG_CLASS
E_BOOK_SOURCE_CONFIG_GET_CLASS
EBookSourceConfigClass
e_book_source_config_get_type
<SUBSECTION Private>
EBookSourceConfigPrivate
</SECTION>

<SECTION>
<FILE>e-cal-source-config</FILE>
<TITLE>ECalSourceConfig</TITLE>
ECalSourceConfig
e_cal_source_config_new
e_cal_source_config_get_source_type
e_cal_source_config_add_offline_toggle
<SUBSECTION Standard>
E_CAL_SOURCE_CONFIG
E_IS_CAL_SOURCE_CONFIG
E_TYPE_CAL_SOURCE_CONFIG
E_CAL_SOURCE_CONFIG_CLASS
E_IS_CAL_SOURCE_CONFIG_CLASS
E_CAL_SOURCE_CONFIG_GET_CLASS
ECalSourceConfigClass
e_cal_source_config_get_type
<SUBSECTION Private>
ECalSourceConfigPrivate
</SECTION>

<SECTION>
<FILE>e-calendar</FILE>
<TITLE>ECalendar</TITLE>
ECalendar
e_calendar_new
e_calendar_set_minimum_size
e_calendar_set_maximum_size
e_calendar_get_border_size
e_calendar_set_focusable
<SUBSECTION Standard>
E_CALENDAR
E_IS_CALENDAR
E_TYPE_CALENDAR
E_CALENDAR_CLASS
E_IS_CALENDAR_CLASS
E_CALENDAR_GET_CLASS
ECalendarClass
e_calendar_get_type
</SECTION>

<SECTION>
<FILE>e-calendar-item</FILE>
<TITLE>ECalendarItem</TITLE>
E_CALENDAR_ITEM_YPAD_ABOVE_MONTH_NAME
E_CALENDAR_ITEM_YPAD_BELOW_MONTH_NAME
E_CALENDAR_ITEM_MARK_BOLD
E_CALENDAR_ITEM_MARK_ITALIC
E_CALENDAR_ITEM_MIN_CELL_XPAD
E_CALENDAR_ITEM_MIN_CELL_YPAD
E_CALENDAR_ITEM_YPAD_ABOVE_DAY_LETTERS
E_CALENDAR_ITEM_YPAD_BELOW_DAY_LETTERS
E_CALENDAR_ITEM_YPAD_ABOVE_CELLS
E_CALENDAR_ITEM_YPAD_BELOW_CELLS
E_CALENDAR_ITEM_XPAD_BEFORE_MONTH_NAME_WITH_BUTTON
E_CALENDAR_ITEM_XPAD_BEFORE_MONTH_NAME
E_CALENDAR_ITEM_XPAD_AFTER_MONTH_NAME
E_CALENDAR_ITEM_XPAD_AFTER_MONTH_NAME_WITH_BUTTON
E_CALENDAR_ITEM_XPAD_BEFORE_WEEK_NUMBERS
E_CALENDAR_ITEM_XPAD_AFTER_WEEK_NUMBERS
E_CALENDAR_ITEM_XPAD_BEFORE_CELLS
E_CALENDAR_ITEM_XPAD_AFTER_CELLS
ECalendarItemColors
ECalendarItem
e_calendar_item_get_first_month
e_calendar_item_set_first_month
e_calendar_item_get_max_days_sel
e_calendar_item_set_max_days_sel
e_calendar_item_get_days_start_week_sel
e_calendar_item_set_days_start_week_sel
e_calendar_item_get_display_popup
e_calendar_item_set_display_popup
e_calendar_item_get_date_range
e_calendar_item_get_selection
e_calendar_item_set_selection
e_calendar_item_clear_marks
e_calendar_item_mark_day
e_calendar_item_mark_days
ECalendarItemStyleCallback
e_calendar_item_set_style_callback
ECalendarItemGetTimeCallback
e_calendar_item_set_get_time_callback
e_calendar_item_normalize_date
e_calendar_item_get_week_number
e_calendar_item_style_set
<SUBSECTION Standard>
E_CALENDAR_ITEM
E_IS_CALENDAR_ITEM
E_TYPE_CALENDAR_ITEM
E_CALENDAR_ITEM_CLASS
E_IS_CALENDAR_ITEM_CLASS
E_CALENDAR_ITEM_GET_CLASS
ECalendarItemClass
e_calendar_item_get_type
</SECTION>

<SECTION>
<FILE>e-canvas</FILE>
<TITLE>ECanvas</TITLE>
ECanvasItemSelectionFunc
ECanvasItemSelectionCompareFunc
ECanvasSelectionInfo
ECanvas
e_canvas_new
e_canvas_item_grab_focus
e_canvas_item_request_reflow
e_canvas_item_request_parent_reflow
ECanvasItemReflowFunc
e_canvas_item_set_reflow_callback
ECanvasItemGrabCancelled
e_canvas_item_grab
e_canvas_item_ungrab
<SUBSECTION Standard>
E_CANVAS
E_IS_CANVAS
E_TYPE_CANVAS
E_CANVAS_CLASS
E_IS_CANVAS_CLASS
E_TYPE_CANVAS_CLASS
ECanvasClass
e_canvas_get_type
</SECTION>

<SECTION>
<FILE>e-canvas-background</FILE>
<TITLE>ECanvasBackground</TITLE>
ECanvasBackground
<SUBSECTION Standard>
E_CANVAS_BACKGROUND
E_IS_CANVAS_BACKGROUND
E_TYPE_CANVAS_BACKGROUND
E_CANVAS_BACKGROUND_CLASS
E_IS_CANVAS_BACKGROUND_CLASS
E_CANVAS_BACKGROUND_GET_CLASS
ECanvasBackgroundClass
e_canvas_background_get_type
<SUBSECTION Private>
ECanvasBackgroundPrivate
</SECTION>

<SECTION>
<FILE>e-canvas-vbox</FILE>
<TITLE>ECanvasVbox</TITLE>
ECanvasVbox
e_canvas_vbox_add_item
e_canvas_vbox_add_item_start
<SUBSECTION Standard>
E_CANVAS_VBOX
E_IS_CANVAS_VBOX
E_TYPE_CANVAS_VBOX
E_CANVAS_VBOX_CLASS
E_IS_CANVAS_VBOX_CLASS
E_CANVAS_VBOX_GET_CLASS
ECanvasVboxClass
e_canvas_vbox_get_type
</SECTION>

<SECTION>
<FILE>e-categories-config</FILE>
<TITLE>Categories</TITLE>
e_categories_config_get_icon_for
e_categories_config_open_dialog_for_entry
</SECTION>

<SECTION>
<FILE>e-categories-dialog</FILE>
<TITLE>ECategoriesDialog</TITLE>
ECategoriesDialog
e_categories_dialog_new
e_categories_dialog_get_categories
e_categories_dialog_set_categories
<SUBSECTION Standard>
E_CATEGORIES_DIALOG
E_IS_CATEGORIES_DIALOG
E_TYPE_CATEGORIES_DIALOG
E_CATEGORIES_DIALOG_CLASS
E_IS_CATEGORIES_DIALOG_CLASS
E_CATEGORIES_DIALOG_GET_CLASS
ECategoriesDialogClass
e_categories_dialog_get_type
<SUBSECTION Private>
ECategoriesDialogPrivate
</SECTION>

<SECTION>
<FILE>e-categories-editor</FILE>
<TITLE>ECategoriesEditor</TITLE>
ECategoriesEditor
e_categories_editor_new
e_categories_editor_get_categories
e_categories_editor_set_categories
e_categories_editor_get_entry_visible
e_categories_editor_set_entry_visible
<SUBSECTION Standard>
E_CATEGORIES_EDITOR
E_IS_CATEGORIES_EDITOR
E_TYPE_CATEGORIES_EDITOR
E_CATEGORIES_EDITOR_CLASS
E_IS_CATEGORIES_EDITOR_CLASS
E_CATEGORIES_EDITOR_GET_CLASS
ECategoriesEditorClass
e_categories_editor_get_type
<SUBSECTION Private>
ECategoriesEditorPrivate
</SECTION>

<SECTION>
<FILE>e-categories-selector</FILE>
<TITLE>ECategoriesSelector</TITLE>
ECategoriesSelector
e_categories_selector_new
e_categories_selector_get_checked
e_categories_selector_set_checked
e_categories_selector_get_items_checkable
e_categories_selector_set_items_checkable
e_categories_selector_delete_selection
e_categories_selector_get_selected
<SUBSECTION Standard>
E_CATEGORIES_SELECTOR
E_IS_CATEGORIES_SELECTOR
E_TYPE_CATEGORIES_SELECTOR
E_CATEGORIES_SELECTOR_CLASS
E_IS_CATEGORIES_SELECTOR_CLASS
E_CATEGORIES_SELECTOR_GET_CLASS
ECategoriesSelectorClass
e_categories_selector_get_type
<SUBSECTION Private>
ECategoriesSelectorPrivate
</SECTION>

<SECTION>
<FILE>e-category-completion</FILE>
<TITLE>ECategoryCompletion</TITLE>
ECategoryCompletion
e_category_completion_new
<SUBSECTION Standard>
E_TYPE_CATEGORY_COMPLETION
E_CATEGORY_COMPLETION
E_CATEGORY_COMPLETION_CLASS
E_IS_CATEGORY_COMPLETION
E_IS_CATEGORY_COMPLETION_CLASS
E_CATEGORY_COMPLETION_GET_CLASS
ECategoryCompletionClass
e_category_completion_get_type
<SUBSECTION Private>
ECategoryCompletionPrivate
</SECTION>

<SECTION>
<FILE>e-category-editor</FILE>
<TITLE>ECategoryEditor</TITLE>
ECategoryEditor
e_category_editor_new
e_category_editor_create_category
e_category_editor_edit_category
<SUBSECTION Standard>
E_CATEGORY_EDITOR
E_IS_CATEGORY_EDITOR
E_TYPE_CATEGORY_EDITOR
E_CATEGORY_EDITOR_CLASS
E_IS_CATEGORY_EDITOR_CLASS
E_CATEGORY_EDITOR_GET_CLASS
ECategoryEditorClass
e_category_editor_get_type
<SUBSECTION Private>
ECategoryEditorPrivate
</SECTION>

<SECTION>
<FILE>e-cell-renderer-color</FILE>
<TITLE>ECellRendererColor</TITLE>
ECellRendererColor
e_cell_renderer_color_new
<SUBSECTION Standard>
E_TYPE_CELL_RENDERER_COLOR
E_CELL_RENDERER_COLOR
E_CELL_RENDERER_COLOR_CLASS
E_IS_CELL_RENDERER_COLOR
E_IS_CELL_RENDERER_COLOR_CLASS
E_CELL_RENDERER_COLOR_GET_CLASS
ECellRendererColorClass
e_cell_renderer_color_get_type
<SUBSECTION Private>
ECellRendererColorPrivate
</SECTION>

<SECTION>
<FILE>e-charset-combo-box</FILE>
<TITLE>ECharsetComboBox</TITLE>
ECharsetComboBox
e_charset_combo_box_new
e_charset_combo_box_get_charset
e_charset_combo_box_set_charset
<SUBSECTION Standard>
E_CHARSET_COMBO_BOX
E_IS_CHARSET_COMBO_BOX
E_TYPE_CHARSET_COMBO_BOX
E_CHARSET_COMBO_BOX_CLASS
E_IS_CHARSET_COMBO_BOX_CLASS
E_CHARSET_COMBO_BOX_GET_CLASS
ECharsetComboBoxClass
e_charset_combo_box_get_type
<SUBSECTION Private>
ECharsetComboBoxPrivate
</SECTION>

<SECTION>
<FILE>e-client-utils</FILE>
<TITLE>EClient Utilities</TITLE>
EClientSourceType
e_client_utils_new
e_client_utils_open_new
e_client_utils_open_new_finish
</SECTION>

<SECTION>
<FILE>e-contact-store</FILE>
<TITLE>EContactStore</TITLE>
EContactStore
e_contact_store_new
e_contact_store_get_client
e_contact_store_get_contact
e_contact_store_find_contact
e_contact_store_get_clients
e_contact_store_add_client
e_contact_store_remove_client
e_contact_store_set_query
e_contact_store_peek_query
<SUBSECTION Standard>
E_CONTACT_STORE
E_IS_CONTACT_STORE
E_TYPE_CONTACT_STORE
E_CONTACT_STORE_CLASS
E_IS_CONTACT_STORE_CLASS
E_CONTACT_STORE_GET_CLASS
EContactStoreClass
e_contact_store_get_type
<SUBSECTION Private>
EContactStorePrivate
</SECTION>

<SECTION>
<FILE>e-date-edit</FILE>
<TITLE>EDateEdit</TITLE>
EDateEditGetTimeCallback
e_date_edit_new
e_date_edit_set_editable
e_date_edit_date_is_valid
e_date_edit_time_is_valid
e_date_edit_get_time
e_date_edit_set_time
e_date_edit_get_date
e_date_edit_set_date
e_date_edit_get_time_of_day
e_date_edit_set_time_of_day
e_date_edit_set_date_and_time_of_day
e_date_edit_get_show_date
e_date_edit_set_show_date
e_date_edit_get_show_time
e_date_edit_set_show_time
e_date_edit_get_week_start_day
e_date_edit_set_week_start_day
e_date_edit_get_show_week_numbers
e_date_edit_set_show_week_numbers
e_date_edit_get_use_24_hour_format
e_date_edit_set_use_24_hour_format
e_date_edit_get_allow_no_date_set
e_date_edit_set_allow_no_date_set
e_date_edit_get_time_popup_range
e_date_edit_set_time_popup_range
e_date_edit_get_make_time_insensitive
e_date_edit_set_make_time_insensitive
e_date_edit_get_twodigit_year_can_future
e_date_edit_set_twodigit_year_can_future
e_date_edit_set_get_time_callback
e_date_edit_get_entry
<SUBSECTION Standard>
E_DATE_EDIT
E_IS_DATE_EDIT
E_TYPE_DATE_EDIT
E_DATE_EDIT_CLASS
E_IS_DATE_EDIT_CLASS
E_DATE_EDIT_GET_CLASS
EDateEditClass
e_date_edit_get_type
<SUBSECTION Private>
EDateEditPrivate
</SECTION>

<SECTION>
<FILE>e-datetime-format</FILE>
<TITLE>Date and Time Formatting</TITLE>
DTFormatKind
e_datetime_format_add_setup_widget
e_datetime_format_format
e_datetime_format_format_tm
</SECTION>

<SECTION>
<FILE>e-destination-store</FILE>
<TITLE>EDestinationStore</TITLE>
EDestinationStore
EDestinationStoreColumnType
e_destination_store_new
e_destination_store_get_destination
e_destination_store_list_destinations
e_destination_store_insert_destination
e_destination_store_append_destination
e_destination_store_remove_destination
e_destination_store_remove_destination_nth
e_destination_store_get_destination_count
e_destination_store_get_path
e_destination_store_get_stamp
<SUBSECTION Standard>
E_DESTINATION_STORE
E_IS_DESTINATION_STORE
E_TYPE_DESTINATION_STORE
E_DESTINATION_STORE_CLASS
E_IS_DESTINATION_STORE_CLASS
E_DESTINATION_STORE_GET_CLASS
EDestinationStoreClass
e_destination_store_get_type
<SUBSECTION Private>
EDestinationStorePrivate
</SECTION>

<SECTION>
<FILE>e-dialog-utils</FILE>
<TITLE>Dialog Utilities (Legacy)</TITLE>
e_notice
e_dialog_combo_box_set
e_dialog_combo_box_get
</SECTION>

<SECTION>
<FILE>e-file-request</FILE>
<TITLE>EFileRequest</TITLE>
EFileRequest
<SUBSECTION Standard>
E_FILE_REQUEST
E_IS_FILE_REQUEST
E_TYPE_FILE_REQUEST
E_FILE_REQUEST_CLASS
E_IS_FILE_REQUEST_CLASS
E_FILE_REQUEST_GET_CLASS
EFileRequestClass
e_file_request_get_type
<SUBSECTION Private>
EFileRequestPrivate
</SECTION>

<SECTION>
<FILE>e-filter-code</FILE>
<TITLE>EFilterCode</TITLE>
EFilterCode
e_filter_code_new
<SUBSECTION Standard>
E_FILTER_CODE
E_IS_FILTER_CODE
E_TYPE_FILTER_CODE
E_FILTER_CODE_CLASS
E_IS_FILTER_CODE_CLASS
E_FILTER_CODE_GET_CLASS
EFilterCodeClass
e_filter_code_get_type
<SUBSECTION Private>
EFilterCodePrivate
</SECTION>

<SECTION>
<FILE>e-filter-color</FILE>
<TITLE>EFilterColor</TITLE>
EFilterColor
e_filter_color_new
<SUBSECTION Standard>
E_FILTER_COLOR
E_IS_FILTER_COLOR
E_TYPE_FILTER_COLOR
E_FILTER_COLOR_CLASS
E_IS_FILTER_COLOR_CLASS
E_FILTER_COLOR_GET_CLASS
EFilterColorClass
e_filter_color_get_type
<SUBSECTION Private>
EFilterColorPrivate
</SUBSECTION>

<SECTION>
<FILE>e-filter-datespec</FILE>
<TITLE>EFilterDatespec</TITLE>
EFilterDatespec
EFilterDatespecType
e_filter_datespec_new
<SUBSECTION Standard>
E_FILTER_DATESPEC
E_IS_FILTER_DATESPEC
E_TYPE_FILTER_DATESPEC
E_FILTER_DATESPEC_CLASS
E_IS_FILTER_DATESPEC_CLASS
E_FILTER_DATESPEC_GET_CLASS
EFilterDatespecClass
e_filter_datespec_get_type
<SUBSECTION Private>
EFilterDatespecPrivate
</SUBSECTION>

<SECTION>
<FILE>e-filter-element</FILE>
<TITLE>EFilterElement</TITLE>
EFilterElement
e_filter_element_new
e_filter_element_set_data
e_filter_element_validate
e_filter_element_eq
e_filter_element_xml_create
e_filter_element_xml_encode
e_filter_element_xml_decode
e_filter_element_clone
e_filter_element_copy_value
e_filter_element_get_widget
e_filter_element_build_code
e_filter_element_format_sexp
<SUBSECTION Standard>
E_FILTER_ELEMENT
E_IS_FILTER_ELEMENT
E_TYPE_FILTER_ELEMENT
E_FILTER_ELEMENT_CLASS
E_IS_FILTER_ELEMENT_CLASS
E_FILTER_ELEMENT_GET_CLASS
EFilterElementClass
e_filter_element_get_type
<SUBSECTION Private>
EFilterElementPrivate
</SECTION>

<SECTION>
<FILE>e-filter-file</FILE>
<TITLE>EFilterFile</TITLE>
EFilterFile
e_filter_file_new
e_filter_file_new_type_name
e_filter_file_set_path
<SUBSECTION Standard>
E_FILTER_FILE
E_IS_FILTER_FILE
E_TYPE_FILTER_FILE
E_FILTER_FILE_CLASS
E_IS_FILTER_FILE_CLASS
E_FILTER_FILE_GET_CLASS
EFilterFileClass
e_filter_file_get_type
<SUBSECTION Private>
EFilterFilePrivate
</SECTION>

<SECTION>
<FILE>e-filter-input</FILE>
<TITLE>EFilterInput</TITLE>
EFilterInput
e_filter_input_new
e_filter_input_new_type_name
e_filter_input_set_value
<SUBSECTION Standard>
E_FILTER_INPUT
E_IS_FILTER_INPUT
E_TYPE_FILTER_INPUT
E_FILTER_INPUT_CLASS
E_IS_FILTER_INPUT_CLASS
E_TYPE_FILTER_INPUT_CLASS
EFilterInputClass
e_filter_input_get_type
<SUBSECTION Private>
EFilterInputPrivate
</SECTION>

<SECTION>
<FILE>e-filter-int</FILE>
<TITLE>EFilterInt</TITLE>
EFilterInt
e_filter_int_new
e_filter_int_new_type
e_filter_int_set_value
<SUBSECTION Standard>
E_FILTER_INT
E_IS_FILTER_INT
E_TYPE_FILTER_INT
E_FILTER_INT_CLASS
E_IS_FILTER_INT_CLASS
E_FILTER_INT_GET_CLASS
EFilterIntClass
e_filter_int_get_type
<SUBSECTION Private>
EFilterIntPrivate
</SECTION>

<SECTION>
<FILE>e-filter-option</FILE>
<TITLE>EFilterOption</TITLE>
EFilterOption
e_filter_option_new
e_filter_option_set_current
e_filter_option_get_current
e_filter_option_add
e_filter_option_remove_all
<SUBSECTION Standard>
E_FILTER_OPTION
E_IS_FILTER_OPTION
E_TYPE_FILTER_OPTION
E_FILTER_OPTION_CLASS
E_IS_FILTER_OPTION_CLASS
E_FILTER_OPTION_GET_CLASS
EFilterOptionClass
e_filter_option_get_type
<SUBSECTION Private>
EFilterOptionPrivate
</SECTION>

<SECTION>
<FILE>e-filter-part</FILE>
<TITLE>EFilterPart</TITLE>
EFilterPart
e_filter_part_new
e_filter_part_validate
e_filter_part_eq
e_filter_part_xml_create
e_filter_part_xml_encode
e_filter_part_xml_decode
e_filter_part_clone
e_filter_part_copy_values
e_filter_part_find_element
e_filter_part_get_widget
e_filter_part_build_code
e_filter_part_expand_code
e_filter_part_build_code_list
e_filter_part_find_list
e_filter_part_next_list
<SUBSECTION Standard>
E_FILTER_PART
E_IS_FILTER_PART
E_TYPE_FILTER_PART
E_FILTER_PART_CLASS
E_IS_FILTER_PART_CLASS
E_FILTER_PART_GET_CLASS
EFilterPartClass
e_filter_part_get_type
<SUBSECTION Private>
EFilterPartPrivate
</SECTION>

<SECTION>
<FILE>e-filter-rule</FILE>
<TITLE>EFilterRule</TITLE>
EFilterRule
e_filter_rule_new
e_filter_rule_clone
e_filter_rule_set_name
E_FILTER_SOURCE_INCOMING
E_FILTER_SOURCE_DEMAND
E_FILTER_SOURCE_OUTGOING
E_FILTER_SOURCE_JUNKTEST
e_filter_rule_set_source
e_filter_rule_validate
e_filter_rule_eq
e_filter_rule_xml_encode
e_filter_rule_xml_decode
e_filter_rule_copy
e_filter_rule_add_part
e_filter_rule_remove_part
e_filter_rule_replace_part
e_filter_rule_get_widget
e_filter_rule_build_code
e_filter_rule_emit_changed
e_filter_rule_next_list
e_filter_rule_find_list
<SUBSECTION Standard>
E_FILTER_RULE
E_IS_FILTER_RULE
E_TYPE_FILTER_RULE
E_FILTER_RULE_CLASS
E_IS_FILTER_RULE_CLASS
E_FILTER_RULE_GET_CLASS
EFilterRuleClass
e_filter_rule_get_type
<SUBSECTION Private>
EFilterRulePrivate
</SECTION>

<SECTION>
<FILE>e-focus-tracker</FILE>
<TITLE>EFocusTracker</TITLE>
EFocusTracker
e_focus_tracker_new
e_focus_tracker_get_focus
e_focus_tracker_get_window
e_focus_tracker_get_cut_clipboard_action
e_focus_tracker_set_cut_clipboard_action
e_focus_tracker_get_copy_clipboard_action
e_focus_tracker_set_copy_clipboard_action
e_focus_tracker_get_paste_clipboard_action
e_focus_tracker_set_paste_clipboard_action
e_focus_tracker_get_delete_selection_action
e_focus_tracker_set_delete_selection_action
e_focus_tracker_get_select_all_action
e_focus_tracker_set_select_all_action
e_focus_tracker_update_actions
e_focus_tracker_cut_clipboard
e_focus_tracker_copy_clipboard
e_focus_tracker_paste_clipboard
e_focus_tracker_delete_selection
e_focus_tracker_select_all
<SUBSECTION Standard>
E_FOCUS_TRACKER
E_IS_FOCUS_TRACKER
E_TYPE_FOCUS_TRACKER
E_FOCUS_TRACKER_CLASS
E_IS_FOCUS_TRACKER_CLASS
E_FOCUS_TRACKER_GET_CLASS
EFocusTrackerClass
e_focus_tracker_get_type
<SUBSECTION Private>
EFocusTrackerPrivate
</SECTION>

<SECTION>
<FILE>e-html-utils</FILE>
<TITLE>Text to HTML Conversion</TITLE>
E_TEXT_TO_HTML_PRE
E_TEXT_TO_HTML_CONVERT_NL
E_TEXT_TO_HTML_CONVERT_SPACES
E_TEXT_TO_HTML_CONVERT_URLS
E_TEXT_TO_HTML_MARK_CITATION
E_TEXT_TO_HTML_CONVERT_ADDRESSES
E_TEXT_TO_HTML_ESCAPE_8BIT
E_TEXT_TO_HTML_CITE
e_text_to_html_full
e_text_to_html
</SECTION>

<SECTION>
<FILE>e-icon-factory</FILE>
<TITLE>Icon Utilities (Legacy)</TITLE>
e_icon_factory_get_icon_filename
e_icon_factory_get_icon
e_icon_factory_pixbuf_scale
e_icon_factory_create_thumbnail
</SECTION>

<SECTION>
<FILE>e-mail-identity-combo-box</FILE>
<TITLE>EMailIdentityComboBox</TITLE>
EMailIdentityComboBox
e_mail_identity_combo_box_new
e_mail_identity_combo_box_refresh
e_mail_identity_combo_box_get_registry
<SUBSECTION Standard>
E_MAIL_IDENTITY_COMBO_BOX
E_IS_MAIL_IDENTITY_COMBO_BOX
E_TYPE_MAIL_IDENTITY_COMBO_BOX
E_MAIL_IDENTITY_COMBO_BOX_CLASS
E_IS_MAIL_IDENTITY_COMBO_BOX_CLASS
E_MAIL_IDENTITY_COMBO_BOX_GET_CLASS
EMailIdentityComboBoxClass
e_mail_identity_combo_box_get_type
<SUBSECTION Private>
EMailIdentityComboBoxPrivate
</SECTION>

<SECTION>
<FILE>e-misc-utils</FILE>
<TITLE>Miscellaneous Utilities</TITLE>
e_get_accels_filename
e_show_uri
e_display_help
e_lookup_action
e_lookup_action_group
e_action_compare_by_label
e_action_group_remove_all_actions
e_radio_action_get_current_action
e_categories_add_change_hook
e_str_without_underscores
e_str_compare
e_str_case_compare
e_collate_compare
e_int_compare
e_color_to_value
e_format_number
ESortCompareFunc
e_bsearch
e_strftime_fix_am_pm
e_utf8_strftime_fix_am_pm
e_get_month_name
e_get_weekday_name
e_flexible_strtod
e_ascii_dtostr
e_file_lock_create
e_file_lock_destroy
e_file_lock_exists
e_util_guess_mime_type
e_util_get_category_filter_options
e_binding_transform_color_to_string
e_binding_transform_string_to_color
e_binding_transform_source_to_uid
e_binding_transform_uid_to_source
e_charset_add_radio_actions
e_file_replace_contents_async
e_file_replace_contents_finish
e_mktemp
e_mkstemp
e_mkdtemp
</SECTION>

<SECTION>
<FILE>e-name-selector</FILE>
<TITLE>ENameSelector</TITLE>
ENameSelector
e_name_selector_new
e_name_selector_get_registry
e_name_selector_peek_model
e_name_selector_peek_dialog
e_name_selector_peek_section_entry
e_name_selector_peek_section_list
e_name_selector_show_dialog
e_name_selector_load_books
e_name_selector_cancel_loading
<SUBSECTION Standard>
E_NAME_SELECTOR
E_IS_NAME_SELECTOR
E_TYPE_NAME_SELECTOR
E_NAME_SELECTOR_CLASS
E_IS_NAME_SELECTOR_CLASS
E_NAME_SELECTOR_GET_CLASS
ENameSelectorClass
e_name_selector_get_type
<SUBSECTION Private>
ENameSelectorPrivate
</SECTION>

<SECTION>
<FILE>e-name-selector-dialog</FILE>
<TITLE>ENameSelectorDialog</TITLE>
ENameSelectorDialog
e_name_selector_dialog_new
e_name_selector_dialog_get_registry
e_name_selector_dialog_peek_model
e_name_selector_dialog_set_model
e_name_selector_dialog_set_destination_index
e_name_selector_dialog_set_scrolling_policy
e_name_selector_dialog_get_section_visible
e_name_selector_dialog_set_section_visible
<SUBSECTION Standard>
E_NAME_SELECTOR_DIALOG
E_IS_NAME_SELECTOR_DIALOG
E_TYPE_NAME_SELECTOR_DIALOG
E_NAME_SELECTOR_DIALOG_CLASS
E_IS_NAME_SELECTOR_DIALOG_CLASS
E_NAME_SELECTOR_DIALOG_GET_CLASS
ENameSelectorDialogClass
e_name_selector_dialog_get_type
<SUBSECTION Private>
ENameSelectorDialogPrivate
</SECTION>

<SECTION>
<FILE>e-name-selector-entry</FILE>
<TITLE>ENameSelectorEntry</TITLE>
ENameSelectorEntry
e_name_selector_entry_new
e_name_selector_entry_get_registry
e_name_selector_entry_set_registry
e_name_selector_entry_get_minimum_query_length
e_name_selector_entry_set_minimum_query_length
e_name_selector_entry_get_show_address
e_name_selector_entry_set_show_address
e_name_selector_entry_peek_contact_store
e_name_selector_entry_set_contact_store
e_name_selector_entry_peek_destination_store
e_name_selector_entry_set_destination_store
e_name_selector_entry_get_popup_destination
e_name_selector_entry_set_contact_editor_func
e_name_selector_entry_set_contact_list_editor_func
ens_util_populate_user_query_fields
<SUBSECTION Standard>
E_NAME_SELECTOR_ENTRY
E_IS_NAME_SELECTOR_ENTRY
E_TYPE_NAME_SELECTOR_ENTRY
E_NAME_SELECTOR_ENTRY_CLASS
E_IS_NAME_SELECTOR_ENTRY_CLASS
E_NAME_SELECTOR_ENTRY_GET_CLASS
ENameSelectorEntryClass
e_name_selector_entry_get_type
<SUBSECTION Private>
ENameSelectorEntryPrivate
</SECTION>

<SECTION>
<FILE>e-name-selector-list</FILE>
<TITLE>ENameSelectorList</TITLE>
ENameSelectorList
e_name_selector_list_new
e_name_selector_list_expand_clicked
<SUBSECTION Standard>
E_NAME_SELECTOR_LIST
E_IS_NAME_SELECTOR_LIST
E_TYPE_NAME_SELECTOR_LIST
E_NAME_SELECTOR_LIST_CLASS
E_IS_NAME_SELECTOR_LIST_CLASS
E_NAME_SELECTOR_LIST_GET_CLASS
ENameSelectorListClass
e_name_selector_list_get_type
<SUBSECTION Private>
ENameSelectorListPrivate
</SECTION>

<SECTION>
<FILE>e-name-selector-model</FILE>
<TITLE>ENameSelectorModel</TITLE>
ENameSelectorModel
e_name_selector_model_new
e_name_selector_model_peek_contact_store
e_name_selector_model_peek_contact_filter
e_name_selector_model_list_sections
e_name_selector_model_peek_section
e_name_selector_model_add_section
e_name_selector_model_remove_section
e_name_selector_model_get_contact_emails_without_used
e_name_selector_model_free_emails_list
<SUBSECTION Standard>
E_NAME_SELECTOR_MODEL
E_IS_NAME_SELECTOR_MODEL
E_TYPE_NAME_SELECTOR_MODEL
E_NAME_SELECTOR_MODEL_CLASS
E_IS_NAME_SELECTOR_MODEL_CLASS
E_NAME_SELECTOR_MODEL_GET_CLASS
ENameSelectorModelClass
e_name_selector_model_get_type
<SUBSECTION Private>
ENameSelectorModelPrivate
</SECTION>

<SECTION>
<FILE>e-passwords</FILE>
<TITLE>Password Utilities (Legacy)</TITLE>
e_passwords_init
e_passwords_shutdown
e_passwords_cancel
e_passwords_set_online
e_passwords_remember_password
e_passwords_add_password
e_passwords_get_password
e_passwords_forget_password
e_passwords_forget_passwords
e_passwords_clear_passwords
EPasswordsRememberType
e_passwords_ask_password
</SECTION>

<SECTION>
<FILE>e-poolv</FILE>
<TITLE>EPoolv</TITLE>
EPoolv
e_poolv_new
e_poolv_set
e_poolv_get
e_poolv_destroy
</SECTION>

<SECTION>
<FILE>e-popup-action</FILE>
<TITLE>EPopupAction</TITLE>
EPopupAction
e_popup_action_new
EPopupActionEntry
e_action_group_add_popup_actions
<SUBSECTION Standard>
E_POPUP_ACTION
E_IS_POPUP_ACTION
E_TYPE_POPUP_ACTION
E_POPUP_ACTION_CLASS
E_IS_POPUP_ACTION_CLASS
E_POPUP_ACTION_GET_CLASS
EPopupActionClass
e_popup_action_get_type
<SUBSECTION Private>
EPopupActionPrivate
</SECTION>

<SECTION>
<FILE>e-print</FILE>
<TITLE>Printing</TITLE>
e_print_operation_new
e_print_run_page_setup_dialog
</SECTION>

<SECTION>
<FILE>e-rule-context</FILE>
<TITLE>ERuleContext</TITLE>
ERuleContext
ERuleContextRegisterFunc
ERuleContextPartFunc
ERuleContextRuleFunc
ERuleContextNextPartFunc
ERuleContextNextRuleFunc
e_rule_context_new
e_rule_context_load
e_rule_context_save
e_rule_context_revert
e_rule_context_add_part
e_rule_context_find_part
e_rule_context_create_part
e_rule_context_next_part
e_rule_context_next_rule
e_rule_context_find_rule
e_rule_context_find_rank_rule
e_rule_context_add_rule
e_rule_context_add_rule_gui
e_rule_context_remove_rule
e_rule_context_rank_rule
e_rule_context_get_rank_rule
e_rule_context_add_part_set
e_rule_context_add_rule_set
e_rule_context_new_element
e_rule_context_delete_uri
e_rule_context_rename_uri
e_rule_context_free_uri_list
<SUBSECTION Standard>
E_RULE_CONTEXT
E_IS_RULE_CONTEXT
E_TYPE_RULE_CONTEXT
E_RULE_CONTEXT_CLASS
E_IS_RULE_CONTEXT_CLASS
E_RULE_CONTEXT_GET_CLASS
ERuleContextClass
e_rule_context_get_type
<SUBSECTION Private>
ERuleContextPrivate
</SECTION>

<SECTION>
<FILE>e-rule-editor</FILE>
<TITLE>ERuleEditor</TITLE>
ERuleEditor
ERuleEditorUndo
e_rule_editor_new
e_rule_editor_construct
e_rule_editor_set_source
e_rule_editor_set_sensitive
e_rule_editor_create_rule
<SUBSECTION Standard>
E_RULE_EDITOR
E_IS_RULE_EDITOR
E_TYPE_RULE_EDITOR
E_RULE_EDITOR_CLASS
E_IS_RULE_EDITOR_CLASS
E_RULE_EDITOR_GET_CLASS
ERuleEditorClass
e_rule_editor_get_type
<SUBSECTION Private>
ERuleEditorPrivate
</SECTION>

<SECTION>
<FILE>e-selection</FILE>
<TITLE>Selections</TITLE>
e_target_list_add_calendar_targets
e_target_list_add_directory_targets
e_selection_data_set_calendar
e_selection_data_set_directory
e_selection_data_get_calendar
e_selection_data_get_directory
e_selection_data_targets_include_calendar
e_selection_data_targets_include_directory
e_targets_include_calendar
e_targets_include_directory
e_clipboard_set_calendar
e_clipboard_set_directory
e_clipboard_request_calendar
e_clipboard_request_directory
e_clipboard_wait_for_calendar
e_clipboard_wait_for_directory
e_clipboard_wait_is_calendar_available
e_clipboard_wait_is_directory_available
</SECTION>

<SECTION>
<FILE>e-source-combo-box</FILE>
<TITLE>ESourceComboBox</TITLE>
ESourceComboBox
e_source_combo_box_new
e_source_combo_box_get_registry
e_source_combo_box_set_registry
e_source_combo_box_get_extension_name
e_source_combo_box_set_extension_name
e_source_combo_box_get_show_colors
e_source_combo_box_set_show_colors
e_source_combo_box_ref_active
e_source_combo_box_set_active
<SUBSECTION Standard>
E_SOURCE_COMBO_BOX
E_IS_SOURCE_COMBO_BOX
E_TYPE_SOURCE_COMBO_BOX
E_SOURCE_COMBO_BOX_CLASS
E_IS_SOURCE_COMBO_BOX_CLASS
E_SOURCE_COMBO_BOX_GET_CLASS
ESourceComboBoxClass
e_source_combo_box_get_type
<SUBSECTION Private>
ESourceComboBoxPrivate
</SECTION>

<SECTION>
<FILE>e-source-selector</FILE>
<TITLE>ESourceSelector</TITLE>
ESourceSelector
e_source_selector_new
e_source_selector_get_registry
e_source_selector_get_extension_name
e_source_selector_get_show_colors
e_source_selector_set_show_colors
e_source_selector_get_show_toggles
e_source_selector_set_show_toggles
e_source_selector_select_source
e_source_selector_unselect_source
e_source_selector_select_exclusive
e_source_selector_source_is_selected
e_source_selector_get_selection
e_source_selector_free_selection
e_source_selector_set_select_new
e_source_selector_edit_primary_selection
e_source_selector_ref_primary_selection
e_source_selector_set_primary_selection
e_source_selector_ref_source_by_path
e_source_selector_queue_write
<SUBSECTION Standard>
E_SOURCE_SELECTOR
E_IS_SOURCE_SELECTOR
E_TYPE_SOURCE_SELECTOR
E_SOURCE_SELECTOR_CLASS
E_IS_SOURCE_SELECTOR_CLASS
E_SOURCE_SELECTOR_GET_CLASS
ESourceSelectorClass
e_source_selector_get_type
<SUBSECTION Private>
ESourceSelectorPrivate
</SECTION>

<SECTION>
<FILE>e-source-selector-dialog</FILE>
<TITLE>ESourceSelectorDialog</TITLE>
ESourceSelectorDialog
e_source_selector_dialog_new
e_source_selector_dialog_get_registry
e_source_selector_dialog_get_extension_name
e_source_selector_dialog_get_selector
e_source_selector_dialog_peek_primary_selection
<SUBSECTION Standard>
E_SOURCE_SELECTOR_DIALOG
E_IS_SOURCE_SELECTOR_DIALOG
E_TYPE_SOURCE_SELECTOR_DIALOG
E_SOURCE_SELECTOR_DIALOG_CLASS
E_IS_SOURCE_SELECTOR_DIALOG_CLASS
E_SOURCE_SELECTOR_DIALOG_GET_CLASS
ESourceSelectorDialogClass
e_source_selector_dialog_get_type
<SUBSECTION Private>
ESourceSelectorDialogPrivate
</SECTION>

<SECTION>
<FILE>e-tree-model-generator</FILE>
<TITLE>ETreeModelGenerator</TITLE>
ETreeModelGeneratorGenerateFunc
ETreeModelGeneratorModifyFunc
ETreeModelGenerator
e_tree_model_generator_new
e_tree_model_generator_get_model
e_tree_model_generator_set_generate_func
e_tree_model_generator_set_modify_func
e_tree_model_generator_convert_child_path_to_path
e_tree_model_generator_convert_child_iter_to_iter
e_tree_model_generator_convert_path_to_child_path
e_tree_model_generator_convert_iter_to_child_iter
<SUBSECTION Standard>
E_TREE_MODEL_GENERATOR
E_IS_TREE_MODEL_GENERATOR
E_TYPE_TREE_MODEL_GENERATOR
E_TREE_MODEL_GENERATOR_CLASS
E_IS_TREE_MODEL_GENERATOR_CLASS
E_TREE_MODEL_GENERATOR_GET_CLASS
ETreeModelGeneratorClass
e_tree_model_generator_get_type
<SUBSECTION Private>
ETreeModelGeneratorPrivate
</SECTION>

<SECTION>
<FILE>e-web-view</FILE>
<TITLE>EWebView</TITLE>
EWebView
e_web_view_new
e_web_view_clear
e_web_view_load_string
e_web_view_get_caret_mode
e_web_view_set_caret_mode
e_web_view_get_copy_target_list
e_web_view_get_disable_printing
e_web_view_set_disable_printing
e_web_view_get_disable_save_to_disk
e_web_view_set_disable_save_to_disk
e_web_view_get_editable
e_web_view_set_editable
e_web_view_get_inline_spelling
e_web_view_set_inline_spelling
e_web_view_get_magic_links
e_web_view_set_magic_links
e_web_view_get_magic_smileys
e_web_view_set_magic_smileys
e_web_view_get_selected_uri
e_web_view_set_selected_uri
e_web_view_get_open_proxy
e_web_view_set_open_proxy
e_web_view_get_paste_target_list
e_web_view_get_print_proxy
e_web_view_set_print_proxy
e_web_view_get_save_as_proxy
e_web_view_set_save_as_proxy
e_web_view_get_action
e_web_view_get_action_group
e_web_view_extract_uri
e_web_view_copy_clipboard
e_web_view_cut_clipboard
e_web_view_is_selection_active
e_web_view_paste_clipboard
e_web_view_scroll_forward
e_web_view_scroll_backward
e_web_view_select_all
e_web_view_unselect_all
e_web_view_zoom_100
e_web_view_zoom_in
e_web_view_zoom_out
e_web_view_get_ui_manager
e_web_view_get_popup_menu
e_web_view_show_popup_menu
e_web_view_status_message
e_web_view_stop_loading
e_web_view_update_actions
<SUBSECTION Standard>
E_WEB_VIEW
E_IS_WEB_VIEW
E_TYPE_WEB_VIEW
E_WEB_VIEW_CLASS
E_IS_WEB_VIEW_CLASS
E_WEB_VIEW_GET_CLASS
EWebViewClass
e_web_view_get_type
<SUBSECTION Private>
EWebViewPrivate
</SECTION>

<SECTION>
<FILE>e-xml-utils</FILE>
<TITLE>Reading and Writing XML</TITLE>
e_xml_get_child_by_name_by_lang
e_xml_get_child_by_name_by_lang_list
e_xml_get_child_by_name_no_lang
e_xml_get_integer_prop_by_name
e_xml_get_integer_prop_by_name_with_default
e_xml_set_integer_prop_by_name
e_xml_get_uint_prop_by_name
e_xml_get_uint_prop_by_name_with_default
e_xml_set_uint_prop_by_name
e_xml_get_bool_prop_by_name
e_xml_get_bool_prop_by_name_with_default
e_xml_set_bool_prop_by_name
e_xml_get_double_prop_by_name
e_xml_get_double_prop_by_name_with_default
e_xml_set_double_prop_by_name
e_xml_get_string_prop_by_name
e_xml_get_string_prop_by_name_with_default
e_xml_set_string_prop_by_name
e_xml_get_translated_string_prop_by_name
</SECTION>