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 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033
|
<?xml version='1.0'?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
<!ENTITY Evolution "<application>Evolution</application>">
<!ENTITY GNOME "<application>GNOME</application>">
<!ENTITY eclipse "<application>Eclipse</application>">
<!ENTITY Camel "<application>Camel</application>">
<!ENTITY EPlugin "<application>EPlugin</application>">
<!ENTITY e-popup-reference SYSTEM "e-popup.xml">
<!ENTITY e-menu-reference SYSTEM "e-menu.xml">
<!ENTITY e-config-reference SYSTEM "e-config.xml">
<!ENTITY e-event-reference SYSTEM "e-event.xml">
<!ENTITY e-plugin-reference SYSTEM "e-plugin.xml">
<!ENTITY e-import-reference SYSTEM "e-import.xml">
<!ENTITY em-popup-reference SYSTEM "em-popup.xml">
<!ENTITY em-format-reference SYSTEM "em-format.xml">
<!ENTITY em-popups SYSTEM "em-popups.xml">
<!ENTITY em-menus SYSTEM "em-menus.xml">
<!ENTITY em-configs SYSTEM "em-configs.xml">
<!ENTITY em-events SYSTEM "em-events.xml">
<!ENTITY ecal-popups SYSTEM "ecal-popups.xml">
<!ENTITY es-events SYSTEM "es-events.xml">
<!ENTITY es-menus SYSTEM "es-menus.xml">
<!ENTITY es-importers SYSTEM "es-importers.xml">
]>
<?xml-stylesheet href="sdocbook.css" type="text/css"?>
<book lang="en">
<!-- DocBook file was created by LyX 1.3
See http://www.lyx.org/ for more information -->
<bookinfo>
<title>
&Evolution; Plugin Development Manual
</title>
<authorgroup>
<corpauthor>
Novell, Inc.
</corpauthor>
<author>
<firstname>Michael</firstname><surname>Zucchi</surname>
</author>
</authorgroup>
<copyright>
<year>2004</year>
<holder>Novell, Inc.</holder>
</copyright>
</bookinfo>
<preface id="preface">
<title>Preface</title>
<para>
This document is work-in-progress. Its structure and design is still as
fluid as the underlying strucutre and design of some parts of EPlugin.
There's no guarantee it will be updated at regular intervals,
particularly this version.
</para>
<para>
The API documentation is currently generated using the Linux kernel-doc
script. The stylesheets used to generate the HTML you're seeing seems to
have bugs which duplicates some sections. It is also ugly and difficult
to navigate.
</para>
<sect1>
<title>Conventions</title>
<para>
The following conventions are used in the manual ... (insert details
here).
</para>
<sect2>
<title>XML Annotation</title>
<para>
XML definitions are annotated with BNF-style markers to indicate
alternative (|), multiples (* or +), and optional (?) items. If no
annotation is present then the item must be present once.
</para>
<variablelist>
<varlistentry>
<!-- is symbol the right one here? -->
<term><symbol>|</symbol></term>
<listitem>
<simpara>Indicates an alternative option. Only one of the items
separated by <symbol>|</symbol> is to be chosen.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><symbol>*</symbol></term>
<listitem>
<simpara>Following an item, <symbol>*</symbol> indicates the item
may occur any number of times, including no times (0 or more
multiple).
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><symbol>+</symbol></term>
<listitem>
<simpara>Following an item, <symbol>+</symbol> indicates the item
must occur at least once, but may occur more than ones (1 or
more multiple).
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><symbol>?</symbol></term>
<listitem>
<simpara>Following an item, <symbol>?</symbol> indicates the item
may occur at most once, if present (0 or 1 times).
</simpara>
</listitem>
</varlistentry>
</variablelist>
</sect2>
</sect1>
</preface>
<part id="informational">
<title>
EPlugin
</title>
<chapter>
<title>
Introduction
</title>
<para>
This book aims to be a comprehensive technical manual for the
development of plugins for &Evolution;, a personal information manager
for &GNOME;.
</para>
<para>
Up-to, and including, &Evolution; version 2.0, &Evolution; contained
limited extensibility interfaces. There were only two ways to extend
&Evolution;; by implementing a new top-level component, or by
implementing a &Camel; provider. When implementing a top-level component,
there was still little integration, and in effect it was merely a more
complex way of writing a separate &GNOME; application. &Camel; providers
were only designed to be e-mail storage backends, so were of limited
use for general extensibility. Despite this, both mechanisms were used
for example for the Exchange Connector, although the system made the
integration clumsy and difficult.
</para>
<para>
This lack of extensibility has severaly stifled external developer
contributions by forcing any extensions to be considered as core
features. &Evolution; being a commercial product, it has tight usability
and quality requirements that limits the ability to experiment with
the core feature set in this way. As a result, very few lines of code
or new features have been implemented by external contributors.
</para>
<para>
One of the major goals for the 2.2 release was to implement an
extensibility system, given the working name of EPlugin, which must
provide a frame-work for both providing extensibility hooks, and for
extending the functionality of &Evolution;.
</para>
<sect1>
<title>
Plugin System
</title>
<para>
Any plugin system will generally have a number of goals:
</para>
<itemizedlist>
<listitem>
<simpara>
Provide a language independent invocation mechanism
</simpara>
</listitem>
<listitem>
<simpara>
Allow extension of parts of the user interface and processing elements
</simpara>
</listitem>
<listitem>
<simpara>
Require minimal extra or foreign code to implement in the core application
</simpara>
</listitem>
<listitem>
<simpara>
Require minimal interface code to implement the extensions
</simpara>
</listitem>
<listitem>
<simpara>
Not to impact performance or increase resource usage unduly
</simpara>
</listitem>
<listitem>
<simpara>
Versioning
</simpara>
</listitem>
<listitem>
<simpara>
Be able to be extended itself fairly easily.
</simpara>
</listitem>
</itemizedlist>
<para>
EPlugin manages to fulfill these goals in most cases. EPlugin isn't a
single object or interface in itself, although there is an object
titled EPlugin, it is a synergistic
<footnote><simpara>I've always wanted to use
<emphasis>synergistic</emphasis> in a sentence since
I read it on the back of the Commodore 64 Users
Guide.</simpara></footnote>
collection of integrated and
continually evolving objects which work together to achieve these
goals (and that will definitly be the end of the MarketSpeak). It
consists of a loader to invoke extension callbacks, hooks to resolve
these callbacks, targets to identify context, and managers which are
used by the core code to provide functionality and merging points for
the extensions.
</para>
<para>
EPlugin's design was inspired and influenced by the &eclipse;
project. It aims at a lower target however, so it was able more easily
implemented in a practical time-frame.
</para>
<para>
&EPlugin; was chosen as an approach to the problem of adding
scriptability to &Evolution;. Instead of just linking to Perl, or
Python, or even Mono by itself an approach was taken which focuses on
the application end of the system. So instead of making every part
of the application export its functionality and have to deal with
whatever script engine is present, EPlugin addresses the hooking part
of the equation in a language-independent manner. It also attemps to
do it in a way which doesn't impact on the application development
either.
</para>
<para>
The EPlugin world is awash with its own language. The next few
sections will introduce the basic plugin nomenclature and high-level
view of this world.
</para>
</sect1>
<sect1>
<title>
Loaders
</title>
<para>
The core of EPlugin is a light-weight object loader and callback
invocation system. Because of the varied calling conventions of
different languages, and to reduce the overhead of the plugin system
itself, all callbacks only receive and return a single argument. By
using structures to pass complex arguments, native C plugins require
no extra overhead, and marshalling details are moved into the plugin
implementation itself where required. It also simplifies memory
management issues significantly. For example, the C plugin handler
merely loads a shared library using GModule, and resolves a symbol by
name; and is so all of 50 lines of code, total. The loaders are the
only modules which need to interace with non-native code or
conventions.
</para>
<para>
The other task of the plugin core is to load XML definitions of the
plugins. Extension hooks are registered with the plugin core before
the plugins are scanned, and are automatically instantiated to load
each definition appropriately as they are encountered.
</para>
<para>
At each layer, a level of indirection is used so that new loaders and
new hooks can be added transparently, and extend the plugin
definition freely with any information they require.
</para>
</sect1>
<sect1>
<title>
Hooks
</title>
<para>
The hooks
<footnote>
<para>A hook is something you can hang your stuff on.</para>
</footnote>
which are registered with the loader provide meta-data for
the management implementation layer for extending it at
run-time. Their primary
functions are to load the detail of the XML plugin definition, map it
to the implementation, and marshal the implementation callbacks to
the common plugin interface. How they do this depends on the
implementation itself, and ranges from registering factory methods to
simply adding the items directly.
</para>
<para>
In most cases the physical object need not be loaded until the
callback is invoked, since the plugin definitions provide enough
contextual information to build the interface or determine when they
need to be invoked.
</para>
</sect1>
<sect1>
<title>
Managers
</title>
<para>
Managers
<footnote>
<para>
Unlike real managers, these are the ones that do the heavy lifting.
</para>
</footnote>
provide tools for the core code to extend itself at specific
points, and in many cases are the objects used directly in the code
to implement core features. In other cases they simply provide the
hooks with an entry point into &Evolution;. For example, for the main
menu hook, the manager is a thin layer to BonoboUI. On the other
hand, EPopup is a complete implementation of a popup menu management
system which was already used in &Evolution; 2.0. Some managers are
one-off objects used as constructors for other objects, others are
view-dependent, and some are static objects, such as the Event
routers.
</para>
</sect1>
<sect1>
<title>
Items
</title>
<para>
Each manager uses a number of items to describe the object they
control or create. The items are added to each manager instance from
the plugins or from core code. The items from all of these sources
are then merged together when required and processed accordingly. For
example, menu items are merged into a tree of GtkMenus. Events on the
other hand are simply ordered and then invoked in the order of their
priority. Items are part of the manager implementation, and in
&EPlugin; they are all extensible objects too, which the hooks use to
perform mapping to the plugin. Items may be extended by code hooking
into the implementation, either the plugin hooks, or the core code.
</para>
</sect1>
<sect1>
<title>
Targets
</title>
<para>
Targets
<footnote><para>Think of a target as the target of
interest.</para></footnote>
are view or component specific context objects. They contain
enough information to be used as stand-alone contexts to implement
callbacks for both core functions and plugin hooks. For example for
the mail view, a select target contains a folder and a list of
selected messages. An attachment (part) target contains the
&Camel; representation of the part and the mime-type for
that part. Targets are part of the manager implementation and are
extended by subclassing the manager.
</para>
</sect1>
</chapter>
<chapter id="plugin-loaders">
<title>
Plugin Loaders
</title>
<para>
Plugin loaders implement a hool to a new language, or loading system in the
plugin system. The actual binding of new languages to the plugin system or
other parst of &Evolution;s api's are beyond the scope of this
document, some languages make this easier than others.
</para>
<sect1 id="plugin-loaders-base">
<title>
Base Plugin
</title>
<para>
The <link linkend="API-struct--EPlugin">EPlugin base class</link>
is an abstract class which provides the basic services for plugin
implementations. The main services are:
<itemizedlist>
<listitem><simpara>Resolve plugin type and instantiate an EPlugin
object to represent and manage it.</simpara></listitem>
<listitem><simpara>Load the base structure of the XML plugin
definition files.</simpara></listitem>
<listitem><simpara>Resolve plugin hook types and instantiate an
EPluginHook to represent and manage it.</simpara></listitem>
<listitem><simpara>Provide a simple, language-independent api for
invoking plugin callbacks</simpara></listitem>
<listitem><simpara>Provide I18N context for plugins.</simpara></listitem>
<listitem><simpara>Some simple static helper methods to simplify each
implementing class.</simpara></listitem>
</itemizedlist>
See the <xref linkend="REF-EPlugin"/> for
these details.
</para>
<sect2 id="plugin-loaders-definition">
<title>Definition of a Plugin</title>
<para>
The base plugin XML definition. Subclasses of EPlugin extend this
basic structure with additional parameters or elements as they
require.
</para>
<para>
Note that there may be any number of <sgmltag>e-plugin</sgmltag>
elements in a given plugin file, this may be used to simplify
distribution of plugin packages.
</para>
<programlisting>
<![CDATA[
<?xml version="1.0">
<e-plugin-list>
<e-plugin
id="unique id"
type="loader type"
domain="translation domain" ?
localedir="locale directory" ?
name="plugin name"
...>
<description>long description</description> ?
<author name="real name"? email="email addr"?/> *
<hook
class="hook class"
...>
...
</hook> +
</e-plugin> +
</e-plugin-list>]]></programlisting>
<variablelist>
<varlistentry>
<term><parameter>id</parameter></term>
<listitem>
<simpara>
A unique string identifying this plugin. By convention this
will follow the java-like class namespace system.
e.g. <constant>com.ximian.evolution.test-plugin</constant>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>type</parameter></term>
<listitem>
<simpara>
The type name of the plugin loader. Currently <link
linkend="plugin-loaders-lib">shlib</link> and <link
linkend="plugin-loaders-mono">mono</link> are the only
supported values. If no known handler is registered for this
type, the plugin definition is silently ignored.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>domain</parameter></term>
<listitem>
<simpara>
The translation domain for this plugin, as passed to the
<function>dcgettext</function> call of the gettext package.
If not supplied then the default application domain is used
(i.e. "evolution"). This is used to translate
translatable strings for display.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>localedir</parameter></term>
<listitem>
<simpara>
If this and <parameter>domain</parameter> is defined, then
this is the directory of the locale information for this
domain. It, and the <parameter>domain</parameter> will be
passed to <function>bindtextdomain</function> before any
strings are translated. See that function for more
information.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>name</parameter></term>
<listitem>
<simpara>
A short name for the plugin. "Bob's Wonder
Extender" might be suitable. This value will be
translated.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>description</parameter></term>
<listitem>
<simpara>
A longer description of the plugin's purpose. This value will be
translated.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>author</parameter></term>
<listitem>
<simpara>
One of the authors who wrote the plugin. Either
<parameter>name</parameter> or <parameter>email</parameter>
may be ommitted. This element may occur multiple times to
indicate multiple authors.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>hook</parameter></term>
<listitem>
<simpara>
This is a list of all of the hooks that this plugin wishes to
hook into. See the <link linkend="plugin-hooks">Plugin
Hooks</link> section for the details of the basic hook
types defined.
</simpara>
<simpara>
The hook <parameter>class</parameter> is resolved using the
registered hook types, and if none can be found, or a version
mismatch occurs, then the hook is silently ignored.
</simpara>
</listitem>
</varlistentry>
</variablelist>
</sect2>
</sect1>
<sect1 id="plugin-loaders-lib">
<title>
Shared Library Loader
</title>
<para>
The shared library loader <link
linkend="API-struct--EPluginLib">EPluginLib</link> implements a
concrete EPlugin type which loads GNU shared libraries via the
GModule api. It simply resolves symbols directly from the loaded
shared object and invokes them expecting a function signature of
<type>EPluginLibFunc</type>.
</para>
<para>
To manage plugin lifecycle, the function
<function>e_plugin_lib_enable</function>
will be invoked which allows the plugin to initialise itself. Its
signature should match <type>EPluginLibEnableFunc</type>, and it will
be called with <parameter>enable=1</parameter>. If the enable
function returns non-zero it is assumed to have failed intialisation
and will not be invoked further.
</para>
<sect2 id="plugin-loaders-lib-definition">
<title>Definition</title>
<para>The shared library loader only requires one extra parameter in
the base plugin definition.
</para>
<programlisting>
<![CDATA[
<e-plugin
...
type="shlib"
location="/full/path/name.so"
load-on-startup="true" ?
...
<hook class="...">
...
</e-plugin>]]></programlisting>
<variablelist>
<varlistentry>
<term><parameter>type</parameter></term>
<listitem>
<simpara>
The type name of the shared library plugin is
<constant>shlib</constant>.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>location</parameter></term>
<listitem>
<simpara>
The location parameter contains
the full path-name of a shared object to load.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>load-on-startup</parameter></term>
<listitem>
<simpara>
If provided, indicates that the plugin should be loaded and
enabled when the application is first started. Normally the
plugin is only loaded when necessary, i.e. when a callback is
first invoked. Only use this option if you have defined an
<function>e_plugin_lib_enable</function> callback in your
module, and only if absolutely necessary.
</simpara>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<sect2 id="plugin-loaders-lib-invocation">
<title>Invocation</title>
<simplesect>
<title>Function specification
</title>
<para>Where a function spec is required in a plugin
hook definition, it should simply be the full name of an
exported symbol in the shared object.
</para>
</simplesect>
<simplesect>
<title>Callback signature</title>
<funcsynopsis><funcprototype>
<funcdef>void * <function>function</function></funcdef>
<paramdef>EPlugin * <parameter>ep</parameter></paramdef>
<paramdef>void * <parameter>data</parameter></paramdef>
</funcprototype></funcsynopsis>
<variablelist>
<varlistentry>
<term><function>function</function></term>
<listitem>
<simpara>
The callback function.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>ep</parameter></term>
<listitem>
<simpara>
The container EPlugin representing this plugin.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>data</parameter></term>
<listitem>
<simpara>
Hook context data. It is part of the hook's api to specify
the type of this pointer.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><returnvalue>return value</returnvalue></term>
<listitem>
<simpara>
Return data. It is part of the hook's api to specify the
type of this pointer.
</simpara>
</listitem>
</varlistentry>
</variablelist>
</simplesect>
</sect2>
</sect1>
<sect1 id="plugin-loaders-mono">
<title>
Mono Assembly Loader
</title>
<para>
The mono assembly loader <link
linkend="API-struct--EPluginMono">EPluginMono</link> implements a
concrete EPlugin type which loads C# assemblies using Mono. Apart
from loading the assembly, it can optionally instantiate a class to
implement the callback or invoke static methods directly.
</para>
<sect2 id="plugin-loaders-mono-definition">
<title>Definition</title>
<para>The mono assembly loader needs the name of the assembly and
optionally the name of the class for handling the callbacks.
</para>
<programlisting>
<![CDATA[
<e-plugin
...
type="mono"
location="/full/path/name.dll"
handler="PluginClass" ?
...
<hook class="...">
...
</e-plugin>]]></programlisting>
<variablelist>
<varlistentry>
<term><parameter>type</parameter></term>
<listitem>
<simpara>
The type name of a mono assembly plugin is
<constant>mono</constant>.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>location</parameter></term>
<listitem>
<simpara>
The location parameter contains
the full path-name of an assembly to load.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>handler</parameter></term>
<listitem>
<simpara>
If supplied, the handler contains the fully qualified name of
the class which handles all callbacks for this plugin. If a
handling class is used, then the function specifications
become relative to this class.
</simpara>
<simpara>
This class will be
instantiated once upon the first callback invocation, and
remain active for the life of the plugin (or application).
</simpara>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<sect2 id="plugin-loaders-mono-invocation">
<title>Invocation</title>
<simplesect>
<title>Function specification
</title>
<para>If no <parameter>handler</parameter> class is specified, then
the function specification must match a static method in the
assembly. This is passed to <function>mono_method_desc_new</function>
and <function>mono_method_desc_search_in_image</function>,
typically <function>FunctionName(intptr)</function>.
</para>
<para>
If the handler is specified, then the function specification is
relative to the handler class. This is passed to
<function>mono_method_desc_new</function> and
<function>mono_method_desc_search_in_class</function>, typically
<function>:MethodName(intptr)</function>.
</para>
</simplesect>
<simplesect>
<title>Callback signature</title>
<funcsynopsis><funcprototype>
<funcdef>IntPtr <function>function</function></funcdef>
<paramdef>IntPtr <parameter>data</parameter></paramdef>
</funcprototype></funcsynopsis>
<variablelist>
<varlistentry>
<term><function>function</function></term>
<listitem>
<simpara>
The callback method.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>data</parameter></term>
<listitem>
<simpara>
The hook context data. This is a pointer to unmanaged data, and it is up-to the plugin to interpret this
data right now, although some helper binding classes are
planned. FIXME: hook-up when they and doco are done.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><returnvalue>return value</returnvalue></term>
<listitem>
<simpara>
The callback return data. It is up to the hook's api to
define the type of this pointer. It may be a simple boxed
value type, or a memory pointer allocated in unmanaged memory (e.g. a
GObject handle or a CamelObject cobject value).
</simpara>
</listitem>
</varlistentry>
</variablelist>
</simplesect>
</sect2>
</sect1>
</chapter>
<chapter id="plugin-hooks">
<title>
Plugin Hooks
</title>
<para>
This chapter will introduce the available plugin hook types. A given
plugin can hook into any of these hooks any number of times. Some refer
to specific instances of objects and others are implicitly defined.
</para>
<para>
By design, there is considerable similarity and orthogonality amongst
all of the various hook types and management objects.
</para>
<sect1 id="plugin-hooks-popup">
<title>
Popup Menus
</title>
<para>
The popup menu hook lets you hook into any of the context menus in
&Evolution;, by name and context. Complex, dynamic, and multi-level
menus are created on the fly by merging the items for a given menu as
it is being shown. Each component provides its own context targets to
self-describe the situation under which the menu is invoked. Plugins
and core code alike are then invoked at the user's direction. The
popup manager and all context data lives as long as the menu and
until a choice is made, simplifying memory management.
</para>
<para>
The menu is merged from multiple plugins and core application code by
using a simple lexiographical sort of an absolute path to the menu
item. This merged list is then scanned and expanded into a tree of
menus. Individual items can be hidden or inactive based on the target
and a simple mask which is defined by the component itself. A rich
collection of menu item types are possible, from simple, to
checkboxes or images. The popup code is simple, and easy to use, and
simplifies the use of popup menu's in the core application anyway,
that they are pluggable is a free-bonus.
</para>
<sect2>
<title>Defining a popup hook</title>
<para>
Not sure if this fits here as such. Probably temporary placeholder.
</para>
<programlisting>
<![CDATA[
<hook class="com.ximian.evolution.mail.popup:1.0">
<menu id="menuid" target="targettype" factory="function spec"? >
<item
type="item | toggle | radio | image | submenu | bar"
active ?
path="foo/bar"
label="menu text"
icon="icon name" ?
visible="target mask" ?
enable="target mask" ?
activate="function spec"/> *
</menu> *
</hook>]]></programlisting>
<!-- this is all too bloody verbose, is there a better way? -->
<para>
<emphasis>Menu Tag</emphasis>
</para>
<variablelist>
<varlistentry>
<term><parameter>id</parameter></term>
<listitem>
<simpara>
The id of the menu to which these items should be added.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>target</parameter></term>
<listitem>
<simpara>
The target expected. There will normally only be one target
type defined for any given menu, however some menu's may
supply multiple targets depending on context.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>factory</parameter></term>
<listitem>
<simpara>
If present, then a plugin-specific function specification of
the function to invoke when the menu is being
created. This function will normally call
e_popup_add_items() to add custom menu items. It is used to
provide more control than the visible and enable masks
provide. The plugin argument is the popup target.
</simpara>
</listitem>
</varlistentry>
</variablelist>
<variablelist>
<varlistentry>
<term><parameter>type</parameter></term>
<listitem>
<simpara>
The menu item type. The type maps directly to the
corresponding EPopupItem types.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>active</parameter></term>
<listitem>
<simpara>
If present, then radio or toggle menu items are active when
first shown. After the first instantiation, they will
remember their active state.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>path</parameter></term>
<listitem>
<simpara>
A '/' separated path used to position the item within menu
and in the right submenu. Each menu and plugin should
define how its menu's are layed out so other plugins can
determine what value to use here.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>label</parameter></term>
<listitem>
<simpara>
The text to be displayed on the menu item. This will be
translated based on the plugin translation domain.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>icon</parameter></term>
<listitem>
<simpara>
The name of a gnome-icon-theme standard icon, or the full
path-name of an icon image to use as menu item icon. This
will be blank if not supplied.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>visible</parameter></term>
<listitem>
<simpara>
A comma separated list of mask enumeration values used to
define when this item is shown. What values are valid
depend on the menu hook class of the menu being hooked
onto.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>enable</parameter></term>
<listitem>
<simpara>
A comma separated list of mask enumeration values used to
define when this item is enabled. What values are valid
depend on the menu hook class of the menu being hooked
onto. This is currently unimplemented.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>activate</parameter></term>
<listitem>
<simpara>
A plugin-type specific function specification. This
function will be resolved and called when the menu item is
activated.
</simpara>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<sect2>
<title>Merging Plugin Items</title>
<para>
A very simple algorithm is used to form the menu by merging the
plugin's menu items with the system menu items for a given menu.
What follows is a simple example of how this is done. It will be
demonstrated using a simplified menu from the message-list, as used
in the &Evolution; Mail component, and a simple plugin which adds a
single menu item and menu separator into the middle of the menu,
when appropriate.
</para>
<para>
When the application wishes to show a specific popup menu, it
creates a new EPopup object with a unique menu id to manage it. It
adds all of the items it wishes to add to the menu (see "Builtin
Items" in the following diagrams). The application then asks for
the menu to be created. The menu building
process adds all of the menu items from all plugins that target
this specific menu into a flat list, discarding those which don't
match the current Target qualifications. The result is then
sorted using a simple ASCII sort, and then a menu built from the
remaining items. This is probably best described by some diagrams.
</para>
<para>
The following two diagrams show how a popup menu is automatically
customised depending on the context. On the left of each diagram
are all of the menu items which apply to the example menu. The
menu label, with the qualifiers listed underneath, with the menu
item path along-side. On the right-hand side of each diagram is
the result of:
</para>
<itemizedlist>
<listitem><simpara>Selecting items based on the target
qualifiers</simpara></listitem>
<listitem><simpara>Sorting the remaining items based on their
path.</simpara></listitem>
<listitem><simpara>Building this sorted list into a
menu.</simpara></listitem>
</itemizedlist>
<para>
The actual list of target qualifiers are defined by the application
itself. Generally a specific menu will have only one possible
target, and a list of matching target qualifiers. The example
shows how a plugin can insert a menu item anwhere it wishes in the
menu system. Submenus are also supported, and they work in exactly
the same manner, with / characters used to separate submenu paths.
A submenu must sort into the position immediately before the
definition of its items.
</para>
<figure id="e-popup-merge-1">
<title>Merging a menu with many items selected.</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/e-popup-merge-1.pic" format="PIC" />
</imageobject>
<imageobject>
<imagedata fileref="images/e-popup-merge-1.eps" format="EPS"/>
</imageobject>
<imageobject>
<imagedata fileref="images/e-popup-merge-1.png" format="PNG"/>
</imageobject>
<textobject>
<phrase>Showing how a display list of menu items is selected
and then sorted for display.</phrase>
</textobject>
</mediaobject>
</figure>
<para>
The first diagram shows when the target qualifiers are
<parameter>many</parameter>, and
<parameter>mark_unread</parameter>. The menu items which operate
on only one selected message are not shown. Similarly for those
able to be marked as unread (i.e. they are currently read).
</para>
<figure id="e-popup-merge-2">
<title>Merging a menu with one item selected.</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/e-popup-merge-2.pic" format="PIC"/>
</imageobject>
<imageobject>
<imagedata fileref="images/e-popup-merge-2.eps" format="EPS"/>
</imageobject>
<imageobject>
<imagedata fileref="images/e-popup-merge-2.png" format="PNG"/>
</imageobject>
<textobject>
<phrase>Showing how a display list of menu items is selected
and then sorted for display with different qualifiers.</phrase>
</textobject>
</mediaobject>
</figure>
<para>
This diagram shows when the target qualifiers are
<parameter>one</parameter>, and
<parameter>mark_read</parameter>. The menu items which operate
on only many selected messages are not shown. Similarly for those
able to be marked as read.
</para>
</sect2>
</sect1>
<sect1 id="plugin-hooks-menu">
<title>
Main menus
</title>
<para>
The main menu hook lets you hook into various main menus in
&Evolution;, based on the current active view (component). The system
works by piggy-backing on the existing use of the BonoboUI menu
system used by all of the &Evolution; components. Bonobo handles the
menu merging and user input, and the hook resolves the verb being
invoked and redirects it to the plugin. Each view defines a single
target which describes the appropriate context. For the Mail view,
this is the current folder and currently selected message(s).
</para>
<para>
Each view keeps track of its own manager object. When it is
(de)activated, it also (de)activates the management object which
dynamically adds and removes the menu items from the
BonoboUIContainer via a supplied BonoboUI XML definition file
<perhaps it should embed the bonobouixml>. If the target
changes, the view lets the manager know, and it updates the
visibility and sensitivity of objects appropriately, allowing
reasonably dynamic user-interfaces to be managed automatically. The
plugin itself isn't loaded until the menu item in question is invoked
</para>
<para>
Simple menu items and toggle menu items are supported currently.
Also, because actual menu display is driven by BonoboUI, then toolbar
items can also be added using this mechanism.
</para>
<sect2>
<title>Defining a menu hook</title>
<para>
Not sure if this fits here as such. Probably temporary placeholder.
</para>
<programlisting>
<![CDATA[
<hook class="com.ximian.evolution.mail.bonoboMenu:1.0">
<menu id="menuid" target="targettype"
<ui file="/path/to/bonobo-ui-menu-definition.xml"> +
<item
type="item | toggle | radio"
active ?
path="/commands/FooBar"
verb="FooBar"
visible="target mask" ?
enable="target mask" ?
activate="function spec"/> *
</menu> *
</hook>]]></programlisting>
<para>
<emphasis>Need to define menu tag</emphasis>
</para>
<variablelist>
<varlistentry>
<term><parameter>ui</parameter></term>
<listitem>
<simpara>
The <parameter>ui</parameter> element contains a filename of the
BonoboUI XML menu definition to load when the view is activated. Any number of
<parameter>ui</parameter> elements may be defined, and they
are all loaded.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>type</parameter></term>
<listitem>
<simpara>
The menu item type. The type maps directly to the
corresponding EMenuItem types.
<parameter>radio</parameter> is currently not implemented.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>active</parameter></term>
<listitem>
<simpara>
If present, then radio or toggle menu items are active when
first shown. After the first instantiation, they will
remember their active state.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>path</parameter></term>
<listitem>
<simpara>
The BonoboUI element path corresponding to this menu item.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>verb</parameter></term>
<listitem>
<simpara>
The BonoboUI verb corresponding to the item to be listened to.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>visible</parameter></term>
<listitem>
<simpara>
A comma separated list of mask enumeration values used to
define when this item is shown. What values are valid
depend on the menu hook class of the menu being hooked
onto.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>enable</parameter></term>
<listitem>
<simpara>
A comma separated list of mask enumeration values used to
define when this item is sensitive. What values are valid
depend on the menu hook class of the menu being hooked
onto.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>activate</parameter></term>
<listitem>
<simpara>
A plugin-type specific function specification. This
function will be resolved and called when the menu item is
activated. The funciton's parameters will depend on the type
of menu item being invoked.
</simpara>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<sect2>
<title>Merging Plugin Items</title>
<para>
Merging is performed by BonoboUI, and the source of the menu data
is defined by the <parameter>ui</parameter> file.
</para>
</sect2>
</sect1>
<sect1 id="plugin-hooks-config">
<title>
Configuration Pages and Wizards
</title>
<para>
Configuration pages are somewhat more complex than any of the other
types of hookable object. This is reflected in the complexity of the
items and callbacks involved.
</para>
<para>
Essentially, the EConfig object is used in combination to both
instrument existing windows and building new content. Each
configuration window comprises of several basic elements with some
minor variations allowed. It consists of a number of pages in a
specific order, each containing a number of titled sections in a specific
order, each containing a number of items. The variations are that
the top-level widget may be a GtkNotebook or a GnomeDruid; and each
section may instrument a GtkBox, or a GtkGrid. The definition of
the available hooks will define what form they take.
</para>
<para>
The EConfig manager uses the description of all the items supplied to
it to build the complete window. It can also drive various aspects
of the UI, such as navigating through a druid or handling
instant-apply vs. modify-and-save dialogues.
</para>
<figure id="e-config-flow">
<title>Event and Data Flow in EMConfig</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/e-config-flow.pic" format="PIC"/>
</imageobject>
<imageobject>
<imagedata fileref="images/e-config-flow.eps" format="EPS"/>
</imageobject>
<imageobject>
<imagedata fileref="images/e-config-flow.png" format="PNG"/>
</imageobject>
<textobject>
<phrase>The flow of information and control signals in the
configuration management object.</phrase>
</textobject>
</mediaobject>
</figure>
<sect2>
<title>Defining a configuration page hook</title>
<para>
Not sure if this fits here as such. Probably temporary placeholder.
</para>
<programlisting>
<![CDATA[
<hook class="com.ximian.evolution.mail.config:1.0">
<group
id="window id"
target="targettype"
check="function spec"?
commit="function spec"?
abort="function spec"?>
<item
type="book | druid | page | page_start | page_finish | section | section_grid | item | item_grid"
path="/absolute/path"
label="name" | factory="function spec"
/> *
</menu> *
</hook>]]></programlisting>
<sect3>
<title>Group Element Properties</title>
<variablelist>
<varlistentry>
<term><parameter>id</parameter></term>
<listitem>
<simpara>
The name of the configuration window to which this hook
applies.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>target</parameter></term>
<listitem>
<simpara>
The type of target this configuration window applies too.
This will normally be tied directly to the specific
configuration window itself.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>check</parameter></term>
<listitem>
<simpara>
A callback which will be invoked to validate the
configuration or a specific page of the configuration. It
will be invoked with a
<link
linkend="API-struct--EConfigHookPageCheckData">EConfigHookPageCheckData</link>
structure, and is expected to return a non-NULL value if
the page validates.
</simpara>
<simpara>
The callback will be expected to handle all
<parameter>pageid</parameter>'s present in the
configuration window, and should return
<constant>TRUE</constant> for pages it does not recognise.
If <parameter>pageid=""</parameter> (an empty
string), then the <parameter>check</parameter> function
should validate all settings. See also <xref
linkend="API-e-config-add-page-check" />.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>commit</parameter></term>
<listitem>
<simpara>
A callback which will be invoked to commit the
configuration data, if the configuration page isn't an
instant-apply one. This callback can write any
configuration changes to permanent storage. It is not used
for instant-apply windows.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>abort</parameter></term>
<listitem>
<simpara>
A callback which will be invoked to abort the configuration
process. This callback is called when the
<guibutton>Cancel</guibutton> button is pressed on stateful
configuration windows.
</simpara>
</listitem>
</varlistentry>
</variablelist>
</sect3>
<sect3>
<title>Item Element Properties</title>
<variablelist>
<varlistentry>
<term><parameter>type</parameter></term>
<listitem>
<simpara>
The menu item type. The type maps directly to the
corresponding EConfigItem types. Only one of
<parameter>book</parameter> and <parameter>druid</parameter>
may be supplied for the entire configuration page, and this
will usually already be defined by the application.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>path</parameter></term>
<listitem>
<simpara>
The path to the configuration item in question. This is a
simple string that when sorted using an ASCII sort will place
the items in the right order. That is, sections before items
before pages before the root object.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>label</parameter></term>
<listitem>
<simpara>
The textual label of this item. This may only be supplied
for the section and page types. For sections it will be the
section frame text. For pages this will be the druid page
title or the notebook tab text. If a
<parameter>factory</parameter>is supplied then this value is
not used. This will be translated based on the plugin
translation domain.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>factory</parameter></term>
<listitem>
<simpara>
If supplied, the factory method used to create the GtkWidget
elements for this configuration item. Factories may be
supplied for any of the item types. If no
<parameter>label</parameter> is set then the
<parameter>factory</parameter> must be set.
</simpara>
</listitem>
</varlistentry>
</variablelist>
</sect3>
</sect2>
<sect2>
<title>Generating Configuration Pages</title>
<para>
Configuration items essentially spam 3 dimensions, but are
merged in a similar fashion to the way Popup items are merged. The
main difference is that there are no target qualifiers used to
select which items are shown, it is up to the item factory to
either create or not create the item as it sees fit. The EConfig
manager takes care of the rest, including removing un-used sections
or pages.
</para>
<para>
All items for a given configuration screen are converted into a
list and sorted based on the <parameter>path</parameter>. The
configuration builder then goes through each item, creating
container widgets or calling factories as required. If a given
page or section is empty, then it is removed automatically. This
process isn't only a one-off process. For certain complex
configuration screens, items or even pages and sections need to be
dynamic based on a previous setting. EConfig supports this mode of
operation too, in which case it re-builds the configuration screen
the same way, and automatically destroys the old widgets
<footnote><simpara>In most cases, in some cases additional manual
processing is required in the factory
callback.</simpara></footnote> and even re-orders pages and
sections where appropriate to make the user-interface consistent.
</para>
<para>
The following few examples some of the flexibility of the EConfig
system.
</para>
<figure id="e-config-build-1">
<title>The application defined, unaltered configuration page.</title>
<mediaobject>
<!-- do we need to build our own eps for the image? -->
<imageobject>
<imagedata fileref="images/e-config-build-1.png" format="PNG"/>
</imageobject>
<textobject>
<phrase>Shows the original HTML Mail settings page.</phrase>
</textobject>
</mediaobject>
</figure>
<para>
First we have the original configuration window. This is defined
by the application, the application uses EConfig to build this
window, and in the process EConfig instruments the sections that
the application defines. This allows plugins to add new
pages/sections/items anywhere on the page - to a granularity as
defined by the application. For example the application may at
minimum merely define the top-level notebook or druid object and a
number of pages. When the pages are created the application could
add as much content as it wants, which would still allow plugins to
extend the user interface, but only by adding options to the end of
each page. At the other end of the scale the application could
enumerate every single item (i.e. row) in every section on every
page, allowing plugins to put new items anywhere in the display.
</para>
<figure id="e-config-build-2">
<title>A plugin adding a new section to an existing page.</title>
<mediaobject>
<!-- do we need to build our own eps for the image? -->
<imageobject>
<imagedata fileref="images/e-config-build-2.png" format="PNG"/>
</imageobject>
<textobject>
<phrase>Shows the HTML Mail settings page with a new section
and item added by a plugin.</phrase>
</textobject>
</mediaobject>
</figure>
<para>
In this case the plugin has merely added a new section on the
bottom of the HTML Mail settings page. When the factory is called
the plugin has a parent GtkGrid (in this case, it could be a VBox)
and borderless frame already defined, and it just has to
instantiate its own control widgets, add them to the table, and
return one of the widgets. The returned widget is used later if
the window needs to be reconfigured, although this particular configuration
page is static so it isn't needed.
</para>
<figure id="e-config-build-3">
<title>A plugin inserting a new page for its settings.</title>
<mediaobject>
<!-- do we need to build our own eps for the image? -->
<imageobject>
<imagedata fileref="images/e-config-build-3.png" format="PNG"/>
</imageobject>
<textobject>
<phrase>Shows the plugin adding a new page for its setting as
an alternative.</phrase>
</textobject>
</mediaobject>
</figure>
<para>
And finally we have exactly the same plugin, which has exactly the
same code. But a small change to the plugin definition allows the
plugin to add an arbitrary new page (in an arbitrary position) into
the whole window. If this was a druid, then new druid pages can
also be inserted at arbitrary locations, and page navigation (in a
strictly linear manner) is automatically controlled by EConfig as
per <xref linkend="e-config-flow"/>.
</para>
<para>
In practice, EConfig provides more than it takes the application to
use - generally little or no extra application code is required to
use it. It also
<footnote><simpara>Or it will - the code needs some
tweaking.</simpara></footnote> enforces and simplifies HIG
compliance. And as a side-benefit to the application it
transparently provides extension hooks for
external code to provide a seamlessly integrated user experience.
</para>
</sect2>
</sect1>
<sect1 id="plugin-hooks-event">
<title>
Events
</title>
<para>
No extensibility framework would be complete without an event
system. Events are used to reflect changes in internal state of the
application, and track actions by the user. They can contain any
information and additionally can be filtered based on the information
itself. Special targets are used, as in the other plugin hooks, to
hold this information.
</para>
<para>
Event managers are defined to contain the different event types that
a given component can export. Only one event manager object is
instantiated for each component, and each plugin listening to events
from that component are registered on that event manager directly.
</para>
<para>
Events handlers have priorities, and can swallow events, allowing
some level of complexity of event routing. This feature might not
prove useful and may be removed in the future if it isn't.
</para>
<sect2>
<title>Defining an event hook</title>
<para>
Not sure if this fits here as such. Probably temporary placeholder.
</para>
<programlisting>
<![CDATA[
<hook class="com.ximian.evolution.mail.events:1.0">
<event
target="target name"
id="event name"
type="pass | sink" ?
priority="signed integer" ?
enable="target mask" ?
handle="function spec"/> *
</hook>]]></programlisting>
<variablelist>
<varlistentry>
<term><parameter>target</parameter></term>
<listitem>
<simpara>
The target type of the event listener. This will normally
match in a 1:1 relationship to the event
<parameter>id</parameter> itself.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>id</parameter></term>
<listitem>
<simpara>
The name of the event to listen to. By convention the names
will be of the form
<constant>target.event</constant>.
e.g. <constant>folder.changed</constant>, or
<constant>message.read</constant>, etc. Although they are
just simple case-sensitive strings.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>type</parameter></term>
<listitem>
<simpara>
The event listener type. The type maps directly to the corresponding
corresponding EEventItem types.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>priority</parameter></term>
<listitem>
<simpara>
A signed integer specifying the priority of this event
listener. 0 (zero) should be used normally, although positive
and negative integers in the range -128 to 127 may aslo be
used.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>enable</parameter></term>
<listitem>
<simpara>
A comma separated list of mask enumeration values used to
qualify when this event listener is invoked. What values are valid
depend on the event hook class.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>handle</parameter></term>
<listitem>
<simpara>
A plugin-type specific function specification. This
function will be resolved and called when an event is routed to
this listener.
</simpara>
</listitem>
</varlistentry>
</variablelist>
</sect2>
</sect1>
<sect1 id="plugin-hooks-format">
<title>
Mail Formatter
</title>
<para>
The mail formatter plugin will invoke plugin code to format any part
of an email based on mime-type. There are several formatters used
internally by the mailer for different contexts, and each can be
hooked into separately, providing extensible mail formatting for
everything from the primary mail display, to printing, to reply
quoting and more. If you are implementing a handler for a given
mime-type, each formatter appropriate for the data-type should be
hooked into, so that it displays properly in all contexts.
</para>
<para>
Since the management object in this case is the same formatting
object as used by the core mail display engine, a plugin may override
or reimplement complete new functionality seamlessly.
</para>
<para>
This plugin hook isn't strictly part of the core functionality as it
is provided only by the mail component. It however demonstrates that the
plugin system is extensible itself.
</para>
<sect2>
<title>Defining a formatter hook</title>
<para>
Not sure if this fits here as such. Probably temporary placeholder.
</para>
<programlisting>
<![CDATA[
<hook class="com.novell.evolution.mail.format:1.0">
<group id="formatter type">
<item
flags="handler flags"
mime_type="major/minor"
format="function spec"/> +
</group> +
</hook>]]></programlisting>
<variablelist>
<varlistentry>
<term><parameter>id</parameter></term>
<listitem>
<simpara>
The actual formatter this applies to. e.g. EMFormat for the
base formatter class, EMFormatHTML for HTML output to a
GtkHTML object, etc.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>flags</parameter></term>
<listitem>
<simpara>
Flags to define whether this is an attachment or inline
content.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>id</parameter></term>
<listitem>
<simpara>
The name of the event to listen to.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>mime_type</parameter></term>
<listitem>
<simpara>
The type of object this handler formats.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>format</parameter></term>
<listitem>
<simpara>
A plugin-type specific function specification. This
function will be invoked to format objects of the specified
<parameter>mime_type</parameter>.
</simpara>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<sect2>
<title>The formatting process</title>
<para>
The formatting process is driven by the <link
linkend="API-struct--EMFormat">EMFormat</link> object, although
there are different subclasses of this object used for different
purposes. These behave quite differently so each must be explained
separately. There is the basic formatter type which converts a
CamelMimeMessage into a stream of data, and there is a HTML
<link linkend="API-struct--EMFormatHTML">formatter type</link>
which uses a GtkHTML object to parse the content
and may request further information required to complete the
formatting.
</para>
<para>
A basic formatter goes through the following steps:
</para>
<orderedlist>
<listitem>
<simpara>Outputs pre-amble information. e.g. Flag-For-Followup
status. The pre-amble renderer is chosen using the pseudo
mime-type <constant>x-evolution/message/prefix</constant>, and can be
overridden or added to by plugging in to that type.</simpara>
</listitem>
<listitem>
<simpara>Looks up a handler for the pseudo mime-type
<constant>x-evolution/message/rfc822</constant> and invokes it
to begin message formatting. The default handler displays the
message headers and then formats the message contents.
</simpara>
</listitem>
<listitem>
<simpara>Using the mime-type of the content object (whether
supplied or calculated), a handler is looked up from a
per-class table to process the type.</simpara>
</listitem>
<listitem>
<simpara>If no handler exists, then the data is formatted as an
attachment.</simpara>
</listitem>
<listitem>
<simpara>If a handler exists, then it is invoked to display that
type. Depending on whether the data is to be displayed
'inline' or not, the data may also get an attachment expander
and button.</simpara>
</listitem>
<listitem>
<simpara>The handler transforms the part's data, if need be, and
writes the appropriate format output to a stream.</simpara>
</listitem>
</orderedlist>
<para>
For conglomerate types, the formatting process is continued
recursively, until all parts have been displayed, as appropriate.
</para>
<para>
A HTML formatter goes through the same basic steps, but has
additional features and requirements. It uses multiple
threads. At least one other thread is used for all of the
Camel message content operations since some of them may block on
remote I/O. This also simplifies cancellation processing. Also,
because it has access to a full HTML rendering object, references
to embedded content (images, buttons, etc.) are also processed.
</para>
<para>
Most format handlers don't need to know about all the fiddly
details however. If they are just outputting HTML content with no
out of band references, they work identical to the basic format
handlers with the exception they cannot call any Gtk GUI code
because of threading issues. This can still be done by using an
IFRAME. If they want to embed an icon or other image,
they simply need to insert the HTML IMG tag reference in their
format handler, and setup a callback to handle it when GtkHTML
requests it. EMFormat has some helper classes to make this
only a few lines of code, including generation of the IMG SRC URL.
IFRAMEs work identically to IMG tags, and similar process is
involved with embedding custom widgets using the OBJECT tag.
EMFormatHTML takes care of calling the right callbacks for the
right embedded reference from the right thread.
</para>
<para>
Since format handlers are chained off a given type, then a plugin
can also inherit formatting behaviour as well as override it. This
gives much greater flexibility since the plugin need only implement
its behaviour in specific situations. e.g. an OpenPGP message
handler could fall-back to the normal text-formatter if it doesn't
detect the ASCII armour in a text/plain part. Or another handler
may disable itself based on configuration or state.
</para>
<para>
All format handlers for all types must also be fully re-entrant
code (more or less write-once global and static variables) if
they call any other formatting functions.
</para>
</sect2>
</sect1>
<sect1 id="plugin-hooks-import">
<title>
Importers
</title>
<para>
Importers let &Evolution; import data from other or older programs
into its native format.
</para>
<para>
Importers are driven from a druid in the shell, they can work on
individual files, or multiple component application data. All
importers go through the same interface, is this data
present/supported, how do you control the import, and import the data.
</para>
<sect2>
<title>Defining an import hook</title>
<programlisting>
<![CDATA[
<hook class="org.gnome.evolution.import:1.0:1.0">
<importer
target="home | uri"
supported="funcion spec"
get-widget="function spec" ?
import="function spec"
cancel="function spec" ?
name="name"
description="description" ?/> *
</hook>]]></programlisting>
<variablelist>
<varlistentry>
<term><parameter>target</parameter></term>
<listitem>
<simpara>
The target type for this importer. File importers are of a
type <constant>uri</constant> and application importers are
of type <constant>home</constant> (indicating a 'home
directory').
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>supported</parameter></term>
<listitem>
<simpara>
A function to call to determine if the file is supported or
not. The function will be passed the target, and returns
non-NULL if the file is known or the application data exists.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>get-widget</parameter></term>
<listitem>
<simpara>
A factory method to get a widget to control the import. For
file-based importers, this should return a widget which lets
the user select the destination for the import. For
application importers this should return a widget which lets
the user choose what to import. Where possible, the
application importer should record whether or not the data
has already been imported and default any checkboxes
accordingly.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>import</parameter></term>
<listitem>
<simpara>
The function to call to import the data. This function
should generally invoke another thread, or run via an idle
handler callback. During the import it may call <link
linkend="API-e-import-status">e_import_status()</link> to
report progress. It must call <link
linkend="API-e-import-complete">e_import_complete()</link>
once the import is complete, or has failed, or there was no
work selected by the user.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>cancel</parameter></term>
<listitem>
<simpara>
This optional callback will be invoked if the user activates
the cancel button on the import window. It should try to
short-cut further processing where possible.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>name</parameter></term>
<listitem>
<simpara>
The short name description of the importer, which will be
used in the import type selection dropdown, or next to the
application importer widgets.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>description</parameter></term>
<listitem>
<simpara>
A longer description of the importer. Currently unused.
</simpara>
</listitem>
</varlistentry>
</variablelist>
</sect2>
</sect1>
</chapter>
</part>
<part>
<title>
&Evolution; Hook Points.
</title>
<partintro>
<para>
This section enumerates all of the published hook points and target
types available in each component in &Evolution;.
</para>
<simplesect>
<title>Table Format</title>
<informaltable>
<tgroup cols="2">
<colspec colnum="1" colname="field" colwidth="1*"/>
<colspec colnum="2" colname="value" colwidth="4*"/>
<tbody>
<row>
<entry>Id</entry>
<entry>The hook point id.</entry>
</row>
<row>
<entry>Target</entry>
<entry>The target which this hook uses for its context data.
Targets are described in a following section.
</entry>
</row>
<row>
<entry>Items</entry>
<entry>If appropriate and defined, specifies identifying path
names of items which make up the hook. e.g. popup menu
items, and configuration pages. These item specifications
allow the plugin writer to position their items
appropriately.
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</simplesect>
</partintro>
<chapter id="mail-hooks">
<title>
Mail Hooks
</title>
<para>
<emphasis>
Need to find out the right docbook to mark-up most of this
text.
</emphasis>
</para>
<sect1 id="mail-hooks-popup">
<title>Popup menus</title>
<para>
The mail popup menu class is
<interfacename>org.gnome.evolution.mail.popup:1.0</interfacename>.
</para>
<para>
The plugin callback data will be the target matching the plugin
menu itself, and the callback returns no value.
</para>
&em-popups;
<sect2>
<title>Internal popup menus</title>
<para>
The following popup menus are defined, but they are used with no
target, and so provide no useful context if they were to be hooked
onto.
</para>
<para>
<interfacename>com.ximian.mail.messagelist.popup.drop</interfacename>
is used for the ASK drop type on the message list.
</para>
<para>
<interfacename>com.ximian.mail.storageset.popup.drop</interfacename>
is used for the ASK drop type on the folder tree.
</para>
</sect2>
<sect2>
<title>Mail Popup Targets</title>
<para>
<emphasis>
Not sure if this needs to explain the qualifier meanings, or
leave it to the in-line comment stuff in the enumeration
definition. Maybe it just needs a direct link to the
enumeration.
</emphasis>
</para>
<sect3 id="mail-hooks-popup-EMPopupTargetFolder">
<title>Folder Target</title>
<para>
This target is used to define actions on a folder context.
Normally associated with the folder tree.
</para>
<informaltable>
<tgroup cols="2">
<colspec colnum="1" colname="field" colwidth="1*"/>
<colspec colnum="2" colname="value" colwidth="4*"/>
<tbody valign="top">
<row>
<entry>Name</entry>
<entry><constant>folder</constant></entry>
</row>
<row>
<entry>Structure</entry>
<entry>
<link
linkend="API-struct--EMPopupTargetFolder">EMPopupTargetFolder</link>
</entry>
</row>
<row>
<entry>Qualifiers</entry>
<entry>
<simplelist>
<member><constant>folder</constant> = <constant>EM_POPUP_FOLDER_FOLDER</constant></member>
<member><constant>store</constant> = <constant>EM_POPUP_FOLDER_STORE</constant></member>
<member><constant>inferiors</constant> = <constant>EM_POPUP_FOLDER_INFERIORS</constant></member>
<member><constant>delete</constant> = <constant>EM_POPUP_FOLDER_DELETE</constant></member>
<member><constant>select</constant> = <constant>EM_POPUP_FOLDER_SELECT</constant></member>
</simplelist>
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</sect3>
<sect3 id="mail-hooks-popup-EMPopupTargetSelect">
<title>Selection Target</title>
<para>This target is used to define context for actions associated
with a selection of mail messages from a specific folder.</para>
<informaltable>
<tgroup cols="2">
<colspec colnum="1" colname="field" colwidth="1*"/>
<colspec colnum="2" colname="value" colwidth="4*"/>
<tbody valign="top">
<row>
<entry>Name</entry>
<entry><constant>select</constant></entry>
</row>
<row>
<entry>Structure</entry>
<entry>
<link
linkend="API-struct--EMPopupTargetSelect">EMPopupTargetSelect</link>
</entry>
</row>
<row>
<entry>Qualifiers</entry>
<entry>
<simplelist>
<member><constant>one</constant> = <constant>EM_POPUP_SELECT_ONE</constant></member>
<member><constant>many</constant> = <constant>EM_POPUP_SELECT_MANY</constant></member>
<member><constant>mark_read</constant> = <constant>EM_POPUP_SELECT_MARK_READ</constant></member>
<member><constant>mark_unread</constant> = <constant>EM_POPUP_SELECT_MARK_UNREAD</constant></member>
<member><constant>delete</constant> = <constant>EM_POPUP_SELECT_DELETE</constant></member>
<member><constant>undelete</constant> = <constant>EM_POPUP_SELECT_UNDELETE</constant></member>
<member><constant>mailing_list</constant> = <constant>EM_POPUP_SELECT_MAILING_LIST</constant></member>
<member><constant>resend</constant> = <constant>EM_POPUP_SELECT_EDIT</constant></member>
<member><constant>mark_important</constant> = <constant>EM_POPUP_SELECT_MARK_IMPORTANT</constant></member>
<member><constant>mark_unimportant</constant> = <constant>EM_POPUP_SELECT_MARK_UNIMPORTANT</constant></member>
<member><constant>flag_followup</constant> = <constant>EM_POPUP_SELECT_FLAG_FOLLOWUP</constant></member>
<member><constant>flag_completed</constant> = <constant>EM_POPUP_SELECT_FLAG_COMPLETED</constant></member>
<member><constant>flag_clear</constant> = <constant>EM_POPUP_SELECT_FLAG_CLEAR</constant></member>
<member><constant>add_sender</constant> = <constant>EM_POPUP_SELECT_ADD_SENDER</constant></member>
<member><constant>mark_junk</constant> = <constant>EM_POPUP_SELECT_MARK_JUNK</constant></member>
<member><constant>mark_nojunk</constant> = <constant>EM_POPUP_SELECT_MARK_NOJUNK</constant></member>
<member><constant>folder</constant> = <constant>EM_POPUP_SELECT_FOLDER</constant></member>
</simplelist>
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</sect3>
<sect3 id="mail-hooks-popup-EMPopupTargetURI">
<title>URI Target</title>
<para>This target defines context for operations on a URI, normally
displayed inline somewhere in the message view.</para>
<informaltable>
<tgroup cols="2">
<colspec colnum="1" colname="field" colwidth="1*"/>
<colspec colnum="2" colname="value" colwidth="4*"/>
<tbody valign="top">
<row>
<entry>Name</entry>
<entry><constant>uri</constant></entry>
</row>
<row>
<entry>Structure</entry>
<entry><link
linkend="API-struct--EMPopupTargetURI">EMPopupTargetURI</link></entry>
</row>
<row>
<entry>Qualifiers</entry>
<entry>
<simplelist>
<member><constant>http</constant> = <constant>EM_POPUP_URI_HTTP</constant></member>
<member><constant>mailto</constant> = <constant>EM_POPUP_URI_MAILTO</constant></member>
<member><constant>notmailto</constant> = <constant>EM_POPUP_URI_NOT_MAILTO</constant></member>
</simplelist>
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</sect3>
<sect3 id="mail-hooks-popup-EMPopupTargetPart">
<title>Message Part Target</title>
<para>This target defines context for operations on messages, or
individual message parts. The same target is used for inline
images or other content which can be encapsulated in a MIME part
(i.e. anything).</para>
<informaltable>
<tgroup cols="2">
<colspec colnum="1" colname="field" colwidth="1*"/>
<colspec colnum="2" colname="value" colwidth="4*"/>
<tbody valign="top">
<row>
<entry>Name</entry>
<entry><constant>part</constant></entry>
</row>
<row>
<entry>Structure</entry>
<entry><link
linkend="API-struct--EMPopupTargetPart">EMPopupTargetPart</link></entry>
</row>
<row>
<entry>Qualifiers</entry>
<entry>
<simplelist>
<member><constant>message</constant> = <constant>EM_POPUP_PART_MESSAGE</constant></member>
<member><constant>image</constant> = <constant>EM_POPUP_PART_IMAGE</constant></member>
</simplelist>
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</sect3>
<sect3 id="mail-hooks-popup-EMPopupTargetAttachments">
<title>Attachments Target</title>
<para>This target is used to define context for operations on the
mail composer attachment bar.</para>
<informaltable>
<tgroup cols="2">
<colspec colnum="1" colname="field" colwidth="1*"/>
<colspec colnum="2" colname="value" colwidth="4*"/>
<tbody valign="top">
<row>
<entry>Name</entry>
<entry><constant>attachments</constant></entry>
</row>
<row>
<entry>Structure</entry>
<entry><link
linkend="API-struct--EMPopupTargetAttachments">EMPopupTargetAttachments</link></entry>
</row>
<row>
<entry>Qualifiers</entry>
<entry>
<simplelist>
<member><constant>one</constant> = <constant>EM_POPUP_ATTACHMENTS_ONE</constant></member>
<member><constant>many</constant> = <constant>EM_POPUP_ATTACHMENTS_MANY</constant></member>
</simplelist>
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</sect3>
</sect2>
</sect1>
<sect1 id="mail-hooks-menu">
<title>Main menus</title>
<para>
The mail popup menu class is
<interfacename>org.gnome.evolution.mail.bonobomenu:1.0</interfacename>.
</para>
<para>
The plugin callback data will be the target matching the plugin
menu itself, and the callback returns no value.
</para>
&em-menus;
<sect2>
<title>Mail Menu Targets</title>
<sect3 id="mail-hooks-menu-EMMenuTargetSelect">
<title>Message Selection Target</title>
<para>This target is used to define context for operations on a
selection of messages in the view's message list.</para>
<informaltable>
<tgroup cols="2">
<colspec colnum="1" colname="field" colwidth="1*"/>
<colspec colnum="2" colname="value" colwidth="4*"/>
<tbody valign="top">
<row>
<entry>Name</entry>
<entry><constant>select</constant></entry>
</row>
<row>
<entry>Structure</entry>
<entry>
<link
linkend="API-struct--EMMenuTargeSelect">EMMenuTargetSelect</link>
</entry>
</row>
<row>
<entry>Qualifiers</entry>
<entry>
<simplelist>
<member><constant>one</constant> = <constant>EM_MENU_SELECT_ONE</constant></member>
<member><constant>many</constant> = <constant>EM_MENU_SELECT_MANY</constant></member>
<member><constant>mark_read</constant> = <constant>EM_MENU_SELECT_MARK_READ</constant></member>
<member><constant>mark_unread</constant> = <constant>EM_MENU_SELECT_MARK_UNREAD</constant></member>
<member><constant>delete</constant> = <constant>EM_MENU_SELECT_DELETE</constant></member>
<member><constant>undelete</constant> = <constant>EM_MENU_SELECT_UNDELETE</constant></member>
<member><constant>mailing_list</constant> = <constant>EM_MENU_SELECT_MAILING_LIST</constant></member>
<member><constant>resend</constant> = <constant>EM_MENU_SELECT_EDIT</constant></member>
<member><constant>mark_important</constant> = <constant>EM_MENU_SELECT_MARK_IMPORTANT</constant></member>
<member><constant>mark_unimportant</constant> = <constant>EM_MENU_SELECT_MARK_UNIMPORTANT</constant></member>
<member><constant>flag_followup</constant> = <constant>EM_MENU_SELECT_FLAG_FOLLOWUP</constant></member>
<member><constant>flag_completed</constant> = <constant>EM_MENU_SELECT_FLAG_COMPLETED</constant></member>
<member><constant>flag_clear</constant> = <constant>EM_MENU_SELECT_FLAG_CLEAR</constant></member>
<member><constant>add_sender</constant> = <constant>EM_MENU_SELECT_ADD_SENDER</constant></member>
<member><constant>mark_junk</constant> = <constant>EM_MENU_SELECT_MARK_JUNK</constant></member>
<member><constant>mark_nojunk</constant> = <constant>EM_MENU_SELECT_MARK_NOJUNK</constant></member>
<member><constant>folder</constant> = <constant>EM_MENU_SELECT_FOLDER</constant></member>
</simplelist>
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</sect3>
</sect2>
</sect1>
<sect1 id="mail-hooks-config">
<title>Config Windows and Druids</title>
<para>
The mail config class is
<interfacename>org.gnome.evolution.mail.config:1.0</interfacename>.
</para>
&em-configs;
<sect2>
<title>Mail Config Targets</title>
<sect3 id="mail-hooks-config-EMConfigTargetAccount">
<title>Account Target</title>
<para>The account target is used for configuring accounts, and so
has a pointer to the EAccount being configured. This is a copy
of the actual account object, and is copied to the original once
the data is ready to commit.</para>
<informaltable>
<tgroup cols="2">
<colspec colnum="1" colname="field" colwidth="1*"/>
<colspec colnum="2" colname="value" colwidth="4*"/>
<tbody valign="top">
<row>
<entry>Name</entry>
<entry><constant>account</constant></entry>
</row>
<row>
<entry>Structure</entry>
<entry>
<link
linkend="API-struct--EMConfigTargetAccount">EMConfigTargetAccount</link>
</entry>
</row>
<row>
<entry>Items</entry>
<entry>Define some of the items available and where they fit
in the gui</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</sect3>
<sect3 id="mail-hooks-config-EMConfigTargetPrefs">
<title>Preferences Target</title>
<para>The preferences target is used for global preferences. As
such it just contains a pointer to the global configuration store
- a GSettings.</para>
<informaltable>
<tgroup cols="2">
<colspec colnum="1" colname="field" colwidth="1*"/>
<colspec colnum="2" colname="value" colwidth="4*"/>
<tbody valign="top">
<row>
<entry>Name</entry>
<entry><constant>prefs</constant></entry>
</row>
<row>
<entry>Structure</entry>
<entry>
<link
linkend="API-struct--EMConfigTargetPrefs">EMConfigTargetPrefs</link>
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</sect3>
<sect3 id="mail-hooks-config-EMConfigTargetFolder">
<title>Folder Target</title>
<informaltable>
<tgroup cols="2">
<colspec colnum="1" colname="field" colwidth="1*"/>
<colspec colnum="2" colname="value" colwidth="4*"/>
<tbody valign="top">
<row>
<entry>Name</entry>
<entry><constant>folder</constant></entry>
</row>
<row>
<entry>Structure</entry>
<entry>
<link
linkend="API-struct--EMConfigTargetFolder">EMConfigTargetFolder</link>
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</sect3>
</sect2>
</sect1>
<sect1 id="mail-hooks-event">
<title>Events</title>
<para>
The mail event class is
<interfacename>org.gnome.evolution.mail.events:1.0</interfacename>.
</para>
&em-events;
<sect2>
<title>Mail Event Targets</title>
<sect3 id="mail-hooks-event-EMEventTargetFolder">
<title>Folder Target</title>
<informaltable>
<tgroup cols="2">
<colspec colnum="1" colname="field" colwidth="1*"/>
<colspec colnum="2" colname="value" colwidth="4*"/>
<tbody valign="top">
<row>
<entry>Name</entry>
<entry><constant>folder</constant></entry>
</row>
<row>
<entry>Structure</entry>
<entry>
<link
linkend="API-struct--EMEventTargetFolder">EMEventTargetFolder</link>
</entry>
</row>
<row>
<entry>Qualifiers</entry>
<entry>List qualifiers</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</sect3>
</sect2>
</sect1>
<sect1 id="mail-hooks-format">
<title>Formatters</title>
<para>
The mail formatter hook class is
<interfacename>com.novell.evolution.mail.format:1.0</interfacename>.
</para>
<para>
The mail formatter allows the rendering of attachments to be
overridden based on the mime-type of the attachment. There are
additional pseudo-mime-types which can be hooked on to to override
some basic functions. These types are invalid mime-types so cannot
occur in received messages.
</para>
<informaltable>
<tgroup cols="2">
<colspec colnum="1" colname="field" colwidth="1*"/>
<colspec colnum="2" colname="value" colwidth="4*"/>
<tbody valign="top">
<row>
<entry><constant>x-evolution/message/prefix</constant></entry>
<entry>If it exists, this handler will be called before any
other content is output. This can be used to display global
message-information, such as follow-up details. Normally
this handler should chain its call to the parent handler once
it is finished.</entry>
</row>
<row>
<entry><constant>x-evolution/message/rfc822</constant></entry>
<entry>This handler is called to output messages, including
attached messages. The default handler will output the
user-desired message headers and then render the message
content. It also does some processing to do with secured
message validation contexts. As this is not a simple
handler, generally this hook point should only be used to
supplement the prefix output where it is desirable to operate
on attached messages.
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
<sect2>
<title>Base Formatter</title>
<para>
The EMFormat class is the base class for all formatting types.
It should only be used to define compound and complex types which
do not rely on outputting any textual information, or rely on any
screen or print output differences.
</para>
<informaltable>
<tgroup cols="2">
<colspec colnum="1" colname="field" colwidth="1*"/>
<colspec colnum="2" colname="value" colwidth="4*"/>
<tbody valign="top">
<row>
<entry>Name</entry>
<entry><constant>EMFormat</constant></entry>
</row>
<row>
<entry>Target</entry>
<entry>
<link
linkend="mail-hooks-format-EMFormatHookTarget">EMFormatHookTarget</link>
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</sect2>
<sect2>
<title>HTML Formatter</title>
<para>
The EMFormatHTML class is the base class for most formatting types
which generate HTML output. It renders output to a GtkHTML
object. It uses a fairly complex multi-thread approach to the
formatting to ensure the user-interface is not blocked for
processing. GtkHTML is used in a limited way by this class for
HTML parsing and resolution of embedded objects. Embedded objects
and Widgets may not be used from formatters which hook onto this
entry point.
</para>
<informaltable>
<tgroup cols="2">
<colspec colnum="1" colname="field" colwidth="1*"/>
<colspec colnum="2" colname="value" colwidth="4*"/>
<tbody valign="top">
<row>
<entry>Name</entry>
<entry><constant>EMFormatHTML</constant></entry>
</row>
<row>
<entry>Target</entry>
<entry>
<link
linkend="mail-hooks-format-EMFormatHookTarget">EMFormatHookTarget</link>
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
<para>
<emphasis>This section needs a huge amount of
explanation, and/or more detail needs to be added to another
section about the formatter class</emphasis>
</para>
</sect2>
<sect2>
<title>HTML Display Formatter</title>
<para>
The EMFormatHTMLDisplay class is a subclass of EMFormatHTML, and is
used as a mail display widget. As such, it has access to all of
the facilities of GtkHTML, such as embedded widgets. Like the
EMFormatHTML class, this uses a complex multi-thread architecture.
</para>
<informaltable>
<tgroup cols="2">
<colspec colnum="1" colname="field" colwidth="1*"/>
<colspec colnum="2" colname="value" colwidth="4*"/>
<tbody valign="top">
<row>
<entry>Name</entry>
<entry><constant>EMFormatHTMLDisplay</constant></entry>
</row>
<row>
<entry>Target</entry>
<entry>
<link
linkend="mail-hooks-format-EMFormatHookTarget">EMFormatHookTarget</link>
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
<para>
<emphasis>This section needs a huge amount of
explanation, and/or more detail needs to be added to another
section about the formatter class</emphasis>
</para>
</sect2>
<sect2>
<title>HTML Print Formatter</title>
<para>
The EMFormatHTMLPrint class is a subclass of EMFormatHTML, and is
used as a mail printing widget. It cannot access embedded
widgets. For most purposes you would normally only connect to the
EMFormatHTML hook, and generate generic HTML output which could be
printed or shown on-screen if it isn't overriden by the display
formatter.
</para>
<informaltable>
<tgroup cols="2">
<colspec colnum="1" colname="field" colwidth="1*"/>
<colspec colnum="2" colname="value" colwidth="4*"/>
<tbody valign="top">
<row>
<entry>Name</entry>
<entry><constant>EMFormatHTMLPrint</constant></entry>
</row>
<row>
<entry>Target</entry>
<entry>
<link
linkend="mail-hooks-format-EMFormatHookTarget">EMFormatHookTarget</link>
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
<para>
<emphasis>This section needs a huge amount of
explanation, and/or more detail needs to be added to another
section about the formatter class</emphasis>
</para>
</sect2>
<sect2>
<title>Mail Quote Formatter</title>
<para>
The EMFormatQuote class is a subclass of EMFormat, and is
used as generator for quoted mail content and for
inline-forwarding. This formatter converts message objects into
a pure HTML stream, which is not parsed directly, but normally fed
to the message composer.
</para>
<informaltable>
<tgroup cols="2">
<colspec colnum="1" colname="field" colwidth="1*"/>
<colspec colnum="2" colname="value" colwidth="4*"/>
<tbody valign="top">
<row>
<entry>Name</entry>
<entry><constant>EMFormatQuote</constant></entry>
</row>
<row>
<entry>Target</entry>
<entry>
<link
linkend="mail-hooks-EMFormatHookTarget">EMFormatHookTarget</link>
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</sect2>
<sect2 id="mail-hooks-format-EMFormatHookTarget">
<title>Mail Formatter Targets</title>
<para>There is only one target for all mail formatters, and it is
implied automatically for all formatter hooks.</para>
<informaltable>
<tgroup cols="2">
<colspec colnum="1" colname="field" colwidth="1*"/>
<colspec colnum="2" colname="value" colwidth="4*"/>
<tbody valign="top">
<row>
<entry>Structure</entry>
<entry>
<link
linkend="API-struct--EMFormatHookTarget">EMFormatHookTarget</link>
</entry>
</row>
<row>
<entry>Flags</entry>
<entry>
<simplelist>
<member><constant>inline</constant> = <constant>EM_FORMAT_HANDLER_INLINE</constant></member>
<member><constant>inline_disposition</constant> =
<constant>EM_FORMAT_HANDLER_INLINE_DISPOSITION</constant></member>
</simplelist>
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</sect2>
</sect1>
</chapter>
<chapter id="contacts-hooks">
<title>
Contacts Hooks
</title>
<para>
Hooks available in the contacts component.
</para>
<sect1 id="contacts-hooks-popup">
<title>Popup menus</title>
<para>
The contacts popup menu class is
<interfacename>org.gnome.evolution.addressbook.popup:1.0</interfacename>.
</para>
<!-- TODO: define the entity once it exists
&eab-popups; -->
<sect2>
<title>Calendar Popup Targets</title>
<para>TBD</para>
</sect2>
</sect1>
<sect1 id="contacts-hooks-menu">
<title>Main menus</title>
<para>
The addressbook menu class is
<interfacename>org.gnome.evolution.addressbook.bonobomenu:1.0</interfacename>.
</para>
<!-- TODO: define the entity once it exists
&eab-menus; -->
<sect2>
<title>Contacts Menu Targets</title>
<para>TBD</para>
</sect2>
</sect1>
<sect1 id="contacts-hooks-config">
<title>Config Windows and Druids</title>
<para>
The addressbook config class is
<interfacename>org.gnome.evolution.addressbook.config:1.0</interfacename>.
</para>
<!-- TODO: define the entity once it exists
&eab-configs; -->
<sect2>
<title>Contacts Config Targets</title>
<para>TBD</para>
</sect2>
</sect1>
<sect1 id="contacts-hooks-event">
<title>Events</title>
<para>
None defined.
</para>
</sect1>
</chapter>
<chapter id="calendar-hooks">
<title>
Calendar Hooks
</title>
<para>
Hooks available in the calendar component.
</para>
<sect1 id="calendar-hooks-popup">
<title>Popup menus</title>
<para>
The calendar popup menu class is
<interfacename>org.gnome.evolution.calendar.popup:1.0</interfacename>.
</para>
&ecal-popups;
<sect2>
<title>Calendar Popup Targets</title>
<para>TBD</para>
</sect2>
</sect1>
<sect1 id="calendar-hooks-menu">
<title>Main menus</title>
<para>
The calendar menu class is
<interfacename>org.gnome.evolution.calendar.bonobomenu:1.0</interfacename>.
</para>
<!-- TODO: define the entity once it exists
&ecal-menus; -->
<sect2>
<title>Calendar Menu Targets</title>
<para>TBD</para>
</sect2>
</sect1>
<sect1 id="calendar-hooks-config">
<title>Config Windows and Druids</title>
<para>
The calendar config class is
<interfacename>org.gnome.evolution.calendar.config:1.0</interfacename>.
</para>
<!-- TODO: define the entity once it exists
&ecal-configs; -->
<sect2>
<title>Calendar Config Targets</title>
<para>TBD</para>
</sect2>
</sect1>
<sect1 id="calendar-hooks-event">
<title>Events</title>
<para>
None defined.
</para>
</sect1>
</chapter>
<chapter id="shell-hooks">
<title>
Shell Hooks
</title>
<sect1 id="shell-hooks-menu">
<title>Main menus</title>
<para>
The mail menu class is
<interfacename>org.gnome.evolution.shell.bonobomenu:1.0</interfacename>.
</para>
<para>
The plugin callback data will be the target matching the plugin
menu itself, and the callback returns no value.
</para>
&es-menus;
</sect1>
<sect1 id="shell-hooks-event">
<title>Events</title>
<para>
The shell event class is
<interfacename>org.gnome.evolution.shell.events:1.0</interfacename>.
</para>
&es-events;
</sect1>
<sect1 id="shell-hooks-import">
<title>Importers</title>
<para>
Importers are currently global to the shell. The importer class is
<interfacename>org.gnome.evolution.import:1.0</interfacename>.
</para>
<para>
Each plugin callback is passed the target. Once the target has been
passed to get-widget, the same target will be passed to import or
cancel. This allows information to be stored non-globally across
invocations by utilising the GData field in the target.
</para>
&es-importers;
</sect1>
</chapter>
</part>
<part id="reference">
<title>
Reference
</title>
<partintro>
<para>
This section of the book is a detailed API reference of the
objects and methods that implement the core plugin system and hooks.
</para>
<para>
It contains the detailed information required for all uses of the
plugin system. That is, implementors
of new hook types, application developers providing hook points, and
plugin developers.
</para>
</partintro>
<chapter id="REF-EPlugin">
<title>
EPlugin
</title>
<para>
The EPlugin object manages the loading and invocation of physical
plugin definitions and plugin binaries. The base EPlugin class is an
abstract class which loads plugin definitons, resolving hooks, and
provides an api for invoking callbacks.
</para>
<para>
The EPluginLib object is a concrete derived class of EPlugin which
handles loading shared libraries using the GModule interface.
</para>
&e-plugin-reference;
</chapter>
<chapter>
<title>
EPopup
</title>
<para>
The EPopup object manages a single popup menu. It is used to
application code as a convenience function for building dynamic popup
menus based on a specific context.
</para>
<para>
The EPopupHook object is loaded by
the &EPlugin; system, and is used to provide dynamic extension to the
application context menus.
</para>
&e-popup-reference;
<!-- this looks like bum here, not sure where else to put it though -->
&em-popup-reference;
</chapter>
<chapter>
<title>
EMenu
</title>
<para>
The EMenu object manages the menus for a given view or component. It
is used by application code to allow the plugin system an entry point
to current application view. It may also be used by the application as
a convenience function to dynamically alter the menu system based on
user context.
</para>
<para>
The EMenuHook object is loaded by the &EPlugin; system, and is used to
provide dynamic extension to the application menus.
</para>
&e-menu-reference;
</chapter>
<chapter>
<title>
EConfig
</title>
<para>
The EConfig object manages the building of dynamic configuration pages
to configure specific application objects. The same basic object can
be used to fully drive a wizard-like druid object, or to drive a
note-book of configuration options. It is used by application code to
provide the core controller in a model-view-controller implementation
of a UI window.
</para>
<para>
The EConfigHook object is loaded by the &EPlugin; system, and is used hook
in additional configuration items into configuration windows or druids
dynamically.
</para>
&e-config-reference;
</chapter>
<chapter>
<title>
EEvent
</title>
<para>
The EEvent object manages broadcast of events for a given component or
application. It is used by application code to provide the plugin
system with an entry point for user and system state events.
</para>
<para>
The EEventHook object is loaded by the &EPlugin; system, and is used hook
event listeners into dynamically loaded event handlers.
</para>
&e-event-reference;
</chapter>
<chapter>
<title>
EMFormat
</title>
<para>
The EMFormat object drives the formatting of MIME message content for
display, print, and replying. EMFormatHTML is an implementation of
EMFormat which writes its output to a GtkHTML instance.
</para>
<para>
The EMFormatHook object is loaded by the &EPlugin; system, and is used hook
event listeners into dynamically loaded event handlers.
</para>
&em-format-reference;
</chapter>
<chapter>
<title>
EImport
</title>
<para>
The EImport object is used to hold a list of EImportImporter
structures, which are used to drive the importer window.
</para>
&e-import-reference;
</chapter>
</part>
</book>
|