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
|
{
Copyright (C) 2011 Felipe Monteiro de Carvalho
License: The same modifying LGPL with static linking exception as the LCL
This unit should be a repository for various custom drawn components,
such as a custom drawn version of TButton, of TEdit, of TPageControl, etc,
eventually forming a full set of custom drawn components.
}
unit CustomDrawnControls;
{$mode objfpc}{$H+}
interface
uses
// FPC
Classes, SysUtils, contnrs, Math, types,
// LazUtils
LazUTF8,
// LCL -> Use only TForm, TWinControl, TCanvas, TLazIntfImage
LCLType, LCLProc, LCLIntf, LCLMessageGlue, LMessages, Messages,
Forms, Graphics, Controls,
// Other LCL units are only for types
StdCtrls, ExtCtrls, ComCtrls, Buttons,
//
customdrawndrawers;
type
{ TCDControl }
TCDControl = class(TCustomControl)
protected
FDrawStyle: TCDDrawStyle;
FDrawer: TCDDrawer;
FState: TCDControlState;
FStateEx: TCDControlStateEx;
procedure CalculatePreferredSize(var PreferredWidth,
PreferredHeight: integer; WithThemeSpace: Boolean); override;
procedure SetState(const AValue: TCDControlState); virtual;
procedure PrepareCurrentDrawer(); virtual;
procedure SetDrawStyle(const AValue: TCDDrawStyle); virtual;
function GetClientRect: TRect; override;
function GetControlId: TCDControlID; virtual;
procedure CreateControlStateEx; virtual;
procedure PrepareControlState; virtual;
procedure PrepareControlStateEx; virtual;
// keyboard
procedure DoEnter; override;
procedure DoExit; override;
// mouse
procedure MouseEnter; override;
procedure MouseLeave; override;
procedure MouseDown(Button: TMouseButton; Shift: TShiftState;
X, Y: integer); override;
//
property DrawStyle: TCDDrawStyle read FDrawStyle write SetDrawStyle;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
procedure LCLWSCalculatePreferredSize(var PreferredWidth,
PreferredHeight: integer; WithThemeSpace, AAutoSize, AAllowUseOfMeasuresEx: Boolean);
procedure EraseBackground(DC: HDC); override;
procedure Paint; override;
// Methods for use by LCL-CustomDrawn
procedure DrawToCanvas(ACanvas: TCanvas);
end;
TCDControlClass = class of TCDControl;
TCDScrollBar = class;
{ TCDScrollableControl }
TCDScrollableControl = class(TCDControl)
private
FRightScrollBar, FBottomScrollBar: TCDScrollBar;
FSpacer: TCDControl;
FScrollBars: TScrollStyle;
procedure SetScrollBars(AValue: TScrollStyle);
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
property ScrollBars: TScrollStyle read FScrollBars write SetScrollBars;
end;
// ===================================
// Standard Tab
// ===================================
{ TCDButtonControl }
TCDButtonControl = class(TCDControl)
protected
// This fields are set by descendents
FHasOnOffStates: Boolean;
FIsGrouped: Boolean;
FGroupIndex: Integer;
FAllowGrayed: Boolean;
// keyboard
procedure KeyDown(var Key: word; Shift: TShiftState); override;
procedure KeyUp(var Key: word; Shift: TShiftState); override;
// mouse
procedure MouseDown(Button: TMouseButton; Shift: TShiftState;
X, Y: integer); override;
procedure MouseUp(Button: TMouseButton; Shift: TShiftState; X, Y: integer); override;
procedure MouseEnter; override;
procedure MouseLeave; override;
// button state change
procedure DoUncheckButton(); virtual;
procedure DoCheckIfFirstButtonInGroup();
procedure DoButtonDown(); virtual;
procedure DoButtonUp(); virtual;
procedure RealSetText(const Value: TCaption); override;
function GetChecked: Boolean;
procedure SetChecked(AValue: Boolean);
function GetCheckedState: TCheckBoxState;
procedure SetCheckedState(AValue: TCheckBoxState);
// properties
property AllowGrayed: Boolean read FAllowGrayed write FAllowGrayed default False;
property Checked: Boolean read GetChecked write SetChecked default False;
//property Down: Boolean read GetDown write SetDown;
property State: TCheckBoxState read GetCheckedState write SetCheckedState default cbUnchecked;
public
end;
{ TCDButton }
TCDButton = class(TCDButtonControl)
private
FGlyph: TBitmap;
FKind: TBitBtnKind;
FModalResult: TModalResult;
procedure SetModalResult(const AValue: TModalResult);
procedure SetGlyph(AValue: TBitmap);
procedure SetKind(AKind: TBitBtnKind);
protected
FBState: TCDButtonStateEx;
procedure Click; override;
function GetControlId: TCDControlID; override;
procedure CreateControlStateEx; override;
procedure PrepareControlStateEx; override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
published
property Action;
property Align;
property Anchors;
property AutoSize;
property Caption;
property Color;
property Constraints;
property DrawStyle;
property Enabled;
property Font;
property Glyph: TBitmap read FGlyph write SetGlyph;
property Kind: TBitBtnKind read FKind write SetKind default bkCustom;
// property IsToggleBox: Boolean read FGlyph write SetGlyph;
property ModalResult: TModalResult read FModalResult write SetModalResult default mrNone;
property OnChangeBounds;
property OnClick;
property OnContextPopup;
property OnDragDrop;
property OnDragOver;
property OnEndDrag;
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 OnStartDrag;
property OnUTF8KeyPress;
property ParentFont;
property ParentShowHint;
property PopupMenu;
property ShowHint;
property TabOrder;
property TabStop;
property Visible;
end;
{ TCDEdit }
TCDEdit = class(TCDControl)
private
DragDropStarted: boolean;
FCaretTimer: TTimer;
FLines: TStrings;
FOnChange: TNotifyEvent;
FReadOnly: Boolean;
function GetCaretPos: TPoint;
function GetLeftTextMargin: Integer;
function GetMultiLine: Boolean;
function GetRightTextMargin: Integer;
function GetText: string;
function GetPasswordChar: Char;
procedure HandleCaretTimer(Sender: TObject);
procedure DoDeleteSelection;
procedure DoClearSelection;
procedure DoManageVisibleTextStart;
procedure SetCaretPost(AValue: TPoint);
procedure SetLeftTextMargin(AValue: Integer);
procedure SetLines(AValue: TStrings);
procedure SetMultiLine(AValue: Boolean);
procedure SetRightTextMargin(AValue: Integer);
procedure SetText(AValue: string);
procedure SetPasswordChar(AValue: Char);
function MousePosToCaretPos(X, Y: Integer): TPoint;
function IsSomethingSelected: Boolean;
protected
FEditState: TCDEditStateEx; // Points to the same object as FStateEx, so don't Free!
function GetControlId: TCDControlID; override;
procedure CreateControlStateEx; override;
procedure RealSetText(const Value: TCaption); override; // to update on caption changes, don't change this as it might break descendents
// for descendents to override
procedure DoChange; virtual;
// keyboard
procedure DoEnter; override;
procedure DoExit; override;
procedure KeyDown(var Key: word; Shift: TShiftState); override;
procedure KeyUp(var Key: word; Shift: TShiftState); override;
procedure UTF8KeyPress(var UTF8Key: TUTF8Char); override;
// mouse
procedure MouseDown(Button: TMouseButton; Shift: TShiftState;
X, Y: integer); override;
procedure MouseMove(Shift: TShiftState; X, Y: integer); override;
procedure MouseUp(Button: TMouseButton; Shift: TShiftState; X, Y: integer); override;
procedure MouseEnter; override;
procedure MouseLeave; override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
function GetCurrentLine(): string;
procedure SetCurrentLine(AStr: string);
property LeftTextMargin: Integer read GetLeftTextMargin write SetLeftTextMargin;
property RightTextMargin: Integer read GetRightTextMargin write SetRightTextMargin;
// selection info in a format compatible with TEdit
function GetSelStartX: Integer;
function GetSelLength: Integer;
procedure SetSelStartX(ANewX: Integer);
procedure SetSelLength(ANewLength: Integer);
property CaretPos: TPoint read GetCaretPos write SetCaretPost;
published
property Align;
property Anchors;
property AutoSize;
property Color;
property DrawStyle;
property Enabled;
property Lines: TStrings read FLines write SetLines;
property MultiLine: Boolean read GetMultiLine write SetMultiLine default False;
property PasswordChar: Char read GetPasswordChar write SetPasswordChar default #0;
property ReadOnly: Boolean read FReadOnly write FReadOnly default False;
property TabStop default True;
property Text : string read GetText write SetText stored false; // This is already stored in Lines
property OnChange: TNotifyEvent read FOnChange write FOnChange;
end;
{ TCDCheckBox }
TCDCheckBox = class(TCDButtonControl)
protected
function GetControlId: TCDControlID; override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
published
property AllowGrayed default False;
property Checked;
property DrawStyle;
property Caption;
property Enabled;
property TabStop default True;
property State;
end;
{ TCDRadioButton }
TCDRadioButton = class(TCDButtonControl)
protected
function GetControlId: TCDControlID; override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
published
property Caption;
property Checked;
property DrawStyle;
property Enabled;
property TabStop default True;
end;
TKeyboardInputBehavior = (kibAutomatic, kibRequires, kibDoesntRequire);
{ TCDComboBox }
TCDComboBox = class(TCDEdit)
private
FIsClickingButton: Boolean;
FItemIndex: Integer;
FItems: TStrings;
FKeyboardInputBehavior: TKeyboardInputBehavior;
function GetItems: TStrings;
procedure OnShowSelectItemDialogResult(ASelectedItem: Integer);
procedure SetItemIndex(AValue: Integer);
procedure SetItems(AValue: TStrings);
procedure SetKeyboardInputBehavior(AValue: TKeyboardInputBehavior);
protected
function GetControlId: TCDControlID; override;
// mouse
procedure MouseDown(Button: TMouseButton; Shift: TShiftState;
X, Y: integer); override;
procedure MouseUp(Button: TMouseButton; Shift: TShiftState; X, Y: integer); override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
published
property Items: TStrings read GetItems write SetItems;
property ItemIndex: Integer read FItemIndex write SetItemIndex;
// This allows controlling the virtual keyboard behavior, mostly for Android
property KeyboardInputBehavior: TKeyboardInputBehavior read FKeyboardInputBehavior write SetKeyboardInputBehavior;
end;
{ TCDPositionedControl }
TCDPositionedControl = class(TCDControl)
private
DragDropStarted: boolean;
FLastMouseDownPos: TPoint;
FPositionAtMouseDown: Integer;
FButton: TCDControlState; // the button currently being clicked
FBtnClickTimer: TTimer;
// fields
FMax: Integer;
FMin: Integer;
FOnChange, FOnChangeByUser: TNotifyEvent;
FPageSize: Integer;
FPosition: Integer;
procedure SetMax(AValue: Integer);
procedure SetMin(AValue: Integer);
procedure SetPageSize(AValue: Integer);
procedure SetPosition(AValue: Integer);
procedure DoClickButton(AButton: TCDControlState; ALargeChange: Boolean);
procedure HandleBtnClickTimer(ASender: TObject);
protected
FSmallChange, FLargeChange: Integer;
FPCState: TCDPositionedCStateEx;
// One can either move by dragging the slider
// or by putting the slider where the mouse is
FMoveByDragging: Boolean;
function GetPositionFromMousePosWithMargins(X, Y, ALeftMargin, ARightMargin: Integer;
AIsHorizontal, AAcceptMouseOutsideStrictArea: Boolean): integer;
function GetPositionFromMousePos(X, Y: Integer): integer; virtual; abstract;
function GetPositionDisplacementWithMargins(AOldMousePos, ANewMousePos: TPoint;
ALeftMargin, ARightMargin: Integer; AIsHorizontal: Boolean): Integer;
function GetPositionDisplacement(AOldMousePos, ANewMousePos: TPoint): Integer; virtual; abstract;
function GetButtonFromMousePos(X, Y: Integer): TCDControlState; virtual;
procedure CreateControlStateEx; override;
procedure PrepareControlStateEx; override;
// keyboard
procedure KeyDown(var Key: word; Shift: TShiftState); override;
// mouse
procedure MouseDown(Button: TMouseButton; Shift: TShiftState;
X, Y: integer); override;
procedure MouseMove(Shift: TShiftState; X, Y: integer); override;
procedure MouseUp(Button: TMouseButton; Shift: TShiftState; X, Y: integer); override;
//
property PageSize: Integer read FPageSize write SetPageSize;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
published
property Max: Integer read FMax write SetMax;
property Min: Integer read FMin write SetMin;
property OnChange: TNotifyEvent read FOnChange write FOnChange;
property OnChangeByUser: TNotifyEvent read FOnChangeByUser write FOnChangeByUser;
property Position: Integer read FPosition write SetPosition;
end;
{ TCDScrollBar }
TCDScrollBar = class(TCDPositionedControl)
private
FKind: TScrollBarKind;
procedure SetKind(AValue: TScrollBarKind);
procedure GetBorderSizes(out ALeft, ARight: Integer);
protected
function GetPositionFromMousePos(X, Y: Integer): integer; override;
function GetButtonFromMousePos(X, Y: Integer): TCDControlState; override;
function GetPositionDisplacement(AOldMousePos, ANewMousePos: TPoint): Integer; override;
function GetControlId: TCDControlID; override;
procedure PrepareControlState; override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
published
property DrawStyle;
property Enabled;
property Kind: TScrollBarKind read FKind write SetKind;
property PageSize;
property TabStop default True;
end;
{@@
TCDGroupBox is a custom-drawn group box control
}
{ TCDGroupBox }
TCDGroupBox = class(TCDControl)
protected
function GetControlId: TCDControlID; override;
procedure RealSetText(const Value: TCaption); override; // to update on caption changes
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
published
property AutoSize;
property Caption;
property DrawStyle;
property Enabled;
property TabStop default False;
end;
{ TCDPanel }
TCDPanel = class(TCDControl)
private
FBevelInner: TPanelBevel;
FBevelOuter: TPanelBevel;
FBevelWidth: TBevelWidth;
procedure SetBevelInner(AValue: TPanelBevel);
procedure SetBevelOuter(AValue: TPanelBevel);
procedure SetBevelWidth(AValue: TBevelWidth);
protected
FPState: TCDPanelStateEx;
function GetControlId: TCDControlID; override;
procedure CreateControlStateEx; override;
procedure PrepareControlStateEx; override;
procedure RealSetText(const Value: TCaption); override; // to update on caption changes
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
published
//property AutoSize;
property BevelInner: TPanelBevel read FBevelInner write SetBevelInner default bvNone;
property BevelOuter: TPanelBevel read FBevelOuter write SetBevelOuter default bvRaised;
property BevelWidth: TBevelWidth read FBevelWidth write SetBevelWidth default 1;
property Caption;
property DrawStyle;
property Enabled;
property TabStop default False;
end;
// ===================================
// Additional Tab
// ===================================
{ TCDStaticText }
TCDStaticText = class(TCDControl)
protected
function GetControlId: TCDControlID; override;
procedure RealSetText(const Value: TCaption); override; // to update on caption changes
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
published
property Caption;
property DrawStyle;
property Enabled;
property TabStop default False;
end;
// ===================================
// Common Controls Tab
// ===================================
{@@
TCDTrackBar is a custom-drawn trackbar control
}
{ TCDTrackBar }
TCDTrackBar = class(TCDPositionedControl)
private
FOrientation: TTrackBarOrientation;
procedure SetOrientation(AValue: TTrackBarOrientation);
protected
function GetPositionFromMousePos(X, Y: Integer): integer; override;
function GetPositionDisplacement(AOldMousePos, ANewMousePos: TPoint): Integer; override;
function GetControlId: TCDControlID; override;
procedure PrepareControlState; override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
//procedure Paint; override;
published
property Align;
property Color;
property DrawStyle;
property Enabled;
property Orientation: TTrackBarOrientation read FOrientation write SetOrientation default trHorizontal;
property TabStop default True;
end;
{ TCDProgressBar }
TCDProgressBar = class(TCDControl)
private
//DragDropStarted: boolean;
FBarShowText: Boolean;
// fields
FMin: integer;
FMax: integer;
FOrientation: TProgressBarOrientation;
FPosition: integer;
FOnChange: TNotifyEvent;
FSmooth: Boolean;
FStyle: TProgressBarStyle;
procedure SetBarShowText(AValue: Boolean);
procedure SetMax(AValue: integer);
procedure SetMin(AValue: integer);
procedure SetOrientation(AValue: TProgressBarOrientation);
procedure SetPosition(AValue: integer);
procedure SetSmooth(AValue: Boolean);
procedure SetStyle(AValue: TProgressBarStyle);
protected
FPBState: TCDProgressBarStateEx;
function GetControlId: TCDControlID; override;
procedure CreateControlStateEx; override;
procedure PrepareControlStateEx; override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
published
property BarShowText: Boolean read FBarShowText write SetBarShowText;
property Color;
property DrawStyle;
property Enabled;
property Max: integer read FMax write SetMax default 10;
property Min: integer read FMin write SetMin default 0;
property OnChange: TNotifyEvent read FOnChange write FOnChange;
property Orientation: TProgressBarOrientation read FOrientation write SetOrientation;// default prHorizontal;
property Position: integer read FPosition write SetPosition;
property Smooth: Boolean read FSmooth write SetSmooth;
property Style: TProgressBarStyle read FStyle write SetStyle;
end;
{ TCDListView }
TCDListView = class(TCDScrollableControl)
private
//DragDropStarted: boolean;
// fields
FColumns: TListColumns;
//FIconOptions: TIconOptions;
FListItems: TCDListItems;
//FProperties: TListViewProperties;
FShowColumnHeader: Boolean;
FViewStyle: TViewStyle;
function GetProperty(AIndex: Integer): Boolean;
procedure SetColumns(AValue: TListColumns);
procedure SetProperty(AIndex: Integer; AValue: Boolean);
procedure SetShowColumnHeader(AValue: Boolean);
procedure SetViewStyle(AValue: TViewStyle);
protected
{ // keyboard
procedure DoEnter; override;
procedure DoExit; override;
procedure KeyDown(var Key: word; Shift: TShiftState); override;
procedure KeyUp(var Key: word; Shift: TShiftState); override;
// mouse
procedure MouseDown(Button: TMouseButton; Shift: TShiftState;
X, Y: integer); override;
procedure MouseMove(Shift: TShiftState; X, Y: integer); override;
procedure MouseUp(Button: TMouseButton; Shift: TShiftState; X, Y: integer); override;
procedure MouseEnter; override;
procedure MouseLeave; override;}
protected
FLVState: TCDListViewStateEx;
function GetControlId: TCDControlID; override;
procedure CreateControlStateEx; override;
procedure PrepareControlStateEx; override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
published
property Color;
property TabStop default True;
property Columns: TListColumns read FColumns write SetColumns;
property Enabled;
//property GridLines: Boolean index Ord(lvpGridLines) read GetProperty write SetProperty default False;
property Items: TCDListItems read FListItems;
property ScrollBars;
property ShowColumnHeader: Boolean read FShowColumnHeader write SetShowColumnHeader default True;
property ViewStyle: TViewStyle read FViewStyle write SetViewStyle default vsList;
end;
{ TCDToolBar }
TCDToolBar = class(TCDControl)
private
// fields
FShowCaptions: Boolean;
FItems: TFPList;
procedure SetShowCaptions(AValue: Boolean);
protected
FTBState: TCDToolBarStateEx;
function GetControlId: TCDControlID; override;
procedure CreateControlStateEx; override;
procedure PrepareControlStateEx; override;
// mouse
procedure MouseMove(Shift: TShiftState; X, Y: integer); override;
procedure MouseDown(Button: TMouseButton; Shift: TShiftState;
X, Y: integer); override;
procedure MouseUp(Button: TMouseButton; Shift: TShiftState; X, Y: integer); override;
procedure MouseLeave; override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
function InsertItem(AKind: TCDToolbarItemKind; AIndex: Integer): TCDToolBarItem;
function AddItem(AKind: TCDToolbarItemKind): TCDToolBarItem;
procedure DeleteItem(AIndex: Integer);
function GetItem(AIndex: Integer): TCDToolBarItem;
function GetItemCount(): Integer;
function GetItemWithMousePos(APosInControl: TPoint): TCDToolBarItem;
function IsPosInButton(APosInControl: TPoint; AItem: TCDToolBarItem; AItemX: Integer): Boolean;
published
property ShowCaptions: Boolean read FShowCaptions write SetShowCaptions;
property DrawStyle;
end;
{ TCDTabControl }
{ TCDCustomTabControl }
TCDCustomTabControl = class;
{ TCDTabSheet }
TCDTabSheet = class(TCustomControl)
private
CDTabControl: TCDCustomTabControl;
FTabVisible: Boolean;
protected
procedure RealSetText(const Value: TCaption); override; // to update on caption changes
procedure SetParent(NewParent: TWinControl); override; // For being created by the LCL resource reader
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
procedure EraseBackground(DC: HDC); override;
procedure Paint; override;
published
property Caption;
property Color;
property Font;
property TabVisible: Boolean read FTabVisible write FTabVisible;
end;
// If the sender is a TCDPageControl, APage will contain the page,
// but if it is a TCDTabControl APage will be nil
TOnUserAddedPage = procedure (Sender: TObject; APage: TCDTabSheet) of object;
TCDCustomTabControl = class(TCDControl)
private
FOnUserAddedPage: TOnUserAddedPage;
FTabIndex: Integer;
FTabs: TStringList;
FOnChanging: TNotifyEvent;
FOnChange: TNotifyEvent;
FOptions: TCTabControlOptions;
procedure SetOptions(AValue: TCTabControlOptions);
//procedure MouseEnter; override;
//procedure MouseLeave; override;
procedure SetTabIndex(AValue: Integer); virtual;
procedure SetTabs(AValue: TStringList);
function MousePosToTabIndex(X, Y: Integer): Integer;
protected
FTabCState: TCDCTabControlStateEx;
function GetControlId: TCDControlID; override;
procedure CreateControlStateEx; override;
procedure PrepareControlStateEx; override;
procedure CorrectTabIndex();
procedure MouseDown(Button: TMouseButton; Shift: TShiftState; X, Y: integer); override;
//procedure MouseMove(Shift: TShiftState; X, Y: integer); override;
procedure MouseUp(Button: TMouseButton; Shift: TShiftState; X, Y: integer); override;
property Options: TCTabControlOptions read FOptions write SetOptions;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
function GetTabCount: Integer;
property Tabs: TStringList read FTabs write SetTabs;
property OnChanging: TNotifyEvent read FOnChanging write FOnChanging;
property OnChange: TNotifyEvent read FOnChange write FOnChange;
property OnUserAddedPage: TOnUserAddedPage read FOnUserAddedPage write FOnUserAddedPage;
property TabIndex: integer read FTabIndex write SetTabIndex;
end;
// TTabSelectedEvent = procedure(Sender: TObject; ATab: TTabItem;
// ASelected: boolean) of object;
TCDTabControl = class(TCDCustomTabControl)
published
property Color;
property Enabled;
property Font;
property Tabs;
property TabIndex;
property OnChanging;
property OnChange;
property OnUserAddedPage;
end;
{ TCDPageControl }
TCDPageControl = class(TCDCustomTabControl)
private
function GetActivePage: TCDTabSheet;
function GetPageCount: integer;
function GetPageIndex: integer;
procedure SetActivePage(Value: TCDTabSheet);
procedure SetPageIndex(Value: integer);
procedure UpdateAllDesignerFlags;
procedure UpdateDesignerFlags(APageIndex: integer);
procedure PositionTabSheet(ATabSheet: TCDTabSheet);
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
function InsertPage(aIndex: integer; S: string): TCDTabSheet;
procedure RemovePage(aIndex: integer);
function AddPage(S: string): TCDTabSheet; overload;
procedure AddPage(APage: TCDTabSheet); overload;
function GetPage(aIndex: integer): TCDTabSheet;
property PageCount: integer read GetPageCount;
// Used by the property editor in customdrawnextras
function FindNextPage(CurPage: TCDTabSheet;
GoForward, CheckTabVisible: boolean): TCDTabSheet;
procedure SelectNextPage(GoForward: boolean; CheckTabVisible: boolean = True);
published
property Align;
property ActivePage: TCDTabSheet read GetActivePage write SetActivePage;
property DrawStyle;
property Caption;
property Color;
property Enabled;
property Font;
property PageIndex: integer read GetPageIndex write SetPageIndex;
property Options;
property ParentColor;
property ParentFont;
property TabStop default True;
property TabIndex;
property OnChanging;
property OnChange;
property OnUserAddedPage;
end;
// ===================================
// Misc Tab
// ===================================
{ TCDSpinEdit }
TCDSpinEdit = class(TCDEdit)
private
FDecimalPlaces: Byte;
FIncrement: Double;
FMaxValue: Double;
FMinValue: Double;
FValue: Double;
FUpDown: TUpDown;
procedure SetDecimalPlaces(AValue: Byte);
procedure SetIncrement(AValue: Double);
procedure SetMaxValue(AValue: Double);
procedure SetMinValue(AValue: Double);
procedure UpDownChanging(Sender: TObject; var AllowChange: Boolean);
procedure SetValue(AValue: Double);
procedure DoUpdateText;
procedure DoUpdateUpDown;
protected
procedure DoChange; override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
published
property DecimalPlaces: Byte read FDecimalPlaces write SetDecimalPlaces default 0;
property Increment: Double read FIncrement write SetIncrement;
property MinValue: Double read FMinValue write SetMinValue;
property MaxValue: Double read FMaxValue write SetMaxValue;
property Value: Double read FValue write SetValue;
end;
implementation
const
sTABSHEET_DEFAULT_NAME = 'CTabSheet';
{ TCDControl }
procedure TCDControl.CalculatePreferredSize(var PreferredWidth,
PreferredHeight: integer; WithThemeSpace: Boolean);
begin
PrepareControlState;
PrepareControlStateEx;
FDrawer.CalculatePreferredSize(Canvas, GetControlId(), FState, FStateEx,
PreferredWidth, PreferredHeight, WithThemeSpace, True);
end;
procedure TCDControl.SetState(const AValue: TCDControlState);
begin
if AValue <> FState then
begin
FState := AValue;
Invalidate;
end;
end;
procedure TCDControl.PrepareCurrentDrawer;
var
OldDrawer: TCDDrawer;
begin
OldDrawer := FDrawer;
FDrawer := GetDrawer(FDrawStyle);
if FDrawer = nil then FDrawer := GetDrawer(dsCommon); // avoid exceptions in the object inspector if an invalid drawer is selected
if FDrawer = nil then raise Exception.Create('[TCDControl.PrepareCurrentDrawer] No registered drawers were found. Please add the unit customdrawn_common to your uses clause and also the units of any other utilized drawers.');
if OldDrawer <> FDrawer then FDrawer.LoadPalette();
end;
procedure TCDControl.SetDrawStyle(const AValue: TCDDrawStyle);
begin
if FDrawStyle = AValue then exit;
FDrawStyle := AValue;
Invalidate;
PrepareCurrentDrawer();
//FCurrentDrawer.SetClientRectPos(Self);
end;
function TCDControl.GetClientRect: TRect;
begin
// Disable this, since although it works in Win32, it doesn't seam to work in LCL-Carbon
//if (FCurrentDrawer = nil) then
Result := inherited GetClientRect()
//else
//Result := FCurrentDrawer.GetClientRect(Self);
end;
function TCDControl.GetControlId: TCDControlID;
begin
Result := cidControl;
end;
procedure TCDControl.CreateControlStateEx;
begin
FStateEx := TCDControlStateEx.Create;
end;
procedure TCDControl.PrepareControlState;
begin
if Focused then FState := FState + [csfHasFocus]
else FState := FState - [csfHasFocus];
if Enabled then FState := FState + [csfEnabled]
else FState := FState - [csfEnabled];
end;
procedure TCDControl.PrepareControlStateEx;
begin
if Parent <> nil then FStateEx.ParentRGBColor := Parent.GetRGBColorResolvingParent
else FStateEx.ParentRGBColor := clSilver;
FStateEx.FPParentRGBColor := TColorToFPColor(FStateEx.ParentRGBColor);
if Color = clDefault then FStateEx.RGBColor := FDrawer.GetControlDefaultColor(GetControlId())
else FStateEx.RGBColor := GetRGBColorResolvingParent;
FStateEx.FPRGBColor := TColorToFPColor(FStateEx.RGBColor);
FStateEx.Caption := Caption;
FStateEx.Font := Font;
FStateEx.AutoSize := AutoSize;
end;
procedure TCDControl.DoEnter;
begin
Invalidate;
inherited DoEnter;
end;
procedure TCDControl.DoExit;
begin
Invalidate;
inherited DoExit;
end;
procedure TCDControl.EraseBackground(DC: HDC);
begin
end;
procedure TCDControl.Paint;
begin
inherited Paint;
DrawToCanvas(Canvas);
end;
procedure TCDControl.DrawToCanvas(ACanvas: TCanvas);
var
lSize: TSize;
lControlId: TCDControlID;
begin
PrepareCurrentDrawer();
lSize := Size(Width, Height);
lControlId := GetControlId();
PrepareControlState;
PrepareControlStateEx;
FDrawer.DrawControl(ACanvas, Point(0, 0), lSize, lControlId, FState, FStateEx);
end;
procedure TCDControl.MouseEnter;
begin
FState := FState + [csfMouseOver];
inherited MouseEnter;
end;
procedure TCDControl.MouseLeave;
begin
FState := FState - [csfMouseOver];
inherited MouseLeave;
end;
procedure TCDControl.MouseDown(Button: TMouseButton; Shift: TShiftState; X,
Y: integer);
begin
inherited MouseDown(Button, Shift, X, Y);
if CanFocus() then SetFocus(); // Checking CanFocus fixes a crash
end;
constructor TCDControl.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
CreateControlStateEx;
PrepareCurrentDrawer();
end;
destructor TCDControl.Destroy;
begin
FStateEx.Free;
inherited Destroy;
end;
// A CalculatePreferredSize which is utilized by LCL-CustomDrawn
procedure TCDControl.LCLWSCalculatePreferredSize(var PreferredWidth,
PreferredHeight: integer; WithThemeSpace, AAutoSize, AAllowUseOfMeasuresEx: Boolean);
begin
PrepareControlState;
PrepareControlStateEx;
FStateEx.AutoSize := AAutoSize;
FDrawer.CalculatePreferredSize(Canvas, GetControlId(), FState, FStateEx,
PreferredWidth, PreferredHeight, WithThemeSpace, AAllowUseOfMeasuresEx);
end;
{ TCDComboBox }
function TCDComboBox.GetItems: TStrings;
begin
Result := FItems;
end;
procedure TCDComboBox.OnShowSelectItemDialogResult(ASelectedItem: Integer);
begin
SetItemIndex(ASelectedItem);
end;
procedure TCDComboBox.SetItemIndex(AValue: Integer);
var
lValue: Integer;
lText: String;
begin
lValue := AValue;
// First basic check
if lValue >= FItems.Count then lValue := FItems.Count - 1;
if lValue < -1 then lValue := -1;
// Check if the text changed too, because it might differ from the choosen item
FItemIndex:=lValue;
if lValue >= 0 then
begin
lText := FItems.Strings[lValue];
if Lines.Text = lText then Exit;
Text := lText;
end;
Invalidate;
end;
procedure TCDComboBox.SetItems(AValue: TStrings);
begin
if Assigned(FItems) then
FItems.Assign(AValue)
else
FItems := AValue;
end;
procedure TCDComboBox.SetKeyboardInputBehavior(AValue: TKeyboardInputBehavior);
begin
if FKeyboardInputBehavior=AValue then Exit;
FKeyboardInputBehavior:=AValue;
if AValue = kibRequires then ControlStyle := ControlStyle + [csRequiresKeyboardInput]
else ControlStyle := ControlStyle + [csRequiresKeyboardInput];
end;
function TCDComboBox.GetControlId: TCDControlID;
begin
Result := cidComboBox;
end;
procedure TCDComboBox.MouseDown(Button: TMouseButton; Shift: TShiftState; X,
Y: integer);
begin
if (X > Width - Height) then
begin
FIsClickingButton := True;
FEditState.ExtraButtonState := FEditState.ExtraButtonState + [csfSunken];
Invalidate;
Exit;
end;
inherited MouseDown(Button, Shift, X, Y);
end;
procedure TCDComboBox.MouseUp(Button: TMouseButton; Shift: TShiftState; X,
Y: integer);
begin
if FIsClickingButton then
begin
FIsClickingButton := False;
FEditState.ExtraButtonState := FEditState.ExtraButtonState - [csfSunken];
Invalidate;
if (X > Width - Height) then
begin
// Call the combobox dialog
LCLIntf.OnShowSelectItemDialogResult := @OnShowSelectItemDialogResult;
LCLIntf.ShowSelectItemDialog(FItems, Self.ClientToScreen(Point(Left, Top+Height)));
Exit;
end;
end;
inherited MouseUp(Button, Shift, X, Y);
end;
constructor TCDComboBox.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
// The keyboard input is mostly an annoyance in the combobox in Android,
// but we offer the property RequiresKeyboardInput to override this setting
ControlStyle := ControlStyle - [csRequiresKeyboardInput];
FItems := TStringList.Create;
end;
destructor TCDComboBox.Destroy;
begin
FItems.Free;
inherited Destroy;
end;
{ TCDPanel }
function TCDPanel.GetControlId: TCDControlID;
begin
Result := cidPanel;
end;
procedure TCDPanel.CreateControlStateEx;
begin
FPState := TCDPanelStateEx.Create;
FStateEx := FPState;
end;
procedure TCDPanel.PrepareControlStateEx;
begin
inherited PrepareControlStateEx;
FPState.BevelInner := FBevelInner;
FPState.BevelOuter := FBevelOuter;
FPState.BevelWidth := FBevelWidth;
end;
procedure TCDPanel.SetBevelInner(AValue: TPanelBevel);
begin
if FBevelInner=AValue then Exit;
FBevelInner:=AValue;
if not (csLoading in ComponentState) then Invalidate;
end;
procedure TCDPanel.SetBevelOuter(AValue: TPanelBevel);
begin
if FBevelOuter=AValue then Exit;
FBevelOuter:=AValue;
if not (csLoading in ComponentState) then Invalidate;
end;
procedure TCDPanel.SetBevelWidth(AValue: TBevelWidth);
begin
if FBevelWidth=AValue then Exit;
FBevelWidth:=AValue;
if not (csLoading in ComponentState) then Invalidate;
end;
procedure TCDPanel.RealSetText(const Value: TCaption);
begin
inherited RealSetText(Value);
if not (csLoading in ComponentState) then Invalidate;
end;
constructor TCDPanel.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
Width := 170;
Height := 50;
TabStop := False;
AutoSize := False;
end;
destructor TCDPanel.Destroy;
begin
inherited Destroy;
end;
{ TCDScrollableControl }
procedure TCDScrollableControl.SetScrollBars(AValue: TScrollStyle);
begin
if FScrollBars=AValue then Exit;
FScrollBars:=AValue;
if AValue = ssNone then
begin
FSpacer.Visible := False;
FRightScrollBar.Visible := False;
FBottomScrollBar.Visible := False;
end
else if AValue in [ssHorizontal, ssAutoHorizontal] then
begin
FSpacer.Visible := False;
FRightScrollBar.Visible := False;
FBottomScrollBar.BorderSpacing.Bottom := 0;
FBottomScrollBar.Align := alRight;
FBottomScrollBar.Visible := True;
end
else if AValue in [ssVertical, ssAutoVertical] then
begin
FSpacer.Visible := False;
FRightScrollBar.BorderSpacing.Bottom := 0;
FRightScrollBar.Align := alRight;
FRightScrollBar.Visible := True;
FBottomScrollBar.Visible := False;
end
else // ssBoth, ssAutoBoth
begin
FSpacer.Visible := True;
// alRight and alBottom seam to work differently, so here we don't need the spacing
FRightScrollBar.BorderSpacing.Bottom := 0;
FRightScrollBar.Align := alRight;
FRightScrollBar.Visible := True;
// Enough spacing to fit the FSpacer
FBottomScrollBar.BorderSpacing.Right := FBottomScrollBar.Height;
FBottomScrollBar.Align := alBottom;
FBottomScrollBar.Visible := True;
end;
end;
constructor TCDScrollableControl.Create(AOwner: TComponent);
var
lWidth: Integer;
begin
inherited Create(AOwner);
FRightScrollBar := TCDScrollBar.Create(nil);
FRightScrollBar.Kind := sbVertical;
FRightScrollBar.Visible := False;
FRightScrollBar.Parent := Self;
// Invert the dimensions because they are not automatically inverted in Loading state
lWidth := FRightScrollBar.Width;
FRightScrollBar.Width := FRightScrollBar.Height;
FRightScrollBar.Height := lWidth;
FBottomScrollBar := TCDScrollBar.Create(nil);
FBottomScrollBar.Kind := sbHorizontal;
FBottomScrollBar.Visible := False;
FBottomScrollBar.Parent := Self;
FSpacer := TCDControl.Create(nil);
FSpacer.Color := FDrawer.Palette.BtnFace;
FSpacer.Visible := False;
FSpacer.Parent := Self;
FSpacer.Width := FRightScrollBar.Width;
FSpacer.Height := FBottomScrollBar.Height;
FSpacer.AnchorSide[akRight].Control := Self;
FSpacer.AnchorSide[akRight].Side := asrBottom;
FSpacer.AnchorSide[akBottom].Control := Self;
FSpacer.AnchorSide[akBottom].Side := asrBottom;
FSpacer.Anchors := [akRight, akBottom];
end;
destructor TCDScrollableControl.Destroy;
begin
FRightScrollBar.Free;
FBottomScrollBar.Free;
FSpacer.Free;
inherited Destroy;
end;
{ TCDButtonDrawer }
procedure TCDButtonControl.KeyDown(var Key: word; Shift: TShiftState);
begin
inherited KeyDown(Key, Shift);
if (Key = VK_SPACE) or (Key = VK_RETURN) then
DoButtonDown();
end;
procedure TCDButtonControl.KeyUp(var Key: word; Shift: TShiftState);
begin
if (Key = VK_SPACE) or (Key = VK_RETURN) then
begin
DoButtonUp();
Self.Click; // TCustomControl does not respond to LM_CLICKED
end;
inherited KeyUp(Key, Shift);
end;
procedure TCDButtonControl.MouseDown(Button: TMouseButton; Shift: TShiftState; X, Y: integer);
begin
DoButtonDown();
inherited MouseDown(Button, Shift, X, Y);
end;
procedure TCDButtonControl.MouseUp(Button: TMouseButton; Shift: TShiftState; X, Y: integer);
begin
DoButtonUp();
inherited MouseUp(Button, Shift, X, Y);
end;
procedure TCDButtonControl.MouseEnter;
begin
Invalidate;
inherited MouseEnter;
end;
procedure TCDButtonControl.MouseLeave;
begin
Invalidate;
inherited MouseLeave;
end;
procedure TCDButtonControl.DoUncheckButton;
var
NewState: TCDControlState;
begin
NewState := FState + [csfOff] - [csfOn, csfPartiallyOn];
SetState(NewState);
end;
procedure TCDButtonControl.DoCheckIfFirstButtonInGroup;
var
NewState: TCDControlState;
i: Integer;
lControl: TControl;
begin
// Start with the checked value
NewState := FState + [csfOn] - [csfOff, csfPartiallyOn];
// Search for other buttons in the group in the same parent
if Parent <> nil then
begin
for i := 0 to Parent.ControlCount - 1 do
begin
lControl := Parent.Controls[i];
if (lControl is TCDButtonControl) and
(lControl <> Self) and
(TCDButtonControl(lControl).FGroupIndex = FGroupIndex) then
begin
NewState := FState + [csfOff] - [csfOn, csfPartiallyOn];
Break;
end;
end;
end;
SetState(NewState);
end;
procedure TCDButtonControl.DoButtonDown();
var
NewState: TCDControlState;
begin
NewState := FState;
if not (csfSunken in FState) then NewState := FState + [csfSunken];
SetState(NewState);
end;
procedure TCDButtonControl.DoButtonUp();
var
i: Integer;
lControl: TControl;
NewState: TCDControlState;
begin
NewState := FState;
if csfSunken in FState then NewState := NewState - [csfSunken];
// For grouped buttons, call DoButtonUp for all other buttons on the same parent
if FIsGrouped then
begin
NewState := NewState + [csfOn] - [csfOff, csfPartiallyOn];
if Parent <> nil then
begin
for i := 0 to Parent.ControlCount - 1 do
begin
lControl := Parent.Controls[i];
if (lControl is TCDButtonControl) and
(lControl <> Self) and
(TCDButtonControl(lControl).FGroupIndex = FGroupIndex) then
TCDButtonControl(lControl).DoUncheckButton();
end;
end;
end
// Only for buttons with checked/down states
// TCDCheckbox, TCDRadiobutton, TCDButton configured as TToggleButton
else if FHasOnOffStates then
begin
if FAllowGrayed then
begin
if csfOn in FState then
NewState := NewState + [csfOff] - [csfOn, csfPartiallyOn]
else if csfPartiallyOn in FState then
NewState := NewState + [csfOn] - [csfOff, csfPartiallyOn]
else
NewState := NewState + [csfPartiallyOn] - [csfOn, csfOff];
end
else
begin
if csfOn in FState then
NewState := NewState + [csfOff] - [csfOn]
else
NewState := NewState + [csfOn] - [csfOff];
end;
end;
SetState(NewState);
end;
procedure TCDButtonControl.RealSetText(const Value: TCaption);
begin
inherited RealSetText(Value);
Invalidate;
end;
function TCDButtonControl.GetChecked: Boolean;
begin
Result := csfOn in FState;
end;
procedure TCDButtonControl.SetChecked(AValue: Boolean);
var
NewState: TCDControlState;
begin
// In grouped elements when setting to true we do the full group sequence
// but when setting to false we just uncheck the element
if FIsGrouped and AValue then DoButtonUp()
else
begin
if AValue then NewState := FState + [csfOn] - [csfOff, csfPartiallyOn]
else NewState := FState + [csfOff] - [csfOn, csfPartiallyOn];
SetState(NewState);
end;
end;
function TCDButtonControl.GetCheckedState: TCheckBoxState;
begin
if csfOn in FState then Result := cbChecked
else if csfPartiallyOn in FState then
begin
if FAllowGrayed then
Result := cbGrayed
else
Result := cbChecked;
end
else Result := cbUnchecked;
end;
procedure TCDButtonControl.SetCheckedState(AValue: TCheckBoxState);
var
NewState: TCDControlState;
begin
case AValue of
cbUnchecked: NewState := FState + [csfOff] - [csfOn, csfPartiallyOn];
cbChecked: NewState := FState + [csfOn] - [csfOff, csfPartiallyOn];
cbGrayed:
begin
if FAllowGrayed then
NewState := FState + [csfPartiallyOn] - [csfOn, csfOff]
else
NewState := FState + [csfOn] - [csfOff, csfPartiallyOn];
end;
end;
SetState(NewState);
end;
{ TCDEdit }
procedure TCDEdit.SetLeftTextMargin(AValue: Integer);
begin
if FEditState.LeftTextMargin = AValue then Exit;
FEditState.LeftTextMargin := AValue;
Invalidate;
end;
procedure TCDEdit.SetLines(AValue: TStrings);
begin
if FLines=AValue then Exit;
FLines.Assign(AValue);
DoChange();
Invalidate;
end;
procedure TCDEdit.SetMultiLine(AValue: Boolean);
begin
if FEditState.MultiLine=AValue then Exit;
FEditState.MultiLine := AValue;
Invalidate;
end;
procedure TCDEdit.SetRightTextMargin(AValue: Integer);
begin
if FEditState.RightTextMargin = AValue then Exit;
FEditState.RightTextMargin := AValue;
Invalidate;
end;
procedure TCDEdit.SetText(AValue: string);
begin
Lines.Text := aValue;
end;
procedure TCDEdit.SetPasswordChar(AValue: Char);
begin
if AValue=FEditState.PasswordChar then Exit;
FEditState.PasswordChar := AValue;
Invalidate;
end;
function TCDEdit.GetControlId: TCDControlID;
begin
Result := cidEdit;
end;
procedure TCDEdit.CreateControlStateEx;
begin
FEditState := TCDEditStateEx.Create;
FStateEx := FEditState;
end;
procedure TCDEdit.RealSetText(const Value: TCaption);
begin
inherited RealSetText(Value);
Lines.Text := Value;
Invalidate;
end;
procedure TCDEdit.DoChange;
begin
if Assigned(FOnChange) then FOnChange(Self);
end;
procedure TCDEdit.HandleCaretTimer(Sender: TObject);
begin
if FEditState.EventArrived then
begin
FEditState.CaretIsVisible := True;
FEditState.EventArrived := False;
end
else FEditState.CaretIsVisible := not FEditState.CaretIsVisible;
Invalidate;
end;
function TCDEdit.GetLeftTextMargin: Integer;
begin
Result := FEditState.LeftTextMargin;
end;
function TCDEdit.GetCaretPos: TPoint;
begin
Result := FEditState.CaretPos;
end;
function TCDEdit.GetMultiLine: Boolean;
begin
Result := FEditState.MultiLine;
end;
function TCDEdit.GetRightTextMargin: Integer;
begin
Result := FEditState.RightTextMargin;
end;
function TCDEdit.GetText: string;
begin
if Multiline then
result := Lines.Text
else if Lines.Count = 0 then
result := ''
else
result := Lines[0];
end;
function TCDEdit.GetPasswordChar: Char;
begin
Result := FEditState.PasswordChar;
end;
procedure TCDEdit.DoDeleteSelection;
var
lSelLeftPos, lSelRightPos, lSelLength: Integer;
lControlText, lTextLeft, lTextRight: string;
begin
if IsSomethingSelected then
begin
lSelLeftPos := FEditState.SelStart.X;
if FEditState.SelLength < 0 then lSelLeftPos := lSelLeftPos + FEditState.SelLength;
lSelRightPos := FEditState.SelStart.X;
if FEditState.SelLength > 0 then lSelRightPos := lSelRightPos + FEditState.SelLength;
lSelLength := FEditState.SelLength;
if lSelLength < 0 then lSelLength := lSelLength * -1;
lControlText := GetCurrentLine();
// Text left of the selection
lTextLeft := UTF8Copy(lControlText, FEditState.VisibleTextStart.X, lSelLeftPos-FEditState.VisibleTextStart.X+1);
// Text right of the selection
lTextRight := UTF8Copy(lControlText, lSelLeftPos+lSelLength+1, Length(lControlText));
// Execute the deletion
SetCurrentLine(lTextLeft + lTextRight);
// Correct the caret position
FEditState.CaretPos.X := Length(lTextLeft);
end;
DoClearSelection;
end;
procedure TCDEdit.DoClearSelection;
begin
FEditState.SelStart.X := 1;
FEditState.SelStart.Y := 0;
FEditState.SelLength := 0;
end;
// Imposes sanity limits to the visible text start
// and also imposes sanity limits on the caret
procedure TCDEdit.DoManageVisibleTextStart;
var
lVisibleText, lLineText: String;
lVisibleTextCharCount: Integer;
lAvailableWidth: Integer;
begin
// Moved to the left and we need to adjust the text start
FEditState.VisibleTextStart.X := Min(FEditState.CaretPos.X+1, FEditState.VisibleTextStart.X);
// Moved to the right and we need to adjust the text start
lLineText := GetCurrentLine();
lVisibleText := UTF8Copy(lLineText, FEditState.VisibleTextStart.X, Length(lLineText));
lAvailableWidth := Width
- FDrawer.GetMeasures(TCDEDIT_LEFT_TEXT_SPACING)
- FDrawer.GetMeasures(TCDEDIT_RIGHT_TEXT_SPACING);
lVisibleTextCharCount := Canvas.TextFitInfo(lVisibleText, lAvailableWidth);
FEditState.VisibleTextStart.X := Max(FEditState.CaretPos.X-lVisibleTextCharCount+1, FEditState.VisibleTextStart.X);
// Moved upwards and we need to adjust the text start
FEditState.VisibleTextStart.Y := Min(FEditState.CaretPos.Y, FEditState.VisibleTextStart.Y);
// Moved downwards and we need to adjust the text start
FEditState.VisibleTextStart.Y := Max(FEditState.CaretPos.Y-FEditState.FullyVisibleLinesCount, FEditState.VisibleTextStart.Y);
// Impose limits in the caret too
FEditState.CaretPos.X := Min(FEditState.CaretPos.X, UTF8Length(lLineText));
FEditState.CaretPos.Y := Min(FEditState.CaretPos.Y, FEditState.Lines.Count-1);
FEditState.CaretPos.Y := Max(FEditState.CaretPos.Y, 0);
end;
procedure TCDEdit.SetCaretPost(AValue: TPoint);
begin
FEditState.CaretPos.X := AValue.X;
FEditState.CaretPos.Y := AValue.Y;
Invalidate;
end;
// Result.X -> returns a zero-based position of the caret
function TCDEdit.MousePosToCaretPos(X, Y: Integer): TPoint;
var
lStrLen, i: PtrInt;
lVisibleStr, lCurChar: String;
lPos, lCurCharLen: Integer;
lBestDiff: Cardinal = $FFFFFFFF;
lLastDiff: Cardinal = $FFFFFFFF;
lCurDiff, lBestMatch: Integer;
begin
// Find the best Y position
lPos := Y - FDrawer.GetMeasures(TCDEDIT_TOP_TEXT_SPACING);
Result.Y := lPos div FEditState.LineHeight;
Result.Y := Min(Result.Y, FEditState.FullyVisibleLinesCount);
Result.Y := Min(Result.Y, FEditState.Lines.Count-1);
if Result.Y < 0 then
begin
Result.X := 1;
Result.Y := 0;
Exit;
end;
// Find the best X position
Canvas.Font := Font;
lVisibleStr := FLines.Strings[Result.Y];
lVisibleStr := UTF8Copy(lVisibleStr, FEditState.VisibleTextStart.X, Length(lVisibleStr));
lVisibleStr := TCDDrawer.VisibleText(lVisibleStr, FEditState.PasswordChar);
lStrLen := UTF8Length(lVisibleStr);
lPos := FDrawer.GetMeasures(TCDEDIT_LEFT_TEXT_SPACING);
lBestMatch := 0;
for i := 0 to lStrLen do
begin
lCurDiff := X - lPos;
if lCurDiff < 0 then lCurDiff := lCurDiff * -1;
if lCurDiff < lBestDiff then
begin
lBestDiff := lCurDiff;
lBestMatch := i;
end;
// When the diff starts to grow we already found the caret pos, so exit
if lCurDiff > lLastDiff then Break
else lLastDiff := lCurDiff;
if i <> lStrLen then
begin
lCurChar := UTF8Copy(lVisibleStr, i+1, 1);
lCurCharLen := Canvas.TextWidth(lCurChar);
lPos := lPos + lCurCharLen;
end;
end;
Result.X := lBestMatch+(FEditState.VisibleTextStart.X-1);
Result.X := Min(Result.X, FEditState.VisibleTextStart.X+lStrLen-1);
end;
function TCDEdit.IsSomethingSelected: Boolean;
begin
Result := FEditState.SelLength <> 0;
end;
procedure TCDEdit.DoEnter;
begin
FCaretTimer.Enabled := True;
FEditState.CaretIsVisible := True;
inherited DoEnter;
end;
procedure TCDEdit.DoExit;
begin
FCaretTimer.Enabled := False;
FEditState.CaretIsVisible := False;
DoClearSelection();
inherited DoExit;
end;
procedure TCDEdit.KeyDown(var Key: word; Shift: TShiftState);
var
lLeftText, lRightText, lOldText: String;
lOldTextLength: PtrInt;
lKeyWasProcessed: Boolean = True;
begin
inherited KeyDown(Key, Shift);
lOldText := GetCurrentLine();
lOldTextLength := UTF8Length(lOldText);
FEditState.SelStart.Y := FEditState.CaretPos.Y;//ToDo: Change this when proper multi-line selection is implemented
case Key of
// Backspace
VK_BACK:
begin
// Selection backspace
if IsSomethingSelected() then
DoDeleteSelection()
// Normal backspace
else if FEditState.CaretPos.X > 0 then
begin
lLeftText := UTF8Copy(lOldText, 1, FEditState.CaretPos.X-1);
lRightText := UTF8Copy(lOldText, FEditState.CaretPos.X+1, lOldTextLength);
SetCurrentLine(lLeftText + lRightText);
Dec(FEditState.CaretPos.X);
DoManageVisibleTextStart();
Invalidate;
end;
end;
// DEL
VK_DELETE:
begin
// Selection delete
if IsSomethingSelected() then
DoDeleteSelection()
// Normal delete
else if FEditState.CaretPos.X < lOldTextLength then
begin
lLeftText := UTF8Copy(lOldText, 1, FEditState.CaretPos.X);
lRightText := UTF8Copy(lOldText, FEditState.CaretPos.X+2, lOldTextLength);
SetCurrentLine(lLeftText + lRightText);
Invalidate;
end;
end;
VK_LEFT:
begin
if (FEditState.CaretPos.X > 0) then
begin
// Selecting to the left
if [ssShift] = Shift then
begin
if FEditState.SelLength = 0 then FEditState.SelStart.X := FEditState.CaretPos.X;
Dec(FEditState.SelLength);
end
// Normal move to the left
else FEditState.SelLength := 0;
Dec(FEditState.CaretPos.X);
DoManageVisibleTextStart();
FEditState.CaretIsVisible := True;
Invalidate;
end
// if we are not moving, at least deselect
else if ([ssShift] <> Shift) then
begin
FEditState.SelLength := 0;
Invalidate;
end;
end;
VK_HOME:
begin
if (FEditState.CaretPos.X > 0) then
begin
// Selecting to the left
if [ssShift] = Shift then
begin
if FEditState.SelLength = 0 then
begin
FEditState.SelStart.X := FEditState.CaretPos.X;
FEditState.SelLength := -1 * FEditState.CaretPos.X;
end
else
FEditState.SelLength := -1 * FEditState.SelStart.X;
end
// Normal move to the left
else FEditState.SelLength := 0;
FEditState.CaretPos.X := 0;
DoManageVisibleTextStart();
FEditState.CaretIsVisible := True;
Invalidate;
end
// if we are not moving, at least deselect
else if (FEditState.SelLength <> 0) and ([ssShift] <> Shift) then
begin
FEditState.SelLength := 0;
Invalidate;
end;
end;
VK_RIGHT:
begin
if FEditState.CaretPos.X < lOldTextLength then
begin
// Selecting to the right
if [ssShift] = Shift then
begin
if FEditState.SelLength = 0 then FEditState.SelStart.X := FEditState.CaretPos.X;
Inc(FEditState.SelLength);
end
// Normal move to the right
else FEditState.SelLength := 0;
Inc(FEditState.CaretPos.X);
DoManageVisibleTextStart();
FEditState.CaretIsVisible := True;
Invalidate;
end
// if we are not moving, at least deselect
else if ([ssShift] <> Shift) then
begin
FEditState.SelLength := 0;
Invalidate;
end;
end;
VK_END:
begin
if FEditState.CaretPos.X < lOldTextLength then
begin
// Selecting to the right
if [ssShift] = Shift then
begin
if FEditState.SelLength = 0 then
FEditState.SelStart.X := FEditState.CaretPos.X;
FEditState.SelLength := lOldTextLength - FEditState.SelStart.X;
end
// Normal move to the right
else FEditState.SelLength := 0;
FEditState.CaretPos.X := lOldTextLength;
DoManageVisibleTextStart();
FEditState.CaretIsVisible := True;
Invalidate;
end
// if we are not moving, at least deselect
else if (FEditState.SelLength <> 0) and ([ssShift] <> Shift) then
begin
FEditState.SelLength := 0;
Invalidate;
end;
end;
VK_UP:
begin
if (FEditState.CaretPos.Y > 0) then
begin
// Selecting downwards
{if [ssShift] = Shift then
begin
if FEditState.SelLength = 0 then FEditState.SelStart.X := FEditState.CaretPos.X;
Dec(FEditState.SelLength);
end
// Normal move downwards
else} FEditState.SelLength := 0;
Dec(FEditState.CaretPos.Y);
DoManageVisibleTextStart();
FEditState.CaretIsVisible := True;
Invalidate;
end
// if we are not moving, at least deselect
else if ([ssShift] <> Shift) then
begin
FEditState.SelLength := 0;
Invalidate;
end;
end;
VK_DOWN:
begin
if FEditState.CaretPos.Y < FLines.Count-1 then
begin
{// Selecting to the right
if [ssShift] = Shift then
begin
if FEditState.SelLength = 0 then FEditState.SelStart.X := FEditState.CaretPos.X;
Inc(FEditState.SelLength);
end
// Normal move to the right
else} FEditState.SelLength := 0;
Inc(FEditState.CaretPos.Y);
DoManageVisibleTextStart();
FEditState.CaretIsVisible := True;
Invalidate;
end
// if we are not moving, at least deselect
else if ([ssShift] <> Shift) then
begin
FEditState.SelLength := 0;
Invalidate;
end;
end;
VK_RETURN:
begin
if not MultiLine then Exit;
// Selection delete
if IsSomethingSelected() then
DoDeleteSelection();
// If the are no contents at the moment, add two lines, because the first one always exists for the user
if FLines.Count = 0 then
begin
FLines.Add('');
FLines.Add('');
FEditState.CaretPos := Point(0, 1);
end
else
begin
// Get the two halves of the text separated by the cursor
lLeftText := UTF8Copy(lOldText, 1, FEditState.CaretPos.X);
lRightText := UTF8Copy(lOldText, FEditState.CaretPos.X+1, lOldTextLength);
// Move the right part to a new line
SetCurrentLine(lLeftText);
FLines.Insert(FEditState.CaretPos.Y+1, lRightText);
FEditState.CaretPos := Point(0, FEditState.CaretPos.Y+1);
end;
Invalidate;
end;
else
lKeyWasProcessed := False;
end; // case
if lKeyWasProcessed then
begin
FEditState.EventArrived := True;
Key := 0;
end;
end;
procedure TCDEdit.KeyUp(var Key: word; Shift: TShiftState);
begin
inherited KeyUp(Key, Shift);
// copy, paste, cut, etc
if Shift = [ssCtrl] then
begin
case Key of
VK_C:
begin
end;
end;
end;
end;
procedure TCDEdit.UTF8KeyPress(var UTF8Key: TUTF8Char);
var
lLeftText, lRightText, lOldText: String;
begin
inherited UTF8KeyPress(UTF8Key);
// ReadOnly disables key input
if FReadOnly then Exit;
// LCL-Carbon sends Backspace as a UTF-8 Char
// LCL-Qt sends arrow left,right,up,down (#28..#31), <enter>, ESC, etc
// Don't handle any non-char keys here because they are already handled in KeyDown
if (UTF8Key[1] in [#0..#$1F,#$7F]) or
((UTF8Key[1]=#$c2) and (UTF8Key[2] in [#$80..#$9F])) then Exit;
DoDeleteSelection;
// Normal characters
lOldText := GetCurrentLine();
lLeftText := UTF8Copy(lOldText, 1, FEditState.CaretPos.X);
lRightText := UTF8Copy(lOldText, FEditState.CaretPos.X+1, UTF8Length(lOldText));
SetCurrentLine(lLeftText + UTF8Key + lRightText);
Inc(FEditState.CaretPos.X);
DoManageVisibleTextStart();
FEditState.EventArrived := True;
FEditState.CaretIsVisible := True;
Invalidate;
end;
procedure TCDEdit.MouseDown(Button: TMouseButton; Shift: TShiftState; X,
Y: integer);
begin
inherited MouseDown(Button, Shift, X, Y);
DragDropStarted := True;
// Caret positioning
FEditState.CaretPos := MousePosToCaretPos(X, Y);
FEditState.SelLength := 0;
FEditState.SelStart.X := FEditState.CaretPos.X;
FEditState.SelStart.Y := FEditState.CaretPos.Y;
FEditState.EventArrived := True;
FEditState.CaretIsVisible := True;
Invalidate;
end;
procedure TCDEdit.MouseMove(Shift: TShiftState; X, Y: integer);
begin
inherited MouseMove(Shift, X, Y);
// Mouse dragging selection
if DragDropStarted then
begin
FEditState.CaretPos := MousePosToCaretPos(X, Y);
FEditState.SelLength := FEditState.CaretPos.X - FEditState.SelStart.X;
FEditState.EventArrived := True;
FEditState.CaretIsVisible := True;
Invalidate;
end;
end;
procedure TCDEdit.MouseUp(Button: TMouseButton; Shift: TShiftState; X,
Y: integer);
begin
inherited MouseUp(Button, Shift, X, Y);
DragDropStarted := False;
end;
procedure TCDEdit.MouseEnter;
begin
inherited MouseEnter;
end;
procedure TCDEdit.MouseLeave;
begin
inherited MouseLeave;
end;
constructor TCDEdit.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
Width := 80;
Height := 25;
TabStop := True;
ControlStyle := ControlStyle - [csAcceptsControls] + [csRequiresKeyboardInput];
// State information
FLines := TStringList.Create;
FEditState.VisibleTextStart := Point(1, 0);
FEditState.Lines := FLines;
FEditState.PasswordChar := #0;
// Caret code
FCaretTimer := TTimer.Create(Self);
FCaretTimer.OnTimer := @HandleCaretTimer;
FCaretTimer.Interval := 500;
FCaretTimer.Enabled := False;
end;
destructor TCDEdit.Destroy;
begin
inherited Destroy;
FLines.Free;
//FCaretTimer.Free; Don't free here because it is assigned with a owner
end;
function TCDEdit.GetCurrentLine: string;
begin
if (FEditState.Lines.Count = 0) or (FEditState.CaretPos.Y >= FEditState.Lines.Count) then
Result := ''
else Result := FLines.Strings[FEditState.CaretPos.Y];
end;
procedure TCDEdit.SetCurrentLine(AStr: string);
begin
if (FEditState.Lines.Count = 0) or (FEditState.CaretPos.Y >= FEditState.Lines.Count) then
begin
FEditState.Lines.Text := AStr;
FEditState.VisibleTextStart.X := 1;
FEditState.VisibleTextStart.Y := 0;
FEditState.CaretPos.X := 0;
FEditState.CaretPos.Y := 0;
end
else FLines.Strings[FEditState.CaretPos.Y] := AStr;
DoChange();
end;
function TCDEdit.GetSelStartX: Integer;
begin
Result := FEditState.SelStart.X;
end;
function TCDEdit.GetSelLength: Integer;
begin
Result := FEditState.SelLength;
if Result < 0 then Result := Result * -1;
end;
procedure TCDEdit.SetSelStartX(ANewX: Integer);
begin
FEditState.SelStart.X := ANewX;
end;
procedure TCDEdit.SetSelLength(ANewLength: Integer);
begin
FEditState.SelLength := ANewLength;
end;
{ TCDCheckBox }
function TCDCheckBox.GetControlId: TCDControlID;
begin
Result := cidCheckBox;
end;
constructor TCDCheckBox.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
Width := 75;
Height := 17;
TabStop := True;
ControlStyle := ControlStyle - [csAcceptsControls];
AutoSize := True;
FHasOnOffStates := True;
FState := FState + [csfOff];
end;
destructor TCDCheckBox.Destroy;
begin
inherited Destroy;
end;
{ TCDButton }
procedure TCDButton.SetModalResult(const AValue: TModalResult);
begin
if AValue=FModalResult then exit;
FModalResult:=AValue;
end;
procedure TCDButton.SetGlyph(AValue: TBitmap);
begin
if FGlyph=AValue then Exit;
FGlyph.Assign(AValue);
Invalidate;
end;
procedure TCDButton.SetKind(AKind: TBitBtnKind);
var
ACaption: string;
Shortcutpos: Integer;
BitBtnImage: Integer;
C: TCustomBitmap;
begin
if AKind <> FKind then begin
FKind:= AKind;
if FKind = bkCustom then exit; // if changed to custom, don't touch other settings
ModalResult:= BitBtnModalResults[AKind];
ACaption:= GetButtonCaption(BitBtnImages[AKind]);
Shortcutpos:= DeleteAmpersands(ACaption);
Caption:= ACaption;
if Shortcutpos > 0 then begin
//ShortcutVal:= ACaption[Shortcutpos];
end;
BitBtnImage:= BitBtnImages[AKind];
if BitBtnImage <> idButtonBase then begin
C := GetDefaultButtonIcon(BitBtnImage);
try
Glyph.Assign(C);
finally
C.Free;
end;
end;
end;
end;
procedure TCDButton.Click;
var
Form : TCustomForm;
begin
Form := GetParentForm(Self);
{ First we mimic the TBitBtn behavior
A TBitBtn with Kind = bkClose should
- Close the ParentForm if ModalResult = mrNone.
It should not set ParentForm.ModalResult in this case
- Close a non-modal ParentForm if ModalResult in [mrNone, mrClose]
- In all other cases it should behave like any other TBitBtn
}
if (FKind = bkClose) then
begin
if (Form <> nil) then
begin
if (FModalResult = mrNone) or
((FModalResult = mrClose) and not (fsModal in Form.FormState)) then
begin
Form.Close;
Exit;
end;
end;
end;
if ModalResult <> mrNone
then begin
if Form <> nil then Form.ModalResult := ModalResult;
end;
inherited Click;
end;
function TCDButton.GetControlId: TCDControlID;
begin
Result := cidButton;
end;
procedure TCDButton.CreateControlStateEx;
begin
FBState := TCDButtonStateEx.Create;
FStateEx := FBState;
end;
procedure TCDButton.PrepareControlStateEx;
begin
inherited PrepareControlStateEx;
FBState.Glyph := FGlyph;
end;
constructor TCDButton.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
TabStop := True;
Width := 75;
Height := 25;
ParentFont := True;
FGlyph := TBitmap.Create;
end;
destructor TCDButton.Destroy;
begin
FGlyph.Free;
inherited Destroy;
end;
{ TCDRadioButton }
function TCDRadioButton.GetControlId: TCDControlID;
begin
Result := cidRadioButton;
end;
constructor TCDRadioButton.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
Width := 75;
Height := 17;
TabStop := True;
ControlStyle := ControlStyle - [csAcceptsControls];
AutoSize := True;
FHasOnOffStates := True;
FIsGrouped := True;
FGroupIndex := -2; // special value for TCDRadioButton
DoCheckIfFirstButtonInGroup();
end;
destructor TCDRadioButton.Destroy;
begin
inherited Destroy;
end;
{ TCDPositionedControl }
procedure TCDPositionedControl.SetMax(AValue: Integer);
begin
if FMax=AValue then Exit;
FMax:=AValue;
if AValue < FMin then FMax := FMin
else FMax := AValue;
if FPosition > FMax then FPosition := FMax;
if not (csLoading in ComponentState) then Invalidate;
end;
procedure TCDPositionedControl.SetMin(AValue: Integer);
begin
if FMin=AValue then Exit;
if AValue > FMax then FMin := FMax
else FMin:=AValue;
if FPosition < FMin then FPosition := FMin;
if not (csLoading in ComponentState) then Invalidate;
end;
procedure TCDPositionedControl.SetPageSize(AValue: Integer);
begin
if FPageSize=AValue then Exit;
FPageSize:=AValue;
if not (csLoading in ComponentState) then Invalidate;
end;
procedure TCDPositionedControl.SetPosition(AValue: Integer);
begin
if FPosition=AValue then Exit;
FPosition:=AValue;
if FPosition > FMax then FPosition := FMax;
if FPosition < FMin then FPosition := FMin;
// Don't do OnChange during loading
if not (csLoading in ComponentState) then
begin
if Assigned(OnChange) then OnChange(Self);
Invalidate;
end;
end;
procedure TCDPositionedControl.DoClickButton(AButton: TCDControlState; ALargeChange: Boolean);
var
lChange: Integer;
NewPosition: Integer = -1;
begin
if ALargeChange then lChange := FLargeChange
else lChange := FSmallChange;
if csfLeftArrow in AButton then NewPosition := Position - lChange
else if csfRightArrow in AButton then NewPosition := Position + lChange;
if (NewPosition >= 0) and (NewPosition <> Position) then
begin
Position := NewPosition;
if Assigned(FOnChangeByUser) then FOnChangeByUser(Self);
end;
end;
procedure TCDPositionedControl.HandleBtnClickTimer(ASender: TObject);
var
lButton: TCDControlState;
lMousePos: TPoint;
begin
lMousePos := ScreenToClient(Mouse.CursorPos);
lButton := GetButtonFromMousePos(lMousePos.X, lMousePos.Y);
if lButton = FButton then DoClickButton(FButton, True);
end;
function TCDPositionedControl.GetPositionFromMousePosWithMargins(X, Y,
ALeftMargin, ARightMargin: Integer; AIsHorizontal, AAcceptMouseOutsideStrictArea: Boolean): integer;
var
lCoord, lSize: Integer;
begin
Result := -1;
if AIsHorizontal then
begin
lCoord := X;
lSize := Width;
end
else
begin
lCoord := Y;
lSize := Height;
end;
if lCoord > lSize - ARightMargin then
begin
if AAcceptMouseOutsideStrictArea then Result := FMax;
Exit;
end
else if lCoord < ALeftMargin then
begin
if AAcceptMouseOutsideStrictArea then Result := FMin;
Exit;
end
else Result := FMin + (lCoord - ALeftMargin) * (FMax - FMin + 1) div (lSize - ARightMargin - ALeftMargin);
// sanity check
if Result > FMax then Result := FMax;
if Result < FMin then Result := FMin;
end;
function TCDPositionedControl.GetPositionDisplacementWithMargins(AOldMousePos,
ANewMousePos: TPoint; ALeftMargin, ARightMargin: Integer; AIsHorizontal: Boolean): Integer;
var
lCoord, lSize, lCurPos: Integer;
begin
if AIsHorizontal then
begin
lCoord := ANewMousePos.X-AOldMousePos.X;
lSize := Width;
end
else
begin
lCoord := ANewMousePos.Y-AOldMousePos.Y;
lSize := Height;
end;
Result := FMin + lCoord * (FMax - FMin + 1) div (lSize - ARightMargin - ALeftMargin);
lCurPos := Result + FPositionAtMouseDown;
// sanity check
if lCurPos > FMax then Result := FMax - FPositionAtMouseDown;
if lCurPos < FMin then Result := FMin - FPositionAtMouseDown;
end;
function TCDPositionedControl.GetButtonFromMousePos(X, Y: Integer): TCDControlState;
begin
Result := [];
end;
procedure TCDPositionedControl.CreateControlStateEx;
begin
FPCState := TCDPositionedCStateEx.Create;
FStateEx := FPCState;
end;
procedure TCDPositionedControl.PrepareControlStateEx;
begin
inherited PrepareControlStateEx;
if FMin < FMax then FPCState.FloatPos := FPosition / (FMax - FMin)
else FPCState.FloatPos := 0.0;
FPCState.PosCount := FMax - FMin + 1;
FPCState.Position := FPosition - FMin;
if FMin < FMax then FPCState.FloatPageSize := FPageSize / (FMax - FMin)
else FPCState.FloatPageSize := 1.0;
end;
procedure TCDPositionedControl.KeyDown(var Key: word; Shift: TShiftState);
var
NewPosition: Integer;
begin
inherited KeyDown(Key, Shift);
NewPosition := 0;
if (Key = VK_LEFT) or (Key = VK_DOWN) then
NewPosition := FPosition - FSmallChange;
if (Key = VK_UP) or (Key = VK_RIGHT) then
NewPosition := FPosition + FSmallChange;
if (Key = VK_PRIOR) then
NewPosition := FPosition - FLargeChange;
if (Key = VK_NEXT) then
NewPosition := FPosition + FLargeChange;
// sanity check
if NewPosition >= 0 then
begin
if NewPosition > FMax then NewPosition := FMax;
if NewPosition < FMin then NewPosition := FMin;
if (NewPosition <> Position) then
begin
Position := NewPosition;
if Assigned(FOnChangeByUser) then FOnChangeByUser(Self);
end;
end;
end;
procedure TCDPositionedControl.MouseDown(Button: TMouseButton;
Shift: TShiftState; X, Y: integer);
var
NewPosition: Integer;
begin
SetFocus;
if FMoveByDragging then
begin
FLastMouseDownPos := Point(X, Y);
FPositionAtMouseDown := Position;
DragDropStarted := True;
end
else
begin
NewPosition := GetPositionFromMousePos(X, Y);
DragDropStarted := True;
if (NewPosition >= 0) and (NewPosition <> Position) then
begin
Position := NewPosition;
if Assigned(FOnChangeByUser) then FOnChangeByUser(Self);
end;
end;
// Check if any buttons were clicked
FButton := GetButtonFromMousePos(X, Y);
FState := FState + FButton;
if FButton <> [] then
begin
DoClickButton(FButton, False);
FBtnClickTimer.Enabled := True;
end;
inherited MouseDown(Button, Shift, X, Y);
end;
procedure TCDPositionedControl.MouseMove(Shift: TShiftState; X, Y: integer);
var
NewPosition: Integer;
begin
if DragDropStarted then
begin
if FMoveByDragging then
begin
NewPosition := FPositionAtMouseDown + GetPositionDisplacement(FLastMouseDownPos, Point(X, Y));
if NewPosition <> Position then
begin
Position := NewPosition;
if Assigned(FOnChangeByUser) then FOnChangeByUser(Self);
end;
end
else
begin
NewPosition := GetPositionFromMousePos(X, Y);
if (NewPosition >= 0) and (NewPosition <> Position) then
begin
Position := NewPosition;
if Assigned(FOnChangeByUser) then FOnChangeByUser(Self);
end;
end;
end;
inherited MouseMove(Shift, X, Y);
end;
procedure TCDPositionedControl.MouseUp(Button: TMouseButton;
Shift: TShiftState; X, Y: integer);
begin
DragDropStarted := False;
FBtnClickTimer.Enabled := False;
FState := FState - [csfLeftArrow, csfRightArrow];
Invalidate;
inherited MouseUp(Button, Shift, X, Y);
end;
constructor TCDPositionedControl.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FSmallChange := 1;
FLargeChange := 5;
FMin := 0;
FMax := 10;
FPosition := 0;
FBtnClickTimer := TTimer.Create(nil);
FBtnClickTimer.Enabled := False;
FBtnClickTimer.Interval := 100;
FBtnClickTimer.OnTimer := @HandleBtnClickTimer;
end;
destructor TCDPositionedControl.Destroy;
begin
FBtnClickTimer.Free;
inherited Destroy;
end;
{ TCDScrollBar }
procedure TCDScrollBar.SetKind(AValue: TScrollBarKind);
begin
if FKind=AValue then Exit;
FKind:=AValue;
if not (csLoading in ComponentState) then Invalidate;
end;
procedure TCDScrollBar.GetBorderSizes(out ALeft, ARight: Integer);
begin
ALeft := FDrawer.GetMeasures(TCDSCROLLBAR_LEFT_SPACING) +
FDrawer.GetMeasures(TCDSCROLLBAR_LEFT_BUTTON_POS) +
FDrawer.GetMeasures(TCDSCROLLBAR_BUTTON_WIDTH);
ARight := FDrawer.GetMeasures(TCDSCROLLBAR_RIGHT_SPACING) +
FDrawer.GetMeasures(TCDSCROLLBAR_RIGHT_BUTTON_POS) +
FDrawer.GetMeasures(TCDSCROLLBAR_BUTTON_WIDTH);
end;
function TCDScrollBar.GetPositionFromMousePos(X, Y: Integer): integer;
var
lLeftBorder, lRightBorder: Integer;
begin
GetBorderSizes(lLeftBorder, lRightBorder);
Result := GetPositionFromMousePosWithMargins(X, Y, lLeftBorder, lRightBorder, FKind = sbHorizontal, False);
end;
function TCDScrollBar.GetButtonFromMousePos(X, Y: Integer): TCDControlState;
var
lCoord, lLeftBtnPos, lRightBtnPos: Integer;
begin
Result := [];
lLeftBtnPos := FDrawer.GetMeasures(TCDSCROLLBAR_LEFT_BUTTON_POS);
lRightBtnPos := FDrawer.GetMeasures(TCDSCROLLBAR_RIGHT_BUTTON_POS);
if FKind = sbHorizontal then
begin
lCoord := X;
if lLeftBtnPos < 0 then lLeftBtnPos := Width + lLeftBtnPos;
if lRightBtnPos < 0 then lRightBtnPos := Width + lRightBtnPos;
end
else
begin
lCoord := Y;
if lLeftBtnPos < 0 then lLeftBtnPos := Height + lLeftBtnPos;
if lRightBtnPos < 0 then lRightBtnPos := Height + lRightBtnPos;
end;
if (lCoord > lLeftBtnPos) and (lCoord < lLeftBtnPos +
FDrawer.GetMeasures(TCDSCROLLBAR_BUTTON_WIDTH)) then Result := [csfLeftArrow]
else if (lCoord > lRightBtnPos) and (lCoord < lRightBtnPos +
FDrawer.GetMeasures(TCDSCROLLBAR_BUTTON_WIDTH)) then Result := [csfRightArrow];
end;
function TCDScrollBar.GetPositionDisplacement(AOldMousePos, ANewMousePos: TPoint
): Integer;
var
lLeftBorder, lRightBorder: Integer;
begin
GetBorderSizes(lLeftBorder, lRightBorder);
Result := GetPositionDisplacementWithMargins(AOldMousePos, ANewMousePos,
lLeftBorder, lRightBorder, FKind = sbHorizontal);
end;
function TCDScrollBar.GetControlId: TCDControlID;
begin
Result:= cidScrollBar;
end;
procedure TCDScrollBar.PrepareControlState;
begin
inherited PrepareControlState;
if FKind = sbHorizontal then
FState := FState + [csfHorizontal] - [csfVertical, csfRightToLeft, csfTopDown]
else FState := FState + [csfVertical] - [csfHorizontal, csfRightToLeft, csfTopDown];
end;
constructor TCDScrollBar.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
Width := 121;
Height := 17;
FMax := 100;
FMoveByDragging := True;
end;
destructor TCDScrollBar.Destroy;
begin
inherited Destroy;
end;
{ TCDGroupBox }
function TCDGroupBox.GetControlId: TCDControlID;
begin
Result := cidGroupBox;
end;
procedure TCDGroupBox.RealSetText(const Value: TCaption);
begin
inherited RealSetText(Value);
if not (csLoading in ComponentState) then Invalidate;
end;
constructor TCDGroupBox.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
Width := 100;
Height := 100;
TabStop := False;
AutoSize := True;
end;
destructor TCDGroupBox.Destroy;
begin
inherited Destroy;
end;
{ TCDStaticText }
function TCDStaticText.GetControlId: TCDControlID;
begin
Result:=cidStaticText;
end;
procedure TCDStaticText.RealSetText(const Value: TCaption);
begin
inherited RealSetText(Value);
Invalidate;
end;
constructor TCDStaticText.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
Width := 70;
Height := 20;
TabStop := False;
ControlStyle := ControlStyle - [csAcceptsControls];
end;
destructor TCDStaticText.Destroy;
begin
inherited Destroy;
end;
{ TCDTrackBar }
procedure TCDTrackBar.SetOrientation(AValue: TTrackBarOrientation);
var
lOldWidth: Integer;
begin
if FOrientation=AValue then Exit;
// Invert the width and the height, but not if the property comes from the LFM
// because the width was already inverted in the designer and stored in the new value
if not (csLoading in ComponentState) then
begin
lOldWidth := Width;
Width := Height;
Height := lOldWidth;
end;
// Set the property and redraw
FOrientation:=AValue;
if not (csLoading in ComponentState) then
Invalidate;
end;
function TCDTrackBar.GetPositionFromMousePos(X, Y: Integer): integer;
var
lLeftBorder, lRightBorder: Integer;
begin
lLeftBorder := FDrawer.GetMeasures(TCDTRACKBAR_LEFT_SPACING);
lRightBorder := FDrawer.GetMeasures(TCDTRACKBAR_RIGHT_SPACING);
Result := GetPositionFromMousePosWithMargins(X, Y, lLeftBorder, lRightBorder, FOrientation = trHorizontal, True);
end;
function TCDTrackBar.GetPositionDisplacement(AOldMousePos, ANewMousePos: TPoint
): Integer;
begin
Result := 0; // not used anyway
end;
function TCDTrackBar.GetControlId: TCDControlID;
begin
Result := cidTrackBar;
end;
procedure TCDTrackBar.PrepareControlState;
begin
inherited PrepareControlState;
case FOrientation of
trHorizontal: FState := FState + [csfHorizontal] - [csfVertical, csfRightToLeft, csfTopDown];
trVertical: FState := FState + [csfVertical] - [csfHorizontal, csfRightToLeft, csfTopDown];
end;
end;
constructor TCDTrackBar.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
Height := 25;
Width := 100;
TabStop := True;
end;
destructor TCDTrackBar.Destroy;
begin
inherited Destroy;
end;
{ TCDProgressBar }
procedure TCDProgressBar.SetMax(AValue: integer);
begin
if FMax=AValue then Exit;
FMax:=AValue;
if not (csLoading in ComponentState) then Invalidate;
end;
procedure TCDProgressBar.SetBarShowText(AValue: Boolean);
begin
if FBarShowText=AValue then Exit;
FBarShowText:=AValue;
if not (csLoading in ComponentState) then Invalidate;
end;
procedure TCDProgressBar.SetMin(AValue: integer);
begin
if FMin=AValue then Exit;
FMin:=AValue;
if not (csLoading in ComponentState) then Invalidate;
end;
procedure TCDProgressBar.SetOrientation(AValue: TProgressBarOrientation);
begin
if FOrientation=AValue then Exit;
FOrientation:=AValue;
if not (csLoading in ComponentState) then Invalidate;
end;
procedure TCDProgressBar.SetPosition(AValue: integer);
begin
if FPosition=AValue then Exit;
FPosition:=AValue;
if not (csLoading in ComponentState) then Invalidate;
end;
procedure TCDProgressBar.SetSmooth(AValue: Boolean);
begin
if FSmooth=AValue then Exit;
FSmooth:=AValue;
if not (csLoading in ComponentState) then
Invalidate;
end;
procedure TCDProgressBar.SetStyle(AValue: TProgressBarStyle);
begin
if FStyle=AValue then Exit;
FStyle:=AValue;
if not (csLoading in ComponentState) then Invalidate;
end;
function TCDProgressBar.GetControlId: TCDControlID;
begin
Result := cidProgressBar;
end;
procedure TCDProgressBar.CreateControlStateEx;
begin
FPBState := TCDProgressBarStateEx.Create;
FStateEx := FPBState;
end;
procedure TCDProgressBar.PrepareControlStateEx;
begin
inherited PrepareControlStateEx;
if FMax <> FMin then FPBState.PercentPosition := (FPosition-FMin)/(FMax-FMin)
else FPBState.PercentPosition := 1.0;
FPBState.BarShowText := FBarShowText;
FPBState.Style := FStyle;
case FOrientation of
pbHorizontal: FState := FState + [csfHorizontal] - [csfVertical, csfRightToLeft, csfTopDown];
pbVertical: FState := FState + [csfVertical] - [csfHorizontal, csfRightToLeft, csfTopDown];
pbRightToLeft: FState := FState + [csfRightToLeft] - [csfVertical, csfHorizontal, csfTopDown];
pbTopDown: FState := FState + [csfTopDown] - [csfVertical, csfRightToLeft, csfHorizontal];
end;
FPBState.Smooth := FSmooth;
end;
constructor TCDProgressBar.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
Width := 100;
Height := 20;
FMax := 100;
TabStop := False;
end;
destructor TCDProgressBar.Destroy;
begin
inherited Destroy;
end;
{ TCDListView }
function TCDListView.GetProperty(AIndex: Integer): Boolean;
begin
Result := False;
end;
procedure TCDListView.SetColumns(AValue: TListColumns);
begin
if FColumns=AValue then Exit;
FColumns:=AValue;
if not (csLoading in ComponentState) then Invalidate;
end;
procedure TCDListView.SetProperty(AIndex: Integer; AValue: Boolean);
begin
end;
procedure TCDListView.SetShowColumnHeader(AValue: Boolean);
begin
if FShowColumnHeader=AValue then Exit;
FShowColumnHeader:=AValue;
if not (csLoading in ComponentState) then Invalidate;
end;
procedure TCDListView.SetViewStyle(AValue: TViewStyle);
begin
if FViewStyle=AValue then Exit;
FViewStyle:=AValue;
if not (csLoading in ComponentState) then Invalidate;
end;
function TCDListView.GetControlId: TCDControlID;
begin
Result := cidListView;
end;
procedure TCDListView.CreateControlStateEx;
begin
FLVState := TCDListViewStateEx.Create;
FStateEx := FLVState;
end;
procedure TCDListView.PrepareControlStateEx;
begin
inherited PrepareControlStateEx;
FLVState.Items := FListItems;
FLVState.Columns := FColumns;
FLVState.ViewStyle := FViewStyle;
FLVState.ShowColumnHeader := FShowColumnHeader;
end;
constructor TCDListView.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
Width := 250;
Height := 150;
FColumns := TListColumns.Create(nil);
FListItems := TCDListItems.Create();
TabStop := True;
FShowColumnHeader := True;
// FProperties: TListViewProperties;
// FViewStyle: TViewStyle;
ScrollBars := ssBoth;
end;
destructor TCDListView.Destroy;
begin
FColumns.Free;
FListItems.Free;
inherited Destroy;
end;
{ TCDToolBar }
procedure TCDToolBar.SetShowCaptions(AValue: Boolean);
begin
if FShowCaptions = AValue then Exit;
FShowCaptions := AValue;
if not (csLoading in ComponentState) then Invalidate;
end;
function TCDToolBar.GetControlId: TCDControlID;
begin
Result := cidToolBar;
end;
procedure TCDToolBar.CreateControlStateEx;
begin
FTBState := TCDToolBarStateEx.Create;
FStateEx := FTBState;
end;
procedure TCDToolBar.PrepareControlStateEx;
var
i, lX: Integer;
lCursorPos: TPoint;
lCurItem: TCDToolBarItem;
begin
inherited PrepareControlStateEx;
FTBState.ShowCaptions := FShowCaptions;
FTBState.Items := FItems;
FTBState.ToolBarHeight := Height;
// Handle mouse over items
lCursorPos := Mouse.CursorPos;
lCursorPos := ScreenToClient(lCursorPos);
lX := 0;
for i := 0 to GetItemCount()-1 do
begin
lCurItem := GetItem(i);
lCurItem.State := lCurItem.State - [csfMouseOver];
if IsPosInButton(lCursorPos, lCurItem, lX) then
lCurItem.State := lCurItem.State + [csfMouseOver];
if lCurItem.Down then
lCurItem.State := lCurItem.State + [csfSunken];
lX := lX + lCurItem.Width;
end;
end;
procedure TCDToolBar.MouseMove(Shift: TShiftState; X, Y: integer);
begin
inherited MouseMove(Shift, X, Y);
Invalidate;
end;
procedure TCDToolBar.MouseDown(Button: TMouseButton; Shift: TShiftState; X, Y: integer);
var
lCurItem: TCDToolBarItem;
begin
inherited MouseDown(Button, Shift, X, Y);
lCurItem := GetItemWithMousePos(Point(X, Y));
if lCurItem = nil then Exit;
if lCurItem.Kind in [tikButton, tikCheckButton] then
begin
lCurItem.State := lCurItem.State + [csfSunken];
Invalidate();
end;
end;
procedure TCDToolBar.MouseUp(Button: TMouseButton; Shift: TShiftState; X, Y: integer);
var
i: Integer;
lCurItem: TCDToolBarItem;
DoInvalidate: Boolean = False;
begin
inherited MouseUp(Button, Shift, X, Y);
lCurItem := GetItemWithMousePos(Point(X, Y));
if lCurItem = nil then Exit;
// click the selected checkbutton if applicable
if lCurItem.Kind in [tikCheckButton] then
begin
lCurItem.Down := not lCurItem.Down;
DoInvalidate := True;
end;
// up all buttons
for i := 0 to GetItemCount()-1 do
begin
lCurItem := GetItem(i);
if lCurItem.Kind in [tikButton, tikCheckButton] then
begin
lCurItem.State := lCurItem.State - [csfSunken];
DoInvalidate := True;
end;
end;
if DoInvalidate then Invalidate;
end;
procedure TCDToolBar.MouseLeave;
begin
inherited MouseLeave;
Invalidate;
end;
constructor TCDToolBar.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
Height := GetDrawer(dsDefault).GetMeasures(TCDTOOLBAR_DEFAULT_HEIGHT);
Align := alTop;
FItems := TFPList.Create();
TabStop := False;
end;
destructor TCDToolBar.Destroy;
begin
while FItems.Count > 0 do
DeleteItem(0);
FItems.Free;
inherited Destroy;
end;
function TCDToolBar.InsertItem(AKind: TCDToolbarItemKind; AIndex: Integer): TCDToolBarItem;
var
lNewItem: TCDToolBarItem;
begin
lNewItem := TCDToolBarItem.Create;
lNewItem.Kind := AKind;
FItems.Insert(AIndex, lNewItem);
Result := lNewItem;
PrepareCurrentDrawer();
case AKind of
tikButton, tikCheckButton: Result.Width := FDrawer.GetMeasures(TCDTOOLBAR_ITEM_BUTTON_DEFAULT_WIDTH);
tikDropDownButton:
Result.Width := FDrawer.GetMeasures(TCDTOOLBAR_ITEM_BUTTON_DEFAULT_WIDTH)
+ FDrawer.GetMeasures(TCDTOOLBAR_ITEM_ARROW_RESERVED_WIDTH);
tikSeparator, tikDivider: Result.Width := FDrawer.GetMeasures(TCDTOOLBAR_ITEM_SEPARATOR_DEFAULT_WIDTH);
end;
end;
function TCDToolBar.AddItem(AKind: TCDToolbarItemKind): TCDToolBarItem;
begin
Result := InsertItem(AKind, FItems.Count);
end;
procedure TCDToolBar.DeleteItem(AIndex: Integer);
begin
if (AIndex < 0) or (AIndex >= FItems.Count) then Exit;
FItems.Delete(AIndex);
end;
function TCDToolBar.GetItem(AIndex: Integer): TCDToolBarItem;
begin
Result := nil;
if (AIndex < 0) or (AIndex >= FItems.Count) then Exit;
Result := TCDToolBarItem(FItems.Items[AIndex]);
end;
function TCDToolBar.GetItemCount: Integer;
begin
Result := FItems.Count;
end;
function TCDToolBar.GetItemWithMousePos(APosInControl: TPoint): TCDToolBarItem;
var
i, lX: Integer;
lCurItem: TCDToolBarItem;
begin
Result := nil;
lX := 0;
for i := 0 to FItems.Count-1 do
begin
lCurItem := GetItem(i);
if IsPosInButton(APosInControl, lCurItem, lX) then
Exit(lCurItem);
lX := lX + lCurItem.Width;
end;
end;
function TCDToolBar.IsPosInButton(APosInControl: TPoint; AItem: TCDToolBarItem;
AItemX: Integer): Boolean;
var
lSize: TSize;
begin
lSize.CY := Height;
lSize.CX := AItem.Width;
Result := (APosInControl.X > AItemX) and (APosInControl.X < AItemX + lSize.CX) and
(APosInControl.Y > 0) and (APosInControl.Y < lSize.CY);
end;
{ TCDTabSheet }
procedure TCDTabSheet.RealSetText(const Value: TCaption);
var
lIndex: Integer;
begin
inherited RealSetText(Value);
lIndex := CDTabControl.Tabs.IndexOfObject(Self);
if lIndex >= 0 then
CDTabControl.Tabs.Strings[lIndex] := Value;
CDTabControl.Invalidate;
end;
procedure TCDTabSheet.SetParent(NewParent: TWinControl);
begin
inherited SetParent(NewParent);
// Code adding tabs added via the object inspector
if (csLoading in ComponentState) and
(NewParent <> nil) and (NewParent is TCDPageControl) then
begin
CDTabControl := NewParent as TCDCustomTabControl;
TCDPageControl(CDTabControl).AddPage(Self);
end;
end;
constructor TCDTabSheet.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
TabStop := False;
ParentColor := True;
parentFont := True;
ControlStyle := [csAcceptsControls, csCaptureMouse, csClickEvents,
csDesignFixedBounds, csDoubleClicks, csDesignInteractive];
//ControlStyle := ControlStyle + [csAcceptsControls, csDesignFixedBounds,
// csNoDesignVisible, csNoFocus];
end;
destructor TCDTabSheet.Destroy;
var
lIndex: Integer;
begin
// We should support deleting the tabsheet directly too,
// and then it should update the tabcontrol
// This is important mostly for the designer
if CDTabControl <> nil then
begin
lIndex := CDTabControl.FTabs.IndexOfObject(Self);
if lIndex >= 0 then
begin
CDTabControl.FTabs.Delete(lIndex);
CDTabControl.CorrectTabIndex();
end;
end;
inherited Destroy;
end;
procedure TCDTabSheet.EraseBackground(DC: HDC);
begin
end;
procedure TCDTabSheet.Paint;
var
lSize: TSize;
begin
if CDTabControl <> nil then
begin
lSize := Size(Width, Height);
CDTabControl.FDrawer.DrawTabSheet(Canvas, Point(0, 0), lSize, CDTabControl.FState,
CDTabControl.FTabCState);
end;
end;
{ TCDCustomTabControl }
procedure TCDCustomTabControl.MouseDown(Button: TMouseButton;
Shift: TShiftState; X, Y: integer);
var
lTabIndex: Integer;
begin
inherited MouseDown(Button, Shift, X, Y);
lTabIndex := MousePosToTabIndex(X, Y);
if lTabIndex >=0 then
begin
if Self is TCDPageControl then
(Self as TCDPageControl).PageIndex := lTabIndex
else
TabIndex := lTabIndex;
end;
end;
procedure TCDCustomTabControl.MouseUp(Button: TMouseButton; Shift: TShiftState;
X, Y: integer);
var
lTabIndex, lCloseButtonSize: Integer;
lNewPage: TCDTabSheet;
lCloseButtonPos: TPoint;
begin
inherited MouseUp(Button, Shift, X, Y);
lTabIndex := MousePosToTabIndex(X, Y);
// Check if the add button was clicked
if (nboShowAddTabButton in Options) and (lTabIndex = Tabs.Count) then
begin
if Self is TCDPageControl then
begin
lNewPage := (Self as TCDPageControl).AddPage('New Page');
if Assigned(OnUserAddedPage) then OnUserAddedPage(Self, lNewPage);
end
else
begin
Tabs.Add('New Tab');
if Assigned(OnUserAddedPage) then OnUserAddedPage(Self, nil);
end;
end
// Check if a close button was clicked
else if (nboShowCloseButtons in Options) and (lTabIndex >= 0) then
begin
FTabCState.CurTabIndex := lTabIndex;
lCloseButtonPos.X := FDrawer.GetMeasuresEx(Canvas, TCDCTABCONTROL_CLOSE_BUTTON_POS_X, FState, FStateEx);
lCloseButtonPos.Y := FDrawer.GetMeasuresEx(Canvas, TCDCTABCONTROL_CLOSE_BUTTON_POS_Y, FState, FStateEx);
lCloseButtonSize := FDrawer.GetMeasures(TCDCTABCONTROL_CLOSE_TAB_BUTTON_WIDTH);
if (X >= lCloseButtonPos.X) and (X <= lCloseButtonPos.X + lCloseButtonSize) and
(Y >= lCloseButtonPos.Y) and (Y <= lCloseButtonPos.Y + lCloseButtonSize) then
begin
if Self is TCDPageControl then (Self as TCDPageControl).RemovePage(lTabIndex)
else Tabs.Delete(lTabIndex);
end;
end;
end;
procedure TCDCustomTabControl.SetOptions(AValue: TCTabControlOptions);
begin
if FOptions=AValue then Exit;
FOptions:=AValue;
Invalidate;
end;
procedure TCDCustomTabControl.SetTabIndex(AValue: Integer);
begin
if FTabIndex = AValue then Exit;
if Assigned(OnChanging) then OnChanging(Self);
FTabIndex := AValue;
if Assigned(OnChange) then OnChange(Self);
Invalidate;
end;
procedure TCDCustomTabControl.SetTabs(AValue: TStringList);
begin
if FTabs=AValue then Exit;
FTabs.Assign(AValue);
CorrectTabIndex();
Invalidate;
end;
function TCDCustomTabControl.MousePosToTabIndex(X, Y: Integer): Integer;
var
i: Integer;
CurStartLeftPos: Integer = 0;
VisiblePagesStarted: Boolean = False;
lLastTab, lTabWidth, lTabHeight: Integer;
begin
Result := -1;
if nboShowAddTabButton in Options then lLastTab := Tabs.Count
else lLastTab := Tabs.Count - 1;
for i := 0 to lLastTab do
begin
if i = FTabCState.LeftmostTabVisibleIndex then
VisiblePagesStarted := True;
if VisiblePagesStarted then
begin
FTabCState.CurTabIndex := i;
lTabWidth := FDrawer.GetMeasuresEx(Canvas, TCDCTABCONTROL_TAB_WIDTH, FState, FTabCState);
lTabHeight := FDrawer.GetMeasuresEx(Canvas, TCDCTABCONTROL_TAB_HEIGHT, FState, FTabCState);
if (X > CurStartLeftPos) and
(X < CurStartLeftPos + lTabWidth) and
(Y < lTabHeight) then
begin
Exit(i);
end;
CurStartLeftPos := CurStartLeftPos + lTabWidth;
end;
end;
end;
function TCDCustomTabControl.GetControlId: TCDControlID;
begin
Result := cidCTabControl;
end;
procedure TCDCustomTabControl.CreateControlStateEx;
begin
FTabCState := TCDCTabControlStateEx.Create;
FStateEx := FTabCState;
end;
procedure TCDCustomTabControl.PrepareControlStateEx;
begin
inherited PrepareControlStateEx;
FTabCState.Tabs := Tabs;
FTabCState.TabIndex := TabIndex;
FTabCState.TabCount := GetTabCount();
FTabCState.Options := FOptions;
end;
constructor TCDCustomTabControl.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
Width := 232;
Height := 184;
TabStop := True;
ParentColor := True;
ParentFont := True;
ControlStyle := ControlStyle + [csAcceptsControls, csDesignInteractive];
// FTabs should hold only visible tabs
FTabs := TStringList.Create;
end;
destructor TCDCustomTabControl.Destroy;
begin
FTabs.Free;
inherited Destroy;
end;
function TCDCustomTabControl.GetTabCount: Integer;
begin
Result := 0;
if FTabs <> nil then Result := FTabs.Count;
end;
procedure TCDCustomTabControl.CorrectTabIndex;
begin
if FTabIndex >= FTabs.Count then SetTabIndex(FTabs.Count - 1);
end;
{ TCDPageControl }
function TCDPageControl.AddPage(S: string): TCDTabSheet;
// InsertPage(FPages.Count, S);
var
NewPage: TCDTabSheet;
begin
NewPage := TCDTabSheet.Create(Owner);
NewPage.Parent := Self;
NewPage.CDTabControl := Self;
NewPage.Caption := S;
PositionTabSheet(NewPage);
FTabs.AddObject(S, NewPage);
SetActivePage(NewPage);
Result := NewPage;
end;
procedure TCDPageControl.AddPage(APage: TCDTabSheet);
begin
APage.CDTabControl := Self;
PositionTabSheet(APage);
FTabs.AddObject(APage.Caption, APage);
SetActivePage(APage);
end;
function TCDPageControl.GetPage(AIndex: integer): TCDTabSheet;
begin
if (AIndex >= 0) and (AIndex < FTabs.Count) then
Result := TCDTabSheet(FTabs.Objects[AIndex])
else
Result := nil;
end;
function TCDPageControl.InsertPage(aIndex: integer; S: string): TCDTabSheet;
var
NewPage: TCDTabSheet;
begin
NewPage := TCDTabSheet.Create(Owner);
NewPage.Parent := Self;
NewPage.CDTabControl := Self;
NewPage.Caption := S;
PositionTabSheet(NewPage);
FTabs.InsertObject(AIndex, S, NewPage);
SetActivePage(NewPage);
Result := NewPage;
end;
procedure TCDPageControl.RemovePage(aIndex: integer);
begin
if (AIndex < 0) or (AIndex >= FTabs.Count) then Exit;
Application.ReleaseComponent(TComponent(FTabs.Objects[AIndex]));
FTabs.Delete(aIndex);
if FTabIndex >= FTabs.Count then SetPageIndex(FTabIndex-1);
Invalidate;
end;
function TCDPageControl.FindNextPage(CurPage: TCDTabSheet;
GoForward, CheckTabVisible: boolean): TCDTabSheet;
var
I, TempStartIndex: integer;
begin
if FTabs.Count <> 0 then
begin
//StartIndex := FPages.IndexOfObject(CurPage);
TempStartIndex := FTabs.IndexOfObject(CurPage);
if TempStartIndex = -1 then
if GoForward then
TempStartIndex := FTabs.Count - 1
else
TempStartIndex := 0;
I := TempStartIndex;
repeat
if GoForward then
begin
Inc(I);
if I = FTabs.Count then
I := 0;
end
else
begin
if I = 0 then
I := FTabs.Count;
Dec(I);
end;
Result := TCDTabSheet(FTabs.Objects[I]);
if not CheckTabVisible or Result.Visible then
Exit;
until I = TempStartIndex;
end;
Result := nil;
end;
procedure TCDPageControl.SelectNextPage(GoForward: boolean;
CheckTabVisible: boolean = True);
var
Page: TCDTabSheet;
begin
Page := FindNextPage(ActivePage, GoForward, CheckTabVisible);
if (Page <> nil) and (Page <> ActivePage) then
SetActivePage(Page);
end;
constructor TCDPageControl.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
ControlStyle := ControlStyle - [csAcceptsControls];
end;
destructor TCDPageControl.Destroy;
begin
inherited Destroy;
end;
procedure TCDPageControl.SetActivePage(Value: TCDTabSheet);
var
i: integer;
CurPage: TCDTabSheet;
begin
for i := 0 to FTabs.Count - 1 do
begin
CurPage := TCDTabSheet(FTabs.Objects[i]);
if CurPage = Value then
begin
PositionTabSheet(CurPage);
CurPage.BringToFront;
CurPage.Visible := True;
// Check first, Tab is Visible?
SetTabIndex(i);
end
else if CurPage <> nil then
begin
//CurPage.Align := alNone;
//CurPage.Height := 0;
CurPage.Visible := False;
end;
end;
Invalidate;
end;
procedure TCDPageControl.SetPageIndex(Value: integer);
begin
if (Value > -1) and (Value < FTabs.Count) then
begin
SetTabIndex(Value);
ActivePage := GetPage(Value);
end;
end;
procedure TCDPageControl.UpdateAllDesignerFlags;
var
i: integer;
begin
for i := 0 to FTabs.Count - 1 do
UpdateDesignerFlags(i);
end;
procedure TCDPageControl.UpdateDesignerFlags(APageIndex: integer);
var
CurPage: TCDTabSheet;
begin
CurPage := GetPage(APageIndex);
if APageIndex <> fTabIndex then
CurPage.ControlStyle := CurPage.ControlStyle + [csNoDesignVisible]
else
CurPage.ControlStyle := CurPage.ControlStyle - [csNoDesignVisible];
end;
procedure TCDPageControl.PositionTabSheet(ATabSheet: TCDTabSheet);
var
lIndex: Integer;
lClientArea: TRect;
begin
lIndex := FTabs.IndexOfObject(ATabSheet);
FTabCState.TabIndex := lIndex;
PrepareControlState;
PrepareControlStateEx;
lClientArea := FDrawer.GetClientArea(Canvas, Size(Width, Height), GetControlId, FState, FStateEx);
ATabSheet.BorderSpacing.Top := lClientArea.Top;
ATabSheet.BorderSpacing.Left := lClientArea.Left;
ATabSheet.BorderSpacing.Right := Width - lClientArea.Right;
ATabSheet.BorderSpacing.Bottom := Height - lClientArea.Bottom;
ATabSheet.Align := alClient;
end;
function TCDPageControl.GetActivePage: TCDTabSheet;
begin
Result := GetPage(FTabIndex);
end;
function TCDPageControl.GetPageCount: integer;
begin
Result := FTabs.Count;
end;
function TCDPageControl.GetPageIndex: integer;
begin
Result := FTabIndex;
end;
{ TCDSpinEdit }
procedure TCDSpinEdit.UpDownChanging(Sender: TObject; var AllowChange: Boolean);
begin
Value := FUpDown.Position / Power(10, FDecimalPlaces);
end;
procedure TCDSpinEdit.SetIncrement(AValue: Double);
begin
if FIncrement=AValue then Exit;
FIncrement:=AValue;
DoUpdateUpDown;
end;
procedure TCDSpinEdit.SetDecimalPlaces(AValue: Byte);
begin
if FDecimalPlaces=AValue then Exit;
FDecimalPlaces:=AValue;
DoUpdateUpDown;
DoUpdateText;
end;
procedure TCDSpinEdit.SetMaxValue(AValue: Double);
begin
if FMaxValue=AValue then Exit;
FMaxValue:=AValue;
if FValue > FMaxValue then Value := FMaxValue;
DoUpdateUpDown;
end;
procedure TCDSpinEdit.SetMinValue(AValue: Double);
begin
if FMinValue=AValue then Exit;
FMinValue:=AValue;
if FValue < FMinValue then Value := FMinValue;
DoUpdateUpDown;
end;
procedure TCDSpinEdit.SetValue(AValue: Double);
begin
if FValue=AValue then Exit;
if FValue < FMinValue then Exit;
if FValue > FMaxValue then Exit;
FValue:=AValue;
DoUpdateText;
DoUpdateUpDown;
end;
procedure TCDSpinEdit.DoUpdateText;
begin
if FDecimalPlaces > 0 then Text := FloatToStr(FValue)
else Text := IntToStr(Round(FValue));
Invalidate;
end;
procedure TCDSpinEdit.DoUpdateUpDown;
begin
FUpDown.Min := Round(FMinValue * Power(10, FDecimalPlaces));
FUpDown.Max := Round(FMaxValue * Power(10, FDecimalPlaces));
FUpDown.Position := Round(FValue * Power(10, FDecimalPlaces));
end;
procedure TCDSpinEdit.DoChange;
var
lValue: Double;
begin
if SysUtils.TryStrToFloat(Caption, lValue) then FValue := lValue;
DoUpdateUpDown;
inherited DoChange;
end;
constructor TCDSpinEdit.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FUpDown := TUpDown.Create(Self);
FUpDown.Align := alRight;
FUpDown.Parent := Self;
FUpDown.OnChanging :=@UpDownChanging;
FMinValue := 0;
FMaxValue := 100;
FIncrement := 1;
DoUpdateText();
end;
destructor TCDSpinEdit.Destroy;
begin
inherited Destroy;
end;
end.
|