1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996
|
{
TDateTimePicker control for Lazarus
- - - - - - - - - - - - - - - - - - -
Author: Zoran Vučenović, January and February 2010
Зоран Вученовић, јануар и фебруар 2010.
This unit is part of DateTimeCtrls package for Lazarus.
Delphi's Visual Component Library (VCL) has a control named TDateTimePicker,
which I find very useful for editing dates. Lazarus Component Library (LCL),
however, does not have this control, because VCL wraps native Windows control
and it seems that such control does not exist on other platforms. Given that
LCL is designed to be platform independent, it could not use native Win control.
Instead, for editing dates LCL has a control named TDateEdit, but I prefer
the VCL's TDateTimePicker.
Therefore, I tried to create a custom control which would resemble VCL's
TDateTimePicker as much as possible, but not to rely on native Windows control.
This TDateTimePicker control does not use native Win control. It has been
tested on Windows with win32/64 and qt widgetsets, as well as on Linux with
qt and gtk2 widgetsets.
-----------------------------------------------------------
LICENCE
- - - -
Modified LGPL -- see the file COPYING.modifiedLGPL.
-----------------------------------------------------------
NO WARRANTY
- - - - - -
There is no warranty whatsoever.
-----------------------------------------------------------
BEST REGARDS TO LAZARUS COMMUNITY!
- - - - - - - - - - - - - - - - - -
I do hope this control will be useful.
}
unit DateTimePicker;
{$mode objfpc}{$H+}
interface
uses
{$ifdef unix}
clocale, // needed to initialize default locale settings on Linux.
{$endif}
Classes, SysUtils, Controls, LCLType, Graphics, Math, StdCtrls, Buttons,
ExtCtrls, Forms, ComCtrls, Types, LMessages, Calendar, LazUTF8, LCLIntf,
LCLProc, Themes, CalControlWrapper;
const
{ We will deal with the NullDate value the special way. It will be especially
useful for dealing with null values from database. }
NullDate = TDateTime(Math.MaxDouble);
{ The biggest date a user can enter. }
TheBiggestDate = TDateTime(2958465.0); // 31. dec. 9999.
{ The smallest date a user can enter.
Note:
TCalendar does not accept smaller dates then 14. sep. 1752 on Windows OS
(see the implementation of TCustomCalendar.SetDateTime).
In Delphi help it is documented that Windows controls act weird with dates
older than 24. sep. 1752. Actually, TCalendar control has problems to show
dates before 1. okt. 1752. (try putting one calendar on the form, run the
application and see what september 1752. looks like).
Let's behave uniformely as much as
possible -- we won't allow dates before 1. okt. 1752. on any OS (who cares
about those).
So, this will be the down limit: }
TheSmallestDate = TDateTime(-53780.0); // 1. okt. 1752.
var
DefaultCalendarWrapperClass: TCalendarControlWrapperClass = nil;
type
TYMD = record
Year, Month, Day: Word;
end;
THMSMs = record
Hour, Minute, Second, MiliSec: Word;
end;
{ Used by DateDisplayOrder property to determine the order to display date
parts -- d-m-y, m-d-y or y-m-d.
When ddoTryDefault is set, the actual order is determined from
ShortDateFormat global variable -- see coments above
AdjustEffectiveDateDisplayOrder procedure }
TDateDisplayOrder = (ddoDMY, ddoMDY, ddoYMD, ddoTryDefault);
TTimeDisplay = (tdHM, // hour and minute
tdHMS, // hour, minute and second
tdHMSMs // hour, minute, second and milisecond
);
TTimeFormat = (tf12, // 12 hours format, with am/pm string
tf24 // 24 hours format
);
{ TDateTimeKind determines if we should display date, time or both: }
TDateTimeKind = (dtkDate, dtkTime, dtkDateTime);
TTextPart = 1..8;
TDateTimePart = (dtpDay, dtpMonth, dtpYear, dtpHour, dtpMinute,
dtpSecond, dtpMiliSec, dtpAMPM);
TDateTimeParts = set of dtpDay..dtpMiliSec; // without AMPM,
// because this set type is used for HideDateTimeParts property,
// where hiding of AMPM part is tied to hiding of hour (and, of
// course, it makes a difference only when TimeFormat is set to tf12)
TArrowShape = (asClassicSmaller, asClassicLarger, asModernSmaller,
asModernLarger, asYetAnotherShape, asTheme);
TDTDateMode = (dmComboBox, dmUpDown, dmNone);
{ calendar alignment - left or right,
dtaDefault means it is determined by BiDiMode }
TDTCalAlignment = (dtaLeft, dtaRight, dtaDefault);
TDateTimePickerOption = (
dtpoDoChangeOnSetDateTime, dtpoEnabledIfUnchecked, dtpoAutoCheck, dtpoFlatButton);
TDateTimePickerOptions = set of TDateTimePickerOption;
{ TCustomDateTimePicker }
TCustomDateTimePicker = class(TCustomControl)
private const
cDefOptions = [];
cCheckBoxBorder = 3;
private
FAutoAdvance: Boolean;
FAutoButtonSize: Boolean;
FCalAlignment: TDTCalAlignment;
FCalendarWrapperClass: TCalendarControlWrapperClass;
FCascade: Boolean;
FCenturyFrom, FEffectiveCenturyFrom: Word;
FChecked: Boolean;
FDateDisplayOrder: TDateDisplayOrder;
FHideDateTimeParts: TDateTimeParts;
FEffectiveHideDateTimeParts: set of TDateTimePart;
FKind: TDateTimeKind;
FLeadingZeros: Boolean;
FMonthNames: String;
FMonthNamesArray: TMonthNameArray;
FNullInputAllowed: Boolean;
FDateTime: TDateTime;
FDateSeparator: String;
FReadOnly: Boolean;
FMaxDate, FMinDate: TDate;
FShowMonthNames: Boolean;
FTextForNullDate: TCaption;
FTimeSeparator: String;
FTimeDisplay: TTimeDisplay;
FTimeFormat: TTimeFormat;
FTrailingSeparator: Boolean;
FUseDefaultSeparators: Boolean;
FUserChangedText: Boolean;
FYearPos, FDayPos, FMonthPos: 1..3;
FTextPart: array[1..3] of String;
FTimeText: array[dtpHour..dtpAMPM] of String;
FUserChanging: Integer;
FDigitWidth: Integer;
FTextHeight: Integer;
FSeparatorWidth: Integer;
FSepNoSpaceWidth: Integer;
FShowCheckBox: Boolean;
FMouseInCheckBox: Boolean;
FTimeSeparatorWidth: Integer;
FMonthWidth: Integer;
FNullMonthText: String;
FSelectedTextPart: TTextPart;
FRecalculatingTextSizesNeeded: Boolean;
FJumpMinMax: Boolean;
FAMPMWidth: Integer;
FDateWidth: Integer;
FTimeWidth: Integer;
FTextWidth: Integer;
FArrowShape: TArrowShape;
FDateMode: TDTDateMode;
FTextEnabled: Boolean;
FUpDown: TCustomUpDown;
FOnChange: TNotifyEvent;
FOnCheckBoxChange: TNotifyEvent;
FOnChangeHandlers: TMethodList;
FOnCheckBoxChangeHandlers: TMethodList;
FOnDropDown: TNotifyEvent;
FOnCloseUp: TNotifyEvent;
FEffectiveDateDisplayOrder: TDateDisplayOrder;
FArrowButton: TCustomSpeedButton;
FCalendarForm: TCustomForm;
FDoNotArrangeControls: Boolean;
FConfirmedDateTime: TDateTime;
FNoEditingDone: Integer;
FAllowDroppingCalendar: Boolean;
FCorrectedDTP: TDateTimePart;
FCorrectedValue: Word;
FSkipChangeInUpdateDate: Integer;
FOptions: TDateTimePickerOptions;
function AreSeparatorsStored: Boolean;
function GetChecked: Boolean;
function GetDate: TDate;
function GetDateTime: TDateTime;
function GetDroppedDown: Boolean;
function GetTime: TTime;
procedure SetArrowShape(const AValue: TArrowShape);
procedure SetAutoButtonSize(AValue: Boolean);
procedure SetCalAlignment(AValue: TDTCalAlignment);
procedure SetCalendarWrapperClass(AValue: TCalendarControlWrapperClass);
procedure SetCenturyFrom(const AValue: Word);
procedure SetChecked(const AValue: Boolean);
procedure CheckTextEnabled;
procedure SetDateDisplayOrder(const AValue: TDateDisplayOrder);
procedure SetDateMode(const AValue: TDTDateMode);
procedure SetHideDateTimeParts(AValue: TDateTimeParts);
procedure SetKind(const AValue: TDateTimeKind);
procedure SetLeadingZeros(const AValue: Boolean);
procedure SetMonthNames(AValue: String);
procedure SetNullInputAllowed(const AValue: Boolean);
procedure SetDate(const AValue: TDate);
procedure SetDateTime(const AValue: TDateTime);
procedure SetDateSeparator(const AValue: String);
procedure SetMaxDate(const AValue: TDate);
procedure SetMinDate(const AValue: TDate);
procedure SetReadOnly(const AValue: Boolean);
procedure SetShowCheckBox(const AValue: Boolean);
procedure SetShowMonthNames(AValue: Boolean);
procedure SetTextForNullDate(const AValue: TCaption);
procedure SetTime(const AValue: TTime);
procedure SetTimeSeparator(const AValue: String);
procedure SetTimeDisplay(const AValue: TTimeDisplay);
procedure SetTimeFormat(const AValue: TTimeFormat);
procedure SetTrailingSeparator(const AValue: Boolean);
procedure SetUseDefaultSeparators(const AValue: Boolean);
function GetHour: Word;
function GetMiliSec: Word;
function GetMinute: Word;
function GetSecond: Word;
procedure RecalculateTextSizesIfNeeded;
function GetDay: Word;
function GetMonth: Word;
function GetYear: Word;
function GetHMSMs(const NowIfNull: Boolean = False): THMSMs;
function GetYYYYMMDD(const TodayIfNull: Boolean = False;
const WithCorrection: Boolean = False): TYMD;
procedure SetHour(const AValue: Word);
procedure SetMiliSec(const AValue: Word);
procedure SetMinute(const AValue: Word);
procedure SetSecond(const AValue: Word);
procedure SetSeparators(const DateSep, TimeSep: String);
procedure SetDay(const AValue: Word);
procedure SetMonth(const AValue: Word);
procedure SetYear(const AValue: Word);
procedure SetYYYYMMDD(const AValue: TYMD);
procedure SetHMSMs(const AValue: THMSMs);
procedure UpdateIfUserChangedText;
function GetSelectedText: String;
procedure AdjustSelection;
procedure AdjustEffectiveCenturyFrom;
procedure AdjustEffectiveDateDisplayOrder;
procedure AdjustEffectiveHideDateTimeParts;
procedure SelectDateTimePart(const DateTimePart: TDateTimePart);
procedure MoveSelectionLR(const ToLeft: Boolean);
procedure DestroyCalendarForm;
procedure DropDownCalendarForm;
procedure UpdateShowArrowButton;
procedure DestroyUpDown;
procedure DestroyArrowBtn;
procedure ArrowMouseDown(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
procedure UpDownClick(Sender: TObject; Button: TUDBtnType);
procedure SetFocusIfPossible;
procedure AutoResizeButton;
procedure CheckAndApplyKey(const Key: Char);
procedure CheckAndApplyKeyCode(var Key: Word);
procedure SetOptions(const aOptions: TDateTimePickerOptions);
protected
procedure WMKillFocus(var Message: TLMKillFocus); message LM_KILLFOCUS;
procedure WMSize(var Message: TLMSize); message LM_SIZE;
class function GetControlClassDefaultSize: TSize; override;
procedure ConfirmChanges; virtual;
procedure UndoChanges; virtual;
function GetCheckBoxRect(IgnoreRightToLeft: Boolean = False): TRect;
function GetDateTimePartFromTextPart(TextPart: TTextPart): TDateTimePart;
function GetSelectedDateTimePart: TDateTimePart;
procedure FontChanged(Sender: TObject); override;
function GetTextOrigin(IgnoreRightToLeft: Boolean = False): TPoint;
procedure KeyDown(var Key: Word; Shift: TShiftState); override;
procedure KeyPress(var Key: char); override;
procedure SelectTextPartUnderMouse(XMouse: Integer);
procedure MouseLeave; override;
procedure MouseMove(Shift: TShiftState; X, Y: Integer); override;
procedure MouseDown(Button: TMouseButton; Shift: TShiftState; X, Y: Integer); override;
function DoMouseWheel(Shift: TShiftState; WheelDelta: Integer; MousePos: TPoint): Boolean; override;
procedure UpdateDate(const CallChangeFromSetDateTime: Boolean = False); virtual;
procedure DoEnter; override;
procedure DoExit; override;
procedure Click; override;
procedure DblClick; override;
procedure MouseUp(Button: TMouseButton; Shift: TShiftState; X, Y: Integer); override;
procedure KeyUp(var Key: Word; Shift: TShiftState); override;
procedure UTF8KeyPress(var UTF8Key: TUTF8Char); override;
procedure CalculatePreferredSize(var PreferredWidth,
PreferredHeight: integer; WithThemeSpace: Boolean); override;
procedure SetBiDiMode(AValue: TBiDiMode); override;
procedure IncreaseCurrentTextPart;
procedure DecreaseCurrentTextPart;
procedure IncreaseMonth;
procedure IncreaseYear;
procedure IncreaseDay;
procedure DecreaseMonth;
procedure DecreaseYear;
procedure DecreaseDay;
procedure IncreaseHour;
procedure IncreaseMinute;
procedure IncreaseSecond;
procedure IncreaseMiliSec;
procedure DecreaseHour;
procedure DecreaseMinute;
procedure DecreaseSecond;
procedure DecreaseMiliSec;
procedure ChangeAMPM;
procedure SelectDay;
procedure SelectMonth;
procedure SelectYear;
procedure SelectHour;
procedure SelectMinute;
procedure SelectSecond;
procedure SelectMiliSec;
procedure SelectAMPM;
procedure SetEnabled(Value: Boolean); override;
procedure SetAutoSize(Value: Boolean); override;
procedure CreateWnd; override;
procedure SetDateTimeJumpMinMax(const AValue: TDateTime);
procedure ArrangeCtrls; virtual;
procedure Change; virtual;
procedure CheckBoxChange; virtual;
procedure DoDropDown; virtual;
procedure DoCloseUp; virtual;
procedure DoAutoCheck; virtual;
procedure AddHandlerOnChange(const AOnChange: TNotifyEvent;
AsFirst: Boolean = False); virtual;
procedure AddHandlerOnCheckBoxChange(const AOnCheckBoxChange: TNotifyEvent;
AsFirst: Boolean = False); virtual;
procedure RemoveHandlerOnChange(AOnChange: TNotifyEvent); virtual;
procedure RemoveHandlerOnCheckBoxChange(AOnCheckBoxChange: TNotifyEvent); virtual;
property BorderStyle default bsSingle;
property AutoSize default True;
property TabStop default True;
property ParentColor default False;
property CenturyFrom: Word
read FCenturyFrom write SetCenturyFrom;
property DateDisplayOrder: TDateDisplayOrder
read FDateDisplayOrder write SetDateDisplayOrder default ddoTryDefault;
property MaxDate: TDate
read FMaxDate write SetMaxDate;
property MinDate: TDate
read FMinDate write SetMinDate;
property DateTime: TDateTime read GetDateTime write SetDateTime;
property TrailingSeparator: Boolean
read FTrailingSeparator write SetTrailingSeparator;
property ReadOnly: Boolean read FReadOnly write SetReadOnly default False;
property LeadingZeros: Boolean read FLeadingZeros write SetLeadingZeros;
property TextForNullDate: TCaption
read FTextForNullDate write SetTextForNullDate;
property NullInputAllowed: Boolean
read FNullInputAllowed write SetNullInputAllowed default True;
property OnChange: TNotifyEvent read FOnChange write FOnChange;
property OnCheckBoxChange: TNotifyEvent
read FOnCheckBoxChange write FOnCheckBoxChange;
property OnDropDown: TNotifyEvent read FOnDropDown write FOnDropDown;
property OnCloseUp: TNotifyEvent read FOnCloseUp write FOnCloseUp;
property ShowCheckBox: Boolean
read FShowCheckBox write SetShowCheckBox default False;
property Checked: Boolean read GetChecked write SetChecked default True;
property ArrowShape: TArrowShape
read FArrowShape write SetArrowShape default asTheme;
property Kind: TDateTimeKind
read FKind write SetKind;
property DateSeparator: String
read FDateSeparator write SetDateSeparator stored AreSeparatorsStored;
property TimeSeparator: String
read FTimeSeparator write SetTimeSeparator stored AreSeparatorsStored;
property UseDefaultSeparators: Boolean
read FUseDefaultSeparators write SetUseDefaultSeparators;
property TimeFormat: TTimeFormat read FTimeFormat write SetTimeFormat;
property TimeDisplay: TTimeDisplay read FTimeDisplay write SetTimeDisplay;
property Time: TTime read GetTime write SetTime;
property Date: TDate read GetDate write SetDate;
property DateMode: TDTDateMode read FDateMode write SetDateMode;
property Cascade: Boolean read FCascade write FCascade default False;
property AutoButtonSize: Boolean
read FAutoButtonSize write SetAutoButtonSize default False;
property AutoAdvance: Boolean
read FAutoAdvance write FAutoAdvance default True;
property HideDateTimeParts: TDateTimeParts
read FHideDateTimeParts write SetHideDateTimeParts;
property CalendarWrapperClass: TCalendarControlWrapperClass
read FCalendarWrapperClass write SetCalendarWrapperClass;
property MonthNames: String read FMonthNames write SetMonthNames;
property ShowMonthNames: Boolean
read FShowMonthNames write SetShowMonthNames default False;
property DroppedDown: Boolean read GetDroppedDown;
property CalAlignment: TDTCalAlignment read FCalAlignment write SetCalAlignment default dtaDefault;
property Options: TDateTimePickerOptions read FOptions write SetOptions default cDefOptions;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
function DateIsNull: Boolean;
procedure SelectDate;
procedure SelectTime;
procedure SendExternalKey(const aKey: Char);
procedure SendExternalKeyCode(const Key: Word);
procedure RemoveAllHandlersOfObject(AnObject: TObject); override;
procedure Paint; override;
procedure EditingDone; override;
published
//
end;
{TDateTimePicker}
TDateTimePicker = class(TCustomDateTimePicker)
public
procedure AddHandlerOnChange(const AOnChange: TNotifyEvent; AsFirst: Boolean = False
); override;
procedure AddHandlerOnCheckBoxChange(const AOnCheckBoxChange: TNotifyEvent;
AsFirst: Boolean = False); override;
procedure RemoveHandlerOnChange(AOnChange: TNotifyEvent); override;
procedure RemoveHandlerOnCheckBoxChange(AOnCheckBoxChange: TNotifyEvent); override;
public
property DateTime;
property CalendarWrapperClass;
property DroppedDown;
published
property ArrowShape;
property ShowCheckBox;
property Checked;
property CenturyFrom;
property DateDisplayOrder;
property MaxDate;
property MinDate;
property ReadOnly;
property AutoSize;
property Font;
property ParentFont;
property TabOrder;
property TabStop;
property BorderStyle;
property BorderSpacing;
property Enabled;
property Color;
property ParentColor;
property DateSeparator;
property TrailingSeparator;
property TextForNullDate;
property LeadingZeros;
property ShowHint;
property ParentShowHint;
property Align;
property Anchors;
property Constraints;
property Cursor;
property PopupMenu;
property Visible;
property NullInputAllowed;
property Kind;
property TimeSeparator;
property TimeFormat;
property TimeDisplay;
property DateMode;
property Date;
property Time;
property UseDefaultSeparators;
property Cascade;
property AutoButtonSize;
property AutoAdvance;
property HideDateTimeParts;
property BiDiMode;
property ParentBiDiMode;
property MonthNames;
property ShowMonthNames;
property CalAlignment;
property Options;
// events:
property OnChange;
property OnCheckBoxChange;
property OnDropDown;
property OnCloseUp;
property OnChangeBounds;
property OnClick;
property OnContextPopup;
property OnDblClick;
property OnEditingDone;
property OnEnter;
property OnExit;
property OnKeyDown;
property OnKeyPress;
property OnKeyUp;
property OnMouseDown;
property OnMouseEnter;
property OnMouseLeave;
property OnMouseMove;
property OnMouseUp;
property OnMouseWheel;
property OnMouseWheelDown;
property OnMouseWheelUp;
property OnResize;
property OnUTF8KeyPress;
end;
function EqualDateTime(const A, B: TDateTime): Boolean;
function IsNullDate(DT: TDateTime): Boolean;
implementation
uses
DateUtils, LCLCalWrapper;
function NumberOfDaysInMonth(const Month, Year: Word): Word;
begin
Result := 0;
if Month in [1..12] then
Result := MonthDays[IsLeapYear(Year), Month];
end;
{ EqualDateTime
--------------
Returns True when two dates are equal or both are null }
function EqualDateTime(const A, B: TDateTime): Boolean;
begin
if IsNullDate(A) then
Result := IsNullDate(B)
else
Result := (not IsNullDate(B)) and (A = B);
end;
function IsNullDate(DT: TDateTime): Boolean;
begin
Result := IsNan(DT) or IsInfinite(DT) or
(DT > SysUtils.MaxDateTime) or (DT < SysUtils.MinDateTime);
end;
type
{ TDTUpDown }
{ The two buttons contained by UpDown control are never disabled in original
UpDown class. This class is defined here to override this behaviour. }
TDTUpDown = class(TCustomUpDown)
private
DTPicker: TCustomDateTimePicker;
protected
procedure SetEnabled(Value: Boolean); override;
procedure CalculatePreferredSize(var PreferredWidth,
PreferredHeight: integer; WithThemeSpace: Boolean); override;
procedure WndProc(var Message: TLMessage); override;
end;
{ TDTSpeedButton }
TDTSpeedButton = class(TCustomSpeedButton)
private
DTPicker: TCustomDateTimePicker;
protected
procedure CalculatePreferredSize(var PreferredWidth,
PreferredHeight: integer; WithThemeSpace: Boolean); override;
procedure MouseDown(Button: TMouseButton; Shift: TShiftState; X, Y: Integer);
override;
public
procedure Paint; override;
end;
{ TDTCalendarForm }
TDTCalendarForm = class(TForm)
private
DTPicker: TCustomDateTimePicker;
Cal: TCalendarControlWrapper;
Shape: TShape;
RememberedCalendarFormOrigin: TPoint;
FClosing: Boolean;
DTPickersParentForm: TCustomForm;
procedure SetClosingCalendarForm;
procedure AdjustCalendarFormSize;
procedure AdjustCalendarFormScreenPosition;
procedure CloseCalendarForm(const AndSetTheDate: Boolean = False);
procedure CalendarKeyDown(Sender: TObject; var Key: Word;
Shift: TShiftState);
procedure CalendarResize(Sender: TObject);
procedure CalendarClick(Sender: TObject);
procedure VisibleOfParentChanged(Sender: TObject);
protected
procedure Deactivate; override;
procedure DoShow; override;
procedure DoClose(var CloseAction: TCloseAction); override;
procedure Notification(AComponent: TComponent; Operation: TOperation); override;
procedure WMActivate(var Message: TLMActivate); message LM_ACTIVATE;
public
constructor CreateNewDTCalendarForm(AOwner: TComponent;
ADTPicker: TCustomDateTimePicker);
destructor Destroy; override;
published
end;
{ TDateTimePicker }
procedure TDateTimePicker.AddHandlerOnChange(const AOnChange: TNotifyEvent;
AsFirst: Boolean);
begin
inherited AddHandlerOnChange(AOnChange, AsFirst);
end;
procedure TDateTimePicker.AddHandlerOnCheckBoxChange(
const AOnCheckBoxChange: TNotifyEvent; AsFirst: Boolean);
begin
inherited AddHandlerOnCheckBoxChange(AOnCheckBoxChange, AsFirst);
end;
procedure TDateTimePicker.RemoveHandlerOnChange(AOnChange: TNotifyEvent);
begin
inherited RemoveHandlerOnChange(AOnChange);
end;
procedure TDateTimePicker.RemoveHandlerOnCheckBoxChange(
AOnCheckBoxChange: TNotifyEvent);
begin
inherited RemoveHandlerOnCheckBoxChange(AOnCheckBoxChange);
end;
procedure TDTCalendarForm.SetClosingCalendarForm;
begin
if not FClosing then begin
FClosing := True;
if Assigned(DTPicker) and (DTPicker.FCalendarForm = Self) then
DTPicker.FCalendarForm := nil;
end;
end;
procedure TDTCalendarForm.AdjustCalendarFormSize;
begin
if not FClosing then begin
ClientWidth := Cal.GetCalendarControl.Width + 2;
ClientHeight := Cal.GetCalendarControl.Height + 2;
Shape.SetBounds(0, 0, ClientWidth, ClientHeight);
AdjustCalendarFormScreenPosition;
end;
end;
procedure TDTCalendarForm.AdjustCalendarFormScreenPosition;
var
M: TMonitor;
R: TRect;
P: TPoint;
H, W: Integer;
begin
H := Height;
W := Width;
if (DTPicker.CalAlignment = dtaRight) or
((DTPicker.CalAlignment = dtaDefault) and IsRightToLeft) then
P := DTPicker.ControlToScreen(Point(DTPicker.Width - W, DTPicker.Height))
else
P := DTPicker.ControlToScreen(Point(0, DTPicker.Height));
M := Screen.MonitorFromWindow(DTPicker.Handle);
R := M.WorkareaRect;
// WorkareaRect sometimes is not implemented (gtk2?). Depends on widgetset
// and window manager or something like that. Then it returns (0,0,0,0) and
// the best we can do is use BoundsRect instead:
if (R.Right <= R.Left) or (R.Bottom <= R.Top) then
R := M.BoundsRect;
if P.y > R.Bottom - H then
P.y := P.y - H - DTPicker.Height;
if P.y < R.Top then
P.y := R.Top;
if P.x > R.Right - W then
P.x := R.Right - W;
if P.x < R.Left then
P.x := R.Left;
if (P.x <> RememberedCalendarFormOrigin.x)
or (P.y <> RememberedCalendarFormOrigin.y) then begin
SetBounds(P.x, P.y, W, H);
RememberedCalendarFormOrigin := P;
end;
end;
procedure TDTCalendarForm.CloseCalendarForm(const AndSetTheDate: Boolean);
begin
if not FClosing then
try
SetClosingCalendarForm;
Visible := False;
if Assigned(DTPicker) and DTPicker.IsVisible then begin
if AndSetTheDate then begin
Inc(DTPicker.FUserChanging);
try
if DTPicker.DateIsNull then begin
// we'll set the time to 0.0 (midnight):
DTPicker.SetDateTime(Int(Cal.GetDate));
end else if not EqualDateTime(Int(DTPicker.DateTime),
Int(Cal.GetDate)) then begin
// we'll change the date, but keep the time:
DTPicker.SetDateTime(ComposeDateTime(Cal.GetDate, DTPicker.DateTime));
end;
DTPicker.DoAutoCheck;
finally
Dec(DTPicker.FUserChanging);
end;
end;
if Screen.ActiveCustomForm = Self then
DTPicker.SetFocusIfPossible;
DTPicker.DoCloseUp;
end;
finally
Release;
end;
end;
procedure TDTCalendarForm.CalendarKeyDown(Sender: TObject; var Key: Word;
Shift: TShiftState);
begin
if (not(Cal.GetCalendarControl is TCustomCalendar))
or (TCustomCalendar(Cal.GetCalendarControl).GetCalendarView = cvMonth) then
case Key of
VK_ESCAPE:
CloseCalendarForm;
VK_RETURN, VK_SPACE:
CloseCalendarForm(True);
end;
end;
procedure TDTCalendarForm.CalendarResize(Sender: TObject);
begin
AdjustCalendarFormSize;
end;
procedure TDTCalendarForm.CalendarClick(Sender: TObject);
var
P: TPoint;
begin
P := Cal.GetCalendarControl.ScreenToClient(Mouse.CursorPos);
if Cal.AreCoordinatesOnDate(P.x, P.y) then
CloseCalendarForm(True);
end;
{ This procedure is added to list of "visible change handlers" of DTPicker's
parent form, so that hiding of DTPicker's parent form does not leave the
calendar form visible. }
procedure TDTCalendarForm.VisibleOfParentChanged(Sender: TObject);
begin
SetClosingCalendarForm;
Release;
end;
procedure TDTCalendarForm.WMActivate(var Message: TLMActivate);
var
PP: HWND;
begin
inherited;
PP := LCLIntf.GetParent(Handle);
if (PP<>0) then
SendMessage(PP, LM_NCACTIVATE, Ord(Message.Active <> WA_INACTIVE), 0);
end;
procedure TDTCalendarForm.Notification(AComponent: TComponent;
Operation: TOperation);
begin
inherited Notification(AComponent, Operation);
if (AComponent = DTPickersParentForm) and (Operation = opRemove) then
DTPickersParentForm := nil;
end;
procedure TDTCalendarForm.Deactivate;
begin
inherited Deactivate;
CloseCalendarForm;
end;
procedure TDTCalendarForm.DoShow;
begin
if not FClosing then begin
inherited DoShow;
AdjustCalendarFormSize;
DTPicker.DoDropDown; // calls OnDropDown event handler
end;
end;
procedure TDTCalendarForm.DoClose(var CloseAction: TCloseAction);
begin
SetClosingCalendarForm;
CloseAction := caFree;
inherited DoClose(CloseAction);
end;
constructor TDTCalendarForm.CreateNewDTCalendarForm(AOwner: TComponent;
ADTPicker: TCustomDateTimePicker);
var
P: TPoint;
CalClass: TCalendarControlWrapperClass;
begin
inherited CreateNew(AOwner);
ADTPicker.FAllowDroppingCalendar := False;
FClosing := False;
DTPicker := ADTPicker;
BiDiMode := DTPicker.BiDiMode;
DTPickersParentForm := GetParentForm(DTPicker);
if Assigned(DTPickersParentForm) then begin
DTPickersParentForm.AddHandlerOnVisibleChanged(@VisibleOfParentChanged);
DTPickersParentForm.FreeNotification(Self);
end;
PopupMode := pmAuto;
P := Point(0, 0);
if ADTPicker.FCalendarWrapperClass = nil then begin
if DefaultCalendarWrapperClass = nil then
CalClass := TLCLCalendarWrapper
else
CalClass := DefaultCalendarWrapperClass;
end else
CalClass := ADTPicker.FCalendarWrapperClass;
Cal := CalClass.Create;
Cal.GetCalendarControl.ParentBiDiMode := True;
Cal.GetCalendarControl.AutoSize := True;
Cal.GetCalendarControl.GetPreferredSize(P.x, P.y);
Cal.GetCalendarControl.Align := alNone;
Cal.GetCalendarControl.SetBounds(1, 1, P.x, P.y);
SetBounds(-8000, -8000, P.x + 2, P.y + 2);
RememberedCalendarFormOrigin := Point(-8000, -8000);
ShowInTaskBar := stNever;
BorderStyle := bsNone;
Shape := TShape.Create(nil);
Shape.Brush.Style := bsClear;
if DTPicker.DateIsNull then
Cal.SetDate(Max(DTPicker.MinDate, Min(SysUtils.Date, DTPicker.MaxDate)))
else if DTPicker.DateTime < DTPicker.MinDate then // These "out of bounds" values
Cal.SetDate(DTPicker.MinDate) // can happen when DateTime was set with
else if DTPicker.DateTime > DTPicker.MaxDate then // "SetDateTimeJumpMinMax" protected
Cal.SetDate(DTPicker.MaxDate) // procedure (used in TDBDateTimePicker control).
else
Cal.SetDate(DTPicker.Date);
Cal.GetCalendarControl.OnResize := @CalendarResize;
Cal.GetCalendarControl.OnClick := @CalendarClick;
if Cal.GetCalendarControl is TWinControl then begin
TWinControl(Cal.GetCalendarControl).OnKeyDown := @CalendarKeyDown;
TWinControl(Cal.GetCalendarControl).TabStop := True;
TWinControl(Cal.GetCalendarControl).SetFocus;
end;
Shape.Parent := Self;
Cal.GetCalendarControl.Parent := Self;
Cal.GetCalendarControl.BringToFront;
end;
destructor TDTCalendarForm.Destroy;
begin
SetClosingCalendarForm;
if Assigned(DTPickersParentForm) then
DTPickersParentForm.RemoveAllHandlersOfObject(Self);
if Assigned(Cal) then begin
Cal.GetCalendarControl.OnResize := nil;
Cal.GetCalendarControl.OnClick := nil;
if Cal.GetCalendarControl is TWinControl then
TWinControl(Cal.GetCalendarControl).OnKeyDown := nil;
Cal.Free;
Cal := nil;
end;
FreeAndNil(Shape);
if Assigned(DTPicker) then begin
if (Screen.ActiveControl = DTPicker) then
DTPicker.Invalidate;
if DTPicker.FCalendarForm = nil then
DTPicker.FAllowDroppingCalendar := True;
end;
inherited Destroy;
end;
{ TCustomDateTimePicker }
procedure TCustomDateTimePicker.SetChecked(const AValue: Boolean);
begin
if (FChecked=AValue) or not FShowCheckBox then
Exit;
FChecked := AValue;
CheckBoxChange;
CheckTextEnabled;
Invalidate;
end;
procedure TCustomDateTimePicker.CheckTextEnabled;
begin
FTextEnabled := Self.Enabled and ((dtpoEnabledIfUnchecked in Options) or GetChecked);
if Assigned(FArrowButton) then
FArrowButton.Enabled := FTextEnabled;
if Assigned(FUpDown) then
FUpDown.Enabled := FTextEnabled;
end;
procedure TCustomDateTimePicker.SetDateDisplayOrder(
const AValue: TDateDisplayOrder);
var
PreviousEffectiveDDO: TDateDisplayOrder;
begin
if FDateDisplayOrder <> AValue then begin
PreviousEffectiveDDO := FEffectiveDateDisplayOrder;
FDateDisplayOrder := AValue;
AdjustEffectiveDateDisplayOrder;
if FEffectiveDateDisplayOrder <> PreviousEffectiveDDO then begin
AdjustSelection;
UpdateDate;
end;
end;
end;
procedure TCustomDateTimePicker.SetDateMode(const AValue: TDTDateMode);
begin
FDateMode := AValue;
UpdateShowArrowButton;
end;
procedure TCustomDateTimePicker.SetHideDateTimeParts(AValue: TDateTimeParts);
begin
if FHideDateTimeParts <> AValue then begin
FHideDateTimeParts := AValue;
AdjustEffectiveHideDateTimeParts;
end;
end;
procedure TCustomDateTimePicker.SetKind(const AValue: TDateTimeKind);
begin
if FKind <> AValue then begin
FKind := AValue;
AdjustEffectiveHideDateTimeParts;
end;
end;
procedure TCustomDateTimePicker.SetLeadingZeros(const AValue: Boolean);
begin
if FLeadingZeros = AValue then Exit;
FLeadingZeros := AValue;
UpdateDate;
end;
procedure TCustomDateTimePicker.SetMonthNames(AValue: String);
var
I, N, LenMNSep: Integer;
MonthNamesSeparator: String;
begin
if FMonthNames <> AValue then begin
AValue := TrimRight(AValue);
FMonthNames := AValue;
if UpperCase(AValue) = 'SHORT' then
for I := Low(TMonthNameArray) to High(TMonthNameArray) do
FMonthNamesArray[I] := AnsiToUtf8(DefaultFormatSettings.ShortMonthNames[I])
else begin
N := 0;
if Length(AValue) >= 24 then begin
MonthNamesSeparator := UTF8Copy(AValue, 1, 1);
LenMNSep := Length(MonthNamesSeparator);
if LenMNSep > 0 then begin
Delete(AValue, 1, LenMNSep);
while N < 12 do begin
I := Pos(MonthNamesSeparator, AValue);
if I <= 1 then begin
if (I = 0) and (N = 11) and (Length(AValue) > 0) then begin
Inc(N);
FMonthNamesArray[N] := AValue;
end;
Break;
end;
Inc(N);
Dec(I);
FMonthNamesArray[N] := Copy(AValue, 1, I);
Delete(AValue, 1, I + LenMNSep);
end;
end;
end;
if N < 12 then
for I := Low(TMonthNameArray) to High(TMonthNameArray) do
FMonthNamesArray[I] := AnsiToUtf8(DefaultFormatSettings.LongMonthNames[I]);
end;
if FShowMonthNames and
not (dtpMonth in FEffectiveHideDateTimeParts) then begin
FRecalculatingTextSizesNeeded := True;
UpdateDate;
end;
end;
end;
procedure TCustomDateTimePicker.SetNullInputAllowed(const AValue: Boolean);
begin
FNullInputAllowed := AValue;
end;
procedure TCustomDateTimePicker.SetOptions(
const aOptions: TDateTimePickerOptions);
begin
if FOptions = aOptions then Exit;
FOptions := aOptions;
if FArrowButton<>nil then
FArrowButton.Flat := dtpoFlatButton in Options;
if FUpDown <> nil then
TDTUpDown(FUpDown).Flat := dtpoFlatButton in Options;
CheckTextEnabled;
Invalidate;
end;
procedure TCustomDateTimePicker.SetDate(const AValue: TDate);
begin
if IsNullDate(AValue) then
DateTime := NullDate
else if DateIsNull then
DateTime := Int(AValue)
else
DateTime := ComposeDateTime(AValue, FDateTime);
end;
procedure TCustomDateTimePicker.SetDateTime(const AValue: TDateTime);
begin
if not EqualDateTime(AValue, FDateTime) then begin
if IsNullDate(AValue) then
FDateTime := NullDate
else
FDateTime := AValue;
UpdateDate(dtpoDoChangeOnSetDateTime in FOptions);
end else
UpdateDate;
end;
procedure TCustomDateTimePicker.SetDateSeparator(const AValue: String);
begin
SetSeparators(AValue, FTimeSeparator);
end;
procedure TCustomDateTimePicker.SetMaxDate(const AValue: TDate);
begin
if not IsNullDate(AValue) then begin
if AValue > TheBiggestDate then
FMaxDate := TheBiggestDate
else if AValue <= FMinDate then
FMaxDate := FMinDate
else
FMaxDate := Int(AValue);
if not DateIsNull then
if FMaxDate < GetDate then
SetDate(FMaxDate);
AdjustEffectiveCenturyFrom;
end;
end;
procedure TCustomDateTimePicker.SetMinDate(const AValue: TDate);
begin
if not IsNullDate(AValue) then begin
if AValue < TheSmallestDate then
FMinDate := TheSmallestDate
else if AValue >= FMaxDate then
FMinDate := FMaxDate
else
FMinDate := Int(AValue);
if not DateIsNull then
if FMinDate > GetDate then
SetDate(FMinDate);
AdjustEffectiveCenturyFrom;
end;
end;
procedure TCustomDateTimePicker.SetReadOnly(const AValue: Boolean);
begin
if FReadOnly <> AValue then begin
if AValue then
ConfirmChanges;
FReadOnly := AValue;
end;
end;
procedure TCustomDateTimePicker.SetShowCheckBox(const AValue: Boolean);
begin
if FShowCheckBox = AValue then
Exit;
FShowCheckBox := AValue;
ArrangeCtrls;
end;
procedure TCustomDateTimePicker.SetShowMonthNames(AValue: Boolean);
begin
if FShowMonthNames <> AValue then begin
FShowMonthNames := AValue;
if not (dtpMonth in FEffectiveHideDateTimeParts) then begin
FRecalculatingTextSizesNeeded := True;
UpdateDate;
end;
end;
end;
procedure TCustomDateTimePicker.SetTextForNullDate(const AValue: TCaption);
begin
if FTextForNullDate = AValue then
Exit;
FTextForNullDate := AValue;
if DateIsNull then
Invalidate;
end;
procedure TCustomDateTimePicker.SetTime(const AValue: TTime);
begin
if IsNullDate(AValue) then
DateTime := NullDate
else if DateIsNull then
DateTime := ComposeDateTime(Max(Min(SysUtils.Date, MaxDate), MinDate), AValue)
else
DateTime := ComposeDateTime(FDateTime, AValue);
end;
procedure TCustomDateTimePicker.SetTimeSeparator(const AValue: String);
begin
SetSeparators(FDateSeparator, AValue);
end;
procedure TCustomDateTimePicker.SetTimeDisplay(const AValue: TTimeDisplay);
begin
if FTimeDisplay <> AValue then begin
FTimeDisplay:=AValue;
AdjustEffectiveHideDateTimeParts;
end;
end;
procedure TCustomDateTimePicker.SetTimeFormat(const AValue: TTimeFormat);
begin
if FTimeFormat <> AValue then begin
FTimeFormat := AValue;
AdjustEffectiveHideDateTimeParts;
end;
end;
procedure TCustomDateTimePicker.SetTrailingSeparator(const AValue: Boolean);
begin
if FTrailingSeparator <> AValue then begin
FTrailingSeparator := AValue;
FRecalculatingTextSizesNeeded := True;
UpdateIfUserChangedText;
Invalidate;
end;
end;
procedure TCustomDateTimePicker.SetUseDefaultSeparators(const AValue: Boolean);
begin
if FUseDefaultSeparators <> AValue then begin
if AValue then begin
SetSeparators(DefaultFormatSettings.DateSeparator,
DefaultFormatSettings.TimeSeparator);
// Note that here, in SetSeparators procedure,
// the field FUseDefaultSeparators is set to False.
end;
// Therefore, the following line must NOT be moved above.
FUseDefaultSeparators := AValue;
end;
end;
function TCustomDateTimePicker.GetHour: Word;
begin
Result := GetHMSMs.Hour;
end;
function TCustomDateTimePicker.GetMiliSec: Word;
begin
Result := GetHMSMs.MiliSec;
end;
function TCustomDateTimePicker.GetMinute: Word;
begin
Result := GetHMSMs.Minute;
end;
function TCustomDateTimePicker.GetSecond: Word;
begin
Result := GetHMSMs.Second;
end;
{ RecalculateTextSizesIfNeeded
--------------------------------
In this procedure we measure text and store the values in the following
fields: FDateWidth, FTimeWidth, FTextWidth, FTextHeigth, FDigitWidth,
FSeparatorWidth, FTimeSeparatorWidth, FSepNoSpaceWidth. These fields are used
in calculating our preffered size and when painting.
The procedure is called internally when needed (when properties which
influence the appearence change). }
procedure TCustomDateTimePicker.RecalculateTextSizesIfNeeded;
const
NullMonthChar = 'x';
var
C: Char;
N, J: Integer;
S: String;
I: TDateTimePart;
DateParts, TimeParts: Integer;
begin
if HandleAllocated and FRecalculatingTextSizesNeeded then begin
FRecalculatingTextSizesNeeded := False;
FDigitWidth := 0;
for C := '0' to '9' do begin
N := Canvas.GetTextWidth(C);
if N > FDigitWidth then
FDigitWidth := N;
end;
DateParts := 0;
FSepNoSpaceWidth := 0;
FSeparatorWidth := 0;
FMonthWidth := 0;
FDateWidth := 0;
FNullMonthText := '';
S := '';
if FKind in [dtkDate, dtkDateTime] then begin
for I := dtpDay to dtpYear do
if not (I in FEffectiveHideDateTimeParts) then begin
Inc(DateParts);
if I = dtpYear then begin
FDateWidth := FDateWidth + 4 * FDigitWidth;
end else if (I = dtpMonth) and FShowMonthNames then begin
FMonthWidth := FDigitWidth; // Minimal MonthWidth is DigitWidth.
for J := Low(TMonthNameArray) to High(TMonthNameArray) do begin
N := Canvas.GetTextWidth(FMonthNamesArray[J]);
if N > FMonthWidth then
FMonthWidth := N;
end;
N := Canvas.GetTextWidth(NullMonthChar);
if N > 0 then begin
N := FMonthWidth div N - 1;
if N > 1 then
FNullMonthText := StringOfChar(NullMonthChar, N);
end;
if N <= 1 then
FNullMonthText := NullMonthChar;
FDateWidth := FDateWidth + FMonthWidth;
end else
FDateWidth := FDateWidth + 2 * FDigitWidth;
end;
if DateParts > 0 then begin
if FTrailingSeparator then begin
FSepNoSpaceWidth := Canvas.GetTextWidth(TrimRight(FDateSeparator));
Inc(FDateWidth, FSepNoSpaceWidth);
end;
if DateParts > 1 then begin
FSeparatorWidth := Canvas.GetTextWidth(FDateSeparator);
S := FDateSeparator;
FDateWidth := FDateWidth + (DateParts - 1) * FSeparatorWidth;
end;
end;
end;
TimeParts := 0;
FTimeWidth := 0;
FAMPMWidth := 0;
FTimeSeparatorWidth := 0;
if FKind in [dtkTime, dtkDateTime] then begin
for I := dtpHour to dtpMiliSec do
if not (I in FEffectiveHideDateTimeParts) then begin
Inc(TimeParts);
if I = dtpMiliSec then
FTimeWidth := FTimeWidth + 3 * FDigitWidth
else
FTimeWidth := FTimeWidth + 2 * FDigitWidth;
end;
if TimeParts > 1 then begin
FTimeSeparatorWidth := Canvas.GetTextWidth(FTimeSeparator);
S := S + FTimeSeparator;
FTimeWidth := FTimeWidth + (TimeParts - 1) * FTimeSeparatorWidth;
end;
if not (dtpAMPM in FEffectiveHideDateTimeParts) then begin
S := S + 'APM';
FAMPMWidth := Max(Canvas.TextWidth('AM'), Canvas.TextWidth('PM'));
FTimeWidth := FTimeWidth + FDigitWidth + FAMPMWidth;
end;
end;
FTextWidth := FDateWidth + FTimeWidth;
if (DateParts > 0) and (TimeParts > 0) then
FTextWidth := FTextWidth + 2 * FDigitWidth;
FTextHeight := Canvas.GetTextHeight('0123456789' + S);
end;
end;
function TCustomDateTimePicker.GetDay: Word;
begin
Result := GetYYYYMMDD.Day;
end;
function TCustomDateTimePicker.GetMonth: Word;
begin
Result := GetYYYYMMDD.Month;
end;
function TCustomDateTimePicker.GetYear: Word;
begin
Result := GetYYYYMMDD.Year;
end;
function TCustomDateTimePicker.GetHMSMs(const NowIfNull: Boolean): THMSMs;
begin
if DateIsNull then begin
if NowIfNull then
DecodeTime(SysUtils.Time, Result.Hour, Result.Minute, Result.Second, Result.MiliSec)
else
with Result do begin
Hour := 0;
Minute := 0;
Second := 0;
MiliSec := 0;
end;
end else
DecodeTime(FDateTime, Result.Hour, Result.Minute, Result.Second, Result.MiliSec);
end;
function TCustomDateTimePicker.GetYYYYMMDD(const TodayIfNull: Boolean;
const WithCorrection: Boolean): TYMD;
begin
if DateIsNull then begin
if TodayIfNull then
DecodeDate(SysUtils.Date, Result.Year, Result.Month, Result.Day)
else
with Result do begin
Day := 0;
Month := 0;
Year := 0;
end;
end else begin
DecodeDate(FDateTime, Result.Year, Result.Month, Result.Day);
if WithCorrection then begin
case FCorrectedDTP of
dtpDay:
Result.Day := FCorrectedValue;
dtpMonth:
Result.Month := FCorrectedValue;
dtpYear:
Result.Year := FCorrectedValue;
end;
end;
end;
end;
procedure TCustomDateTimePicker.SetHour(const AValue: Word);
var
HMSMs: THMSMs;
begin
SelectHour;
HMSMs := GetHMSMs(True);
HMSMs.Hour := AValue;
SetHMSMs(HMSMs);
end;
procedure TCustomDateTimePicker.SetMiliSec(const AValue: Word);
var
HMSMs: THMSMs;
begin
SelectMiliSec;
HMSMs := GetHMSMs(True);
HMSMs.MiliSec := AValue;
SetHMSMs(HMSMs);
end;
procedure TCustomDateTimePicker.SetMinute(const AValue: Word);
var
HMSMs: THMSMs;
begin
SelectMinute;
HMSMs := GetHMSMs(True);
HMSMs.Minute := AValue;
SetHMSMs(HMSMs);
end;
procedure TCustomDateTimePicker.SetSecond(const AValue: Word);
var
HMSMs: THMSMs;
begin
SelectSecond;
HMSMs := GetHMSMs(True);
HMSMs.Second := AValue;
SetHMSMs(HMSMs);
end;
procedure TCustomDateTimePicker.SetSeparators(const DateSep, TimeSep: String);
var
SeparatorsChanged: Boolean;
begin
FUseDefaultSeparators := False;
SeparatorsChanged := False;
if FDateSeparator <> DateSep then begin
FDateSeparator := DateSep;
SeparatorsChanged := True;
end;
if FTimeSeparator <> TimeSep then begin
FTimeSeparator := TimeSep;
SeparatorsChanged := True;
end;
if SeparatorsChanged then begin
FRecalculatingTextSizesNeeded := True;
Invalidate;
end;
end;
procedure TCustomDateTimePicker.SetDay(const AValue: Word);
var
YMD: TYMD;
begin
SelectDay;
YMD := GetYYYYMMDD(True, True);
YMD.Day := AValue;
SetYYYYMMDD(YMD);
end;
procedure TCustomDateTimePicker.SetMonth(const AValue: Word);
var
YMD: TYMD;
N: Word;
begin
SelectMonth;
YMD := GetYYYYMMDD(True, True);
YMD.Month := AValue;
N := NumberOfDaysInMonth(YMD.Month, YMD.Year);
if YMD.Day > N then
YMD.Day := N;
SetYYYYMMDD(YMD);
end;
procedure TCustomDateTimePicker.SetYear(const AValue: Word);
var
YMD: TYMD;
begin
SelectYear;
YMD := GetYYYYMMDD(True, True);
YMD.Year := AValue;
if (YMD.Month = 2) and (YMD.Day > 28) and (not IsLeapYear(YMD.Year)) then
YMD.Day := 28;
SetYYYYMMDD(YMD);
end;
procedure TCustomDateTimePicker.SetYYYYMMDD(const AValue: TYMD);
var
D: TDateTime;
begin
if TryEncodeDate(AValue.Year, AValue.Month, AValue.Day, D) then
SetDate(D)
else
UpdateDate;
end;
procedure TCustomDateTimePicker.SetHMSMs(const AValue: THMSMs);
var
T: TDateTime;
begin
if TryEncodeTime(AValue.Hour, AValue.Minute,
AValue.Second, AValue.MiliSec, T) then
SetTime(T)
else
UpdateDate;
end;
procedure TCustomDateTimePicker.UpdateIfUserChangedText;
var
W: Word;
S: String;
begin
if FUserChangedText then begin
Inc(FUserChanging);
try
FUserChangedText := False;
S := Trim(GetSelectedText);
if FSelectedTextPart = 8 then begin
W := GetHour;
if upCase(S[1]) = 'A' then begin
if W >= 12 then
Dec(W, 12);
end else begin
if W < 12 then
Inc(W, 12);
end;
SetHour(W);
FSelectedTextPart := 8;
end else begin
W := StrToInt(S);
case GetSelectedDateTimePart of
dtpYear:
begin
if Length(S) <= 2 then begin
// If user entered the year in two digit format (or even only
// one digit), we will set the year according to the CenturyFrom
// property (We actually use FEffectiveCenturyFrom field, which
// is adjusted to take care of MinDate and MaxDate properties,
// besides CenturyFrom).
if W >= (FEffectiveCenturyFrom mod 100) then
W := W + 100 * (FEffectiveCenturyFrom div 100)
else
W := W + 100 * (FEffectiveCenturyFrom div 100 + 1);
end;
SetYear(W);
end;
dtpDay:
SetDay(W);
dtpMonth:
SetMonth(W);
dtpHour:
begin
if (FTimeFormat = tf12) then begin
if GetHour < 12 then begin
if W = 12 then
SetHour(0)
else
SetHour(W);
end else begin
if W = 12 then
SetHour(W)
else
SetHour(W + 12);
end;
end else
SetHour(W);
end;
dtpMinute:
SetMinute(W);
dtpSecond:
SetSecond(W);
dtpMiliSec:
SetMiliSec(W);
end;
end;
finally
FCorrectedDTP := dtpAMPM;
Dec(FUserChanging);
end;
end;
end;
function TCustomDateTimePicker.GetSelectedText: String;
begin
if FSelectedTextPart <= 3 then
Result := FTextPart[FSelectedTextPart]
else
Result := FTimeText[TDateTimePart(FSelectedTextPart - 1)];
end;
procedure TCustomDateTimePicker.AdjustSelection;
begin
if GetDateTimePartFromTextPart(FSelectedTextPart) in
FEffectiveHideDateTimeParts then
MoveSelectionLR(False);
end;
procedure TCustomDateTimePicker.AdjustEffectiveCenturyFrom;
var
Y1, Y2, M, D: Word;
begin
DecodeDate(FMinDate, Y1, M, D);
if Y1 > FCenturyFrom then
FEffectiveCenturyFrom := Y1 // If we use CenturyFrom which is set to value
// below MinDate's year, then when user enters two digit year, the
// DateTime would automatically be set to MinDate value, even though
// we perhaps allow same two-digit year in following centuries. It
// would be less user friendly.
// This is therefore better.
else begin
DecodeDate(FMaxDate, Y2, M, D);
if Y2 < 100 then
Y2 := 0
else
Dec(Y2, 99); // -- We should not use CenturyFrom if it is set to value
// greater then MaxDate's year minus 100 years.
// For example:
// if CenturyFrom = 1941 and MaxDate = 31.12.2025, then if user enters
// Year 33, we could not set the year to 2033 anyway, because of MaxDate
// limit. Note that if we just leave CenturyFrom to effectively remain as
// is, then in case of our example the DateTime would be automatically
// reduced to MaxDate value. Setting the year to 1933 is rather expected
// behaviour, so our internal field FEffectiveCenturyFrom should be 1926.
// Therefore:
if Y2 < FCenturyFrom then
FEffectiveCenturyFrom := Max(Y1, Y2)
else
FEffectiveCenturyFrom := FCenturyFrom; // -- FCenturyFrom has passed all
// our tests, so we'll really use it without any correction.
end;
end;
{ AdjustEffectiveDateDisplayOrder procedure
-------------------------------------------
If date display order ddoTryDefault is set, then we will decide which
display order to use according to ShortDateFormat global variable. This
procedure tries to achieve that by searching through short date format string,
to see which letter comes first -- d, m or y. When it finds any of these
characters, it assumes that date order should be d-m-y, m-d-y, or y-m-d
respectively. If the search through ShortDateFormat is unsuccessful by any
chance, we try the same with LongDateFormat global variable. If we don't
succeed again, we'll assume y-m-d order. }
procedure TCustomDateTimePicker.AdjustEffectiveDateDisplayOrder;
var
S: String;
I, J, Le: Integer;
InQuoteChar: Char;
begin
if FDateDisplayOrder = ddoTryDefault then begin
S := DefaultFormatSettings.ShortDateFormat;
FEffectiveDateDisplayOrder := ddoTryDefault;
repeat
InQuoteChar := Chr(0);
Le := Length(S);
I := 0;
while I < Le do begin
Inc(I);
if InQuoteChar = Chr(0) then begin
case S[I] of
'''', '"':
InQuoteChar := S[I];
'D', 'd':
begin
{ If 3 or more "d"-s are standing together, then it's day
of week, but here we are interested in day of month.
So, we have to see what is following: }
J := I + 1;
while (J <= Le) and (upCase(S[J]) = 'D') do
Inc(J);
if J <= I + 2 then begin
FEffectiveDateDisplayOrder := ddoDMY;
Break;
end;
I := J - 1;
end;
'M', 'm':
begin
FEffectiveDateDisplayOrder := ddoMDY;
Break;
end;
'Y', 'y':
begin
FEffectiveDateDisplayOrder := ddoYMD;
Break;
end;
end;
end else
if S[I] = InQuoteChar then
InQuoteChar := Chr(0);
end;
if FEffectiveDateDisplayOrder = ddoTryDefault then begin
{ We couldn't decide with ShortDateFormat, let's try with
LongDateFormat now. }
S := DefaultFormatSettings.LongDateFormat;
{ But now we must set something to be default. This ensures that the
repeat loop breaks next time. If we don't find anything in
LongDateFormat, we'll leave with y-m-d order. }
FEffectiveDateDisplayOrder := ddoYMD;
end else
Break;
until False;
end else
FEffectiveDateDisplayOrder := FDateDisplayOrder;
case FEffectiveDateDisplayOrder of
ddoDMY:
begin
FDayPos := 1;
FMonthPos := 2;
FYearPos := 3;
end;
ddoMDY:
begin
FDayPos := 2;
FMonthPos := 1;
FYearPos := 3;
end;
ddoYMD:
begin
FDayPos := 3;
FMonthPos := 2;
FYearPos := 1;
end;
end;
end;
procedure TCustomDateTimePicker.AdjustEffectiveHideDateTimeParts;
var
I: TDateTimePart;
PreviousEffectiveHideDateTimeParts: set of TDateTimePart;
begin
PreviousEffectiveHideDateTimeParts := FEffectiveHideDateTimeParts;
FEffectiveHideDateTimeParts := [];
for I := Low(TDateTimeParts) to High(TDateTimeParts) do
if I in FHideDateTimeParts then
Include(FEffectiveHideDateTimeParts, I);
if FKind = dtkDate then
FEffectiveHideDateTimeParts := FEffectiveHideDateTimeParts +
[dtpHour, dtpMinute, dtpSecond, dtpMiliSec, dtpAMPM]
else begin
if FKind = dtkTime then
FEffectiveHideDateTimeParts := FEffectiveHideDateTimeParts +
[dtpDay, dtpMonth, dtpYear];
case FTimeDisplay of
tdHM:
FEffectiveHideDateTimeParts := FEffectiveHideDateTimeParts +
[dtpSecond, dtpMiliSec];
tdHMS:
FEffectiveHideDateTimeParts := FEffectiveHideDateTimeParts +
[dtpMiliSec];
end;
if (FTimeFormat = tf24) or (dtpHour in FEffectiveHideDateTimeParts) then
Include(FEffectiveHideDateTimeParts, dtpAMPM);
end;
if FEffectiveHideDateTimeParts
<> PreviousEffectiveHideDateTimeParts then begin
AdjustSelection;
FRecalculatingTextSizesNeeded := True;
UpdateShowArrowButton;
UpdateDate;
end;
end;
procedure TCustomDateTimePicker.SelectDateTimePart(
const DateTimePart: TDateTimePart);
begin
if not (DateTimePart in FEffectiveHideDateTimeParts) then begin
case DateTimePart of
dtpDay:
FSelectedTextPart := FDayPos;
dtpMonth:
FSelectedTextPart := FMonthPos;
dtpYear:
FSelectedTextPart := FYearPos;
else
FSelectedTextPart := 1 + Ord(DateTimePart);
end;
Invalidate;
end;
end;
procedure TCustomDateTimePicker.DestroyCalendarForm;
begin
if Assigned(FCalendarForm) then begin
TDTCalendarForm(FCalendarForm).FClosing := True;
FCalendarForm.Release;
FCalendarForm := nil;
end;
end;
class function TCustomDateTimePicker.GetControlClassDefaultSize: TSize;
begin
Result.cx := 102;
Result.cy := 23;
end;
procedure TCustomDateTimePicker.ConfirmChanges;
begin
UpdateIfUserChangedText;
FConfirmedDateTime := FDateTime;
end;
procedure TCustomDateTimePicker.UndoChanges;
begin
if FDateTime = FConfirmedDateTime then begin
Inc(FSkipChangeInUpdateDate); // prevents calling Change in UpdateDate,
try // but UpdateDate should be called anyway, because user might have
// changed text on screen and it should be updated to what it was.
UpdateDate;
finally
Dec(FSkipChangeInUpdateDate);
end;
end else begin
FDateTime := FConfirmedDateTime;
UpdateDate;
end;
end;
{ GetDateTimePartFromTextPart function
-----------------------------------------------
Returns part of date/time from the position (1-8). }
function TCustomDateTimePicker.GetDateTimePartFromTextPart(
TextPart: TTextPart): TDateTimePart;
begin
Result := TDateTimePart(TextPart - 1);
case FEffectiveDateDisplayOrder of
ddoMDY:
if Result = dtpDay then
Result := dtpMonth
else if Result = dtpMonth then
Result := dtpDay;
ddoYMD:
if Result = dtpDay then
Result := dtpYear
else if Result = dtpYear then
Result := dtpDay;
end;
end;
{ GetSelectedDateTimePart function
---------------------------------
Returns part of date/time which is currently selected. }
function TCustomDateTimePicker.GetSelectedDateTimePart: TDateTimePart;
begin
Result := GetDateTimePartFromTextPart(FSelectedTextPart);
end;
procedure TCustomDateTimePicker.FontChanged(Sender: TObject);
begin
FRecalculatingTextSizesNeeded := True;
inherited FontChanged(Sender);
end;
function TCustomDateTimePicker.GetCheckBoxRect(
IgnoreRightToLeft: Boolean): TRect;
var
Details: TThemedElementDetails;
CSize: TSize;
begin
Details := ThemeServices.GetElementDetails(tbCheckBoxCheckedNormal);
CSize := ThemeServices.GetDetailSize(Details);
CSize.cx := ScaleScreenToFont(CSize.cx);
CSize.cy := ScaleScreenToFont(CSize.cy);
if IsRightToLeft and not IgnoreRightToLeft then
begin
Result.Right := ClientWidth-(BorderSpacing.InnerBorder+BorderWidth);
Result.Left := Result.Right-CSize.cx;
end else
begin
Result.Left := BorderSpacing.InnerBorder+BorderWidth;
Result.Right := Result.Left+CSize.cx;
end;
Result.Top := (ClientHeight-CSize.cy) div 2;
Result.Bottom := Result.Top+CSize.cy;
end;
{ GetTextOrigin
---------------
Returns upper left corner of the rectangle where the text is written.
Also used in calculating our preffered size. }
function TCustomDateTimePicker.GetTextOrigin(IgnoreRightToLeft: Boolean
): TPoint;
var
R: TRect;
begin
Result.y := BorderSpacing.InnerBorder + BorderWidth;
if FShowCheckBox then
begin
R := GetCheckBoxRect(IgnoreRightToLeft);
if not IgnoreRightToLeft and IsRightToLeft then
Result.x := R.Left - Scale96ToFont(cCheckBoxBorder) - FTextWidth
else
Result.x := R.Right + Scale96ToFont(cCheckBoxBorder);
end else
begin
Result.x := Result.y;
if not IgnoreRightToLeft and IsRightToLeft then
Result.x := ClientWidth - Result.x - FTextWidth;
end;
end;
{ MoveSelectionLR
-----------------
Moves selection to left or to right. If parameter ToLeft is true, then the
selection moves to left, otherwise to right. }
procedure TCustomDateTimePicker.MoveSelectionLR(const ToLeft: Boolean);
var
I, SafetyTextPart: TTextPart;
begin
UpdateIfUserChangedText;
SafetyTextPart := Low(TTextPart);
I := FSelectedTextPart;
repeat
if ToLeft then begin
if I <= Low(TTextPart) then
I := High(TTextPart)
else
Dec(I);
end else begin
if I >= High(TTextPart) then
I := Low(TTextPart)
else
Inc(I);
end;
if not (GetDateTimePartFromTextPart(I)
in FEffectiveHideDateTimeParts) then
FSelectedTextPart := I;
{ Is it possible that all parts are hidden? Yes it is!
So we need to ensure that this doesn't loop forever.
When this insurance text part gets to high value, break }
Inc(SafetyTextPart);
until (I = FSelectedTextPart) or (SafetyTextPart >= High(TTextPart));
end;
procedure TCustomDateTimePicker.KeyDown(var Key: Word; Shift: TShiftState);
begin
Inc(FUserChanging);
try
if FTextEnabled then
inherited KeyDown(Key, Shift); // calls OnKeyDown event
CheckAndApplyKeyCode(Key);
finally
Dec(FUserChanging);
end;
end;
procedure TCustomDateTimePicker.KeyPress(var Key: char);
begin
if FTextEnabled then begin
Inc(FUserChanging);
try
inherited KeyPress(Key);
CheckAndApplyKey(Key);
finally
Dec(FUserChanging);
end;
end;
end;
{ SelectTextPartUnderMouse
--------------------------
This procedure determines which text part (date or time part -- day, month,
year, hour, minute...) should be selected in response to mouse message.
Used in MouseDown and DoMouseWheel methods. }
procedure TCustomDateTimePicker.SelectTextPartUnderMouse(XMouse: Integer);
var
I, M, NX: Integer;
InTime: Boolean;
DTP: TDateTimePart;
begin
UpdateIfUserChangedText;
SetFocusIfPossible;
if Focused then begin
// Calculating mouse position inside text
// in order to select date part under mouse cursor.
NX := XMouse - GetTextOrigin.x;
InTime := False;
if FTimeWidth > 0 then begin
if FDateWidth > 0 then begin
if NX >= FDateWidth + FDigitWidth then begin
InTime := True;
NX := NX - FDateWidth - 2 * FDigitWidth;
end;
end else
InTime := True;
end;
if InTime then begin
FSelectedTextPart := 8;
if (dtpAMPM in FEffectiveHideDateTimeParts) or
(NX < FTimeWidth - FAMPMWidth - FDigitWidth div 2) then begin
FSelectedTextPart := 7;
I := 4;
M := FTimeSeparatorWidth div 2;
while I <= 6 do begin
DTP := GetDateTimePartFromTextPart(I);
if not (DTP in FEffectiveHideDateTimeParts) then begin
Inc(M, 2 * FDigitWidth);
if M > NX then begin
FSelectedTextPart := I;
Break;
end;
Inc(M, FTimeSeparatorWidth);
end;
Inc(I);
end;
end;
end else if FDateWidth > 0 then begin
FSelectedTextPart := 3;
I := 1;
M := FSeparatorWidth div 2;
while I <= 2 do begin
if not(GetDateTimePartFromTextPart(I)
in FEffectiveHideDateTimeParts) then begin
if I = FYearPos then
Inc(M, 4 * FDigitWidth)
else if (I = FMonthPos) and FShowMonthNames then
Inc(M, FMonthWidth)
else
Inc(M, 2 * FDigitWidth);
if M > NX then begin
FSelectedTextPart := I;
Break;
end;
Inc(M, FSeparatorWidth);
end;
Inc(I);
end;
end;
if GetDateTimePartFromTextPart(FSelectedTextPart)
in FEffectiveHideDateTimeParts then
MoveSelectionLR(True);
Invalidate;
//-------------------------------------------------------
end;
end;
procedure TCustomDateTimePicker.MouseDown(Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
var
R: TRect;
begin
if FTextEnabled then
SelectTextPartUnderMouse(X);
if ShowCheckBox then
begin
R := GetCheckBoxRect;
if PtInRect(R, Point(X, Y)) then
begin
Checked := not Checked;
end;
end;
SetFocusIfPossible;
inherited MouseDown(Button, Shift, X, Y);
end;
procedure TCustomDateTimePicker.MouseLeave;
begin
inherited MouseLeave;
if FShowCheckBox and FMouseInCheckBox then
begin
FMouseInCheckBox := False;
Invalidate;
end;
end;
procedure TCustomDateTimePicker.MouseMove(Shift: TShiftState; X, Y: Integer);
var
NewMouseInCheckBox: Boolean;
begin
inherited MouseMove(Shift, X, Y);
if ShowCheckBox then
begin
NewMouseInCheckBox := PtInRect(GetCheckBoxRect, Point(X, Y));
if FMouseInCheckBox<>NewMouseInCheckBox then
begin
FMouseInCheckBox := NewMouseInCheckBox;
Invalidate;
end;
end;
end;
function TCustomDateTimePicker.DoMouseWheel(Shift: TShiftState;
WheelDelta: Integer; MousePos: TPoint): Boolean;
begin
Result := False;
if FTextEnabled then begin
SelectTextPartUnderMouse(MousePos.x);
if not FReadOnly then begin
Inc(FUserChanging);
try
if WheelDelta < 0 then
DecreaseCurrentTextPart
else
IncreaseCurrentTextPart;
Result := True;
finally
Dec(FUserChanging);
end;
end;
end;
end;
procedure TCustomDateTimePicker.CalculatePreferredSize(var PreferredWidth,
PreferredHeight: integer; WithThemeSpace: Boolean);
var
TextOrigin: TPoint;
M: Integer;
begin
RecalculateTextSizesIfNeeded;
TextOrigin := GetTextOrigin(True);
// We must use TextOrigin's x + y (x is, of course, left margin, but not right
// margin if check box is shown. However, y, which is top margin, always
// equals right margin).
PreferredWidth := TextOrigin.x + TextOrigin.y;
if Assigned(FUpDown) then
Inc(PreferredWidth, FUpDown.Width)
else if Assigned(FArrowButton) then
Inc(PreferredWidth, FArrowButton.Width);
PreferredWidth := PreferredWidth + FTextWidth;
M := Width - ClientWidth;
PreferredWidth := PreferredWidth + M;
PreferredHeight := 2 * TextOrigin.y + FTextHeight + M;
end;
procedure TCustomDateTimePicker.SetBiDiMode(AValue: TBiDiMode);
begin
inherited SetBiDiMode(AValue);
ArrangeCtrls;
end;
procedure TCustomDateTimePicker.IncreaseCurrentTextPart;
begin
if DateIsNull then begin
if FSelectedTextPart <= 3 then
SetDateTime(SysUtils.Date)
else
SetDateTime(SysUtils.Now);
end else begin
case GetSelectedDateTimePart of
dtpDay: IncreaseDay;
dtpMonth: IncreaseMonth;
dtpYear: IncreaseYear;
dtpHour: IncreaseHour;
dtpMinute: IncreaseMinute;
dtpSecond: IncreaseSecond;
dtpMiliSec: IncreaseMiliSec;
dtpAMPM: ChangeAMPM;
end;
end;
end;
procedure TCustomDateTimePicker.DecreaseCurrentTextPart;
begin
if DateIsNull then begin
if FSelectedTextPart <= 3 then
SetDateTime(SysUtils.Date)
else
SetDateTime(SysUtils.Now);
end else begin
case GetSelectedDateTimePart of
dtpDay: DecreaseDay;
dtpMonth: DecreaseMonth;
dtpYear: DecreaseYear;
dtpHour: DecreaseHour;
dtpMinute: DecreaseMinute;
dtpSecond: DecreaseSecond;
dtpMiliSec: DecreaseMiliSec;
dtpAMPM: ChangeAMPM;
end;
end;
end;
procedure TCustomDateTimePicker.IncreaseMonth;
var
YMD: TYMD;
N: Word;
begin
SelectMonth;
if Cascade then
SetDateTime(IncMonth(DateTime))
else begin
YMD := GetYYYYMMDD(True);
if YMD.Month >= 12 then
YMD.Month := 1
else
Inc(YMD.Month);
N := NumberOfDaysInMonth(YMD.Month, YMD.Year);
if YMD.Day > N then
YMD.Day := N;
SetYYYYMMDD(YMD);
end;
end;
procedure TCustomDateTimePicker.IncreaseYear;
var
YMD: TYMD;
begin
SelectYear;
YMD := GetYYYYMMDD(True);
Inc(YMD.Year);
if (YMD.Month = 2) and (YMD.Day > 28) and (not IsLeapYear(YMD.Year)) then
YMD.Day := 28;
SetYYYYMMDD(YMD);
end;
procedure TCustomDateTimePicker.IncreaseDay;
var
YMD: TYMD;
begin
SelectDay;
if Cascade then
SetDateTime(IncDay(DateTime))
else begin
YMD := GetYYYYMMDD(True);
if YMD.Day >= NumberOfDaysInMonth(YMD.Month, YMD.Year) then
YMD.Day := 1
else
Inc(YMD.Day);
SetYYYYMMDD(YMD);
end;
end;
procedure TCustomDateTimePicker.DecreaseMonth;
var
YMD: TYMD;
N: Word;
begin
SelectMonth;
if Cascade then
SetDateTime(IncMonth(DateTime, -1))
else begin
YMD := GetYYYYMMDD(True);
if YMD.Month <= 1 then
YMD.Month := 12
else
Dec(YMD.Month);
N := NumberOfDaysInMonth(YMD.Month, YMD.Year);
if YMD.Day > N then
YMD.Day := N;
SetYYYYMMDD(YMD);
end;
end;
procedure TCustomDateTimePicker.DecreaseYear;
var
YMD: TYMD;
begin
SelectYear;
YMD := GetYYYYMMDD(True);
Dec(YMD.Year);
if (YMD.Month = 2) and (YMD.Day > 28) and (not IsLeapYear(YMD.Year)) then
YMD.Day := 28;
SetYYYYMMDD(YMD);
end;
procedure TCustomDateTimePicker.DecreaseDay;
var
YMD: TYMD;
begin
SelectDay;
if Cascade then
SetDateTime(IncDay(DateTime, -1))
else begin
YMD := GetYYYYMMDD(True);
if YMD.Day <= 1 then
YMD.Day := NumberOfDaysInMonth(YMD.Month, YMD.Year)
else
Dec(YMD.Day);
SetYYYYMMDD(YMD);
end;
end;
procedure TCustomDateTimePicker.IncreaseHour;
var
HMSMs: THMSMs;
begin
SelectHour;
if Cascade then
SetDateTime(IncHour(DateTime))
else begin
HMSMs := GetHMSMs(True);
if HMSMs.Hour >= 23 then
HMSMs.Hour := 0
else
Inc(HMSMs.Hour);
SetHMSMs(HMSMs);
end;
end;
procedure TCustomDateTimePicker.IncreaseMinute;
var
HMSMs: THMSMs;
begin
SelectMinute;
if Cascade then
SetDateTime(IncMinute(DateTime))
else begin
HMSMs := GetHMSMs(True);
if HMSMs.Minute >= 59 then
HMSMs.Minute := 0
else
Inc(HMSMs.Minute);
SetHMSMs(HMSMs);
end;
end;
procedure TCustomDateTimePicker.IncreaseSecond;
var
HMSMs: THMSMs;
begin
SelectSecond;
if Cascade then
SetDateTime(IncSecond(DateTime))
else begin
HMSMs := GetHMSMs(True);
if HMSMs.Second >= 59 then
HMSMs.Second := 0
else
Inc(HMSMs.Second);
SetHMSMs(HMSMs);
end;
end;
procedure TCustomDateTimePicker.IncreaseMiliSec;
var
HMSMs: THMSMs;
begin
SelectMiliSec;
if Cascade then
SetDateTime(IncMilliSecond(DateTime))
else begin
HMSMs := GetHMSMs(True);
if HMSMs.MiliSec >= 999 then
HMSMs.MiliSec := 0
else
Inc(HMSMs.MiliSec);
SetHMSMs(HMSMs);
end;
end;
procedure TCustomDateTimePicker.DecreaseHour;
var
HMSMs: THMSMs;
begin
SelectHour;
if Cascade then
SetDateTime(IncHour(DateTime, -1))
else begin
HMSMs := GetHMSMs(True);
if HMSMs.Hour <= 0 then
HMSMS.Hour := 23
else
Dec(HMSMs.Hour);
SetHMSMs(HMSMs);
end;
end;
procedure TCustomDateTimePicker.DecreaseMinute;
var
HMSMs: THMSMs;
begin
SelectMinute;
if Cascade then
SetDateTime(IncMinute(DateTime, -1))
else begin
HMSMs := GetHMSMs(True);
if HMSMs.Minute <= 0 then
HMSMs.Minute := 59
else
Dec(HMSMs.Minute);
SetHMSMs(HMSMs);
end;
end;
procedure TCustomDateTimePicker.DecreaseSecond;
var
HMSMs: THMSMs;
begin
SelectSecond;
if Cascade then
SetDateTime(IncSecond(DateTime, -1))
else begin
HMSMs := GetHMSMs(True);
if HMSMs.Second <= 0 then
HMSMs.Second := 59
else
Dec(HMSMs.Second);
SetHMSMs(HMSMs);
end;
end;
procedure TCustomDateTimePicker.DecreaseMiliSec;
var
HMSMs: THMSMs;
begin
SelectMiliSec;
if Cascade then
SetDateTime(IncMilliSecond(DateTime, -1))
else begin
HMSMs := GetHMSMs(True);
if HMSMs.MiliSec <= 0 then
HMSMs.MiliSec := 999
else
Dec(HMSMs.MiliSec);
SetHMSMs(HMSMs);
end;
end;
procedure TCustomDateTimePicker.ChangeAMPM;
var
HMSMs: THMSMs;
begin
SelectAMPM;
HMSMs := GetHMSMs(True);
if HMSMs.Hour >= 12 then
Dec(HMSMS.Hour, 12)
else
Inc(HMSMS.Hour, 12);
SetHMSMs(HMSMs);
end;
procedure TCustomDateTimePicker.UpdateDate(const CallChangeFromSetDateTime: Boolean);
var
W: Array[1..3] of Word;
WT: Array[dtpHour..dtpAMPM] of Word;
DTP: TDateTimePart;
begin
FCorrectedDTP := dtpAMPM;
FUserChangedText := False;
if not (DateIsNull or FJumpMinMax) then begin
if Int(FDateTime) > FMaxDate then
FDateTime := ComposeDateTime(FMaxDate, FDateTime);
if FDateTime < FMinDate then
FDateTime := ComposeDateTime(FMinDate, FDateTime);
end;
if (FSkipChangeInUpdateDate = 0) then begin
// we'll skip the next part if called from UndoChanges
// and in recursive calls which could be made through calling Change
Inc(FSkipChangeInUpdateDate);
try
if (FUserChanging > 0) // the change is caused by user interaction
or CallChangeFromSetDateTime // call from SetDateTime with option dtpoDoChangeOnSetDateTime
then
try
Change;
except
UndoChanges;
raise;
end;
if FUserChanging = 0 then
FConfirmedDateTime := FDateTime;
finally
Dec(FSkipChangeInUpdateDate);
end;
end;
if DateIsNull then begin
if dtpYear in FEffectiveHideDateTimeParts then
FTextPart[FYearPos] := ''
else
FTextPart[FYearPos] := '0000';
if dtpMonth in FEffectiveHideDateTimeParts then
FTextPart[FMonthPos] := ''
else
FTextPart[FMonthPos] := '00';
if dtpDay in FEffectiveHideDateTimeParts then
FTextPart[FDayPos] := ''
else
FTextPart[FDayPos] := '00';
for DTP := dtpHour to dtpAMPM do begin
if DTP in FEffectiveHideDateTimeParts then
FTimeText[DTP] := ''
else if DTP = dtpAMPM then
FTimeText[DTP] := 'XX'
else if DTP = dtpMiliSec then
FTimeText[DTP] := '999'
else
FTimeText[DTP] := '99';
end;
end else begin
DecodeDate(FDateTime, W[3], W[2], W[1]);
if dtpYear in FEffectiveHideDateTimeParts then
FTextPart[FYearPos] := ''
else if FLeadingZeros then
FTextPart[FYearPos] := RightStr('000' + IntToStr(W[3]), 4)
else
FTextPart[FYearPos] := IntToStr(W[3]);
if dtpMonth in FEffectiveHideDateTimeParts then
FTextPart[FMonthPos] := ''
else if FShowMonthNames then
FTextPart[FMonthPos] := FMonthNamesArray[W[2]]
else if FLeadingZeros then
FTextPart[FMonthPos] := RightStr('0' + IntToStr(W[2]), 2)
else
FTextPart[FMonthPos] := IntToStr(W[2]);
if dtpDay in FEffectiveHideDateTimeParts then
FTextPart[FDayPos] := ''
else if FLeadingZeros then
FTextPart[FDayPos] := RightStr('0' + IntToStr(W[1]), 2)
else
FTextPart[FDayPos] := IntToStr(W[1]);
DecodeTime(FDateTime, WT[dtpHour], WT[dtpMinute], WT[dtpSecond], WT[dtpMiliSec]);
if dtpAMPM in FEffectiveHideDateTimeParts then
FTimeText[dtpAMPM] := ''
else begin
if WT[dtpHour] < 12 then begin
FTimeText[dtpAMPM] := 'AM';
if WT[dtpHour] = 0 then
WT[dtpHour] := 12;
end else begin
FTimeText[dtpAMPM] := 'PM';
if WT[dtpHour] > 12 then
Dec(WT[dtpHour], 12);
end;
end;
for DTP := dtpHour to dtpMiliSec do begin
if DTP in FEffectiveHideDateTimeParts then
FTimeText[DTP] := ''
else if (DTP = dtpHour) and (not FLeadingZeros) then
FTimeText[DTP] := IntToStr(WT[dtpHour])
else if DTP = dtpMiliSec then
FTimeText[DTP] := RightStr('00' + IntToStr(WT[DTP]), 3)
else
FTimeText[DTP] := RightStr('0' + IntToStr(WT[DTP]), 2);
end;
end;
if HandleAllocated then
Invalidate;
end;
procedure TCustomDateTimePicker.DoEnter;
begin
inherited DoEnter;
Invalidate;
end;
procedure TCustomDateTimePicker.DoExit;
begin
inherited DoExit;
Invalidate;
end;
procedure TCustomDateTimePicker.Click;
begin
if FTextEnabled then
inherited Click;
end;
procedure TCustomDateTimePicker.DblClick;
begin
if FTextEnabled then
inherited DblClick;
end;
procedure TCustomDateTimePicker.MouseUp(Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
begin
if FTextEnabled then
inherited MouseUp(Button, Shift, X, Y);
end;
procedure TCustomDateTimePicker.KeyUp(var Key: Word; Shift: TShiftState);
begin
if FTextEnabled then
inherited KeyUp(Key, Shift);
end;
procedure TCustomDateTimePicker.UTF8KeyPress(var UTF8Key: TUTF8Char);
begin
if FTextEnabled then
inherited UTF8KeyPress(UTF8Key);
end;
procedure TCustomDateTimePicker.SelectDay;
begin
SelectDateTimePart(dtpDay);
end;
procedure TCustomDateTimePicker.SelectMonth;
begin
SelectDateTimePart(dtpMonth);
end;
procedure TCustomDateTimePicker.SelectYear;
begin
SelectDateTimePart(dtpYear);
end;
procedure TCustomDateTimePicker.SendExternalKey(const aKey: Char);
var
K: Word;
begin
if FTextEnabled then begin
if aKey in ['n', 'N'] then begin
K := VK_N;
CheckAndApplyKeyCode(K);
end else
CheckAndApplyKey(aKey);
end;
end;
procedure TCustomDateTimePicker.SendExternalKeyCode(const Key: Word);
var
Ch: Char;
K: Word;
begin
if Key in [Ord('0')..Ord('9'), Ord('a'), Ord('A'), Ord('p'), Ord('P')] then begin
if FTextEnabled then begin
Ch := Char(Key);
CheckAndApplyKey(Ch);
end;
end else begin
K := Key;
CheckAndApplyKeyCode(K);
end;
end;
procedure TCustomDateTimePicker.RemoveAllHandlersOfObject(AnObject: TObject);
begin
inherited RemoveAllHandlersOfObject(AnObject);
if Assigned(FOnChangeHandlers) then
FOnChangeHandlers.RemoveAllMethodsOfObject(AnObject);
if Assigned(FOnCheckBoxChangeHandlers) then
FOnCheckBoxChangeHandlers.RemoveAllMethodsOfObject(AnObject);
end;
procedure TCustomDateTimePicker.SelectHour;
begin
SelectDateTimePart(dtpHour);
end;
procedure TCustomDateTimePicker.SelectMinute;
begin
SelectDateTimePart(dtpMinute);
end;
procedure TCustomDateTimePicker.SelectSecond;
begin
SelectDateTimePart(dtpSecond);
end;
procedure TCustomDateTimePicker.SelectMiliSec;
begin
SelectDateTimePart(dtpMiliSec);
end;
procedure TCustomDateTimePicker.SelectAMPM;
begin
SelectDateTimePart(dtpAMPM);
end;
procedure TCustomDateTimePicker.SetEnabled(Value: Boolean);
begin
if GetEnabled <> Value then begin
inherited SetEnabled(Value);
CheckTextEnabled;
Invalidate;
end;
end;
procedure TCustomDateTimePicker.SetAutoSize(Value: Boolean);
begin
if AutoSize <> Value then begin
if Value then
InvalidatePreferredSize;
inherited SetAutoSize(Value);
end;
end;
// I had to override CreateWnd, because in design time on Linux Lazarus crashes
// if we try to do anchoring of child controls in constructor.
// Therefore, I needed to ensure that controls anchoring does not take place
// before CreateWnd has done. So, I moved all anchoring code to a procedure
// ArrangeCtrls and introduced a boolean field FDoNotArrangeControls which
// prevents that code from executing before CreateWnd.
//!!! Later, I simplified the arranging procedure, so maybe it can be done now
// before window creation is done. It's better to leave this delay system,
// anyway -- we might change anchoring code again for some reason.
procedure TCustomDateTimePicker.CreateWnd;
begin
inherited CreateWnd;
if FDoNotArrangeControls then begin { This field is set to True in constructor.
Its purpose is to prevent control anchoring until this point. That's because
on Linux Lazarus crashes when control is dropped on form in designer if
particular anchoring code executes before CreateWnd has done its job. }
FDoNotArrangeControls := False;
ArrangeCtrls;
end;
end;
procedure TCustomDateTimePicker.SetDateTimeJumpMinMax(const AValue: TDateTime);
begin
FJumpMinMax := True;
try
SetDateTime(AValue);
finally
FJumpMinMax := False;
end;
end;
procedure TCustomDateTimePicker.ArrangeCtrls;
var
C: TControl;
begin
if not FDoNotArrangeControls then begin //Read the note above CreateWnd procedure.
DisableAlign;
try
if Assigned(FUpDown) then
C := FUpDown
else if Assigned(FArrowButton) then
C := FArrowButton
else
C := nil;
if Assigned(C) then begin
if IsRightToLeft then
C.Align := alLeft
else
C.Align := alRight;
C.BringToFront;
end;
CheckTextEnabled;
InvalidatePreferredSize;
AdjustSize;
Invalidate;
finally
EnableAlign;
end;
end;
end;
procedure TCustomDateTimePicker.Change;
begin
if Assigned(FOnChange) then
FOnChange(Self);
if FOnChangeHandlers<>nil then
FOnChangeHandlers.CallNotifyEvents(Self);
end;
procedure TCustomDateTimePicker.SelectDate;
begin
if (FSelectedTextPart > 3)
or (GetDateTimePartFromTextPart(FSelectedTextPart)
in FEffectiveHideDateTimeParts) then
FSelectedTextPart := 1;
if GetDateTimePartFromTextPart(FSelectedTextPart)
in FEffectiveHideDateTimeParts then
MoveSelectionLR(False);
Invalidate;
end;
procedure TCustomDateTimePicker.SelectTime;
begin
if (FSelectedTextPart < 4)
or (GetDateTimePartFromTextPart(FSelectedTextPart)
in FEffectiveHideDateTimeParts) then
FSelectedTextPart := 4;
if GetDateTimePartFromTextPart(FSelectedTextPart)
in FEffectiveHideDateTimeParts then
MoveSelectionLR(False);
Invalidate;
end;
procedure TCustomDateTimePicker.Paint;
var
I, M, N, K, L: Integer;
DD: Array[1..8] of Integer;
R: TRect;
SelectStep: 0..8;
TextStyle: TTextStyle;
DTP: TDateTimePart;
S: String;
const
CheckStates: array[Boolean, Boolean, Boolean] of TThemedButton = (
((tbCheckBoxUncheckedDisabled, tbCheckBoxUncheckedDisabled),
(tbCheckBoxCheckedDisabled, tbCheckBoxCheckedDisabled)),
((tbCheckBoxUncheckedNormal, tbCheckBoxUncheckedHot),
(tbCheckBoxCheckedNormal, tbCheckBoxCheckedHot)));
begin
if ClientRectNeedsInterfaceUpdate then // In Qt widgetset, this solves the
DoAdjustClientRectChange; // problem of dispositioned client rect.
if FRecalculatingTextSizesNeeded then begin
if AutoSize then begin
InvalidatePreferredSize;
AdjustSize;
end;
RecalculateTextSizesIfNeeded;
end;
TextStyle := Canvas.TextStyle;
Canvas.Brush.Style := bsSolid;
Canvas.Brush.Color := Color;
Canvas.FillRect(ClientRect);
R.TopLeft := GetTextOrigin;
M := 2 * R.Top + FTextHeight;
M := (ClientHeight - M) div 2;
Inc(R.Top, M);
R.Bottom := R.Top + FTextHeight;
TextStyle.Layout := tlCenter;
TextStyle.Wordbreak := False;
TextStyle.Opaque := False;
TextStyle.RightToLeft := IsRightToLeft;
if ShowCheckBox then
ThemeServices.DrawElement(Canvas.Handle,
ThemeServices.GetElementDetails(CheckStates[Enabled, Checked, FMouseInCheckBox]),
GetCheckBoxRect);
if DateIsNull and (FTextForNullDate <> '')
and (not (FTextEnabled and Focused)) then begin
if IsRightToLeft then begin
TextStyle.Alignment := taRightJustify;
R.Right := R.Left + FTextWidth;
R.Left := 0;
end else begin
TextStyle.Alignment := taLeftJustify;
R.Right := Width;
end;
if FTextEnabled then
Canvas.Font.Color := Font.Color
else
Canvas.Font.Color := clGrayText;
Canvas.TextRect(R, R.Left, R.Top, FTextForNullDate, TextStyle);
end else begin
TextStyle.Alignment := taRightJustify;
SelectStep := 0;
if FTextEnabled then begin
Canvas.Font.Color := Font.Color;
if Focused then
SelectStep := FSelectedTextPart;
end else begin
Canvas.Font.Color := clGrayText;
end;
if dtpYear in FEffectiveHideDateTimeParts then begin
DD[FYearPos] := 0;
M := 4;
L := 0;
end else begin
DD[FYearPos] := 4 * FDigitWidth;
M := FYearPos;
L := FYearPos;
end;
if dtpMonth in FEffectiveHideDateTimeParts then
DD[FMonthPos] := 0
else begin
if FShowMonthNames then
DD[FMonthPos] := FMonthWidth
else
DD[FMonthPos] := 2 * FDigitWidth;
if FMonthPos < M then
M := FMonthPos;
if FMonthPos > L then
L := FMonthPos;
end;
if dtpDay in FEffectiveHideDateTimeParts then
DD[FDayPos] := 0
else begin
DD[FDayPos] := 2 * FDigitWidth;
if FDayPos < M then
M := FDayPos;
if FDayPos > L then
L := FDayPos;
end;
N := 3;
K := 3;
for DTP := dtpHour to dtpAMPM do begin
I := Ord(DTP) + 1;
if DTP in FEffectiveHideDateTimeParts then
DD[I] := 0
else if DTP = dtpAMPM then begin
DD[I] := FAMPMWidth;
N := I;
end else begin
if DTP = dtpMiliSec then
DD[I] := 3 * FDigitWidth
else
DD[I] := 2 * FDigitWidth;
if K < I then
K := I;
end;
if N < K then
N := K;
end;
for I := M to N do begin
if DD[I] <> 0 then begin
R.Right := R.Left + DD[I];
if I <= 3 then begin
if (I = FMonthPos) and FShowMonthNames then begin
TextStyle.Alignment := taCenter;
if DateIsNull then
S := FNullMonthText
else
S := FTextPart[I];
end else
S := FTextPart[I];
end else
S := FTimeText[TDateTimePart(I - 1)];
if I = SelectStep then begin
TextStyle.Opaque := True;
Canvas.Brush.Color := clHighlight;
Canvas.Font.Color := clHighlightText;
Canvas.TextRect(R, R.Left, R.Top, S, TextStyle);
TextStyle.Opaque := False;
Canvas.Brush.Color := Color;
Canvas.Font.Color := Self.Font.Color;
end else
Canvas.TextRect(R, R.Left, R.Top, S, TextStyle);
TextStyle.Alignment := taRightJustify;
R.Left := R.Right;
if I < L then begin
R.Right := R.Left + FSeparatorWidth;
if not ((I = FMonthPos) and FShowMonthNames) then
Canvas.TextRect(R, R.Left, R.Top, FDateSeparator, TextStyle);
end else if I > L then begin
if I = K then begin
R.Right := R.Left + FDigitWidth;
end else if I < K then begin
R.Right := R.Left + FTimeSeparatorWidth;
Canvas.TextRect(R, R.Left, R.Top, FTimeSeparator, TextStyle);
end;
end else begin
if FTrailingSeparator then begin
R.Right := R.Left + FSepNoSpaceWidth;
Canvas.TextRect(R, R.Left, R.Top,
TrimRight(FDateSeparator), TextStyle);
end;
if FTimeWidth > 0 then
R.Right := R.Right + 2 * FDigitWidth;
end;
R.Left := R.Right;
end;
end;
end;
inherited Paint;
end;
procedure TCustomDateTimePicker.EditingDone;
begin
if FNoEditingDone <= 0 then begin
ConfirmChanges;
inherited EditingDone;
end;
end;
procedure TCustomDateTimePicker.ArrowMouseDown(Sender: TObject;
Button: TMouseButton; Shift: TShiftState; X, Y: Integer);
begin
DropDownCalendarForm;
end;
procedure TCustomDateTimePicker.UpDownClick(Sender: TObject;
Button: TUDBtnType);
begin
SetFocusIfPossible;
if not FReadOnly then begin
Inc(FUserChanging);
try
if Button = btNext then
IncreaseCurrentTextPart
else
DecreaseCurrentTextPart;
finally
Dec(FUserChanging);
end;
end;
end;
procedure TCustomDateTimePicker.DoDropDown;
begin
if Assigned(FOnDropDown) then
FOnDropDown(Self);
end;
procedure TCustomDateTimePicker.DoCloseUp;
begin
if Assigned(FOnCloseUp) then
FOnCloseUp(Self);
end;
function TCustomDateTimePicker.GetChecked: Boolean;
begin
Result := not FShowCheckBox or FChecked;
end;
function TCustomDateTimePicker.AreSeparatorsStored: Boolean;
begin
Result := not FUseDefaultSeparators;
end;
function TCustomDateTimePicker.GetDate: TDate;
begin
if DateIsNull then
Result := NullDate
else
Result := Int(FDateTime);
end;
function TCustomDateTimePicker.GetDateTime: TDateTime;
begin
if DateIsNull then
Result := NullDate
else
Result := FDateTime;
end;
function TCustomDateTimePicker.GetDroppedDown: Boolean;
begin
Result := Assigned(FCalendarForm);
end;
function TCustomDateTimePicker.GetTime: TTime;
begin
if DateIsNull then
Result := NullDate
else
Result := Abs(Frac(FDateTime));
end;
procedure TCustomDateTimePicker.SetArrowShape(const AValue: TArrowShape);
begin
if FArrowShape = AValue then Exit;
FArrowShape := AValue;
if FArrowButton<>nil then
FArrowButton.Invalidate;
end;
const
DefaultUpDownWidth = 15;
DefaultArrowButtonWidth = DefaultUpDownWidth + 2;
procedure TCustomDateTimePicker.SetAutoButtonSize(AValue: Boolean);
begin
if FAutoButtonSize <> AValue then begin
FAutoButtonSize := AValue;
if AValue then
AutoResizeButton
else begin
if Assigned(FUpDown) then
FUpDown.Width := DefaultUpDownWidth
else if Assigned(FArrowButton) then
FArrowButton.Width := DefaultArrowButtonWidth;
end;
end;
end;
procedure TCustomDateTimePicker.SetCalAlignment(AValue: TDTCalAlignment);
begin
if FCalAlignment = AValue then Exit;
FCalAlignment := AValue;
end;
procedure TCustomDateTimePicker.SetCalendarWrapperClass(
AValue: TCalendarControlWrapperClass);
begin
if FCalendarWrapperClass = AValue then Exit;
FCalendarWrapperClass := AValue;
end;
procedure TCustomDateTimePicker.SetCenturyFrom(const AValue: Word);
begin
if FCenturyFrom = AValue then Exit;
FCenturyFrom := AValue;
AdjustEffectiveCenturyFrom;
end;
procedure TCustomDateTimePicker.CheckBoxChange;
begin
if Assigned(FOnCheckBoxChange) then
FOnCheckBoxChange(Self);
if FOnCheckBoxChangeHandlers<>nil then
FOnCheckBoxChangeHandlers.CallNotifyEvents(Self);
end;
procedure TCustomDateTimePicker.SetFocusIfPossible;
var
F: TCustomForm;
begin
Inc(FNoEditingDone);
try
F := GetParentForm(Self);
if Assigned(F) and F.CanFocus and CanTab then
SetFocus;
finally
Dec(FNoEditingDone);
end;
end;
procedure TCustomDateTimePicker.AutoResizeButton;
begin
if Assigned(FArrowButton) then
FArrowButton.Width := MulDiv(ClientHeight, 9, 10)
else if Assigned(FUpDown) then
FUpDown.Width := MulDiv(ClientHeight, 79, 100);
end;
procedure TCustomDateTimePicker.CheckAndApplyKey(const Key: Char);
var
S: String;
DTP: TDateTimePart;
N, L: Integer;
YMD: TYMD;
HMSMs: THMSMs;
D, T: TDateTime;
Finished, ForceChange: Boolean;
begin
if (not FReadOnly) then begin
Finished := False;
ForceChange := False;
if FSelectedTextPart = 8 then begin
case upCase(Key) of
'A': S := 'AM';
'P': S := 'PM';
else
Finished := True;
end;
ForceChange := True;
end else if Key in ['0'..'9'] then begin
DTP := GetSelectedDateTimePart;
if DTP = dtpYear then
N := 4
else if DTP = dtpMiliSec then
N := 3
else
N := 2;
S := Trim(GetSelectedText);
if FUserChangedText and (Length(S) < N) then
S := S + Key
else
S := Key;
if (Length(S) >= N) then begin
FCorrectedDTP := dtpAMPM;
L := StrToInt(S);
if DTP < dtpHour then begin
YMD := GetYYYYMMDD(True);
case DTP of
dtpDay: YMD.Day := L;
dtpMonth: YMD.Month := L;
dtpYear: YMD.Year := L;
end;
if AutoAdvance and (YMD.Day <= 31) and
(YMD.Day > NumberOfDaysInMonth(YMD.Month, YMD.Year)) then begin
case DTP of
dtpDay:
case FEffectiveDateDisplayOrder of
ddoDMY: begin
FCorrectedValue := YMD.Month + 1;
FCorrectedDTP := dtpMonth;
end;
ddoMDY:
FCorrectedDTP := dtpYear;
end;
dtpMonth:
case FEffectiveDateDisplayOrder of
ddoMDY, ddoYMD: begin
FCorrectedValue := NumberOfDaysInMonth(YMD.Month, YMD.Year);
FCorrectedDTP := dtpDay;
end;
ddoDMY:
FCorrectedDTP := dtpYear;
end;
dtpYear:
if (FEffectiveDateDisplayOrder = ddoYMD) and (YMD.Month = 2)
and (YMD.Day = 29) and not IsLeapYear(YMD.Year) then begin
FCorrectedValue := YMD.Month + 1;
FCorrectedDTP := dtpMonth;
end;
end;
case FCorrectedDTP of
dtpDay:
YMD.Day := FCorrectedValue;
dtpMonth:
YMD.Month := FCorrectedValue;
dtpYear:
if (YMD.Day = 29) and (YMD.Month = 2) then begin
while not IsLeapYear(YMD.Year) do
Inc(YMD.Year);
FCorrectedValue := YMD.Year;
end;
end;
end;
if TryEncodeDate(YMD.Year, YMD.Month, YMD.Day, D)
and (D >= MinDate) and (D <= MaxDate) then
ForceChange := True
else if N = 4 then begin
UpdateDate;
Finished := True;
end else
S := Key;
end else begin
if (DTP = dtpHour) and (FTimeFormat = tf12) then begin
if not (L in [1..12]) then
S := Key
else
ForceChange := True;
end else begin
HMSMs := GetHMSMs(True);
case DTP of
dtpHour: HMSMs.Hour := L;
dtpMinute: HMSMs.Minute := L;
dtpSecond: HMSMs.Second := L;
dtpMiliSec: HMSMs.MiliSec := L;
end;
if not TryEncodeTime(HMSMs.Hour, HMSMs.Minute, HMSMs.Second,
HMSMs.MiliSec, T) then
S := Key
else
ForceChange := True;
end;
end;
end;
end else
Finished := True;
if (not Finished) and (GetSelectedText <> S) then begin
if (not FUserChangedText) and DateIsNull then
if FSelectedTextPart <= 3 then
DateTime := SysUtils.Date
else
DateTime := SysUtils.Now;
if (not FLeadingZeros) and (FSelectedTextPart <= 4) then
while (Length(S) > 1) and (S[1] = '0') do
Delete(S, 1, 1);
if FSelectedTextPart <= 3 then
FTextPart[FSelectedTextPart] := S
else
FTimeText[TDateTimePart(FSelectedTextPart - 1)] := S;
FUserChangedText := True;
if ForceChange then begin
if FAutoAdvance then begin
MoveSelectionLR(False);
Invalidate;
end else
UpdateIfUserChangedText;
end else
Invalidate;
DoAutoCheck;
end;
FCorrectedDTP := dtpAMPM;
end;
end;
procedure TCustomDateTimePicker.CheckAndApplyKeyCode(var Key: Word);
var
K: Word;
begin
if (Key = VK_SPACE) then begin
if ShowCheckBox then
Checked := not Checked;
end else if FTextEnabled then begin
case Key of
VK_LEFT, VK_RIGHT, VK_OEM_COMMA, VK_OEM_PERIOD, VK_DIVIDE,
VK_OEM_MINUS, VK_SEPARATOR, VK_DECIMAL, VK_SUBTRACT:
begin
K := Key;
Key := 0;
MoveSelectionLR(K = VK_LEFT);
Invalidate;
end;
VK_UP:
begin
Key := 0;
UpdateIfUserChangedText;
if not FReadOnly then
begin
IncreaseCurrentTextPart;
DoAutoCheck;
end;
end;
VK_DOWN:
begin
Key := 0;
UpdateIfUserChangedText;
if not FReadOnly then
begin
DecreaseCurrentTextPart;
DoAutoCheck;
end;
end;
VK_RETURN:
if not FReadOnly then
EditingDone;
VK_ESCAPE:
if not FReadOnly then begin
UndoChanges;
EditingDone;
end;
VK_N:
if (not FReadOnly) and FNullInputAllowed then
SetDateTime(NullDate);
end;
end;
end;
procedure TCustomDateTimePicker.WMKillFocus(var Message: TLMKillFocus);
begin
// On Qt it seems that WMKillFocus happens even when focus jumps to some other
// form. This behaviour differs from win and gtk 2 (where it happens only when
// focus jumps to other control on the same form) and we should prevent it at
// least for our calendar, because it triggers EditingDone.
if Screen.ActiveCustomForm <> FCalendarForm then
inherited WMKillFocus(Message);
end;
procedure TCustomDateTimePicker.WMSize(var Message: TLMSize);
begin
inherited WMSize(Message);
if FAutoButtonSize then
AutoResizeButton;
end;
procedure TCustomDateTimePicker.DropDownCalendarForm;
begin
SetFocusIfPossible;
if FAllowDroppingCalendar then begin
if not (FReadOnly or Assigned(FCalendarForm)
or (csDesigning in ComponentState)) then begin
FCalendarForm := TDTCalendarForm.CreateNewDTCalendarForm(nil, Self);
FCalendarForm.Show;
end;
end else begin
DestroyCalendarForm;
FAllowDroppingCalendar := True;
end;
end;
{ TDTUpDown }
{ When our UpDown control gets enabled/disabled, the two its buttons' Enabled
property is set accordingly. }
procedure TDTUpDown.SetEnabled(Value: Boolean);
procedure SetEnabledForAllChildren(AWinControl: TWinControl);
var
I: Integer;
C: TControl;
begin
for I := 0 to AWinControl.ControlCount - 1 do begin
C := AWinControl.Controls[I];
C.Enabled := Value;
if C is TWinControl then
SetEnabledForAllChildren(TWinControl(C));
end;
end;
begin
inherited SetEnabled(Value);
SetEnabledForAllChildren(Self);
end;
{ Our UpDown control is always alligned, but setting its PreferredHeight
uncoditionally to 1 prevents the UpDown to mess with our PreferredHeight.
The problem is that if we didn't do this, when our Height is greater than
really preffered, UpDown prevents it to be set correctly when we set AutoSize
to True. }
procedure TDTUpDown.CalculatePreferredSize(var PreferredWidth, PreferredHeight:
integer; WithThemeSpace: Boolean);
begin
inherited CalculatePreferredSize(PreferredWidth, PreferredHeight,
WithThemeSpace);
PreferredHeight := 1;
end;
{ We don't want to let EditingDone event to fire each time up-down buttons get
clicked. That is why WndProc is overriden. }
procedure TDTUpDown.WndProc(var Message: TLMessage);
begin
if ((Message.msg >= LM_MOUSEFIRST) and (Message.msg <= LM_MOUSELAST))
or ((Message.msg >= LM_MOUSEFIRST2) and (Message.msg <= LM_MOUSELAST2)) then begin
Inc(DTPicker.FNoEditingDone);
try
inherited WndProc(Message);
finally
Dec(DTPicker.FNoEditingDone);
end
end else
inherited WndProc(Message);
end;
{ TDTSpeedButton }
{ See the coment above TDTUpDown.CalculatePreferredSize }
procedure TDTSpeedButton.CalculatePreferredSize(var PreferredWidth,
PreferredHeight: integer; WithThemeSpace: Boolean);
begin
inherited CalculatePreferredSize(PreferredWidth, PreferredHeight,
WithThemeSpace);
PreferredHeight := 1;
end;
{ Prevent EditingDone to fire whenever the SpeedButton gets clicked }
procedure TDTSpeedButton.MouseDown(Button: TMouseButton; Shift: TShiftState; X,
Y: Integer);
begin
Inc(DTPicker.FNoEditingDone);
try
inherited MouseDown(Button, Shift, X, Y);
finally
Dec(DTPicker.FNoEditingDone);
end;
end;
procedure TDTSpeedButton.Paint;
procedure DrawDropDownArrow(const Canvas: TCanvas; const DropDownButtonRect: TRect);
var
Details: TThemedElementDetails;
ArrowState: TThemedToolBar;
ASize: TSize;
ARect: TRect;
begin
if Enabled then
ArrowState := ttbSplitButtonDropDownNormal
else
ArrowState := ttbSplitButtonDropDownDisabled;
Details := ThemeServices.GetElementDetails(ArrowState);
ASize := ThemeServices.GetDetailSize(Details);
ARect := DropDownButtonRect;
InflateRect(ARect, -(ARect.Right-ARect.Left-ASize.cx) div 2, 0);
ThemeServices.DrawElement(Canvas.Handle, Details, ARect);
end;
const
ArrowColor = TColor($8D665A);
var
X, Y: Integer;
begin
inherited Paint;
// First I ment to put arrow images in a lrs file. In my opinion, however, that
// wouldn't be an elegant option for so simple shapes.
Canvas.Brush.Style := bsSolid;
Canvas.Pen.Color := ArrowColor;
Canvas.Brush.Color := Canvas.Pen.Color;
X := (Width-9) div 2;
Y := (Height-6) div 2;
{ Let's draw shape of the arrow on the button: }
case DTPicker.FArrowShape of
asTheme:
DrawDropDownArrow(Canvas, Rect(0, 0, Width, Height));
asClassicLarger:
{ triangle: }
Canvas.Polygon([Point(X+0, Y+1), Point(X+8, Y+1),
Point(X+4, Y+5)]);
asClassicSmaller:
{ triangle -- smaller variant: }
Canvas.Polygon([Point(X+1, Y+2), Point(X+7, Y+2),
Point(X+4, Y+5)]);
asModernLarger:
{ modern: }
Canvas.Polygon([Point(X+0, Y+1), Point(X+1, Y+0),
Point(X+4, Y+3), Point(X+7, Y+0), Point(X+8, Y+1), Point(X+4, Y+5)]);
asModernSmaller:
{ modern -- smaller variant: }
Canvas.Polygon([Point(X+1, Y+2), Point(X+2, Y+1),
Point(X+4, Y+3), Point(X+6, Y+1), Point(X+7, Y+2), Point(X+4, Y+5)]);
asYetAnotherShape:
{ something in between, not very pretty: }
Canvas.Polygon([Point(X+0, Y+1), Point(X+1, Y+0),
Point(X+2, Y+1), Point(X+6, Y+1),Point(X+7, Y+0), Point(X+8, Y+1), Point(X+4, Y+5)]);
end;
end;
procedure TCustomDateTimePicker.UpdateShowArrowButton;
procedure CreateArrowBtn;
begin
if not Assigned(FArrowButton) then begin
DestroyCalendarForm;
DestroyUpDown;
FArrowButton := TDTSpeedButton.Create(Self);
FArrowButton.ControlStyle := FArrowButton.ControlStyle +
[csNoFocus, csNoDesignSelectable];
FArrowButton.Flat := dtpoFlatButton in Options;
TDTSpeedButton(FArrowButton).DTPicker := Self;
FArrowButton.SetBounds(0, 0, DefaultArrowButtonWidth, 1);
FArrowButton.Parent := Self;
FAllowDroppingCalendar := True;
TDTSpeedButton(FArrowButton).OnMouseDown := @ArrowMouseDown;
end;
end;
procedure CreateUpDown;
begin
if not Assigned(FUpDown) then begin
DestroyArrowBtn;
FUpDown := TDTUpDown.Create(Self);
FUpDown.ControlStyle := FUpDown.ControlStyle +
[csNoFocus, csNoDesignSelectable];
TDTUpDown(FUpDown).DTPicker := Self;
TDTUpDown(FUpDown).Flat := dtpoFlatButton in Options;
FUpDown.SetBounds(0, 0, DefaultUpDownWidth, 1);
FUpDown.Parent := Self;
TDTUpDown(FUPDown).OnClick := @UpDownClick;
end;
end;
var
ReallyShowArrowButton: Boolean;
begin
if FDateMode = dmNone then begin
DestroyArrowBtn;
DestroyUpDown;
end else begin
ReallyShowArrowButton := (FDateMode = dmComboBox) and
not (dtpDay in FEffectiveHideDateTimeParts);
if (ReallyShowArrowButton <> Assigned(FArrowButton)) or
(Assigned(FArrowButton) = Assigned(FUpDown)) then begin
DisableAlign;
try
if ReallyShowArrowButton then
CreateArrowBtn
else
CreateUpDown;
ArrangeCtrls;
finally
EnableAlign;
end;
end;
end;
end;
procedure TCustomDateTimePicker.DestroyUpDown;
begin
if Assigned(FUpDown) then begin
TDTUpDown(FUPDown).OnClick := nil;
FreeAndNil(FUpDown);
end;
end;
procedure TCustomDateTimePicker.DoAutoCheck;
begin
if ShowCheckBox and not Checked and (dtpoAutoCheck in Options) then
Checked := True;
end;
procedure TCustomDateTimePicker.DestroyArrowBtn;
begin
if Assigned(FArrowButton) then begin
TDTSpeedButton(FArrowButton).OnMouseDown := nil;
DestroyCalendarForm;
FreeAndNil(FArrowButton);
end;
end;
constructor TCustomDateTimePicker.Create(AOwner: TComponent);
var
I: Integer;
DTP: TDateTimePart;
begin
inherited Create(AOwner);
with GetControlClassDefaultSize do
SetInitialBounds(0, 0, cx, cy);
FCalAlignment := dtaDefault;
FCorrectedDTP := dtpAMPM;
FCorrectedValue := 0;
FSkipChangeInUpdateDate := 0;
FNoEditingDone := 0;
FArrowShape := asTheme;
FAllowDroppingCalendar := True;
FChecked := True;
FOnDropDown := nil;
FOnCloseUp := nil;
ParentColor := False;
FArrowButton := nil;
FUpDown := nil;
FKind := dtkDate;
FNullInputAllowed := True;
FOptions := cDefOptions;
{ Thanks to Luiz Américo for this:
Lazarus ignores empty string when saving to lrs. Therefore, the problem
is, when TextForNullDate is set to an empty string and after the project
is saved and opened again, then, this property gets default value NULL
instead of empty string. The following condition seems to be a workaround
for this. }
if (AOwner = nil) or not (csReading in Owner.ComponentState) then
FTextForNullDate := 'NULL';
FCenturyFrom := 1941;
FRecalculatingTextSizesNeeded := True;
FOnChange := nil;
FOnCheckBoxChange := nil;
FSeparatorWidth := 0;
FSepNoSpaceWidth := 0;
FDigitWidth := 0;
FTimeSeparatorWidth := 0;
FAMPMWidth := 0;
FDateWidth := 0;
FTimeWidth := 0;
FTextWidth := 0;
FTextHeight := 0;
FMonthWidth := 0;
FHideDateTimeParts := [];
FShowMonthNames := False;
FNullMonthText := '';
for I := Low(FTextPart) to High(FTextPart) do
FTextPart[I] := '';
for DTP := dtpHour to dtpAMPM do
FTimeText[DTP] := '';
FTimeDisplay := tdHMS;
FTimeFormat := tf24;
FLeadingZeros := True;
FUserChanging := 0;
FReadOnly := False;
FDateTime := SysUtils.Now;
FConfirmedDateTime := FDateTime;
FMinDate := TheSmallestDate;
FMaxDate := TheBiggestDate;
FTrailingSeparator := False;
FDateDisplayOrder := ddoTryDefault;
FSelectedTextPart := 1;
FUseDefaultSeparators := True;
FDateSeparator := DefaultFormatSettings.DateSeparator;
FTimeSeparator := DefaultFormatSettings.TimeSeparator;
FEffectiveCenturyFrom := FCenturyFrom;
FJumpMinMax := False;
ParentColor := False;
TabStop := True;
BorderWidth := 2;
BorderStyle := bsSingle;
ParentFont := True;
AutoSize := True;
FTextEnabled := True;
FCalendarForm := nil;
FDoNotArrangeControls := True;
FCascade := False;
FAutoButtonSize := False;
FAutoAdvance := True;
FCalendarWrapperClass := nil;
FEffectiveHideDateTimeParts := [];
AdjustEffectiveDateDisplayOrder;
AdjustEffectiveHideDateTimeParts;
SetMonthNames('Long');
SetDateMode(dmComboBox);
end;
procedure TCustomDateTimePicker.AddHandlerOnChange(
const AOnChange: TNotifyEvent; AsFirst: Boolean);
begin
if FOnChangeHandlers=nil then
FOnChangeHandlers := TMethodList.Create;
FOnChangeHandlers.Add(TMethod(AOnChange), not AsFirst);
end;
procedure TCustomDateTimePicker.AddHandlerOnCheckBoxChange(
const AOnCheckBoxChange: TNotifyEvent; AsFirst: Boolean);
begin
if FOnCheckBoxChangeHandlers=nil then
FOnCheckBoxChangeHandlers := TMethodList.Create;
FOnCheckBoxChangeHandlers.Add(TMethod(AOnCheckBoxChange), not AsFirst);
end;
procedure TCustomDateTimePicker.RemoveHandlerOnChange(AOnChange: TNotifyEvent);
begin
if Assigned(FOnChangeHandlers) then
FOnChangeHandlers.Remove(TMethod(AOnChange));
end;
procedure TCustomDateTimePicker.RemoveHandlerOnCheckBoxChange(
AOnCheckBoxChange: TNotifyEvent);
begin
if Assigned(FOnCheckBoxChangeHandlers) then
FOnCheckBoxChangeHandlers.Remove(TMethod(AOnCheckBoxChange));
end;
destructor TCustomDateTimePicker.Destroy;
begin
FDoNotArrangeControls := True;
DestroyArrowBtn;
DestroyUpDown;
SetShowCheckBox(False);
FOnChangeHandlers.Free;
FOnCheckBoxChangeHandlers.Free;
inherited Destroy;
end;
function TCustomDateTimePicker.DateIsNull: Boolean;
begin
Result := IsNullDate(FDateTime);
end;
end.
|