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
|
;;; calfw.el --- Calendar view framework on Emacs
;; Copyright (C) 2011,2012,2013,2014,2015 SAKURAI Masashi
;; Author: SAKURAI Masashi <m.sakurai at kiwanami.net>
;; Version: 1.6
;; Keywords: calendar
;; URL: https://github.com/kiwanami/emacs-calfw
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; This program is a framework for the Calendar component. In the
;; Emacs, uses can show schedules in the calendar views, like iCal,
;; Outlook and Google Calendar.
;;; Installation:
;; Place this program in your load path and add following code.
;; (require 'calfw)
;;; Usage:
;; Executing the command `cfw:open-calendar-buffer', switch to the calendar buffer.
;; You can navigate the date like calendar.el.
;; Schedule data which are shown in the calendar view, are collected
;; by the `cfw:source' objects. See the function `cfw:open-debug-calendar' for example.
;; This program gets the holidays using the function
;; `calendar-holiday-list'. See the document of the holidays.el and
;; the Info text for customizing the holidays.
;;; Add-ons:
;; - calfw-howm.el : Display howm schedules.
;; - calfw-ical.el : Display schedules of the iCalendar format.
;; - calfw-org.el : Display orgmode schedules.
;; - calfw-cal.el : Display emacs diary schedules.
;;; Code:
(require 'cl)
(require 'calendar)
(require 'holidays)
(require 'format-spec)
;;; Constants
(defconst cfw:week-sunday 0)
(defconst cfw:week-monday 1)
(defconst cfw:week-tuesday 2)
(defconst cfw:week-wednesday 3)
(defconst cfw:week-thursday 4)
(defconst cfw:week-friday 5)
(defconst cfw:week-saturday 6)
(defconst cfw:week-days 7)
;;; Customs
(defcustom cfw:fchar-vertical-line ?|
"The character used for drawing vertical lines."
:group 'cfw
:type 'character)
(defcustom cfw:fchar-horizontal-line ?-
"The character used for drawing horizontal lines."
:group 'cfw
:type 'character)
(defcustom cfw:fchar-junction ?+
"The character used for drawing junction lines."
:group 'cfw
:type 'character)
(defcustom cfw:fchar-top-right-corner ?+
"The character used for drawing the top-right corner."
:group 'cfw
:type 'character)
(defcustom cfw:fchar-top-left-corner ?+
"The character used for drawing the top-left corner."
:group 'cfw
:type 'character)
(defcustom cfw:fchar-left-junction ?+
"The character used for drawing junction lines at the left side."
:group 'cfw
:type 'character)
(defcustom cfw:fchar-right-junction ?+
"The character used for drawing junction lines at the right side."
:group 'cfw
:type 'character)
(defcustom cfw:fchar-top-junction ?+
"The character used for drawing junction lines at the top side."
:group 'cfw
:type 'character)
(defcustom cfw:fstring-period-start "("
"The string used to indicate the beginning of a period."
:group 'cfw
:type 'string)
(defcustom cfw:fstring-period-end ")"
"The string used to indicate the end of a period."
:group 'cfw
:type 'string)
(defcustom cfw:read-date-command 'cfw:read-date-command-simple
"The command used to read the date in `cfw:navi-goto-date-command',
for example `cfw:read-date-command-simple' or `cfw:org-read-date-command'."
:group 'cfw
:type 'function)
(defcustom cfw:event-format-overview "%t"
"Format string of `cfw:event's for overviews (month-, 2-week-, week-view).
See `cfw:event-format' for possible values."
:group 'cfw
:type 'string)
(defcustom cfw:event-format-days-overview "%s%e%t"
"Format string of `cfw:event's for days overviews.
See `cfw:event-format' for possible values."
:group 'cfw
:type 'string)
(defcustom cfw:event-format-period-overview "%t%l"
"Format string of `cfw:event's for period overviews.
See `cfw:event-format' for possible values."
:group 'cfw
:type 'string)
(defcustom cfw:event-format-detail "%s%e%t%l%d"
"Format string of `cfw:event's for overviews (month-, week-, day-view).
See `cfw:event-format' for possible values."
:group 'cfw
:type 'string)
(defcustom cfw:event-format-title "%s"
"Format string for the title of a `cfw:event'
%s = title string"
:group 'cfw
:type 'string)
(defcustom cfw:event-format-start-date "%Y-%m-%d"
"Format string for the start date of a `cfw:event'
%Y = year
%m = month
%d = day"
:group 'cfw
:type 'string)
(defcustom cfw:event-format-start-time "%H:%M "
"Format string for the start time of a `cfw:event'
%H = hours
%M = minutes"
:group 'cfw
:type 'string)
(defcustom cfw:event-format-end-date "%Y-%m-%d"
"Format string for the end date of a `cfw:event'
%Y = year
%m = month
%d = day"
:group 'cfw
:type 'string)
(defcustom cfw:event-format-end-time "- %H:%M "
"Format string for the end time of a `cfw:event'
%H = hours
%M = minutes"
:group 'cfw
:type 'string)
(defcustom cfw:event-format-location "\n Location: %s"
"Format string for the location of a `cfw:event'
%s = location string"
:group 'cfw
:type 'string)
(defcustom cfw:event-format-description "\n\n%s\n--------------------\n"
"Format string for the description of a `cfw:event'
%s = location string"
:group 'cfw
:type 'string)
(defcustom cfw:display-calendar-holidays t
"If not-nil, calfw displays holidays."
:group 'cfw
:type 'boolean)
;;; Faces
(defface cfw:face-title
'((((class color) (background light))
:foreground "DarkGrey" :weight bold :height 2.0 :inherit variable-pitch)
(((class color) (background dark))
:foreground "darkgoldenrod3" :weight bold :height 2.0 :inherit variable-pitch)
(t :height 1.5 :weight bold :inherit variable-pitch))
"Face for title" :group 'calfw)
(defface cfw:face-header
'((((class color) (background light))
:foreground "Slategray4" :background "Gray90" :weight bold)
(((class color) (background dark))
:foreground "maroon2" :weight bold))
"Face for headers" :group 'calfw)
(defface cfw:face-sunday
'((((class color) (background light))
:foreground "red2" :background "#ffd5e5" :weight bold)
(((class color) (background dark))
:foreground "red" :weight bold))
"Face for Sunday" :group 'calfw)
(defface cfw:face-saturday
'((((class color) (background light))
:foreground "Blue" :background "#d4e5ff" :weight bold)
(((class color) (background light))
:foreground "Blue" :weight bold))
"Face for Saturday" :group 'calfw)
(defface cfw:face-holiday
'((((class color) (background light))
:background "#ffd5e5")
(((class color) (background dark))
:background "grey10" :foreground "purple" :weight bold))
"Face for holidays" :group 'calfw)
(defface cfw:face-grid
'((((class color) (background light))
:foreground "SlateBlue")
(((class color) (background dark))
:foreground "DarkGrey"))
"Face for grids"
:group 'calfw)
(defface cfw:face-default-content
'((((class color) (background light))
:foreground "#2952a3")
(((class color) (background dark))
:foreground "green2"))
"Face for default contents"
:group 'calfw)
(defface cfw:face-periods
'((((class color) (background light))
:background "#668cd9" :foreground "White" :slant italic)
(((class color) (background dark))
:foreground "cyan"))
"Face for period" :group 'calfw)
(defface cfw:face-day-title
'((((class color) (background light))
:background "#f8f9ff")
(((class color) (background dark))
:background "grey10"))
"Face for day title"
:group 'calfw)
(defface cfw:face-default-day
'((((class color) (background light))
:weight bold :inherit cfw:face-day-title)
(((class color) (background dark))
:weight bold :inherit cfw:face-day-title))
"Face for default day" :group 'calfw)
(defface cfw:face-annotation
'((((class color)) :foreground "RosyBrown" :inherit cfw:face-day-title))
"Face for annotations"
:group 'calfw)
(defface cfw:face-disable
'((((class color)) :foreground "DarkGray" :inherit cfw:face-day-title))
"Face for days out of focused period"
:group 'calfw)
(defface cfw:face-today-title
'((((class color) (background light))
:background "#fad163")
(((class color) (background dark))
:background "red4" :weight bold))
"Face for today" :group 'calfw)
(defface cfw:face-today
'((((class color) (background light))
:background "#fff7d7")
(((class color) (background dark))
:foreground "Cyan" :weight bold))
"Face for today" :group 'calfw)
(defface cfw:face-select
'((((class color) (background light))
:background "#c3c9f8")
(((class color) (background dark))
:background "Blue4"))
"Face for selection" :group 'calfw)
(defvar cfw:face-item-separator-color "SlateBlue"
"Color for the separator line of items in a day.")
;;; Utilities
(defun cfw:k (key alist)
"[internal] Get a content by key from the given alist."
(cdr (assq key alist)))
(defun cfw:sym (&rest strings)
"[internal] concatenate `strings' and return as symbol."
(intern-soft (apply 'concat strings)))
(defun cfw:rt (text face)
"[internal] Put a face to the given text."
(unless (stringp text) (setq text (format "%s" (or text ""))))
(put-text-property 0 (length text) 'face face text)
(put-text-property 0 (length text) 'font-lock-face face text)
text)
(defun cfw:tp (text prop value)
"[internal] Put a text property to the entire text string."
(unless (stringp text) (setq text (format "%s" text)))
(when (< 0 (length text))
(put-text-property 0 (length text) prop value text))
text)
(defun cfw:extract-text-props (text &rest excludes)
"[internal] Return text properties."
(loop with ret = nil
with props = (text-properties-at 0 text)
for name = (car props)
for val = (cadr props)
while props
do
(when (and name (not (memq name excludes)))
(setq ret (cons name (cons val ret))))
(setq props (cddr props))
finally return ret))
(defun cfw:define-keymap (keymap-list)
"[internal] Key map definition utility.
KEYMAP-LIST is a source list like ((key . command) ... )."
(let ((map (make-sparse-keymap)))
(mapc
(lambda (i)
(define-key map
(if (stringp (car i))
(read-kbd-macro (car i)) (car i))
(cdr i)))
keymap-list)
map))
(defun cfw:trim (str)
"[internal] Trim the space char-actors."
(if (string-match "^[ \t\n\r]*\\(.*?\\)[ \t\n\r]*$" str)
(match-string 1 str)
str))
(defun cfw:flatten (lst &optional revp)
(loop with ret = nil
for i in lst
do (setq ret (if (consp i)
(nconc (cfw:flatten i t) ret)
(cons i ret)))
finally return (if revp ret (nreverse ret))))
;;; Date Time Transformation
(defun cfw:date (month day year)
"Construct a date object in the calendar format."
(and month day year
(list month day year)))
(defun cfw:time (hours minutes)
"Construct a date object in the calendar format."
(and hours minutes
(list hours minutes)))
(defun cfw:emacs-to-calendar (time)
"Transform an emacs time format to a calendar one."
(let ((dt (decode-time time)))
(list (nth 4 dt) (nth 3 dt) (nth 5 dt))))
(defun cfw:calendar-to-emacs (date)
"Transform a calendar time format to an emacs one."
(encode-time 0 0 0
(calendar-extract-day date)
(calendar-extract-month date)
(calendar-extract-year date)))
(defun cfw:month-year-equal-p (date1 date2)
"Return `t' if numbers of month and year of DATE1 is equals to
ones of DATE2. Otherwise is `nil'."
(and
(= (calendar-extract-month date1)
(calendar-extract-month date2))
(= (calendar-extract-year date1)
(calendar-extract-year date2))))
(defun cfw:date-less-equal-p (d1 d2)
"Return `t' if date value D1 is less than or equals to date value D2."
(let ((ed1 (cfw:calendar-to-emacs d1))
(ed2 (cfw:calendar-to-emacs d2)))
(or (equal ed1 ed2)
(time-less-p ed1 ed2))))
(defun cfw:date-between (begin end date)
"Return `t' if date value DATE exists between BEGIN and END."
(and (cfw:date-less-equal-p begin date)
(cfw:date-less-equal-p date end)))
(defun cfw:month-year-contain-p (month year date2)
"Return `t' if date value DATE2 is included in MONTH and YEAR."
(and
(= month (calendar-extract-month date2))
(= year (calendar-extract-year date2))))
(defun cfw:date-after (date num)
"Return the date after NUM days from DATE."
(calendar-gregorian-from-absolute
(+ (calendar-absolute-from-gregorian date) num)))
(defun cfw:date-before (date num)
"Return the date before NUM days from DATE."
(calendar-gregorian-from-absolute
(- (calendar-absolute-from-gregorian date) num)))
(defun cfw:strtime-emacs (time)
"Format emacs time value TIME to the string form YYYY/MM/DD."
(format-time-string "%Y/%m/%d" time))
(defun cfw:strtime (date)
"Format calendar date value DATE to the string form YYYY/MM/DD."
(cfw:strtime-emacs (cfw:calendar-to-emacs date)))
(defun cfw:parsetime-emacs (str)
"Transform the string format YYYY/MM/DD to an emacs time value."
(when (string-match "\\([0-9]+\\)\\/\\([0-9]+\\)\\/\\([0-9]+\\)" str)
(apply 'encode-time
(let (ret)
(dotimes (i 6)
(push (string-to-number (or (match-string (+ i 1) str) "0")) ret))
ret))))
(defun cfw:parse-str-time (str)
"Parsese a time string of the format HH:MM to an internal format."
(when (string-match "\\([[:digit:]]\\{2\\}\\):\\([[:digit:]]\\{2\\}\\)" str)
(cfw:time (string-to-number (match-string 1 str))
(string-to-number (match-string 2 str)))))
(defun cfw:parsetime (str)
"Transform the string format YYYY/MM/DD to a calendar date value."
(cfw:emacs-to-calendar (cfw:parsetime-emacs str)))
(defun cfw:read-date-command-simple (string-date)
"Move the cursor to the specified date."
(interactive "sInput Date (YYYY/MM/DD): ")
(cfw:parsetime string-date))
(defun cfw:days-diff (begin end)
"Returns the number of days between `begin' and `end'."
(- (time-to-days (cfw:calendar-to-emacs end))
(time-to-days (cfw:calendar-to-emacs begin))))
(defun cfw:enumerate-days (begin end)
"Enumerate date objects between BEGIN and END."
(when (> (calendar-absolute-from-gregorian begin)
(calendar-absolute-from-gregorian end))
(error "Invalid period : %S - %S" begin end))
(let ((d begin) ret (cont t))
(while cont
(push (copy-sequence d) ret)
(setq cont (not (equal d end)))
(setq d (cfw:date-after d 1)))
(nreverse ret)))
(defun cfw:week-begin-date (date)
"Return date of beginning of the week in which DATE is."
(let ((num (- calendar-week-start-day
(calendar-day-of-week date))))
(cfw:date-after date (if (< 0 num) (- num cfw:week-days) num))))
(defun cfw:week-end-date (date)
"Return date of end of the week in which DATE is."
(let ((num (+ (- calendar-week-start-day 1)
(- cfw:week-days (calendar-day-of-week date)))))
(cfw:date-after date (cond
((> 0 num) (+ num cfw:week-days))
((<= cfw:week-days num) (- num cfw:week-days))
(t num)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Component
;; This structure defines attributes of the calendar component.
;; These attributes are internal use. Other programs should access
;; through the functions of the component interface.
;; [cfw:component]
;; dest : an object of `cfw:dest'
;; model : an object of the calendar model
;; selected : selected date
;; view : a symbol of view type (month, week, two-weeks, ...)
;; update-hooks : a list of hook functions for update event
;; selectoin-change-hooks : a list of hook functions for selection change event
;; click-hooks : a list of hook functions for click event
(defstruct cfw:component dest model selected view
update-hooks selection-change-hooks click-hooks)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Data Source
;; This structure defines data sources of the calendar.
;; [cfw:source]
;; name : data source title
;; data : a function that generates an alist of date-contents
;; update : a function that is called when the user needs to update the contents (optional)
;; color : foreground color for normal items (optional)
;; period-fgcolor : foreground color for period items (optional)
;; period-bgcolor : background color for period items (optional)
;; opt-face : a plist of additional face properties for normal items (optional)
;; opt-period-face : a plist of additional face properties for period items (optional)
;;
;; If `period-bgcolor' is nil, the value of `color' is used.
;; If `period-fgcolor' is nil, the black or white (negative color of `period-bgcolor') is used.
(defstruct cfw:source name data update color period-bgcolor period-fgcolor opt-face opt-period-face)
(defun cfw:source-period-bgcolor-get (source)
"[internal] Return a background color for period items.
If `cfw:source-period-bgcolor' is nil, the value of
`cfw:source-color' is used."
(or (cfw:source-period-bgcolor source)
(let ((c (cfw:source-color source)))
(when c
(setf (cfw:source-period-bgcolor source) c))
c)))
(defun cfw:source-period-fgcolor-get (source)
"[internal] Return a foreground color for period items.
If `cfw:source-period-fgcolor' is nil, the black or
white (negative color of `cfw:source-period-bgcolor') is used."
(or (cfw:source-period-fgcolor source)
(let ((c (destructuring-bind
(r g b) (color-values (or (cfw:source-period-bgcolor-get source) "black"))
(if (< 147500 (+ r g b)) "black" "white")))) ; (* 65536 3 0.75)
(setf (cfw:source-period-fgcolor source) c)
c)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Calendar event
;; This structure defines calendar events.
(defstruct cfw:event
title ; event title [string]
start-date ; start date of the event [cfw:date]
start-time ; start time of the event (optional)
end-date ; end date of the event [cfw:date] (optional)
end-time ; end of the event (optional)
description ; event description [string] (optional)
location ; location [strting] (optional)
source ; [internal] source of the event
)
(defun cfw:event-overview (event)
"Function that extracts the overview string from a`cfw:event'."
(cfw:event-format event cfw:event-format-overview))
(defun cfw:event-days-overview (event)
"Function that extracts the days overview string from a`cfw:event'."
(cfw:event-format event cfw:event-format-days-overview))
(defun cfw:event-period-overview (event)
"Function that extracts the period overview string from a`cfw:event'."
(cfw:event-format event cfw:event-format-period-overview))
(defun cfw:event-detail (event)
"Function that extracts the details string from a`cfw:event'."
(cfw:event-format event cfw:event-format-detail))
(defun cfw:event-format-field-string (string)
"[internal] Used by `cfw:event-format-field' to format string values."
`((?s . ,string)))
(defun cfw:event-format-field-time (time)
"[internal] Used by `cfw:event-format-field' to format time values."
`((?H . ,(cfw:event-format-field-number (car time) 2))
(?M . ,(cfw:event-format-field-number (cadr time) 2))))
(defun cfw:event-format-field-date (date)
"[internal] Used by `cfw:event-format-field' to format date values."
`((?Y . ,(cfw:event-format-field-number (caddr date) 4))
(?m . ,(cfw:event-format-field-number (car date) 2))
(?d . ,(cfw:event-format-field-number (cadr date) 2))))
(defun cfw:event-format-field-number (num width)
"[internal] Like `number-to-string', but with width specifier. Padded with zeros."
(format (concat "%0" (number-to-string width) "d") num))
(defun cfw:event-format-field (event field args-fun)
"[internal] format `field' of the `cfw:event' `event' according to
the string specified in cfw:event-format-`field'."
(let* ((s-name (symbol-name field))
(format-string (symbol-value (cfw:sym "cfw:event-format-" s-name)))
(field-val (funcall (cfw:sym "cfw:event-" s-name) event)))
(if field-val
(format-spec format-string (funcall args-fun field-val))
"")))
(defun cfw:event-format (event format-string)
"Format the `cfw:event' `event' according to `format-string'.
The following values are possible:
%t = title
%S = start date
%s = start time
%E = end date
%e = end time
%l = Location
%d = Description"
(cfw:tp
(format-spec
format-string
(mapcar #'(lambda (field)
`(,(car field) . ,(cfw:event-format-field
event (cadr field) (caddr field))))
'((?t title cfw:event-format-field-string)
(?S start-date cfw:event-format-field-date)
(?s start-time cfw:event-format-field-time)
(?E end-date cfw:event-format-field-date)
(?e end-time cfw:event-format-field-time)
(?l location cfw:event-format-field-string)
(?d description cfw:event-format-field-string))))
'cfw:source (cfw:event-source event)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Rendering Destination
;; This structure object is the abstraction of the rendering
;; destinations, such as buffers, regions and so on.
;; [cfw:dest]
;; type : identify symbol for destination type. (buffer, region, text)
;; buffer : a buffer object of rendering destination.
;; min-func : a function that returns upper limit of rendering destination.
;; max-func : a function that returns lower limit of rendering destination.
;; width : width of the reference size.
;; height : height of the reference size.
;; clear-func : a function that clears the rendering destination.
;; before-update-func : a function that is called at the beginning of rendering routine.
;; after-update-func : a function that is called at the end of rendering routine.
;; select-ol : a list of overlays for selection
;; today-ol : a list of overlays for today
(defstruct cfw:dest
type buffer min-func max-func width height
clear-func before-update-func after-update-func select-ol today-ol)
;; shortcut functions
(eval-when-compile
(defmacro cfw:dest-with-region (dest &rest body)
(let (($dest (gensym)))
`(let ((,$dest ,dest))
(with-current-buffer (cfw:dest-buffer ,$dest)
(save-restriction
(narrow-to-region
(cfw:dest-point-min ,$dest) (cfw:dest-point-max ,$dest))
,@body))))))
(put 'cfw:dest-with-region 'lisp-indent-function 1)
(defun cfw:dest-point-min (c)
(funcall (cfw:dest-min-func c)))
(defun cfw:dest-point-max (c)
(funcall (cfw:dest-max-func c)))
(defun cfw:dest-clear (c)
(funcall (cfw:dest-clear-func c)))
(defun cfw:dest-before-update (c)
(when (cfw:dest-before-update-func c)
(funcall (cfw:dest-before-update-func c))))
(defun cfw:dest-after-update (c)
(when (cfw:dest-after-update-func c)
(funcall (cfw:dest-after-update-func c))))
;; private functions
(defun cfw:dest-ol-selection-clear (dest)
"[internal] Clear the selection overlays on the current calendar view."
(loop for i in (cfw:dest-select-ol dest)
do (delete-overlay i))
(setf (cfw:dest-select-ol dest) nil))
(defun cfw:dest-ol-selection-set (dest date)
"[internal] Put a selection overlay on DATE. The selection overlay can be
put on some days, calling this function many times. If DATE is
not included on the current calendar view, do nothing. This
function does not manage the selections, just put the overlay."
(lexical-let (ols)
(cfw:dest-with-region dest
(cfw:find-all-by-date
dest date
(lambda (begin end)
(let ((overlay (make-overlay begin end)))
(overlay-put overlay 'face
(if (eq 'cfw:face-day-title
(get-text-property begin 'face))
'cfw:face-select))
(push overlay ols)))))
(setf (cfw:dest-select-ol dest) ols)))
(defun cfw:dest-ol-today-clear (dest)
"[internal] Clear decoration overlays."
(loop for i in (cfw:dest-today-ol dest)
do (delete-overlay i))
(setf (cfw:dest-today-ol dest) nil))
(defun cfw:dest-ol-today-set (dest)
"[internal] Put a highlight face on today."
(lexical-let (ols)
(cfw:dest-with-region dest
(cfw:find-all-by-date
dest (calendar-current-date)
(lambda (begin end)
(let ((overlay (make-overlay begin end)))
(overlay-put overlay 'face
(if (eq 'cfw:face-day-title
(get-text-property begin 'face))
'cfw:face-today-title 'cfw:face-today))
(push overlay ols)))))
(setf (cfw:dest-today-ol dest) ols)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Low level API
;; Buffer
(defconst cfw:calendar-buffer-name "*cfw-calendar*" "[internal] Default buffer name for the calendar view.")
(defun cfw:dest-init-buffer (&optional buf width height custom-map)
"Create a buffer destination.
This destination uses an entire buffer and set up the major-mode
`cfw:calendar-mode' and the key map `cfw:calendar-mode-map'. BUF
is a buffer name to render the calendar view. If BUF is nil, the
default buffer name `cfw:calendar-buffer-name' is used. WIDTH
and HEIGHT are reference size of the calendar view. If those are
nil, the size of calendar is calculated from the window that
shows BUF or the selected window. The component
object is stored at the buffer local variable `cfw:component'.
CUSTOM-MAP is the additional keymap that is added to default
keymap `cfw:calendar-mode-map'."
(lexical-let
((buffer (or buf (get-buffer-create cfw:calendar-buffer-name)))
(window (or (and buf (get-buffer-window buf)) (selected-window)))
dest)
(setq dest
(make-cfw:dest
:type 'buffer
:min-func 'point-min
:max-func 'point-max
:buffer buffer
:width (or width (window-width window))
:height (or height (window-height window))
:clear-func (lambda ()
(with-current-buffer buffer
(erase-buffer)))))
(with-current-buffer buffer
(unless (eq major-mode 'cfw:calendar-mode)
(cfw:calendar-mode custom-map)))
dest))
;; Region
(defun cfw:dest-init-region (buf mark-begin mark-end &optional width height)
"Create a region destination. The calendar is drew between
MARK-BEGIN and MARK-END in the buffer BUF. MARK-BEGIN and
MARK-END are separated by more than one character, such as a
space. This destination is employed to be embedded in the some
application buffer. Because this destination does not set up
any modes and key maps for the buffer, the application that uses
the calfw is responsible to manage the buffer and key maps."
(lexical-let
((mark-begin mark-begin) (mark-end mark-end)
(window (or (get-buffer-window buf) (selected-window))))
(make-cfw:dest
:type 'region
:min-func (lambda () (marker-position mark-begin))
:max-func (lambda () (marker-position mark-end))
:buffer buf
:width (or width (window-width window))
:height (or height (window-height window))
:clear-func
(lambda ()
(cfw:dest-region-clear (marker-position mark-begin)
(marker-position mark-end)))
)))
(defun cfw:dest-region-clear (begin end)
"[internal] Clear the content text."
(when (< 2 (- end begin))
(delete-region begin (1- end)))
(goto-char begin))
;; Inline text
(defconst cfw:dest-background-buffer " *cfw:dest-background*")
(defun cfw:dest-init-inline (width height)
"Create a text destination."
(lexical-let
((buffer (get-buffer-create cfw:dest-background-buffer))
(window (selected-window))
dest)
(setq dest
(make-cfw:dest
:type 'text
:min-func 'point-min
:max-func 'point-max
:buffer buffer
:width (or width (window-width window))
:height (or height (window-height window))
:clear-func (lambda ()
(with-current-buffer buffer
(erase-buffer)))))
dest))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Component API
;; Create
(defun cfw:cp-new (dest model view &optional selected-date)
"[internal] Create a new component object.
DEST is a cfw:dest object. MODEL is a model object. VIEW is a
symbol of the view type: month, two-weeks, week and day.
SELECTED-DATE is a selected date initially. This function is
called by the initialization functions,
`cfw:create-calendar-component-buffer',
`cfw:create-calendar-component-region' and
`cfw:get-calendar-text'."
(let ((cp (make-cfw:component
:dest dest
:model model
:view (or view 'month)
:selected (or selected-date (calendar-current-date)))))
(cfw:cp-update cp)
cp))
;; Getting the component instance
(defun cfw:cp-get-component ()
"Return the component object on the current cursor position.
Firstly, getting a text property `cfw:component' on the current
position. If no object is found in the text property, the buffer
local variable `cfw:component' is tried to get. If no object is
found at the variable, return nil."
(let ((component (get-text-property (point) 'cfw:component)))
(unless component
(unless (local-variable-p 'cfw:component (current-buffer))
(error "Not found cfw:component attribute..."))
(setq component (buffer-local-value 'cfw:component (current-buffer))))
component))
;; Getter
(defun cfw:cp-get-selected-date (component)
"Return the selected date of the component."
(cfw:component-selected component))
(defun cfw:cp-get-contents-sources (component)
"Return a list of the content sources."
(cfw:model-get-contents-sources (cfw:component-model component)))
(defun cfw:cp-get-annotation-sources (component)
"Return a list of the annotation sources."
(cfw:model-get-annotation-sources (cfw:component-model component)))
(defun cfw:cp-get-view (component)
"Return a symbol of the current view type."
(cfw:component-view component))
(defun cfw:cp-get-buffer (component)
"Return a buffer object on which the component draws the content."
(cfw:dest-buffer (cfw:component-dest component)))
(defun cfw:cp-displayed-date-p (component date)
"If the date is displayed in the current view, return `t'. Otherwise return `nil'."
(let* ((model (cfw:component-model component))
(begin (cfw:k 'begin-date model))
(end (cfw:k 'end-date model)))
(unless (and begin end) (error "Wrong model : %S" model))
(cfw:date-between begin end date)))
;; Setter
(defun cfw:cp-move-cursor (dest date)
"[internal] Just move the cursor onto the date. This function
is called by `cfw:cp-set-selected-date'."
(let ((pos (cfw:find-by-date dest date)))
(when pos
(goto-char pos)
(unless (eql (selected-window) (get-buffer-window (current-buffer)))
(set-window-point (get-buffer-window (current-buffer)) pos)))))
(defun cfw:cp-set-selected-date (component date)
"Select the date on the component. If the current view doesn't contain the date,
this function updates the view to display the date."
(let ((last (cfw:component-selected component))
(dest (cfw:component-dest component))
(model (cfw:component-model component)))
(cond
((cfw:cp-displayed-date-p component date)
(setf (cfw:component-selected component) date)
(cfw:dest-before-update dest)
(cfw:dest-ol-selection-clear dest)
(cfw:dest-ol-selection-set dest date)
(cfw:dest-after-update dest)
(cfw:cp-move-cursor dest date)
(unless (equal last date)
(cfw:cp-fire-selection-change-hooks component)))
(t
(cfw:model-set-init-date date model)
(setf (cfw:component-selected component) date)
(cfw:cp-update component)
(cfw:cp-fire-selection-change-hooks component)
;; Because this function will be called from cfw:cp-update, do nothing here.
))))
(defun cfw:cp-set-contents-sources (component sources)
"Set content sources for the component.
SOURCES is a list of content sources."
(cfw:model-set-contents-sources
(cfw:component-model component) sources))
(defun cfw:cp-set-annotation-sources (component sources)
"Set annotation sources for the component.
SOURCES is a list of annotation sources."
(cfw:model-set-annotation-sources
sources (cfw:component-model component)))
(defun cfw:cp-set-view (component view)
"Change the view type of the component and re-draw the content.
VIEW is a symbol of the view type."
(setf (cfw:component-view component) view)
(cfw:cp-update component))
(defun cfw:cp-resize (component width height)
"Resize the component size and re-draw the content."
(let* ((dest (cfw:component-dest component))
(buf (cfw:dest-buffer dest))
(window (or (and buf (get-buffer-window buf)) (selected-window))))
(setf (cfw:dest-width dest) (or width (window-width window))
(cfw:dest-height dest) (or height (window-height window))))
(cfw:cp-update component))
;; Hook
(defun cfw:cp-add-update-hook (component hook)
"Add the update hook function to the component.
HOOK is a function that has no argument."
(push hook (cfw:component-update-hooks component)))
(defun cfw:cp-add-selection-change-hook (component hook)
"Add the selection change hook function to the component.
HOOK is a function that has no argument."
(push hook (cfw:component-selection-change-hooks component)))
(defun cfw:cp-add-click-hook (component hook)
"Add the click hook function to the component.
HOOK is a function that has no argument."
(push hook (cfw:component-click-hooks component)))
;;; private methods
(defun cfw:cp-dispatch-view-impl (view)
"[internal] Return a view function which is corresponding to the view symbol.
VIEW is a symbol of the view type."
(cond
((eq 'month view) 'cfw:view-month)
((eq 'week view) 'cfw:view-week)
((eq 'two-weeks view) 'cfw:view-two-weeks)
((eq 'day view) 'cfw:view-day)
(t (error "Not found such view : %s" view))))
(defun cfw:cp-update (component)
"[internal] Clear and re-draw the component content."
(let* ((buf (cfw:cp-get-buffer component))
(dest (cfw:component-dest component)))
(with-current-buffer buf
(cfw:dest-before-update dest)
(cfw:dest-ol-selection-clear dest)
(cfw:dest-ol-today-clear dest)
(let ((buffer-read-only nil))
(cfw:dest-with-region dest
(cfw:dest-clear dest)
(funcall (cfw:cp-dispatch-view-impl
(cfw:component-view component))
component)))
(cfw:dest-ol-today-set dest)
(cfw:cp-set-selected-date
component (cfw:component-selected component))
(cfw:dest-after-update dest)
(cfw:cp-fire-update-hooks component))))
(defun cfw:cp-fire-click-hooks (component)
"[internal] Call click hook functions of the component with no arguments."
(loop for f in (cfw:component-click-hooks component)
do (condition-case err
(funcall f)
(nil (message "Calfw: Click / Hook error %S [%s]" f err)))))
(defun cfw:cp-fire-selection-change-hooks (component)
"[internal] Call selection change hook functions of the component with no arguments."
(loop for f in (cfw:component-selection-change-hooks component)
do (condition-case err
(funcall f)
(nil (message "Calfw: Selection change / Hook error %S [%s]" f err)))))
(defun cfw:cp-fire-update-hooks (component)
"[internal] Call update hook functions of the component with no arguments."
(loop for f in (cfw:component-update-hooks component)
do (condition-case err
(funcall f)
(nil (message "Calfw: Update / Hook error %S [%s]" f err)))))
;;; Models
(defun cfw:model-abstract-new (date contents-sources annotation-sources &optional sorter)
"Return an abstract model object.
DATE is initial date for the calculation of the start date and end one.
CONTENTS-SOURCES is a list of contents functions.
ANNOTATION-SOURCES is a list of annotation functions."
(unless date (setq date (calendar-current-date)))
`((init-date . ,date)
(contents-sources . ,contents-sources)
(annotation-sources . ,annotation-sources)
(sorter . ,(or sorter cfw:default-text-sorter))))
(defun cfw:model-abstract-derived (date org-model)
"Return an abstract model object. The contents functions and annotation ones are copied from ORG-MODEL.
DATE is initial date for the calculation of the start date and end one.
ORG-MODEL is a model object to inherit."
(cfw:model-abstract-new
date
(cfw:model-get-contents-sources org-model)
(cfw:model-get-annotation-sources org-model)
(cfw:model-get-sorter org-model)))
(defun cfw:model-create-updated-view-data (model view-data)
"[internal] Clear previous view model data from MODEL and return a new model with VIEW-DATA."
(append
(cfw:model-abstract-derived
(cfw:k 'init-date model) model)
view-data))
(defvar cfw:default-text-sorter 'string-lessp "[internal] Default sorting criteria in a calendar cell.")
;; public functions
(defun cfw:model-get-holiday-by-date (date model)
"Return a holiday title on the DATE."
(cfw:contents-get date (cfw:k 'holidays model)))
(defun cfw:model-get-contents-by-date (date model)
"Return a list of contents on the DATE."
(cfw:contents-get date (cfw:k 'contents model)))
(defun cfw:model-get-annotation-by-date (date model)
"Return an annotation on the DATE."
(cfw:contents-get date (cfw:k 'annotations model)))
(defun cfw:model-get-periods-by-date (date model)
"Return a list of periods on the DATE."
(loop for (begin end event) in (cfw:k 'periods model)
for content = (if (cfw:event-p event)
(cfw:event-detail event)
event)
if (cfw:date-between begin end date)
collect `(,begin ,end ,content)))
(defun cfw:model-get-sorter (model)
"Return a sorter function."
(cfw:k 'sorter model))
;; private functions
(defun cfw:model-get-contents-sources (model)
"[internal] Return a list of content sources of the model."
(cfw:k 'contents-sources model))
(defun cfw:model-get-annotation-sources (model)
"[internal] Return a list of annotation sources of the model."
(cfw:k 'annotation-sources model))
(defun cfw:model-set-init-date (date model)
"[internal] Set the init-date that is used to calculate the
display period of the calendar."
(let ((cell (assq 'init-date model)))
(cond
(cell (setcdr cell date))
(t (push (cons 'init-date date) model))))
date)
(defun cfw:model-set-contents-sources (sources model)
"[internal] Set the content sources of the model."
(let ((cell (assq 'contents-sources model)))
(cond
(cell (setcdr cell sources))
(t (push (cons 'contents-sources sources) model))))
sources)
(defun cfw:model-set-annotation-sources (sources model)
"[internal] Set the annotation sources of the model."
(let ((cell (assq 'annotation-sources model)))
(cond
(cell (setcdr cell sources))
(t (push (cons 'annotation-sources sources) model))))
sources)
(defun cfw:contents-get (date contents)
"[internal] Return a list of contents on the DATE."
(cdr (cfw:contents-get-internal date contents)))
(defun cfw:contents-get-internal (date contents)
"[internal] Return a cons cell that has the key DATE.
One can modify the returned cons cell destructively."
(cond
((or (null date) (null contents)) nil)
(t (loop for i in contents
if (equal date (car i))
return i
finally return nil))))
(defun cfw:contents-add (date content contents)
"[internal] Add a record, DATE as a key and CONTENT as a body,
to CONTENTS destructively. If CONTENTS has a record for DATE,
this function appends CONTENT to the record. Return the modified
contents list."
(let* ((prv (cfw:contents-get-internal date contents))
(lst (if (listp content) (copy-sequence content) (list content))))
(if prv
(setcdr prv (append (cdr prv) lst))
(push (cons date lst) contents)))
contents)
(defun cfw:contents-merge (begin end sources)
"[internal] Return an contents alist between begin date and end one,
calling functions `:data' function."
(cond
((null sources) nil)
(t
(loop for s in sources
for f = (cfw:source-data s)
for cnts = (cfw:contents-put-source
(funcall f begin end) s)
with contents = nil
do
(loop for c in cnts
for (d . line) = c
do (setq contents (cfw:contents-add d line contents)))
finally return contents))))
(defun cfw:periods-put-source (periods source)
(loop for period in periods
collect
(cond
((cfw:event-p period)
(setf (cfw:event-source period) source)
`(,(cfw:event-start-date period)
,(cfw:event-end-date period)
,period))
(t
(destructuring-bind (begin end . summaries) period
(list begin end
(cfw:tp (if (listp summaries)
(mapconcat 'identity (cfw:flatten summaries) " ")
summaries)
'cfw:source source)))))))
(defun cfw:contents-put-source (contents source)
"[internal] Put the source object to the text property
`cfw:source' in the contents list. During rendering, the source
object is used to put some face property."
(cond
((null source) contents)
(t
(loop for content in contents
collect
(cond
((cfw:event-p content)
(setf (cfw:event-source content) source)
`(,(cfw:event-start-date content) ,content))
((eq (car content) 'periods)
(cons 'periods
(cfw:periods-put-source (cdr content) source)))
(t
(cons (car content)
(loop for i in (cdr content)
collect (cfw:tp i 'cfw:source source)))))))))
(defun cfw:annotations-merge (begin end sources)
"[internal] Return an annotation alist between begin date and end one,
calling functions `cfw:annotations-functions'."
(cond
((null sources) nil)
((= 1 (length sources))
(funcall (cfw:source-data (car sources)) begin end))
(t
(loop for s in sources
for f = (cfw:source-data s)
for cnts = (funcall f begin end)
with annotations = nil
do
(loop for c in cnts
for (d . line) = c
for prv = (cfw:contents-get-internal d annotations)
if prv
do (setcdr prv (concat (cdr prv) "/" line))
else
do (push (cons d line) annotations))
finally return annotations))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Rendering Utilities
(defun cfw:render-title-month (date)
"Render the calendar title for the monthly view."
(format "%4s / %s"
(calendar-extract-year date)
(aref calendar-month-name-array
(1- (calendar-extract-month date)))))
(defun cfw:render-title-period (begin-date end-date)
"Render the calendar title for the period view between BEGIN-DATE and END-DATE."
(cond
((eql (calendar-extract-month begin-date) (calendar-extract-month end-date))
(format "%4s / %s %s - %s"
(calendar-extract-year begin-date)
(aref calendar-month-name-array (1- (calendar-extract-month begin-date)))
(calendar-extract-day begin-date)
(calendar-extract-day end-date)))
(t
(format "%4s / %s %s - %s %s"
(calendar-extract-year begin-date)
(aref calendar-month-name-array (1- (calendar-extract-month begin-date)))
(calendar-extract-day begin-date)
(aref calendar-month-name-array (1- (calendar-extract-month end-date)))
(calendar-extract-day end-date)))))
(defun cfw:render-title-day (date)
"Render the calendar title for the day view on DATE."
(format "%4s / %s %s"
(calendar-extract-year date)
(aref calendar-month-name-array
(1- (calendar-extract-month date)))
(calendar-extract-day date)))
(defun cfw:render-center (width string &optional padding)
"[internal] Format STRING in the center, padding on the both
sides with the character PADDING."
(let* ((padding (or padding ?\ ))
(cnt (or (and string
(cfw:render-truncate string width t))
""))
(len (string-width cnt))
(margin (/ (- width len) 2)))
(concat
(make-string margin padding) cnt
(make-string (- width len margin) padding))))
(defun cfw:render-left (width string &optional padding)
"[internal] Format STRING, padding on the right with the character PADDING."
(let* ((padding (or padding ?\ ))
(cnt (or (and string
(cfw:render-truncate string width t))
""))
(len (string-width cnt))
(margin (- width len)))
(concat cnt (make-string margin padding))))
(defun cfw:render-separator (string)
"[internal] Add a separator into the ROWS list."
(when (get-text-property 0 'cfw:item-separator string)
(let ((last-face (get-text-property 0 'face string)))
(cond
((or (null last-face) (listp last-face))
(setq last-face (append last-face `(:underline ,cfw:face-item-separator-color)))
(put-text-property 0 (length string) 'face last-face string)
(put-text-property 0 (length string) 'font-lock-face last-face string))
((symbolp last-face)
(let ((attrs (face-all-attributes last-face (selected-frame))))
(setq attrs ; transform alist to plist
(loop with nattrs = nil
for (n . v) in (append attrs `((:underline . ,cfw:face-item-separator-color)))
do (setq nattrs (cons n (cons v nattrs)))
finally return nattrs))
(put-text-property 0 (length string) 'face attrs string)
(put-text-property 0 (length string) 'font-lock-face attrs string)))
(t
(message "DEBUG? CFW: FACE %S / %S" string last-face)))))
string)
(defun cfw:render-right (width string &optional padding)
"[internal] Format STRING, padding on the left with the character PADDING."
(let* ((padding (or padding ?\ ))
(cnt (or (and string
(cfw:render-truncate string width t))
""))
(len (string-width cnt))
(margin (- width len)))
(concat (make-string margin padding) cnt)))
(defun cfw:render-add-right (width left right &optional padding)
"[internal] Layout strings LEFT and RIGHT within WIDTH."
(let* ((padding (or padding ?\ ))
(lcnt (or (and left
(cfw:render-truncate left width t))
""))
(llen (string-width lcnt))
(rmargin (- width llen))
(right (cfw:trim right))
(rcnt (or (and right (> rmargin 0)
(cfw:render-truncate right rmargin))
""))
(cmargin (- width llen (string-width rcnt))))
(concat lcnt (if (< 0 cmargin) (make-string cmargin padding)) rcnt)))
(defun cfw:render-sort-contents (lst sorter)
"[internal] Sort the string list LST. Maybe need to improve the sorting rule..."
(sort (copy-sequence lst) sorter))
(defun cfw:render-get-face-period (text default-face)
"[internal] Return a face for the source object of the period text."
(let* ((src (get-text-property 0 'cfw:source text))
(bg-color (and src (cfw:source-period-bgcolor-get src)))
(fg-color (and src (cfw:source-period-fgcolor-get src))))
(cond
((or (null src) (null bg-color)) default-face)
(t (append (list ':background bg-color ':foreground fg-color)
(cfw:source-opt-period-face src))))))
(defun cfw:render-get-face-content (text default-face)
"[internal] Return a face for the source object of the content text."
(let* ((src (get-text-property 0 'cfw:source text))
(fg-color (and src (cfw:source-color src))))
(cond
((or (null src) (null fg-color)) default-face)
(t (append (list ':foreground fg-color) (cfw:source-opt-face src))))))
(defun cfw:render-default-content-face (str &optional default-face)
"[internal] Put the default content face. If STR has some
faces, the faces are remained."
(loop for i from 0 below (length str)
with ret = (substring str 0)
with face = (or default-face
(cfw:render-get-face-content
str 'cfw:face-default-content))
unless (get-text-property i 'face ret)
do
(put-text-property i (1+ i) 'face face ret)
(put-text-property i (1+ i) 'font-lock-face face ret)
finally return ret))
(defun cfw:render-get-week-face (daynum &optional default-face)
"[internal] Put the default week face."
(cond
((= daynum cfw:week-saturday)
'cfw:face-saturday)
((= daynum cfw:week-sunday)
'cfw:face-sunday)
(t default-face)))
(defun cfw:render-truncate (org limit-width &optional ellipsis)
"[internal] Truncate a string ORG with LIMIT-WIDTH, like `truncate-string-to-width'."
(setq org (replace-regexp-in-string "\n" " " org))
(if (< limit-width (string-width org))
(let ((str (truncate-string-to-width
(substring org 0) limit-width 0 nil ellipsis)))
(cfw:tp str 'mouse-face 'highlight)
(unless (get-text-property 0 'help-echo str)
(cfw:tp str 'help-echo org))
str)
org))
(defface cfw:face-toolbar
'((((class color) (background light))
:foreground "Gray90" :background "Gray90")
(((class color) (background dark))
:foreground "Steelblue4" :background "Steelblue4"))
"Face for toolbar" :group 'calfw)
(defface cfw:face-toolbar-button-off
'((((class color) (background light))
:foreground "Lightskyblue4" :background "White")
(((class color) (background dark))
:foreground "Gray10" :weight bold))
"Face for button on toolbar" :group 'calfw)
(defface cfw:face-toolbar-button-on
'((((class color) (background light))
:foreground "Lightpink3" :background "Gray94" )
(((class color) (background dark))
:foreground "Gray50" :weight bold))
"Face for button on toolbar" :group 'calfw)
(defun cfw:render-button (title command &optional state)
"[internal] Return a decorated text for the toolbar buttons.
TITLE is a button title. COMMAND is a interactive command
function called by clicking. If STATE is non-nil, the face
`cfw:face-toolbar-button-on' is applied. Otherwise
`cfw:face-toolbar-button-off' is applied."
(let ((text (concat "[" title "]"))
(keymap (make-sparse-keymap)))
(cfw:rt text (if state 'cfw:face-toolbar-button-on
'cfw:face-toolbar-button-off))
(define-key keymap [mouse-1] command)
(cfw:tp text 'keymap keymap)
(cfw:tp text 'mouse-face 'highlight)
text))
(defun cfw:render-toolbar (width current-view prev-cmd next-cmd)
"[internal] Return a text of the toolbar.
WIDTH is width of the toolbar.
CURRENT-VIEW is a symbol of the current view type. This symbol is used to select the button faces on the toolbar.
PREV-CMD and NEXT-CMD are the moving view command, such as `cfw:navi-previous(next)-month-command' and `cfw:navi-previous(next)-week-command'."
(let* ((prev (cfw:render-button " < " prev-cmd))
(today (cfw:render-button "Today" 'cfw:navi-goto-today-command))
(next (cfw:render-button " > " next-cmd))
(month (cfw:render-button
"Month" 'cfw:change-view-month
(eq current-view 'month)))
(tweek (cfw:render-button
"Two Weeks" 'cfw:change-view-two-weeks
(eq current-view 'two-weeks)))
(week (cfw:render-button
"Week" 'cfw:change-view-week
(eq current-view 'week)))
(day (cfw:render-button
"Day" 'cfw:change-view-day
(eq current-view 'day)))
(sp " ")
(toolbar-text
(cfw:render-add-right
width (concat sp prev sp next sp today sp)
(concat day sp week sp tweek sp month sp))))
(cfw:render-default-content-face toolbar-text 'cfw:face-toolbar)))
(defun cfw:render-footer (width sources)
"[internal] Return a text of the footer."
(let* ((whole-text
(mapconcat
'identity
(loop for s in sources
for title = (cfw:tp (substring (cfw:source-name s) 0)
'cfw:source s)
for dot = (cfw:tp (substring "(==)" 0) 'cfw:source s)
collect
(cfw:render-default-content-face
(concat
"[" (cfw:rt dot (cfw:render-get-face-period dot 'cfw:face-periods))
" " title "]")
(cfw:render-get-face-content title 'cfw:face-default-content)))
" ")))
(cfw:render-default-content-face
(cfw:render-left width (concat " " whole-text)) 'cfw:face-toolbar)))
(defun cfw:render-periods (date week-day periods-stack cell-width)
"[internal] This function translates PERIOD-STACK to display content on the DATE."
(loop with prev-row = -1
for (row (begin end content props)) in (sort periods-stack
(lambda (a b)
(< (car a) (car b))))
nconc (make-list (- row prev-row 1) "") ; add empty padding lines
do (setq prev-row row)
for beginp = (equal date begin)
for endp = (equal date end)
for width = (- cell-width (if beginp 1 0) (if endp 1 0))
for title = (cfw:render-periods-title
date week-day begin end content cell-width)
collect
(apply 'propertize
(concat (when beginp cfw:fstring-period-start)
(cfw:render-left width title ?-)
(when endp cfw:fstring-period-end))
'face (cfw:render-get-face-period content 'cfw:face-periods)
'font-lock-face (cfw:render-get-face-period content 'cfw:face-periods)
'cfw:period t
props)))
(defun cfw:render-periods-title (date week-day begin end content cell-width)
"[internal] Return a title string."
(let* ((week-begin (cfw:date-after date (- week-day)))
(month-begin (cfw:date
(calendar-extract-month date)
1 (calendar-extract-year date)))
(title-begin-abs
(max
(calendar-absolute-from-gregorian begin)
(calendar-absolute-from-gregorian week-begin)))
(title-begin (calendar-gregorian-from-absolute title-begin-abs))
(num (- (calendar-absolute-from-gregorian date) title-begin-abs)))
(when content
(loop with title = (substring content 0)
for i from 0 below num
for pdate = (calendar-gregorian-from-absolute (+ title-begin-abs i))
for chopn = (+ (if (equal begin pdate) 1 0) (if (equal end pdate) 1 0))
for del = (truncate-string-to-width title (- cell-width chopn))
do
(setq title (substring title (length del)))
finally return
(cfw:render-truncate title width (equal end date))))))
;; event periods shifts pos - not one line
(defun cfw:render-periods-get-min (periods-each-days begin end)
"[internal] Find the minimum empty row number of the days between
BEGIN and END from the PERIODS-EACH-DAYS."
(loop for row-num from 0 below 30 ; assuming the number of stacked periods is less than 30
unless
(loop for d in (cfw:enumerate-days begin end)
for periods-stack = (cfw:contents-get d periods-each-days)
if (and periods-stack (assq row-num periods-stack))
return t)
return row-num))
(defun cfw:render-periods-place (periods-each-days row period)
"[internal] Assign PERIOD content to the ROW-th row on the days of the period,
and append the result to periods-each-days."
(loop for d in (cfw:enumerate-days (car period) (cadr period))
for periods-stack = (cfw:contents-get-internal d periods-each-days)
if periods-stack
do (setcdr periods-stack (append (cdr periods-stack)
(list (list row period))))
else
do (push (cons d (list (list row period))) periods-each-days))
periods-each-days)
(defun cfw:render-periods-stacks (model)
"[internal] Arrange the `periods' records of the model and
create period-stacks on the each days.
period-stack -> ((row-num . period) ... )"
(let* (periods-each-days)
(loop for (begin end event) in (cfw:k 'periods model)
for content = (if (cfw:event-p event)
(cfw:event-period-overview event)
event)
for period = (list begin end content
(cfw:extract-text-props content 'face))
for row = (cfw:render-periods-get-min periods-each-days begin end)
do
(setq periods-each-days (cfw:render-periods-place
periods-each-days row period)))
periods-each-days))
(defun cfw:render-columns (day-columns param)
"[internal] This function concatenates each rows on the days into a string of a physical line.
DAY-COLUMNS is a list of columns. A column is a list of following form: (DATE (DAY-TITLE . ANNOTATION-TITLE) STRING STRING...)."
(let ((cell-width (cfw:k 'cell-width param))
(cell-height (cfw:k 'cell-height param))
(EOL (cfw:k 'eol param)) (VL (cfw:k 'vl param))
(hline (cfw:k 'hline param)) (cline (cfw:k 'cline param)))
;; day title
(loop for day-rows in day-columns
for date = (car day-rows)
for (tday . ant) = (cadr day-rows)
do
(insert
VL (if date
(cfw:tp
(cfw:render-default-content-face
(cfw:render-add-right cell-width tday ant)
'cfw:face-day-title)
'cfw:date date)
(cfw:render-left cell-width ""))))
(insert VL EOL)
;; day contents
(loop with breaked-day-columns =
(loop for day-rows in day-columns
for (date ants . lines) = day-rows
collect
(cons date (cfw:render-break-lines
lines cell-width (1- cell-height))))
for i from 1 below cell-height do
(loop for day-rows in breaked-day-columns
for date = (car day-rows)
for row = (nth i day-rows)
do
(insert
VL (cfw:tp
(cfw:render-separator
(cfw:render-left cell-width (and row (format "%s" row))))
'cfw:date date)))
(insert VL EOL))
(insert cline)))
(defvar cfw:render-line-breaker 'cfw:render-line-breaker-simple
"A function which breaks a long line into some lines.
Calfw has 3 strategies: none, simple and wordwrap.
`cfw:render-line-breaker-none' never breaks lines.
`cfw:render-line-breaker-simple' breaks lines with rigid width (default).
`cfw:render-line-breaker-wordwrap' breaks lines with the emacs function `fill-region'.
The arguments of a line-breaking function are STRING, LINE-WIDTH and MAX-LINE-NUMBER.")
(defun cfw:render-break-lines (lines cell-width cell-height)
"[internal] Return lines those are split into some lines by the
algorithm defined at `cfw:render-line-breaker'."
(and lines
(let ((num (/ cell-height (length lines))))
(cond
((> 2 num) lines)
(t
(loop with total-rows = nil
for line in lines
for rows = (funcall cfw:render-line-breaker line cell-width num)
do
(when total-rows
(cfw:render-add-item-separator-sign total-rows))
(setq total-rows (append total-rows rows))
finally return total-rows))))))
(defun cfw:render-add-item-separator-sign (rows)
"[internal] Add a separator into the ROWS list."
(let ((last-line (car (last rows)))
last-face)
(unless (get-text-property 0 'cfw:period last-line)
(put-text-property 0 (length last-line) 'cfw:item-separator t last-line))
rows))
(defun cfw:render-line-breaker-none (line w n)
"Line breaking algorithm: Do nothing."
(list line))
(defun cfw:render-line-breaker-simple (string line-width max-line-num)
"Line breaking algorithm: Just splitting a line with the rigid width."
(loop with ret = nil with linenum = 1
with curcol = 0 with lastpos = 0
with endpos = (1- (length string))
for i from 0 upto endpos
for c = (aref string i)
for w = (char-width c)
for wsum = (+ curcol w) do
(cond
((and (< i endpos) (<= max-line-num linenum))
(push (cfw:trim
(replace-regexp-in-string
"[\n\r]" " " (substring string lastpos))) ret)
(setq i endpos))
((= endpos i)
(push (substring string lastpos) ret))
((or (= c 13) (= c 10))
(push (substring string lastpos i) ret)
(setq lastpos (1+ i) curcol 0)
(incf linenum))
((= line-width wsum)
(push (substring string lastpos (1+ i)) ret)
(setq lastpos (1+ i) curcol 0)
(incf linenum))
((< line-width wsum)
(push (substring string lastpos i) ret)
(setq lastpos i curcol w)
(incf linenum))
(t (incf curcol w)))
finally return (or (and ret (nreverse ret)) '(""))))
(defun cfw:render-line-breaker-wordwrap (string line-width max-line-num)
"Line breaking algorithm: Simple word wrapping with fill-region."
(if (<= (length string) line-width)
(list string)
(let ((fill-column line-width) (use-hard-newlines t))
(with-temp-buffer
(insert string)
(fill-region (point-min) (point-max))
;; collect lines
(goto-char (point-min))
(let ((cont t) (last (point)) ps ret)
(while cont
(setq ps (re-search-forward "\n" nil t))
(cond
((null ps) (setq cont nil)
(when (not (eobp))
(push (buffer-substring last (point-max)) ret)))
(t
(push (cfw:trim (buffer-substring last (1- ps))) ret)
(when (<= max-line-num (length ret))
(setq cont nil))
(setq last ps))))
(or (and ret (nreverse ret)) '("")))))))
(defun cfw:render-append-parts (param)
"[internal] Append rendering parts to PARAM and return a new list."
(let* ((EOL "\n")
(cell-width (cfw:k 'cell-width param))
(columns (cfw:k 'columns param))
(num-cell-char
(/ cell-width (char-width cfw:fchar-horizontal-line))))
(append
param
`((eol . ,EOL) (vl . ,(cfw:rt (make-string 1 cfw:fchar-vertical-line) 'cfw:face-grid))
(hline . ,(cfw:rt
(concat
(loop for i from 0 below columns concat
(concat
(make-string 1 (if (= i 0) cfw:fchar-top-left-corner cfw:fchar-top-junction))
(make-string num-cell-char cfw:fchar-horizontal-line)))
(make-string 1 cfw:fchar-top-right-corner) EOL)
'cfw:face-grid))
(cline . ,(cfw:rt
(concat
(loop for i from 0 below columns concat
(concat
(make-string 1 (if (= i 0) cfw:fchar-left-junction cfw:fchar-junction))
(make-string num-cell-char cfw:fchar-horizontal-line)))
(make-string 1 cfw:fchar-right-junction) EOL) 'cfw:face-grid))))))
(defun cfw:render-day-of-week-names (model param)
"[internal] Insert week names."
(loop for i in (cfw:k 'headers model)
with VL = (cfw:k 'vl param) with cell-width = (cfw:k 'cell-width param)
for name = (aref calendar-day-name-array i) do
(insert VL (cfw:rt (cfw:render-center cell-width name)
(cfw:render-get-week-face i 'cfw:face-header)))))
(defun cfw:render-calendar-cells-weeks (model param title-func)
"[internal] Insert calendar cells for week based views."
(loop for week in (cfw:k 'weeks model) do
(cfw:render-calendar-cells-days model param title-func week
'cfw:render-event-overview-content
t)))
(defun cfw:render-rows-prop (rows)
"[internal] Put a marker as a text property for TAB navigation."
(loop with i = 0
for line in rows
collect
(prog1
(cfw:tp line 'cfw:row-count i)
(if (< 0 (length line)) (incf i)))))
(defun cfw:render-map-event-content (lst event-fun)
"[internal] `lst' is a list of contents and `cfw:event's. Map over `lst',
where `event-fun' is applied if the element is a `cfw:event'."
(mapcar #'(lambda (evt)
(if (cfw:event-p evt)
(funcall event-fun evt)
evt))
lst))
(defun cfw:render-event-overview-content (lst)
"[internal] Apply `cfw:event-overview' on `cfw:event's in `lst'."
(cfw:render-map-event-content lst 'cfw:event-overview))
(defun cfw:render-event-days-overview-content (lst)
"[internal] Apply `cfw:event-days-overview' on `cfw:event's in `lst'."
(cfw:render-map-event-content lst 'cfw:event-days-overview))
(defun cfw:render-event-details-content (lst)
"[internal] Apply `cfw:event-detail' on `cfw:event's in `lst'."
(cfw:render-map-event-content lst 'cfw:event-detail))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Views
;;; view model utilities
(defun cfw:view-model-make-weeks (begin-date end-date)
"[internal] Return a list of weeks those have 7 days."
(let* ((first-day-day (calendar-day-of-week begin-date)) weeks)
(loop with i = begin-date
with day = calendar-week-start-day
with week = nil
do
;; flush a week
(when (and (= day calendar-week-start-day) week)
(push (nreverse week) weeks)
(setq week nil)
(when (cfw:date-less-equal-p end-date i) (return)))
;; add a day
(push i week)
;; increment
(setq day (% (1+ day) cfw:week-days))
(setq i (cfw:date-after i 1)))
(nreverse weeks)))
(defun cfw:view-model-make-days (begin-date end-date)
"[internal] Return a list of days for linear views."
(loop with days = nil
with i = begin-date
do
(push i days)
(when (cfw:date-less-equal-p end-date i)
(return (reverse days)))
(setq i (cfw:date-after i 1))))
(defun cfw:view-model-make-day-names-for-week ()
"[internal] Return a list of index of day of the week."
(loop for i from 0 below cfw:week-days
collect (% (+ calendar-week-start-day i) cfw:week-days)))
(defun cfw:view-model-make-day-names-for-days (begin-date end-date)
"[internal] Return a list of index of day of the week for linear views."
(loop with day = (calendar-day-of-week begin-date)
with day-names = nil
with i = begin-date
do
(push day day-names)
(when (cfw:date-less-equal-p end-date i)
(return (reverse day-names)))
(setq day (% (1+ day) cfw:week-days))
(setq i (cfw:date-after i 1))))
(defun cfw:view-model-make-holidays (date)
"[internal] Return an alist of holidays around DATE."
(if cfw:display-calendar-holidays
(let ((displayed-month (calendar-extract-month date))
(displayed-year (calendar-extract-year date)))
(calendar-holiday-list))))
(defun cfw:view-model-make-common-data (model begin-date end-date &optional lst)
"[internal] Return an alist of common data for the model."
(let* ((contents-all (cfw:contents-merge
begin-date end-date
(cfw:model-get-contents-sources model))))
(append
`(; common data
(begin-date . ,begin-date) (end-date . ,end-date)
(holidays . ,(cfw:view-model-make-holidays begin-date)) ; an alist of holidays, (DATE HOLIDAY-NAME)
(annotations . ,(cfw:annotations-merge ; an alist of annotations, (DATE ANNOTATION)
begin-date end-date
(cfw:model-get-annotation-sources model)))
(contents . ,(loop for i in contents-all
unless (eq 'periods (car i))
collect i)) ; an alist of contents, (DATE LIST-OF-CONTENTS)
(periods . ,(cfw:k 'periods contents-all))) ; a list of periods, (BEGIN-DATE END-DATE SUMMARY)
lst)))
(defun cfw:view-model-make-common-data-for-weeks (model begin-date end-date)
"[internal] Return a model object for week based views."
(cfw:model-create-updated-view-data
model
(cfw:view-model-make-common-data
model begin-date end-date
`((headers . ,(cfw:view-model-make-day-names-for-week)) ; a list of the index of day-of-week
(weeks . ,(cfw:view-model-make-weeks ; a matrix of day-of-month, which corresponds to the index of `headers'
(cfw:week-begin-date begin-date)
(cfw:week-end-date end-date)))))))
(defun cfw:view-model-make-common-data-for-days (model begin-date end-date)
"[internal] Return a model object for linear views."
(cfw:model-create-updated-view-data
model
(cfw:view-model-make-common-data
model begin-date end-date
`((headers . ,(cfw:view-model-make-day-names-for-days begin-date end-date)) ; a list of the index of day-of-week
(days . ,(cfw:view-model-make-days ; a list of days, which corresponds to the index of `headers'
begin-date end-date))))))
;;; view-month
(defun cfw:view-month-model (model)
"[internal] Create a logical view model of monthly calendar.
This function collects and arranges contents. This function does
not know how to display the contents in the destinations."
(let* ((init-date (cfw:k 'init-date model))
(year (calendar-extract-year init-date))
(month (calendar-extract-month init-date))
(begin-date (cfw:date month 1 year))
(end-date (cfw:date month (calendar-last-day-of-month month year) year)))
;; model
(append
(cfw:view-model-make-common-data-for-weeks model begin-date end-date)
`((month . ,month) (year . ,year)))))
(defun cfw:round-cell-width (width)
"[internal] If string-width of `cfw:fchar-horizontal-line' is not 1,
this function re-calculate and return the adjusted width."
(cond
((eql (char-width cfw:fchar-horizontal-line) 1) width)
(t (- width (% width (char-width cfw:fchar-horizontal-line))))))
(defun cfw:view-month-calc-param (dest total-weeks)
"[internal] Calculate cell size from the reference size and
return an alist of rendering parameters."
(let*
((win-width (cfw:dest-width dest))
;; title 2, toolbar 1, header 2, hline 7, footer 1, margin 2 => 15
(win-height (max 15 (- (cfw:dest-height dest) 15)))
(junctions-width (* (char-width cfw:fchar-junction) 8)) ; weekdays+1
(cell-width (cfw:round-cell-width
(max 5 (/ (- win-width junctions-width) 7)))) ; weekdays
(cell-height (max 2 (/ win-height total-weeks))) ; max weeks = 6
(total-width (+ (* cell-width cfw:week-days) junctions-width)))
`((cell-width . ,cell-width)
(cell-height . ,cell-height)
(total-width . ,total-width)
(columns . ,cfw:week-days))))
(defun cfw:view-month (component)
"[internal] Render monthly calendar view."
(let* ((dest (cfw:component-dest component))
(model (cfw:view-month-model (cfw:component-model component)))
(total-weeks (length (cfw:k 'weeks model)))
(param (cfw:render-append-parts
(cfw:view-month-calc-param dest total-weeks)))
(total-width (cfw:k 'total-width param))
(EOL (cfw:k 'eol param)) (VL (cfw:k 'vl param))
(hline (cfw:k 'hline param)) (cline (cfw:k 'cline param)))
;; update model
(setf (cfw:component-model component) model)
;; header
(insert
(cfw:rt (cfw:render-title-month (cfw:k 'init-date model))
'cfw:face-title)
EOL (cfw:render-toolbar total-width 'month
'cfw:navi-previous-month-command
'cfw:navi-next-month-command)
EOL hline)
;; day names
(cfw:render-day-of-week-names model param)
(insert VL EOL cline)
;; contents
(let ((year (cfw:k 'year model))
(month (cfw:k 'month model)))
(cfw:render-calendar-cells-weeks
model param
(lambda (date week-day hday)
(cfw:rt
(format "%s" (calendar-extract-day date))
(cond
(hday 'cfw:face-sunday)
((not (cfw:month-year-contain-p month year date)) 'cfw:face-disable)
(t (cfw:render-get-week-face week-day 'cfw:face-default-day)))))))
;; footer
(insert (cfw:render-footer total-width (cfw:model-get-contents-sources model)))))
;;; view-week
(defun cfw:view-week-model (model)
"[internal] Create a logical view model of weekly calendar.
This function collects and arranges contents. This function does
not know how to display the contents in the destinations."
(let* ((init-date (cfw:k 'init-date model))
(begin-date (cfw:week-begin-date init-date))
(end-date (cfw:week-end-date init-date)))
(cfw:view-model-make-common-data-for-weeks model begin-date end-date)))
;; (cfw:view-week-model (cfw:model-abstract-new (cfw:date 1 1 2011) nil nil))
(defun cfw:view-week-calc-param (dest)
"[internal] Calculate cell size from the reference size and
return an alist of rendering parameters."
(let*
((win-width (cfw:dest-width dest))
;; title 2, toolbar 1, header 2, hline 2, footer 1, margin 2 => 10
(win-height (max 15 (- (cfw:dest-height dest) 10)))
(junctions-width (* (char-width cfw:fchar-junction) 8))
(cell-width (cfw:round-cell-width
(max 5 (/ (- win-width junctions-width) 7))))
(cell-height (max 2 win-height))
(total-width (+ (* cell-width cfw:week-days) junctions-width)))
`((cell-width . ,cell-width)
(cell-height . ,cell-height)
(total-width . ,total-width)
(columns . ,cfw:week-days))))
(defun cfw:view-week (component)
"[internal] Render weekly calendar view."
(let* ((dest (cfw:component-dest component))
(param (cfw:render-append-parts (cfw:view-week-calc-param dest)))
(total-width (cfw:k 'total-width param))
(EOL (cfw:k 'eol param)) (VL (cfw:k 'vl param))
(hline (cfw:k 'hline param)) (cline (cfw:k 'cline param))
(model (cfw:view-week-model (cfw:component-model component)))
(begin-date (cfw:k 'begin-date model))
(end-date (cfw:k 'end-date model)))
;; update model
(setf (cfw:component-model component) model)
;; header
(insert
(cfw:rt
(cfw:render-title-period begin-date end-date)
'cfw:face-title)
EOL (cfw:render-toolbar total-width 'week
'cfw:navi-previous-week-command
'cfw:navi-next-week-command)
EOL hline)
;; day names
(cfw:render-day-of-week-names model param)
(insert VL EOL cline)
;; contents
(cfw:render-calendar-cells-weeks
model param
(lambda (date week-day hday)
(cfw:rt (format "%s" (calendar-extract-day date))
(if hday 'cfw:face-sunday
(cfw:render-get-week-face
week-day 'cfw:face-default-day)))))
;; footer
(insert (cfw:render-footer total-width (cfw:model-get-contents-sources model)))))
;;; view-two-weeks
(defun cfw:view-two-weeks-model-adjust (model)
"view-two-weeks-model-begin
MODEL"
(let ((in-date (cfw:k 'init-date model)))
(cond
((eq 'two-weeks (cfw:k 'type model))
(let ((old-begin-date (cfw:k 'begin-date model))
(old-end-date (cfw:k 'end-date model)))
(cond
((cfw:date-between old-begin-date old-end-date in-date)
in-date)
((cfw:date-between old-end-date (cfw:date-after old-end-date cfw:week-days) in-date)
old-end-date)
((cfw:date-between (cfw:date-after old-begin-date (- cfw:week-days)) old-begin-date in-date)
(cfw:date-after old-begin-date (- cfw:week-days)))
(t in-date))))
(t in-date))))
(defun cfw:view-two-weeks-model (model)
"[internal] Create a logical view model of two-weeks calendar.
This function collects and arranges contents. This function does
not know how to display the contents in the destinations."
(let* ((init-date (cfw:view-two-weeks-model-adjust model))
(begin-date (cfw:week-begin-date init-date))
(end-date (cfw:date-after begin-date (1- (* 2 cfw:week-days)))))
;; model
(append
(cfw:view-model-make-common-data-for-weeks model begin-date end-date)
`((type . two-weeks)))))
;; (cfw:view-two-weeks-model (cfw:model-abstract-new (cfw:date 1 1 2011) nil nil))
(defun cfw:view-two-weeks-calc-param (dest)
"[internal] Calculate cell size from the reference size and
return an alist of rendering parameters."
(let*
((win-width (cfw:dest-width dest))
;; title 2, toolbar 1, header 2, hline 3, footer 1, margin 2 => 11
(win-height (max 15 (- (cfw:dest-height dest) 11)))
(junctions-width (* (char-width cfw:fchar-junction) 8))
(cell-width (cfw:round-cell-width
(max 5 (/ (- win-width junctions-width) 7))))
(cell-height (max 2 (/ win-height 2)))
(total-width (+ (* cell-width cfw:week-days) junctions-width)))
`((cell-width . ,cell-width)
(cell-height . ,cell-height)
(total-width . ,total-width)
(columns . ,cfw:week-days))))
(defun cfw:view-two-weeks (component)
"[internal] Render two-weeks calendar view."
(let* ((dest (cfw:component-dest component))
(param (cfw:render-append-parts (cfw:view-two-weeks-calc-param dest)))
(total-width (cfw:k 'total-width param))
(EOL (cfw:k 'eol param)) (VL (cfw:k 'vl param))
(hline (cfw:k 'hline param)) (cline (cfw:k 'cline param))
(model (cfw:view-two-weeks-model (cfw:component-model component)))
(begin-date (cfw:k 'begin-date model))
(end-date (cfw:k 'end-date model)))
;; update model
(setf (cfw:component-model component) model)
;; header
(insert
(cfw:rt
(cfw:render-title-period begin-date end-date)
'cfw:face-title)
EOL (cfw:render-toolbar total-width 'two-weeks
'cfw:navi-previous-week-command
'cfw:navi-next-week-command)
EOL hline)
;; day names
(cfw:render-day-of-week-names model param)
(insert VL EOL cline)
;; contents
(cfw:render-calendar-cells-weeks
model param
(lambda (date week-day hday)
(cfw:rt (format "%s" (calendar-extract-day date))
(if hday 'cfw:face-sunday
(cfw:render-get-week-face
week-day 'cfw:face-default-day)))))
;; footer
(insert (cfw:render-footer total-width (cfw:model-get-contents-sources model)))))
;;; view-day
(defun cfw:view-day-calc-param (dest &optional num)
"[internal] Calculate cell size from the reference size and
return an alist of rendering parameters."
(let*
((num (or num 1))
(win-width (cfw:dest-width dest))
;; title 2, toolbar 1, header 2, hline 2, footer 1, margin 2 => 10
(win-height (max 15 (- (cfw:dest-height dest) 10)))
(junctions-width (* (char-width cfw:fchar-junction) (1+ num)))
(cell-width (cfw:round-cell-width
(max 3 (/ (- win-width junctions-width) num))))
(cell-height win-height)
(total-width (+ (* cell-width num) junctions-width)))
`((cell-width . ,cell-width)
(cell-height . ,cell-height)
(total-width . ,total-width)
(columns . ,num))))
(defun cfw:view-day (component)
"[internal] Render daily calendar view."
(let* ((dest (cfw:component-dest component))
(param (cfw:render-append-parts (cfw:view-day-calc-param dest)))
(total-width (cfw:k 'total-width param))
(EOL (cfw:k 'eol param)) (VL (cfw:k 'vl param))
(hline (cfw:k 'hline param)) (cline (cfw:k 'cline param))
(current-date (cfw:k 'init-date (cfw:component-model component)))
(model
(cfw:view-model-make-common-data-for-days
(cfw:component-model component) current-date current-date)))
;; update model
(setf (cfw:component-model component) model)
;; header
(insert
(cfw:rt
(cfw:render-title-day current-date)
'cfw:face-title)
EOL (cfw:render-toolbar total-width 'day
'cfw:navi-previous-day-command
'cfw:navi-next-day-command)
EOL hline)
;; day names
(cfw:render-day-of-week-names model param)
(insert VL EOL cline)
;; contents
(cfw:render-calendar-cells-days
model param
(lambda (date week-day hday)
(cfw:rt (format "%s" (calendar-extract-day date))
(if hday 'cfw:face-sunday
(cfw:render-get-week-face
week-day 'cfw:face-default-day)))))
;; footer
(insert (cfw:render-footer total-width (cfw:model-get-contents-sources model)))))
(defun cfw:render-calendar-cells-days (model param title-func &optional
days content-fun do-weeks)
"[internal] Insert calendar cells for the linear views."
(cfw:render-columns
(loop with cell-width = (cfw:k 'cell-width param)
with days = (or days (cfw:k 'days model))
with content-fun = (or content-fun
'cfw:render-event-days-overview-content)
with holidays = (cfw:k 'holidays model)
with annotations = (cfw:k 'annotations model)
with headers = (cfw:k 'headers model)
with raw-periods-all = (cfw:render-periods-stacks model)
with sorter = (cfw:model-get-sorter model)
for date in days ; days columns loop
for count from 0 below (length days)
for hday = (car (cfw:contents-get date holidays))
for week-day = (nth count headers)
for ant = (cfw:rt (cfw:contents-get date annotations)
'cfw:face-annotation)
for raw-periods = (cfw:contents-get date raw-periods-all)
for raw-contents = (cfw:render-sort-contents
(funcall content-fun
(cfw:model-get-contents-by-date date model))
sorter)
for prs-contents = (cfw:render-rows-prop
(append (if do-weeks
(cfw:render-periods
date week-day raw-periods cell-width)
(cfw:render-periods-days
date raw-periods cell-width))
(mapcar 'cfw:render-default-content-face
raw-contents)))
for num-label = (if prs-contents
(format "(%s)"
(+ (length raw-contents)
(length raw-periods))) "")
for tday = (concat
" " ; margin
(funcall title-func date week-day hday)
(if num-label (concat " " num-label))
(if hday (concat " " (cfw:rt (substring hday 0)
'cfw:face-holiday))))
collect
(cons date (cons (cons tday ant) prs-contents)))
param))
(defun cfw:render-periods-days (date periods-stack cell-width)
"[internal] Insert period texts."
(when periods-stack
(let ((stack (sort (copy-sequence periods-stack)
(lambda (a b) (< (car a) (car b))))))
(loop for (row (begin end content)) in stack
for beginp = (equal date begin)
for endp = (equal date end)
for width = (- cell-width 2)
for title = (cfw:render-truncate
(concat
(cfw:strtime begin) " - "
(cfw:strtime end) " : "
content) width t)
collect
(if content
(cfw:rt
(concat
(if beginp "(" " ")
(cfw:render-left width title ?-)
(if endp ")" " "))
(cfw:render-get-face-period content 'cfw:face-periods))
"")))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Navigation
;; Following functions assume that the current buffer is a calendar view.
(defun cfw:cursor-to-date (&optional pos)
"[internal] Return the date at the cursor. If the text does not
have the text-property `cfw:date', return nil."
(get-text-property (or pos (point)) 'cfw:date))
(defun cfw:cursor-to-nearest-date ()
"Return the date at the cursor. If the point of cursor does not
have the date, search the date around the cursor position. If the
current buffer is not calendar view (it may be bug), this
function may return nil."
(or (cfw:cursor-to-date)
(let* ((r (lambda () (when (not (eolp)) (forward-char))))
(l (lambda () (when (not (bolp)) (backward-char))))
(u (lambda () (when (not (bobp)) (line-move 1))))
(d (lambda () (when (not (eobp)) (line-move -1))))
(dest (cfw:component-dest (cfw:cp-get-component)))
get)
(setq get (lambda (cmds)
(save-excursion
(if (null cmds) (cfw:cursor-to-date)
(ignore-errors
(funcall (car cmds)) (funcall get (cdr cmds)))))))
(or (loop for i in `((,d) (,r) (,u) (,l)
(,d ,r) (,d ,l) (,u ,r) (,u ,l)
(,d ,d) (,r ,r) (,u ,u) (,l ,l))
for date = (funcall get i)
if date return date)
(cond
((> (/ (point-max) 2) (point))
(cfw:find-first-date dest))
(t (cfw:find-last-date dest)))))))
(defun cfw:find-first-date (dest)
"[internal] Return the first date in the current buffer."
(let ((pos (next-single-property-change
(cfw:dest-point-min dest) 'cfw:date)))
(and pos (cfw:cursor-to-date pos))))
(defun cfw:find-last-date (dest)
"[internal] Return the last date in the current buffer."
(let ((pos (previous-single-property-change
(cfw:dest-point-max dest) 'cfw:date)))
(and pos (cfw:cursor-to-date (1- pos)))))
(defun cfw:find-by-date (dest date)
"[internal] Return a point where the text property `cfw:date'
is equal to DATE in the current calender view. If DATE is not
found in the current view, return nil."
(loop with pos = (cfw:dest-point-min dest)
with end = (cfw:dest-point-max dest)
for next = (next-single-property-change pos 'cfw:date nil end)
for text-date = (and next (cfw:cursor-to-date next))
while (and next (< next end)) do
(if (and text-date (equal date text-date))
(return next))
(setq pos next)))
(defun cfw:find-all-by-date (dest date func)
"[internal] Call the function FUNC in each regions where the
text-property `cfw:date' is equal to DATE. The argument function FUNC
receives two arguments, begin position and end one. This function is
mainly used at functions for putting overlays."
(loop with pos = (cfw:dest-point-min dest)
with end = (cfw:dest-point-max dest)
for next = (next-single-property-change pos 'cfw:date nil end)
for text-date = (and next (cfw:cursor-to-date next))
while (and next (< next end)) do
(if (and text-date (equal date text-date))
(let ((cend (next-single-property-change
next 'cfw:date nil end)))
(funcall func next cend)))
(setq pos next)))
(defun cfw:find-item (dest date row-count)
"[internal] Find the schedule item which has the text properties as
`cfw:date' = DATE and `cfw:row-count' = ROW-COUNT. If no item is found,
this function returns nil."
(loop with pos = (cfw:dest-point-min dest)
with end = (cfw:dest-point-max dest)
with last-found = nil
for next = (next-single-property-change pos 'cfw:date nil end)
for text-date = (and next (cfw:cursor-to-date next))
for text-row-count = (and next (get-text-property next 'cfw:row-count))
while (and next (< next end)) do
(when (and text-date (equal date text-date)
(eql row-count text-row-count))
;; this is needed item
(return next))
(when (and text-date (equal date text-date)
text-row-count)
;; keep it to search bottom item
(setq last-found next))
(setq pos next)
finally (if (and last-found (< row-count 0))
(return last-found))))
(defun cfw:navi-goto-date (date)
"Move the cursor to DATE and put selection. If DATE is not
included on the current calendar, this function changes the
calendar view."
(let ((cp (cfw:cp-get-component)))
(when cp
(cfw:cp-set-selected-date cp date))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Major Mode / Key bindings
(defvar cfw:calendar-mode-map
(cfw:define-keymap
'(
("<right>" . cfw:navi-next-day-command)
("f" . cfw:navi-next-day-command)
("<left>" . cfw:navi-previous-day-command)
("b" . cfw:navi-previous-day-command)
("<down>" . cfw:navi-next-week-command)
("n" . cfw:navi-next-week-command)
("<up>" . cfw:navi-previous-week-command)
("p" . cfw:navi-previous-week-command)
;; Vi style
("l" . cfw:navi-next-day-command)
("h" . cfw:navi-previous-day-command)
("j" . cfw:navi-next-week-command)
("k" . cfw:navi-previous-week-command)
("^" . cfw:navi-goto-week-begin-command)
("$" . cfw:navi-goto-week-end-command)
("<" . cfw:navi-previous-month-command)
("M-v" . cfw:navi-previous-month-command)
(">" . cfw:navi-next-month-command)
("C-v" . cfw:navi-next-month-command)
("<prior>" . cfw:navi-previous-month-command)
("<next>" . cfw:navi-next-month-command)
("<home>" . cfw:navi-goto-first-date-command)
("<end>" . cfw:navi-goto-last-date-command)
("g" . cfw:navi-goto-date-command)
("t" . cfw:navi-goto-today-command)
("." . cfw:navi-goto-today-command)
("TAB" . cfw:navi-next-item-command)
("C-i" . cfw:navi-next-item-command)
("<backtab>" . cfw:navi-prev-item-command)
("S-TAB" . cfw:navi-prev-item-command)
("r" . cfw:refresh-calendar-buffer)
("SPC" . cfw:show-details-command)
("D" . cfw:change-view-day)
("W" . cfw:change-view-week)
("T" . cfw:change-view-two-weeks)
("M" . cfw:change-view-month)
([mouse-1] . cfw:navi-on-click)
("q" . bury-buffer)
("0" . digit-argument)
("1" . digit-argument)
("2" . digit-argument)
("3" . digit-argument)
("4" . digit-argument)
("5" . digit-argument)
("6" . digit-argument)
("7" . digit-argument)
("8" . digit-argument)
("9" . digit-argument)
)) "Default key map of calendar views.")
(defun cfw:calendar-mode-map (&optional custom-map)
"[internal] Return a keymap object for the calendar buffer."
(cond
(custom-map
(set-keymap-parent custom-map cfw:calendar-mode-map)
custom-map)
(t cfw:calendar-mode-map)))
(defvar cfw:calendar-mode-hook nil
"This hook is called at end of setting up major mode `cfw:calendar-mode'.")
(defun cfw:calendar-mode (&optional custom-map)
"Set up major mode `cfw:calendar-mode'.
\\{cfw:calendar-mode-map}"
(kill-all-local-variables)
(setq truncate-lines t)
(use-local-map (cfw:calendar-mode-map custom-map))
(setq major-mode 'cfw:calendar-mode
mode-name "Calendar Mode")
(setq buffer-undo-list t
buffer-read-only t)
(run-hooks 'cfw:calendar-mode-hook))
;;; Actions
(defun cfw:change-view-month ()
"change-view-month"
(interactive)
(when (cfw:cp-get-component)
(cfw:cp-set-view (cfw:cp-get-component) 'month)))
(defun cfw:change-view-week ()
"change-view-week"
(interactive)
(when (cfw:cp-get-component)
(cfw:cp-set-view (cfw:cp-get-component) 'week)))
(defun cfw:change-view-two-weeks ()
"change-view-two-weeks"
(interactive)
(when (cfw:cp-get-component)
(cfw:cp-set-view (cfw:cp-get-component) 'two-weeks)))
(defun cfw:change-view-day ()
"change-view-day"
(interactive)
(when (cfw:cp-get-component)
(cfw:cp-set-view (cfw:cp-get-component) 'day)))
(defun cfw:navi-next-item-command ()
"Move the cursor to the next item."
(interactive)
(let ((cp (cfw:cp-get-component))
(date (cfw:cursor-to-date))
(count (or (get-text-property (point) 'cfw:row-count) -1)))
(when (and cp date)
(let ((next (cfw:find-item (cfw:component-dest cp) date (1+ count))))
(if next (goto-char next)
(cfw:navi-goto-date date))))))
(defun cfw:navi-prev-item-command ()
"Move the cursor to the previous item."
(interactive)
(let ((cp (cfw:cp-get-component))
(date (cfw:cursor-to-date))
(count (or (get-text-property (point) 'cfw:row-count) -1)))
(when (and cp date)
(let ((next (cfw:find-item (cfw:component-dest cp) date (1- count))))
(if next (goto-char next)
(cfw:navi-goto-date date))))))
(defun cfw:navi-on-click ()
"click"
(interactive)
(let ((cp (cfw:cp-get-component))
(date (cfw:cursor-to-date)))
(when (and cp date)
(cfw:cp-set-selected-date cp date)
(cfw:cp-fire-click-hooks cp))))
(defun cfw:refresh-calendar-buffer (no-resize)
"Clear the calendar and render again.
With prefix arg NO-RESIZE, don't fit calendar to window size."
(interactive "P")
(let ((cp (cfw:cp-get-component)))
(when cp
(unless no-resize
(cfw:cp-resize cp (window-width) (window-height)))
(loop for s in (cfw:cp-get-contents-sources cp)
for f = (cfw:source-update s)
if f do (funcall f))
(loop for s in (cfw:cp-get-annotation-sources cp)
for f = (cfw:source-update s)
if f do (funcall f))
(cfw:cp-update cp))))
(defun cfw:navi-goto-week-begin-command ()
"Move the cursor to the first day of the current week."
(interactive)
(when (cfw:cp-get-component)
(cfw:navi-goto-date
(cfw:week-begin-date
(cfw:cp-get-selected-date (cfw:cp-get-component))))))
(defun cfw:navi-goto-week-end-command ()
"Move the cursor to the last day of the current week."
(interactive)
(when (cfw:cp-get-component)
(cfw:navi-goto-date
(cfw:week-end-date
(cfw:cp-get-selected-date (cfw:cp-get-component))))))
(defun cfw:navi-goto-date-command ()
"Move the cursor to the specified date."
(interactive)
(cfw:navi-goto-date (call-interactively cfw:read-date-command)))
(defun cfw:navi-goto-today-command ()
"Move the cursor to today."
(interactive)
(cfw:navi-goto-date (cfw:emacs-to-calendar (current-time))))
(defun cfw:navi-next-day-command (&optional num)
"Move the cursor forward NUM days. If NUM is nil, 1 is used.
Moves backward if NUM is negative."
(interactive "p")
(when (cfw:cp-get-component)
(unless num (setq num 1))
(let* ((cursor-date (cfw:cp-get-selected-date (cfw:cp-get-component)))
(new-cursor-date (cfw:date-after cursor-date num)))
(cfw:navi-goto-date new-cursor-date))))
(defun cfw:navi-previous-day-command (&optional num)
"Move the cursor back NUM days. If NUM is nil, 1 is used.
Moves forward if NUM is negative."
(interactive "p")
(cfw:navi-next-day-command (- (or num 1))))
(defun cfw:navi-goto-first-date-command ()
"Move the cursor to the first day on the current calendar view."
(interactive)
(cfw:navi-goto-date
(cfw:find-first-date
(cfw:component-dest (cfw:cp-get-component)))))
(defun cfw:navi-goto-last-date-command ()
"Move the cursor to the last day on the current calendar view."
(interactive)
(cfw:navi-goto-date
(cfw:find-last-date
(cfw:component-dest (cfw:cp-get-component)))))
(defun cfw:navi-next-week-command (&optional num)
"Move the cursor forward NUM weeks. If NUM is nil, 1 is used.
Moves backward if NUM is negative."
(interactive "p")
(cfw:navi-next-day-command (* cfw:week-days (or num 1))))
(defun cfw:navi-previous-week-command (&optional num)
"Move the cursor back NUM weeks. If NUM is nil, 1 is used.
Moves forward if NUM is negative."
(interactive "p")
(cfw:navi-next-day-command (* (- cfw:week-days) (or num 1))))
(defun cfw:navi-next-month-command (&optional num)
"Move the cursor forward NUM months. If NUM is nil, 1 is used.
Movement is backward if NUM is negative."
(interactive "p")
(when (cfw:cp-get-component)
(unless num (setq num 1))
(let* ((cursor-date (cfw:cp-get-selected-date (cfw:cp-get-component)))
(month (calendar-extract-month cursor-date))
(day (calendar-extract-day cursor-date))
(year (calendar-extract-year cursor-date))
(last (progn
(calendar-increment-month month year num)
(calendar-last-day-of-month month year)))
(day (min last day))
(new-cursor-date (cfw:date month day year)))
(cfw:navi-goto-date new-cursor-date))))
(defun cfw:navi-previous-month-command (&optional num)
"Move the cursor back NUM months. If NUM is nil, 1 is used.
Movement is forward if NUM is negative."
(interactive "p")
(cfw:navi-next-month-command (- (or num 1))))
;;; Detail popup
(defun cfw:show-details-command ()
"Show details on the selected date."
(interactive)
(let* ((cursor-date (cfw:cursor-to-nearest-date))
(cp (cfw:cp-get-component))
(model (and cp (cfw:component-model cp))))
(when model
(cfw:details-popup
(cfw:details-layout cursor-date model)))))
(defvar cfw:details-buffer-name "*cfw:details*" "[internal]")
(defvar cfw:details-window-size 20 "Default detail buffer window size.")
(defun cfw:details-popup (text)
"Popup the buffer to show details.
TEXT is a content to show."
(let ((buf (get-buffer cfw:details-buffer-name))
(before-win-num (length (window-list)))
(main-buf (current-buffer)))
(unless (and buf (eq (buffer-local-value 'major-mode buf)
'cfw:details-mode))
(setq buf (get-buffer-create cfw:details-buffer-name))
(with-current-buffer buf
(cfw:details-mode)
(set (make-local-variable 'cfw:before-win-num) before-win-num)))
(with-current-buffer buf
(let (buffer-read-only)
(set (make-local-variable 'cfw:main-buf) main-buf)
(erase-buffer)
(insert text)
(goto-char (point-min))))
(pop-to-buffer buf)))
(defun cfw:details-layout (date model)
"Layout details and return the text.
DATE is a date to show. MODEL is model object."
(let* ((EOL "\n")
(HLINE (cfw:rt (concat (make-string (window-width) ?-) EOL) 'cfw:face-grid))
(holiday (cfw:model-get-holiday-by-date date model))
(annotation (cfw:model-get-annotation-by-date date model))
(periods (cfw:model-get-periods-by-date date model))
(contents (cfw:render-sort-contents
(cfw:render-event-details-content
(cfw:model-get-contents-by-date date model))
(cfw:model-get-sorter model)))
(row-count -1))
(concat
(cfw:rt (concat "Schedule on " (cfw:strtime date) " (") 'cfw:face-header)
(cfw:rt (calendar-day-name date)
(cfw:render-get-week-face (calendar-day-of-week date) 'cfw:face-header))
(cfw:rt (concat ")" EOL) 'cfw:face-header)
(when (or holiday annotation)
(concat
(and holiday (cfw:rt holiday 'cfw:face-holiday))
(and holiday annotation " / ")
(and annotation (cfw:rt annotation 'cfw:face-annotation))
EOL))
HLINE
(loop for (begin end summary) in periods
for prefix = (propertize
(concat (cfw:strtime begin) " - " (cfw:strtime end) " : ")
'face (cfw:render-get-face-period summary 'cfw:face-periods)
'font-lock-face (cfw:render-get-face-period summary 'cfw:face-periods)
'cfw:row-count (incf row-count))
concat
(concat prefix " " summary EOL))
(loop for i in contents
for f = (cfw:render-get-face-content i 'cfw:face-default-content)
concat
(concat "- " (propertize
i 'face f 'font-lock-face f
'cfw:row-count (incf row-count))
EOL)))))
(defvar cfw:details-mode-map
(cfw:define-keymap
'(("q" . cfw:details-kill-buffer-command)
("SPC" . cfw:details-kill-buffer-command)
("n" . cfw:details-navi-next-command)
("f" . cfw:details-navi-next-command)
("<right>" . cfw:details-navi-next-command)
("p" . cfw:details-navi-prev-command)
("b" . cfw:details-navi-prev-command)
("<left>" . cfw:details-navi-prev-command)
("TAB" . cfw:details-navi-next-item-command)
("C-i" . cfw:details-navi-next-item-command)
("<backtab>" . cfw:details-navi-prev-item-command)
("S-TAB" . cfw:details-navi-prev-item-command)
))
"Default key map for the details buffer.")
(defvar cfw:details-mode-hook nil "")
(defun cfw:details-mode ()
"Set up major mode `cfw:details-mode'.
\\{cfw:details-mode-map}"
(kill-all-local-variables)
(setq truncate-lines t)
(use-local-map cfw:details-mode-map)
(setq major-mode 'cfw:details-mode
mode-name "Calendar Details Mode")
(setq buffer-undo-list t
buffer-read-only t)
(run-hooks 'cfw:details-mode-hook))
(defun cfw:details-kill-buffer-command ()
"Kill buffer and delete window."
(interactive)
(let ((win-num (length (window-list)))
(next-win (get-buffer-window cfw:main-buf)))
(when (and (not (one-window-p))
(> win-num cfw:before-win-num))
(delete-window))
(kill-buffer cfw:details-buffer-name)
(when next-win (select-window next-win))))
(defun cfw:details-navi-next-command (&optional num)
(interactive "p")
(when cfw:main-buf
(with-current-buffer cfw:main-buf
(cfw:navi-next-day-command num)
(cfw:show-details-command))))
(defun cfw:details-navi-prev-command (&optional num)
(interactive "p")
(when cfw:main-buf
(with-current-buffer cfw:main-buf
(cfw:navi-previous-day-command num)
(cfw:show-details-command))))
(defun cfw:details-navi-next-item-command ()
(interactive)
(let* ((count (or (get-text-property (point) 'cfw:row-count) -1))
(next (cfw:details-find-item (1+ count))))
(goto-char (or next (point-min)))))
(defun cfw:details-navi-prev-item-command ()
(interactive)
(let* ((count (or (get-text-property (point) 'cfw:row-count) -1))
(next (cfw:details-find-item (1- count))))
(goto-char (or next (point-min)))))
(defun cfw:details-find-item (row-count)
"[internal] Find the schedule item which has the text
properties as `cfw:row-count' = ROW-COUNT. If no item is found,
this function returns nil."
(loop with pos = (point-min)
for next = (next-single-property-change pos 'cfw:row-count)
for text-row-count = (and next (get-text-property next 'cfw:row-count))
while next do
(when (eql row-count text-row-count)
(return next))
(setq pos next)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; High level API
;; buffer
(defun* cfw:open-calendar-buffer
(&key date buffer custom-map contents-sources annotation-sources view sorter)
"Open a calendar buffer simply.
DATE is initial focus date. If it is nil, today is selected
initially. This function uses the function
`cfw:create-calendar-component-buffer' internally."
(interactive)
(save-excursion
(let ((cp (cfw:create-calendar-component-buffer
:date date :buffer buffer :custom-map custom-map
:contents-sources contents-sources
:annotation-sources annotation-sources :view view :sorter sorter)))
(switch-to-buffer (cfw:cp-get-buffer cp)))))
(defun* cfw:create-calendar-component-buffer
(&key date buffer custom-map contents-sources annotation-sources view sorter)
"Return a calendar buffer with some customize parameters.
This function binds the component object at the
buffer local variable `cfw:component'.
The size of calendar is calculated from the window that shows
BUFFER or the selected window.
DATE is initial focus date. If it is nil, today is selected initially.
BUFFER is the buffer to be rendered. If BUFFER is nil, this function creates a new buffer named `cfw:calendar-buffer-name'.
CUSTOM-MAP is the additional keymap that is added to default keymap `cfw:calendar-mode-map'."
(let* ((dest (cfw:dest-init-buffer buffer nil nil custom-map))
(model (cfw:model-abstract-new date contents-sources annotation-sources sorter))
(cp (cfw:cp-new dest model view date)))
(with-current-buffer (cfw:dest-buffer dest)
(set (make-local-variable 'cfw:component) cp))
cp))
;; region
(defun* cfw:create-calendar-component-region
(&key date width height keymap contents-sources annotation-sources view sorter)
"Insert markers of the rendering destination at current point and display the calendar view.
This function returns a component object and stores it at the text property `cfw:component'.
DATE is initial focus date. If it is nil, today is selected initially.
WIDTH and HEIGHT are reference size of the calendar view. If those are nil, the size is calculated from the selected window.
KEYMAP is the keymap that is put to the text property `keymap'. If KEYMAP is nil, `cfw:calendar-mode-map' is used."
(let (mark-begin mark-end)
(setq mark-begin (point-marker))
(insert " ")
(setq mark-end (point-marker))
(save-excursion
(let* ((dest (cfw:dest-init-region (current-buffer) mark-begin mark-end width height))
(model (cfw:model-abstract-new date contents-sources annotation-sources sorter))
(cp (cfw:cp-new dest model view date))
(after-update-func
(lexical-let ((keymap keymap) (cp cp))
(lambda ()
(cfw:dest-with-region (cfw:component-dest cp)
(let (buffer-read-only)
(put-text-property (point-min) (1- (point-max))
'cfw:component cp)
(cfw:fill-keymap-property
(point-min) (1- (point-max))
(or keymap cfw:calendar-mode-map))))))))
(setf (cfw:dest-after-update-func dest) after-update-func)
(funcall after-update-func)
cp))))
(defun cfw:fill-keymap-property (begin end keymap)
"[internal] Put the given text property to the region between BEGIN and END.
If the text already has some keymap property, the text is skipped."
(save-excursion
(goto-char begin)
(loop with pos = begin with nxt = nil
until (or (null pos) (<= end pos))
when (get-text-property pos 'keymap) do
(setq pos (next-single-property-change pos 'keymap))
else do
(setq nxt (next-single-property-change pos 'keymap))
(when (null nxt) (setq nxt end))
(put-text-property pos (min nxt end) 'keymap keymap))))
;; inline
(defun* cfw:get-calendar-text
(width height &key date keymap contents-sources annotation-sources view sorter)
"Return a text that is drew the calendar view.
In this case, the rendering destination object is disposable.
WIDTH and HEIGHT are reference size of the calendar view. If the
given size is larger than the minimum size (about 45x20), the
calendar is displayed within the given size. If the given size is
smaller, the minimum size is used.
DATE is initial focus date. If it is nil, today is selected initially."
(let* ((dest (cfw:dest-init-inline width height))
(model (cfw:model-abstract-new date contents-sources annotation-sources sorter))
(cp (cfw:cp-new dest model view date))
text)
(setq text
(with-current-buffer (cfw:cp-get-buffer cp)
(buffer-substring (point-min) (point-max))))
(kill-buffer (cfw:cp-get-buffer cp))
text))
;;; debug
(defun cfw:open-debug-calendar ()
(let* ((source1
(make-cfw:source
:name "test1"
:color "Lightpink3"
:period-bgcolor "Lightpink1"
:period-fgcolor "White"
:opt-face '(:weight bold)
:opt-period-face '(:slant italic)
:data
(lambda (b e)
'(((1 1 2011) "A happy new year!")
((1 10 2011) "TEST2" "TEST3")
(periods
((1 8 2011) (1 9 2011) "Range1")
((1 11 2011) (1 12 2011) "[Sample]Range2 1/8-1/9")
((1 12 2011) (1 14 2011) "long long title3"))
))
:update
(lambda () (message "SOURCE: test1 update!"))))
(source2
(make-cfw:source
:name "test2"
:data
(lambda (b e)
'(((1 2 2011) "The quick brown fox jumped over the lazy dog. The internationalization and Localization are long words.")
((1 10 2011) "PTEST2 title subject" "PTEST3 multi-line sample")
(periods
((1 14 2011) (1 15 2011) "Stack")
((1 29 2011) (1 31 2011) "PERIOD W"))
))))
(asource1
(make-cfw:source
:name "Moon"
:data
(lambda (b e)
'(((1 4 2011) . "New Moon")
((1 12 2011) . "Young Moon")
((1 20 2011) . "Full Moon")
((1 26 2011) . "Waning Moon")
))))
(asource2
(make-cfw:source
:name "Moon"
:data
(lambda (b e)
'(((1 5 2011) . "AN1")
((1 13 2011) . "AN2")
((1 20 2011) . "AN3")
((1 28 2011) . "AN4")
))))
(event-source
(make-cfw:source
:name "Events"
:color "DarkOrange"
:data
(lambda (b e)
`(,(make-cfw:event :title "Shopping"
:start-date '(1 17 2011))
,(make-cfw:event :title "Other Thing"
:start-date '(1 17 2011))
,(make-cfw:event :title "Spring cleaning"
:start-date '(1 15 2011)
:location "Home"
:description "Oh what a joy!!")
,(make-cfw:event :title "Meeting"
:start-date '(1 16 2011)
:start-time '(15 00)
:location "Office"
:description "Important talk")
,(make-cfw:event :title "Lunch"
:start-date '(1 15 2011)
:start-time '(13 15)
:end-time '(14 30)
:location "Fancy place"
:description "Omnomnom")
,(make-cfw:event :title "Long one"
:start-date '(1 17 2011)
:description "This is a multiline description.
Some text here.
But also some here.
And here.")
(periods
,(make-cfw:event :title "Vacation bla bli blubb very long"
:start-date '(1 13 2011)
:end-date '(1 20 2011)
:location "Beach"
:description "Enjoy the sun!"))
))))
(cp (cfw:create-calendar-component-buffer
:date (cfw:date 1 10 2011)
:view 'two-weeks
:contents-sources (list source1 source2 event-source)
:annotation-sources (list asource1 asource2))))
(cfw:cp-add-update-hook cp (lambda () (message "CFW: UPDATE HOOK")))
(cfw:cp-add-click-hook cp (lambda () (message "CFW: CLICK HOOK %S" (cfw:cursor-to-nearest-date))))
(cfw:cp-add-selection-change-hook cp (lambda () (message "CFW: SELECT %S" (cfw:cursor-to-nearest-date))))
(switch-to-buffer (cfw:cp-get-buffer cp))
))
(provide 'calfw)
;;; calfw.el ends here
;; (progn (eval-current-buffer) (cfw:open-debug-calendar))
;; (progn (eval-current-buffer) (cfw:open-calendar-buffer))
|