1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394
|
{ /***************************************************************************
designer.pp - Lazarus IDE unit
--------------------------------
Initial Revision : Sat May 10 23:15:32 CST 1999
***************************************************************************/
***************************************************************************
* *
* This source is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This code is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* General Public License for more details. *
* *
* A copy of the GNU General Public License is available on the World *
* Wide Web at <http://www.gnu.org/copyleft/gpl.html>. You can also *
* obtain it by writing to the Free Software Foundation, *
* Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1335, USA. *
* *
***************************************************************************
}
unit Designer;
{$mode objfpc}{$H+}
interface
{off $DEFINE VerboseDesigner}
{off $DEFINE VerboseDesignerDraw}
{off $DEFINE VerboseDesignerSelect}
uses
// RTL + FCL + LCL
Types, Classes, Math, SysUtils, variants, TypInfo,
LCLProc, LCLType, LResources, LCLIntf, LMessages, InterfaceBase,
Forms, Controls, GraphType, Graphics, Dialogs, ExtCtrls, Menus, ClipBrd,
// LazUtils
LazFileUtils, LazFileCache,
// IDEIntf
IDEDialogs, PropEdits, PropEditUtils, ComponentEditors, MenuIntf,
IDEImagesIntf, FormEditingIntf, ComponentReg, IDECommands, LazIDEIntf,
ProjectIntf, ObjectInspector,
// IDE
LazarusIDEStrConsts, EnvironmentOpts, EditorOptions, SourceEditor,
// Designer
AlignCompsDlg, SizeCompsDlg, ScaleCompsDlg, DesignerProcs, CustomFormEditor,
AskCompNameDlg, ControlSelection, ChangeClassDialog, ImgList;
type
TDesigner = class;
TOnGetSelectedComponentClass = procedure(Sender: TObject;
var RegisteredComponent: TRegisteredComponent) of object;
TOnSetDesigning = procedure(Sender: TObject; Component: TComponent;
Value: boolean) of object;
TOnPasteComponents = procedure(Sender: TObject; LookupRoot: TComponent;
TxtCompStream: TStream; Parent: TWinControl;
var NewComponents: TFPList) of object;
TOnPastedComponents = procedure(Sender: TObject; LookupRoot: TComponent) of object;
TOnPersistentDeleted = procedure(Sender: TObject; APersistent: TPersistent)
of object;
TOnGetNonVisualCompIcon = procedure(Sender: TObject;
AComponent: TComponent; var ImageList: TCustomImageList; var ImageIndex: TImageIndex) of object;
TOnRenameComponent = procedure(Designer: TDesigner; AComponent: TComponent;
const NewName: string) of object;
TOnProcessCommand = procedure(Sender: TObject; Command: word;
var Handled: boolean) of object;
TOnComponentAdded = procedure(Sender: TObject; AComponent: TComponent;
ARegisteredComponent: TRegisteredComponent) of object;
TOnForwardKeyToObjectInspector = procedure(Sender: TObject; Key: TUTF8Char) of object;
TOnHasParentCandidates = function: Boolean of object;
TDesignerFlag = (
dfHasSized,
dfDuringPaintControl,
dfShowEditorHints,
dfShowComponentCaptions,
dfShowNonVisualComponents,
dfDestroyingForm,
dfNeedPainting
);
TDesignerFlags = set of TDesignerFlag;
TUndoItem = record
obj: string;
fieldName: string;
propInfo: PPropInfo;
oldVal, newVal: Variant;
compName, parentName: TComponentName;
opType: TUndoOpType;
isValid: Boolean;
GroupId: int64;
end;
{ TDesigner }
TDesigner = class(TComponentEditorDesigner)
private
FDesignerPopupMenu: TPopupMenu;
FDefaultFormBounds: TRect;
FLastFormBounds: TRect;
FFlags: TDesignerFlags;
FGridColor: TColor;
FMediator: TDesignerMediator;
FOnChangeParent: TNotifyEvent;
FOnPastedComponents: TOnPastedComponents;
FProcessingDesignerEvent: Integer;
FOnActivated: TNotifyEvent;
FOnCloseQuery: TNotifyEvent;
FOnShowObjectInspector: TNotifyEvent;
FOnShowAnchorEditor: TNotifyEvent;
FOnShowTabOrderEditor: TNotifyEvent;
FOnPersistentDeleted: TOnPersistentDeleted;
FOnGetNonVisualCompIcon: TOnGetNonVisualCompIcon;
FOnGetSelectedComponentClass: TOnGetSelectedComponentClass;
FOnModified: TNotifyEvent;
FOnPasteComponent: TOnPasteComponents;
FOnProcessCommand: TOnProcessCommand;
FOnPropertiesChanged: TNotifyEvent;
FOnRenameComponent: TOnRenameComponent;
FOnSaveAsXML: TNotifyEvent;
FOnSetDesigning: TOnSetDesigning;
FOnShowOptions: TNotifyEvent;
FOnComponentAdded: TOnComponentAdded;
FOnViewLFM: TNotifyEvent;
FOnForwardKeyToObjectInspector: TOnForwardKeyToObjectInspector;
FShiftState: TShiftState;
FTheFormEditor: TCustomFormEditor;
FPopupMenuComponentEditor: TBaseComponentEditor;
FUndoList: array of TUndoItem;
FUndoCurr: integer;
FUndoLock: integer;
FUndoGroupId: int64;
//hint stuff
FHintTimer: TTimer;
FHintWIndow: THintWindow;
// component drawing
FDDC: TDesignerDeviceContext;
FSurface: TBitmap;
procedure DrawNonVisualComponent(AComponent: TComponent);
function GetGridColor: TColor;
function GetGridSizeX: integer;
function GetGridSizeY: integer;
function GetIsControl: Boolean;
function GetShowBorderSpacing: boolean;
function GetShowComponentCaptions: boolean;
function GetShowEditorHints: boolean;
function GetShowGrid: boolean;
function GetSnapToGrid: boolean;
procedure HintTimer(Sender : TObject);
procedure InvalidateWithParent(AComponent: TComponent);
procedure SetDefaultFormBounds(const AValue: TRect);
procedure SetGridColor(const AValue: TColor);
procedure SetGridSizeX(const AValue: integer);
procedure SetGridSizeY(const AValue: integer);
procedure SetMediator(const AValue: TDesignerMediator);
procedure SetPopupMenuComponentEditor(const AValue: TBaseComponentEditor);
procedure SetShowBorderSpacing(const AValue: boolean);
procedure SetShowComponentCaptions(const AValue: boolean);
procedure SetShowEditorHints(const AValue: boolean);
procedure SetShowGrid(const AValue: boolean);
procedure SetSnapToGrid(const AValue: boolean);
procedure DoOnForwardKeyToObjectInspector(Sender: TObject; Key: TUTF8Char);
protected
MouseDownComponent: TComponent;
MouseDownSender: TComponent;
MouseDownPos: TPoint;
MouseDownShift: TShiftState;
MouseUpPos: TPoint;
LastMouseMovePos: TPoint;
LastFormCursor: TCursor;
DeletingPersistent: TList;
LastPaintSender: TControl;
// event handlers for designed components
function PaintControl(Sender: TControl; TheMessage: TLMPaint): Boolean;
function SizeControl(Sender: TControl; TheMessage: TLMSize): Boolean;
function MoveControl(Sender: TControl; TheMessage: TLMMove): Boolean;
procedure MouseDownOnControl(Sender: TControl; var TheMessage: TLMMouse);
procedure MouseMoveOnControl(Sender: TControl; var TheMessage: TLMMouse);
procedure MouseUpOnControl(Sender: TControl; var TheMessage: TLMMouse);
procedure KeyDown(Sender: TControl; var TheMessage: TLMKEY);
procedure KeyUp(Sender: TControl; var TheMessage: TLMKEY);
function HandleSetCursor(var TheMessage: TLMessage): boolean;
procedure HandlePopupMenu(Sender: TControl; var Message: TLMContextMenu);
procedure GetMouseMsgShift(TheMessage: TLMMouse; out Shift: TShiftState;
out Button: TMouseButton);
function GetShowNonVisualComponents: boolean; override;
procedure SetShowNonVisualComponents(AValue: boolean); override;
// procedures for working with components and persistents
function GetDesignControl(AControl: TControl): TControl;
function DoDeleteSelectedPersistents: boolean;
procedure DoDeleteSelectedPersistentsAsync({%H-}Data: PtrInt);
procedure CutSelectionAsync({%H-}Data: PtrInt);
procedure DoSelectAll;
procedure DoDeletePersistent(APersistent: TPersistent; FreeIt: boolean);
function GetSelectedComponentClass: TRegisteredComponent;
procedure NudgePosition(DiffX, DiffY: Integer);
procedure NudgeSize(DiffX, DiffY: Integer);
procedure NudgeSelection(DiffX, DiffY: Integer); overload;
procedure NudgeSelection(SelectNext: Boolean); overload;
procedure SelectParentOfSelection;
function DoCopySelectionToClipboard: boolean;
function GetPasteParent: TWinControl;
procedure DoModified;
function DoPasteSelectionFromClipboard(PasteFlags: TComponentPasteSelectionFlags
): boolean;
function DoInsertFromStream(s: TStream; PasteParent: TWinControl;
PasteFlags: TComponentPasteSelectionFlags): Boolean;
function DoUndo: Boolean;
function DoRedo: Boolean;
procedure ExecuteUndoItem(IsActUndo: boolean);
procedure SetNextUndoGroupId; inline;
procedure DoShowAnchorEditor;
procedure DoShowTabOrderEditor;
procedure DoShowObjectInspector;
procedure DoChangeZOrder(TheAction: Integer);
procedure GiveComponentsNames;
procedure NotifyPersistentAdded(APersistent: TPersistent);
function ComponentClassAtPos(const AClass: TComponentClass;
const APos: TPoint; const UseRootAsDefault,
IgnoreHidden: boolean): TComponent;
procedure SetTempCursor(ARoot: TWinControl; ACursor: TCursor);
// popup menu
procedure BuildPopupMenu;
procedure DesignerPopupMenuPopup(Sender: TObject);
procedure OnComponentEditorVerbMenuItemClick(Sender: TObject);
procedure OnAlignPopupMenuClick(Sender: TObject);
procedure OnMirrorHorizontalPopupMenuClick(Sender: TObject);
procedure OnMirrorVerticalPopupMenuClick(Sender: TObject);
procedure OnScalePopupMenuClick(Sender: TObject);
procedure OnSizePopupMenuClick(Sender: TObject);
procedure OnResetPopupMenuClick(Sender: TObject);
procedure OnAnchorEditorMenuClick(Sender: TObject);
procedure OnTabOrderMenuClick(Sender: TObject);
procedure OnOrderMoveToFrontMenuClick(Sender: TObject);
procedure OnOrderMoveToBackMenuClick(Sender: TObject);
procedure OnOrderForwardOneMenuClick(Sender: TObject);
procedure OnOrderBackOneMenuClick(Sender: TObject);
procedure OnCopyMenuClick(Sender: TObject);
procedure OnCutMenuClick(Sender: TObject);
procedure OnPasteMenuClick(Sender: TObject);
procedure OnDeleteSelectionMenuClick(Sender: TObject);
procedure OnSelectAllMenuClick(Sender: TObject);
procedure OnChangeClassMenuClick(Sender: TObject);
procedure OnChangeParentMenuClick(Sender: TObject);
procedure OnShowNonVisualComponentsMenuClick(Sender: TObject);
procedure OnSnapToGridOptionMenuClick(Sender: TObject);
procedure OnShowOptionsMenuItemClick(Sender: TObject);
procedure OnSnapToGuideLinesOptionMenuClick(Sender: TObject);
procedure OnViewLFMMenuClick(Sender: TObject);
procedure OnSaveAsXMLMenuClick(Sender: TObject);
procedure OnCenterFormMenuClick(Sender: TObject);
// hook
function GetPropertyEditorHook: TPropertyEditorHook; override;
function DoFormActivated(Active: boolean): boolean;
function DoFormCloseQuery: boolean;
property PopupMenuComponentEditor: TBaseComponentEditor read FPopupMenuComponentEditor write SetPopupMenuComponentEditor;
public
Selection: TControlSelection;
DDC: TDesignerDeviceContext;
constructor Create(TheDesignerForm: TCustomForm; AControlSelection: TControlSelection);
procedure PrepareFreeDesigner(AFreeComponent: boolean); override;
procedure DisconnectComponent; override;
destructor Destroy; override;
procedure Modified; override;
procedure SelectOnlyThisComponent(AComponent: TComponent); override;
function CopySelection: boolean; override;
function CutSelection: boolean; override;
function CanCopy: Boolean; override;
function CanPaste: Boolean; override;
function PasteSelection(PasteFlags: TComponentPasteSelectionFlags): boolean; override;
function ClearSelection: boolean; override;
function DeleteSelection: boolean; override;
function CopySelectionToStream(AllComponentsStream: TStream): boolean; override;
function InsertFromStream(s: TStream; Parent: TWinControl;
PasteFlags: TComponentPasteSelectionFlags): Boolean; override;
function InvokeComponentEditor(AComponent: TComponent): boolean; override;
function ChangeClass: boolean; override;
procedure DoProcessCommand(Sender: TObject; var Command: word;
var Handled: boolean);
function CanUndo: Boolean; override;
function CanRedo: Boolean; override;
function Undo: Boolean; override;
function Redo: Boolean; override;
function AddUndoAction(const aPersistent: TPersistent; aOpType: TUndoOpType;
StartNewGroup: boolean; aFieldName: string; const aOldVal, aNewVal: variant): boolean; override;
function IsUndoLocked: boolean; override;
procedure ClearUndoItem(AIndex: Integer);
procedure AddComponent(const NewRegisteredComponent: TRegisteredComponent;
const NewComponentClass: TComponentClass; const NewParent: TComponent;
const NewLeft, NewTop, NewWidth, NewHeight: Integer); override;
procedure AddComponentCheckParent(var NewParent: TComponent;
const OriginComponent: TComponent; const OriginWinControl: TWinControl;
const NewComponentClass: TComponentClass); override;
function NonVisualComponentLeftTop(AComponent: TComponent): TPoint;
function NonVisualComponentAtPos(X, Y: integer): TComponent;
procedure MoveNonVisualComponentIntoForm(AComponent: TComponent);
procedure MoveNonVisualComponentsIntoForm;
function WinControlAtPos(x,y: integer; UseRootAsDefault,
IgnoreHidden: boolean): TWinControl;
function ControlAtPos(x,y: integer; UseRootAsDefault,
IgnoreHidden: boolean): TControl;
function ComponentAtPos(x,y: integer; UseRootAsDefault,
IgnoreHidden: boolean): TComponent;
function GetDesignedComponent(AComponent: TComponent): TComponent;
function GetComponentEditorForSelection: TBaseComponentEditor;
function GetShiftState: TShiftState; override;
procedure AddComponentEditorMenuItems(AComponentEditor: TBaseComponentEditor;
ClearOldOnes: boolean);
function IsDesignMsg(Sender: TControl;
var TheMessage: TLMessage): Boolean; override;
procedure UTF8KeyPress(var UTF8Key: TUTF8Char); override;
function UniqueName(const BaseName: string): string; override;
Procedure RemovePersistentAndChilds(APersistent: TPersistent);
procedure Notification({%H-}AComponent: TComponent;
Operation: TOperation); override;
procedure ValidateRename(AComponent: TComponent;
const CurName, NewName: string); override;
function CreateUniqueComponentName(const AClassName: string): string; override;
procedure PaintGrid; override;
procedure PaintClientGrid(AWinControl: TWinControl;
aDDC: TDesignerDeviceContext);
procedure DrawNonVisualComponents(aDDC: TDesignerDeviceContext);
procedure DrawDesignerItems(OnlyIfNeeded: boolean); override;
procedure CheckFormBounds;
procedure DoPaintDesignerItems;
function ComponentIsIcon(AComponent: TComponent): boolean;
function GetParentFormRelativeClientOrigin(AComponent: TComponent): TPoint;
public
property Flags: TDesignerFlags read FFlags;
property GridSizeX: integer read GetGridSizeX write SetGridSizeX;
property GridSizeY: integer read GetGridSizeY write SetGridSizeY;
property GridColor: TColor read GetGridColor write SetGridColor;
property IsControl: Boolean read GetIsControl;
property Mediator: TDesignerMediator read FMediator write SetMediator;
property ProcessingDesignerEvent: Integer read FProcessingDesignerEvent;
property OnActivated: TNotifyEvent read FOnActivated write FOnActivated;
property OnCloseQuery: TNotifyEvent read FOnCloseQuery write FOnCloseQuery;
property OnPersistentDeleted: TOnPersistentDeleted
read FOnPersistentDeleted write FOnPersistentDeleted;
property OnGetNonVisualCompIcon: TOnGetNonVisualCompIcon
read FOnGetNonVisualCompIcon write FOnGetNonVisualCompIcon;
property OnGetSelectedComponentClass: TOnGetSelectedComponentClass
read FOnGetSelectedComponentClass
write FOnGetSelectedComponentClass;
property OnProcessCommand: TOnProcessCommand
read FOnProcessCommand write FOnProcessCommand;
property OnModified: TNotifyEvent read FOnModified write FOnModified;
property OnPasteComponents: TOnPasteComponents read FOnPasteComponent
write FOnPasteComponent;
property OnPastedComponents: TOnPastedComponents read FOnPastedComponents
write FOnPastedComponents;
property OnPropertiesChanged: TNotifyEvent
read FOnPropertiesChanged write FOnPropertiesChanged;
property OnRenameComponent: TOnRenameComponent
read FOnRenameComponent write FOnRenameComponent;
property OnSetDesigning: TOnSetDesigning read FOnSetDesigning write FOnSetDesigning;
property OnComponentAdded: TOnComponentAdded read FOnComponentAdded
write FOnComponentAdded;
property OnShowOptions: TNotifyEvent read FOnShowOptions write FOnShowOptions;
property OnViewLFM: TNotifyEvent read FOnViewLFM write FOnViewLFM;
property OnSaveAsXML: TNotifyEvent read FOnSaveAsXML write FOnSaveAsXML;
property OnShowObjectInspector: TNotifyEvent read FOnShowObjectInspector write FOnShowObjectInspector;
property OnShowAnchorEditor: TNotifyEvent read FOnShowAnchorEditor write FOnShowAnchorEditor;
property OnShowTabOrderEditor: TNotifyEvent read FOnShowTabOrderEditor write FOnShowTabOrderEditor;
property OnForwardKeyToObjectInspector: TOnForwardKeyToObjectInspector read FOnForwardKeyToObjectInspector
write FOnForwardKeyToObjectInspector;
property OnChangeParent: TNotifyEvent read FOnChangeParent write FOnChangeParent;
property ShowGrid: boolean read GetShowGrid write SetShowGrid;
property ShowBorderSpacing: boolean read GetShowBorderSpacing write SetShowBorderSpacing;
property ShowEditorHints: boolean read GetShowEditorHints write SetShowEditorHints;
property ShowComponentCaptions: boolean read GetShowComponentCaptions
write SetShowComponentCaptions;
property ShowNonVisualComponents: boolean read GetShowNonVisualComponents write SetShowNonVisualComponents;
property SnapToGrid: boolean read GetSnapToGrid write SetSnapToGrid;
property TheFormEditor: TCustomFormEditor read FTheFormEditor write FTheFormEditor;
property DefaultFormBounds: TRect read FDefaultFormBounds write SetDefaultFormBounds;
end;
const
DesignerMenuRootName = 'Designer';
var
DesignerMenuAlign: TIDEMenuCommand;
DesignerMenuMirrorHorizontal: TIDEMenuCommand;
DesignerMenuMirrorVertical: TIDEMenuCommand;
DesignerMenuScale: TIDEMenuCommand;
DesignerMenuSize: TIDEMenuCommand;
DesignerMenuReset: TIDEMenuCommand;
DesignerMenuAnchorEditor: TIDEMenuCommand;
DesignerMenuTabOrder: TIDEMenuCommand;
DesignerMenuOrderMoveToFront: TIDEMenuCommand;
DesignerMenuOrderMoveToBack: TIDEMenuCommand;
DesignerMenuOrderForwardOne: TIDEMenuCommand;
DesignerMenuOrderBackOne: TIDEMenuCommand;
DesignerMenuCut: TIDEMenuCommand;
DesignerMenuCopy: TIDEMenuCommand;
DesignerMenuPaste: TIDEMenuCommand;
DesignerMenuDeleteSelection: TIDEMenuCommand;
DesignerMenuSelectAll: TIDEMenuCommand;
DesignerMenuChangeClass: TIDEMenuCommand;
DesignerMenuChangeParent: TIDEMenuCommand;
DesignerMenuViewLFM: TIDEMenuCommand;
DesignerMenuSaveAsXML: TIDEMenuCommand;
DesignerMenuCenterForm: TIDEMenuCommand;
DesignerMenuShowNonVisualComponents: TIDEMenuCommand;
DesignerMenuSnapToGridOption: TIDEMenuCommand;
DesignerMenuSnapToGuideLinesOption: TIDEMenuCommand;
DesignerMenuShowOptions: TIDEMenuCommand;
procedure RegisterStandardDesignerMenuItems;
implementation
type
TCustomFormAccess = class(TCustomForm);
TControlAccess = class(TControl);
TWinControlAccess = class(TWinControl);
TComponentAccess = class(TComponent);
{ TComponentSearch }
TComponentSearch = class(TComponent)
public
Best: TComponent;
BestLevel: integer;
BestIsNonVisual: boolean;
Level: integer;
AtPos: TPoint;
MinClass: TComponentClass;
IgnoreHidden: boolean;
OnlyNonVisual: boolean;
IgnoreNonVisual: boolean;
Mediator: TDesignerMediator;
Root: TComponent;
procedure Gather(Child: TComponent);
procedure Search(ARoot: TComponent);
end;
{ TComponentSearch }
procedure TComponentSearch.Gather(Child: TComponent);
var
Control: TControl;
ChildBounds: TRect;
OldRoot: TComponent;
IsNonVisual: Boolean;
begin
if Assigned(Best) and BestIsNonVisual and (BestLevel < Level) then exit;
{$IFDEF VerboseDesignerSelect}
DebugLn(['TComponentSearch.Gather ',DbgSName(Child),' ',dbgs(AtPos),' MinClass=',DbgSName(MinClass)]);
{$ENDIF}
// check if child is at position
if Child is TControl then
begin
Control := TControl(Child);
if IgnoreHidden and (csNoDesignVisible in Control.ControlStyle) then
exit;
if csNoDesignSelectable in Control.ControlStyle then
exit;
end
else
Control := nil;
ChildBounds := GetParentFormRelativeBounds(Child);
{$IFDEF VerboseDesignerSelect}
DebugLn(['TComponentSearch.Gather PtInRect=',PtInRect(ChildBounds, AtPos),' ChildBounds=',dbgs(ChildBounds)]);
{$ENDIF}
if not PtInRect(ChildBounds, AtPos) then Exit;
if Assigned(Mediator) then
IsNonVisual := Mediator.ComponentIsIcon(Child)
else
IsNonVisual := DesignerProcs.ComponentIsNonVisual(Child);
if IsNonVisual then begin
if IgnoreNonVisual then exit;
if Assigned(IDEComponentsMaster)
and not IDEComponentsMaster.DrawNonVisualComponents(Root) then
Exit;
end;
if Child.InheritsFrom(MinClass) and (IsNonVisual or not OnlyNonVisual) then
begin
Best := Child;
BestIsNonVisual := IsNonVisual;
BestLevel := Level;
{$IFDEF VerboseDesignerSelect}
DebugLn(['TComponentSearch.Gather Best=',DbgSName(Best)]);
{$ENDIF}
end;
// search in children
if (csInline in Child.ComponentState) or
(Assigned(Control) and not (csOwnedChildrenNotSelectable in Control.ControlStyle)) then
begin
{$IFDEF VerboseDesignerSelect}
DebugLn(['TComponentSearch.Gather search in children of ',DbgSName(Child)]);
{$ENDIF}
OldRoot := Root;
try
inc(Level);
if csInline in Child.ComponentState then
Root := Child;
{$IFDEF VerboseDesignerSelect}
DebugLn(['TComponentSearch.Gather Root=',DbgSName(Root)]);
{$ENDIF}
TComponentAccess(Child).GetChildren(@Gather, Root);
finally
dec(Level);
Root := OldRoot;
end;
{$IFDEF VerboseDesignerSelect}
DebugLn(['TComponentSearch.Gather searched in children of ',DbgSName(Child)]);
{$ENDIF}
end;
end;
procedure TComponentSearch.Search(ARoot: TComponent);
begin
Root := ARoot;
Level := 1;
TComponentAccess(Root).GetChildren(@Gather, Root);
Level := 0;
end;
const
mk_lbutton = 1;
mk_rbutton = 2;
mk_shift = 4;
mk_control = 8;
mk_mbutton = $10;
procedure RegisterStandardDesignerMenuItems;
begin
DesignerMenuRoot:=RegisterIDEMenuRoot(DesignerMenuRootName);
// register the dynamic section for the component editor
DesignerMenuSectionComponentEditor:=RegisterIDEMenuSection(DesignerMenuRoot,
'Component editor section');
// register the custom dynamic section
DesignerMenuSectionCustomDynamic:=RegisterIDEMenuSection(DesignerMenuRoot,
'Custom dynamic section');
// register align section
DesignerMenuSectionAlign:=RegisterIDEMenuSection(DesignerMenuRoot,'Align section');
DesignerMenuAlign:=RegisterIDEMenuCommand(DesignerMenuSectionAlign,
'Align',fdmAlignMenu, nil, nil, nil, 'align');
DesignerMenuMirrorHorizontal:=RegisterIDEMenuCommand(DesignerMenuSectionAlign,
'Mirror horizontal',fdmMirrorHorizontal, nil, nil, nil, 'mirror_horizontal');
DesignerMenuMirrorVertical:=RegisterIDEMenuCommand(DesignerMenuSectionAlign,
'Mirror vertical',fdmMirrorVertical, nil, nil, nil, 'mirror_vertical');
DesignerMenuScale:=RegisterIDEMenuCommand(DesignerMenuSectionAlign,
'Scale',fdmScaleMenu, nil, nil, nil, 'scale');
DesignerMenuSize:=RegisterIDEMenuCommand(DesignerMenuSectionAlign,
'Size',fdmSizeMenu, nil, nil, nil, 'size');
DesignerMenuReset:=RegisterIDEMenuCommand(DesignerMenuSectionAlign,
'Reset', fdmResetMenu, nil, nil, nil, '');
// register tab and z-order section
DesignerMenuSectionOrder:=RegisterIDEMenuSection(DesignerMenuRoot,'Order section');
DesignerMenuAnchorEditor:=RegisterIDEMenuCommand(DesignerMenuSectionOrder,
'Anchor Editor',lisMenuViewAnchorEditor, nil, nil, nil, 'menu_view_anchor_editor');
DesignerMenuTabOrder:=RegisterIDEMenuCommand(DesignerMenuSectionOrder,
'Tab order',lisMenuViewTabOrder, nil, nil, nil, 'tab_order');
DesignerMenuSectionZOrder:=RegisterIDESubMenu(DesignerMenuSectionOrder,
'ZOrder section', fdmZOrder);
DesignerMenuOrderMoveToFront:=RegisterIDEMenuCommand(DesignerMenuSectionZOrder,
'Move to z order front',fdmOrderMoveTofront, nil, nil, nil, 'Order_move_front');
DesignerMenuOrderMoveToBack:=RegisterIDEMenuCommand(DesignerMenuSectionZOrder,
'Move to z order back',fdmOrderMoveToBack, nil, nil, nil, 'Order_move_back');
DesignerMenuOrderForwardOne:=RegisterIDEMenuCommand(DesignerMenuSectionZOrder,
'Move z order forward one',fdmOrderForwardOne, nil, nil, nil, 'Order_forward_one');
DesignerMenuOrderBackOne:=RegisterIDEMenuCommand(DesignerMenuSectionZOrder,
'Move z order backwards one',fdmOrderBackOne, nil, nil, nil, 'Order_back_one');
// register clipboard section
DesignerMenuSectionClipboard:=RegisterIDEMenuSection(DesignerMenuRoot,'Clipboard section');
DesignerMenuCut:=RegisterIDEMenuCommand(DesignerMenuSectionClipboard,
'Cut',lisCut, nil, nil, nil, 'laz_cut');
DesignerMenuCopy:=RegisterIDEMenuCommand(DesignerMenuSectionClipboard,
'Copy',lisCopy, nil, nil, nil, 'laz_copy');
DesignerMenuPaste:=RegisterIDEMenuCommand(DesignerMenuSectionClipboard,
'Paste',lisPaste, nil, nil, nil, 'laz_paste');
DesignerMenuDeleteSelection:=RegisterIDEMenuCommand(DesignerMenuSectionClipboard,
'Delete Selection',fdmDeleteSelection, nil, nil, nil, 'delete_selection');
DesignerMenuSelectAll:=RegisterIDEMenuCommand(DesignerMenuSectionClipboard,
'Select All',fdmSelectAll, nil, nil, nil, 'menu_select_all');
// register miscellaneous section
DesignerMenuSectionMisc:=RegisterIDEMenuSection(DesignerMenuRoot,'Miscellaneous section');
DesignerMenuChangeClass:=RegisterIDEMenuCommand(DesignerMenuSectionMisc,
'Change class',lisDlgChangeClass);
DesignerMenuChangeParent:=RegisterIDEMenuCommand(DesignerMenuSectionMisc,
'Change parent',lisChangeParent+' ...');
DesignerMenuViewLFM:=RegisterIDEMenuCommand(DesignerMenuSectionMisc,
'View LFM',lisViewSourceLfm);
DesignerMenuSaveAsXML:=RegisterIDEMenuCommand(DesignerMenuSectionMisc,
'Save as XML',fdmSaveFormAsXML);
DesignerMenuCenterForm:=RegisterIDEMenuCommand(DesignerMenuSectionMisc,
'Center form', lisCenterForm);
// register options section
DesignerMenuSectionOptions:=RegisterIDEMenuSection(DesignerMenuRoot,'Options section');
DesignerMenuShowNonVisualComponents:=RegisterIDEMenuCommand(DesignerMenuSectionMisc,
'Show non visual components',
lisDsgShowNonVisualComponents);
DesignerMenuShowNonVisualComponents.ShowAlwaysCheckable:=true;
DesignerMenuSnapToGridOption:=RegisterIDEMenuCommand(DesignerMenuSectionOptions,
'Snap to grid',fdmSnapToGridOption);
DesignerMenuSnapToGuideLinesOption:=RegisterIDEMenuCommand(DesignerMenuSectionOptions,
'Snap to guide lines',fdmSnapToGuideLinesOption);
DesignerMenuShowOptions:=RegisterIDEMenuCommand(DesignerMenuSectionOptions,
'Show options',lisOptions, nil, nil, nil, 'menu_environment_options');
end;
// inline
procedure TDesigner.SetNextUndoGroupId;
begin
LUIncreaseChangeStamp64(FUndoGroupId);
end;
constructor TDesigner.Create(TheDesignerForm: TCustomForm;
AControlSelection: TControlSelection);
var
LNonControlDesigner: INonControlDesigner;
i: integer;
begin
inherited Create;
//debugln(['TDesigner.Create Self=',dbgs(Pointer(Self)),' TheDesignerForm=',DbgSName(TheDesignerForm)]);
FForm := TheDesignerForm;
if FForm is BaseFormEditor1.NonFormProxyDesignerForm[NonControlProxyDesignerFormId] then begin
LNonControlDesigner := FForm as INonControlDesigner;
FLookupRoot := LNonControlDesigner.LookupRoot;
Mediator := LNonControlDesigner.Mediator;
end
else if FForm is BaseFormEditor1.NonFormProxyDesignerForm[FrameProxyDesignerFormId] then
FLookupRoot := (FForm as IFrameDesigner).LookupRoot
else
FLookupRoot := FForm;
Selection := AControlSelection;
FFlags := [dfShowNonVisualComponents];
FGridColor := clGray;
FHintTimer := TTimer.Create(nil);
FHintTimer.Interval := 500;
FHintTimer.Enabled := False;
FHintTimer.OnTimer := @HintTimer;
FHintWindow := THintWindow.Create(nil);
FHIntWindow.Visible := False;
FHintWindow.HideInterval := 4000;
FHintWindow.AutoHide := True;
DDC:=TDesignerDeviceContext.Create;
LastFormCursor := crDefault;
DeletingPersistent:=TList.Create;
FPopupMenuComponentEditor := nil;
SetLength(FUndoList, 64);
for i := Low(FUndoList) to High(FUndoList) do
ClearUndoItem(i);
FUndoCurr := Low(FUndoList);
FUndoLock := 0;
FUndoState := ucsNone;
FUndoGroupId := 1;
end;
procedure TDesigner.AddComponent(
const NewRegisteredComponent: TRegisteredComponent;
const NewComponentClass: TComponentClass; const NewParent: TComponent;
const NewLeft, NewTop, NewWidth, NewHeight: Integer);
var
NewComponent: TComponent;
DisableAutoSize: Boolean;
NewControl: TControl;
begin
if NewParent=nil then exit;
if NewComponentClass = nil then exit;
// add a new component
Selection.RubberbandActive:=false;
Selection.Clear;
if not PropertyEditorHook.BeforeAddPersistent(Self, NewComponentClass, NewParent)
then begin
DebugLn('Note: TDesigner.AddComponent BeforeAddPersistent failed: ComponentClass=',
NewComponentClass.ClassName,' NewParent=',DbgSName(NewParent));
exit;
end;
// check cycles
if TheFormEditor.ClassDependsOnComponent(NewComponentClass, LookupRoot) then
begin
IDEMessageDialog(lisA2PInvalidCircularDependency,
Format(lisIsAThisCircularDependencyIsNotAllowed, [dbgsName(LookupRoot),
dbgsName(NewComponentClass), LineEnding]),
mtError,[mbOk],'');
exit;
end;
// create component and component interface
DebugLn(['AddComponent ',DbgSName(NewComponentClass),' Parent=',DbgSName(NewParent),' ',NewLeft,',',NewTop,',',NewWidth,',',NewHeight]);
DisableAutoSize:=true;
NewComponent := TheFormEditor.CreateComponent(
NewParent,NewComponentClass,'',
NewLeft,NewTop,NewWidth,NewHeight,DisableAutoSize);
if NewComponent=nil then exit;
if DisableAutoSize and (NewComponent is TControl) then
TControl(NewComponent).EnableAutoSizing{$IFDEF DebugDisableAutoSizing}('TDesigner.AddComponent'){$ENDIF};
TheFormEditor.FixupReferences(NewComponent); // e.g. frame references a datamodule
// modified
Modified;
// set initial properties
if NewComponent is TControl then begin
NewControl:=TControl(NewComponent);
//debugln(['AddComponent ',DbgSName(Self),' Bounds=',dbgs(NewControl.BoundsRect),' BaseBounds=',dbgs(NewControl.BaseBounds),' BaseParentClientSize=',dbgs(NewControl.BaseParentClientSize)]);
NewControl.Visible:=true;
if csSetCaption in NewControl.ControlStyle then
NewControl.Caption:=NewComponent.Name;
end;
if Assigned(FOnSetDesigning) then
FOnSetDesigning(Self,NewComponent,True);
if EnvironmentOptions.CreateComponentFocusNameProperty then
// ask user for name
ShowComponentNameDialog(LookupRoot,NewComponent);
// tell IDE about the new component (e.g. add it to the source)
NotifyPersistentAdded(NewComponent);
// creation completed
// -> select new component
SelectOnlyThisComponent(NewComponent);
if Assigned(FOnComponentAdded) then // this resets the component palette to the selection tool
FOnComponentAdded(Self, NewComponent, NewRegisteredComponent);
{$IFDEF VerboseDesigner}
DebugLn('NEW COMPONENT ADDED: Form.ComponentCount=',DbgS(Form.ComponentCount),
' NewComponent.Owner.Name=',NewComponent.Owner.Name);
{$ENDIF}
AddUndoAction(NewComponent, uopAdd, true, 'Name', '', NewComponent.Name);
end;
procedure TDesigner.AddComponentCheckParent(var NewParent: TComponent;
const OriginComponent: TComponent; const OriginWinControl: TWinControl;
const NewComponentClass: TComponentClass);
var
NewParentControl: TWinControl;
begin
if Mediator<>nil then begin
// mediator, non LCL components
if NewParent=nil then
NewParent:=OriginComponent;
while (NewParent<>nil)
and (not Mediator.ParentAcceptsChild(NewParent,NewComponentClass)) do
NewParent:=NewParent.GetParentComponent;
if NewParent=nil then
NewParent:=FLookupRoot;
end else if (FLookupRoot is TCustomForm) or (FLookupRoot is TCustomFrame)
then begin
// LCL controls
if NewParent<>nil then begin
if not (NewParent is TWinControl) then begin
debugln(['ERROR: AddComponent failed: AddClicked returned not a TWinControl: ',DbgSName(NewParent)]);
exit;
end;
NewParentControl := TWinControl(NewParent);
end else if OriginComponent is TWinControl then
NewParentControl := TWinControl(OriginComponent)
else
NewParentControl := OriginWinControl;
while (NewParentControl <> nil)
and not ControlAcceptsStreamableChildComponent(NewParentControl,
NewComponentClass,FLookupRoot)
do
NewParentControl := NewParentControl.Parent;
NewParent := NewParentControl;
//debugln(['AddComponent NewParent=',DbgSName(NewParent)]);
end else begin
// TDataModule
NewParent := FLookupRoot;
end;
end;
procedure TDesigner.PrepareFreeDesigner(AFreeComponent: boolean);
begin
// was FinalizeFreeDesigner
Include(FFlags, dfDestroyingForm);
// free or hide the form
TheFormEditor.DeleteComponent(FLookupRoot,AFreeComponent);
DisconnectComponent;
Free;
end;
procedure TDesigner.DisconnectComponent;
begin
//debugln(['TDesigner.DisconnectComponent Self=',dbgs(Pointer(Self))]);
inherited DisconnectComponent;
if Mediator<>nil then begin
Mediator.Designer:=nil;
FMediator:=nil;
end;
FLookupRoot:=nil;
end;
destructor TDesigner.Destroy;
begin
//debugln(['TDesigner.Destroy Self=',dbgs(Pointer(Self))]);
Application.RemoveAsyncCalls(Self);
PopupMenuComponentEditor := nil;
FreeAndNil(FDesignerPopupMenu);
FreeAndNil(FHintWIndow);
FreeAndNil(FHintTimer);
FreeAndNil(DDC);
FreeAndNil(DeletingPersistent);
inherited Destroy;
end;
procedure TDesigner.NudgePosition(DiffX, DiffY : Integer);
begin
{$IFDEF VerboseDesigner}
DebugLn('[TDesigner.NudgePosition]');
{$ENDIF}
if (Selection.SelectionForm<>Form)
or Selection.LookupRootSelected then exit;
Selection.MoveSelection(DiffX, DiffY, False);
Modified;
end;
procedure TDesigner.NudgeSize(DiffX, DiffY: Integer);
begin
{$IFDEF VerboseDesigner}
DebugLn('[TDesigner.NudgeSize]');
{$ENDIF}
if (Selection.SelectionForm<>Form)
or Selection.LookupRootSelected then exit;
Selection.SizeSelection(DiffX, DiffY);
Modified;
end;
function ComponentsSortByLeft(Item1, Item2: Pointer): Integer;
var
Comp1: TComponent absolute Item1;
Comp2: TComponent absolute Item2;
L1, L2: Integer;
begin
L1 := GetComponentLeft(Comp1);
L2 := GetComponentLeft(Comp2);
if L1 < L2 then
Result := -1
else
if L1 > L2 then
Result := 1
else
Result := 0;
end;
function ComponentsSortByTop(Item1, Item2: Pointer): Integer;
var
Comp1: TComponent absolute Item1;
Comp2: TComponent absolute Item2;
T1, T2: Integer;
begin
T1 := GetComponentTop(Comp1);
T2 := GetComponentTop(Comp2);
if T1 < T2 then
Result := -1
else
if T1 > T2 then
Result := 1
else
Result := 0;
end;
procedure TDesigner.NudgeSelection(DiffX, DiffY: Integer);
const
Delta = 50; // radius for searching components
var
List: TFPList;
Coord, Test: TPoint;
Current, AComponent: TComponent;
i: integer;
begin
if (Selection.SelectionForm <> Form) or
(Selection.SelectionForm.ComponentCount = 0) or
Selection.LookupRootSelected or
(Selection.Count <> 1) then Exit;
if not Selection[0].IsTComponent then Exit;
// create a list of components at the similar top/left
Current := TComponent(Selection[0].Persistent);
AComponent := nil;
List := TFPList.Create;
try
Coord := GetParentFormRelativeClientOrigin(Current);
if DiffX <> 0 then
begin
for i := 0 to Selection.SelectionForm.ComponentCount - 1 do
begin
AComponent := Selection.SelectionForm.Components[i];
if (AComponent = Current) or ComponentIsInvisible(AComponent) then
Continue;
Test := GetParentFormRelativeClientOrigin(AComponent);
if (Abs(Test.Y - Coord.Y) <= Delta) and
(Sign(Test.X - Coord.X) = Sign(DiffX)) then
List.Add(AComponent);
end;
if List.Count > 0 then
begin
List.Sort(@ComponentsSortByLeft);
if DiffX > 0 then
AComponent := TComponent(List[0])
else
AComponent := TComponent(List[List.Count - 1]);
end
else
AComponent := nil;
end
else
if DiffY <> 0 then
begin
for i := 0 to Selection.SelectionForm.ComponentCount - 1 do
begin
AComponent := Selection.SelectionForm.Components[i];
if (AComponent = Current) or ComponentIsInvisible(AComponent) then
Continue;
Test := GetParentFormRelativeClientOrigin(AComponent);
if (Abs(Test.X - Coord.X) <= Delta) and
(Sign(Test.Y - Coord.Y) = Sign(DiffY)) then
List.Add(AComponent);
end;
if List.Count > 0 then
begin
List.Sort(@ComponentsSortByTop);
if DiffY > 0 then
AComponent := TComponent(List[0])
else
AComponent := TComponent(List[List.Count - 1]);
end
else
AComponent := nil;
end;
finally
List.Free;
end;
if AComponent <> nil then
begin
Selection.AssignPersistent(AComponent);
Modified;
end;
end;
procedure TDesigner.NudgeSelection(SelectNext: Boolean);
function StepIndex(Index: Integer): Integer;
begin
Result := Index;
if SelectNext then
Inc(Result)
else
Dec(Result);
if Result >= Selection.SelectionForm.ComponentCount then
Result := 0
else
if Result < 0 then
Result := Selection.SelectionForm.ComponentCount - 1;
end;
var
Index, StartIndex: Integer;
AComponent: TComponent;
begin
if (Selection.SelectionForm <> Form) or
(Selection.SelectionForm.ComponentCount = 0) then Exit;
if (Selection.Count = 1) and Selection[0].IsTComponent then
Index := TComponent(Selection[0].Persistent).ComponentIndex
else
Index := -1;
Index := StepIndex(Index);
StartIndex := Index;
AComponent := nil;
while AComponent = nil do
begin
AComponent := Selection.SelectionForm.Components[Index];
if ComponentIsInvisible(AComponent) then
begin
AComponent := nil;
Index := StepIndex(Index);
if Index = StartIndex then
break;
end;
end;
if AComponent <> nil then
begin
Selection.AssignPersistent(AComponent);
Modified;
end;
end;
procedure TDesigner.SelectParentOfSelection;
function ParentComponent(AComponent: TComponent): TComponent;
begin
Result := AComponent.GetParentComponent;
if (Result = nil) and ComponentIsIcon(AComponent) then
Result := AComponent.Owner;
end;
var
i: Integer;
begin
// resizing or moving
if dfHasSized in FFlags then
begin
Selection.RestoreBounds;
Selection.ActiveGrabber := nil;
if Selection.RubberbandActive then
Selection.RubberbandActive := False;
LastMouseMovePos.X := -1;
Exclude(FFlags, dfHasSized);
MouseDownComponent := nil;
MouseDownSender := nil;
Exit;
end;
if Selection.OnlyInvisiblePersistentsSelected then
Exit;
if Selection.LookupRootSelected then
begin
SelectOnlyThisComponent(FLookupRoot);
Exit;
end;
// if not component moving then select parent
i := Selection.Count - 1;
while (i >= 0) and
(Selection[i].ParentInSelection or
not Selection[i].IsTComponent or
(ParentComponent(TComponent(Selection[i].Persistent)) = nil)) do
Dec(i);
if i >= 0 then
SelectOnlyThisComponent(ParentComponent(TComponent(Selection[i].Persistent)));
end;
function TDesigner.CopySelectionToStream(AllComponentsStream: TStream): boolean;
function UnselectDistinctControls: boolean;
var
i: Integer;
AParent, CurParent: TWinControl;
begin
Result:=false;
AParent:=nil;
i:=0;
while i<Selection.Count do begin
if Selection[i].IsTControl then begin
// unselect controls from which the parent is selected too
if Selection[i].ParentInSelection then begin
Selection.Delete(i);
continue;
end;
// check if not the top level component is selected
CurParent:=TControl(Selection[i].Persistent).Parent;
if CurParent=nil then begin
IDEMessageDialog(lisCanNotCopyTopLevelComponent,
lisCopyingAWholeFormIsNotImplemented,
mtError,[mbOk]);
exit;
end;
// unselect all controls, that do not have the same parent
if (AParent=nil) then
AParent:=CurParent
else if (AParent<>CurParent) then begin
Selection.Delete(i);
continue;
end;
end;
inc(i);
end;
Result:=true;
end;
var
i: Integer;
BinCompStream: TMemoryStream;
TxtCompStream: TMemoryStream;
CurComponent: TComponent;
DestroyDriver: Boolean;
Writer: TWriter;
begin
Result:=false;
if (Selection.Count=0) then exit;
// Because controls will be pasted on a single parent,
// unselect all controls, that do not have the same parent
if not UnselectDistinctControls then exit;
for i:=0 to Selection.Count-1 do begin
if not Selection[i].IsTComponent then continue;
BinCompStream:=TMemoryStream.Create;
TxtCompStream:=TMemoryStream.Create;
try
// write component binary stream
try
CurComponent:=TComponent(Selection[i].Persistent);
DestroyDriver:=false;
Writer := CreateLRSWriter(BinCompStream,DestroyDriver);
try
Writer.OnWriteMethodProperty:=@BaseFormEditor1.WriteMethodPropertyEvent;
Writer.Root:=FLookupRoot;
Writer.WriteComponent(CurComponent);
finally
if DestroyDriver then Writer.Driver.Free;
Writer.Destroy;
end;
except
on E: Exception do begin
IDEMessageDialog(lisUnableToStreamSelectedComponents,
Format(lisThereWasAnErrorDuringWritingTheSelectedComponent, [
CurComponent.Name, CurComponent.ClassName, LineEnding, E.Message]),
mtError,[mbOk]);
exit;
end;
end;
BinCompStream.Position:=0;
// convert binary to text stream
try
LRSObjectBinaryToText(BinCompStream,TxtCompStream);
except
on E: Exception do begin
IDEMessageDialog(lisUnableConvertBinaryStreamToText,
Format(lisThereWasAnErrorWhileConvertingTheBinaryStreamOfThe, [
CurComponent.Name, CurComponent.ClassName, LineEnding, E.Message]),
mtError,[mbOk]);
exit;
end;
end;
// add text stream to the all stream
TxtCompStream.Position:=0;
AllComponentsStream.CopyFrom(TxtCompStream,TxtCompStream.Size);
finally
BinCompStream.Free;
TxtCompStream.Free;
end;
end;
Result:=true;
end;
function TDesigner.InsertFromStream(s: TStream; Parent: TWinControl;
PasteFlags: TComponentPasteSelectionFlags): Boolean;
begin
Result:=DoInsertFromStream(s,Parent,PasteFlags);
end;
function TDesigner.DoCopySelectionToClipboard: boolean;
var
AllComponentsStream: TMemoryStream;
AllComponentText: string;
begin
Result := false;
if Selection.Count = 0 then exit;
if Selection.OnlyInvisiblePersistentsSelected then exit;
AllComponentsStream:=TMemoryStream.Create;
try
// copy components to stream
if not CopySelectionToStream(AllComponentsStream) then exit;
SetLength(AllComponentText,AllComponentsStream.Size);
if AllComponentText<>'' then begin
AllComponentsStream.Position:=0;
AllComponentsStream.Read(AllComponentText[1],length(AllComponentText));
end;
// copy to clipboard
try
ClipBoard.AsText:=AllComponentText;
except
on E: Exception do begin
IDEMessageDialog(lisUnableCopyComponentsToClipboard,
Format(lisThereWasAnErrorWhileCopyingTheComponentStreamToCli,
[LineEnding, E.Message]),
mtError,[mbOk]);
exit;
end;
end;
finally
AllComponentsStream.Free;
end;
Result:=true;
end;
function TDesigner.GetPasteParent: TWinControl;
var
i: Integer;
begin
Result:=nil;
for i:=0 to Selection.Count-1 do begin
if (Selection[i].IsTWinControl)
and (csAcceptsControls in
TWinControl(Selection[i].Persistent).ControlStyle)
and (not Selection[i].ParentInSelection) then begin
Result:=TWinControl(Selection[i].Persistent);
if GetLookupRootForComponent(Result)<>FLookupRoot then
Result:=nil;
break;
end;
end;
if (Result=nil) and (FLookupRoot is TWinControl) then
Result:=TWinControl(FLookupRoot);
end;
procedure TDesigner.DoModified;
begin
if Assigned(OnModified) then
OnModified(Self)
end;
function TDesigner.DoPasteSelectionFromClipboard(
PasteFlags: TComponentPasteSelectionFlags): boolean;
var
AllComponentText: string;
CurTextCompStream: TMemoryStream;
begin
Result:=false;
if not CanPaste then exit;
// read component stream from clipboard
AllComponentText:=ClipBoard.AsText;
if AllComponentText='' then exit;
CurTextCompStream:=TMemoryStream.Create;
try
CurTextCompStream.Write(AllComponentText[1],length(AllComponentText));
CurTextCompStream.Position:=0;
if not DoInsertFromStream(CurTextCompStream,nil,PasteFlags) then
exit;
finally
CurTextCompStream.Free;
end;
Result:=true;
end;
function TDesigner.DoInsertFromStream(s: TStream;
PasteParent: TWinControl; PasteFlags: TComponentPasteSelectionFlags): Boolean;
var
NewSelection: TPersistentSelectionList;
NewComponents: TFPList;
procedure FindUniquePosition(AComponent: TComponent);
var
OverlappedComponent: TComponent;
P: TPoint;
AControl: TControl;
AParent: TWinControl;
i: Integer;
OverlappedControl: TControl;
begin
if AComponent is TControl then begin
AControl:=TControl(AComponent);
AParent:=AControl.Parent;
if AParent=nil then exit;
P:=Point(AControl.Left,AControl.Top);
i:=AParent.ControlCount-1;
while i>=0 do begin
OverlappedControl:=AParent.Controls[i];
if (NewComponents.IndexOf(OverlappedControl)<0)
and (OverlappedControl.Left=P.X)
and (OverlappedControl.Top=P.Y) then begin
inc(P.X,NonVisualCompWidth);
inc(P.Y,NonVisualCompWidth);
if (P.X>AParent.ClientWidth-AControl.Width)
or (P.Y>AParent.ClientHeight-AControl.Height) then
break;
i:=AParent.ControlCount-1;
end else
dec(i);
end;
P.x:=Max(0,Min(P.x,AParent.ClientWidth-AControl.Width));
P.y:=Max(0,Min(P.y,AParent.ClientHeight-AControl.Height));
AControl.SetBounds(P.x,P.y,AControl.Width,AControl.Height);
end else begin
P:=GetParentFormRelativeTopLeft(AComponent);
repeat
OverlappedComponent:=NonVisualComponentAtPos(P.x,P.y);
if (OverlappedComponent=nil) then break;
inc(P.X,NonVisualCompWidth);
inc(P.Y,NonVisualCompWidth);
if (P.X+NonVisualCompWidth>Form.ClientWidth)
or (P.Y+NonVisualCompWidth>Form.ClientHeight) then
break;
until false;
AComponent.DesignInfo := LeftTopToDesignInfo(
SmallInt(Max(0, Min(P.x, Form.ClientWidth - NonVisualCompWidth))),
SmallInt(Max(0, Min(P.y, Form.ClientHeight - NonVisualCompWidth))));
end;
end;
var
i: Integer;
NewComponent: TComponent;
begin
Result:=false;
//debugln('TDesigner.DoInsertFromStream A');
if (cpsfReplace in PasteFlags) and (not DeleteSelection) then exit;
//debugln('TDesigner.DoInsertFromStream B s.Size=',dbgs(s.Size),' S.Position=',dbgs(S.Position));
if PasteParent=nil then PasteParent:=GetPasteParent;
NewSelection:=TPersistentSelectionList.Create;
NewComponents:=TFPList.Create;
try
Form.DisableAutoSizing{$IFDEF DebugDisableAutoSizing}('TDesigner.DoInsertFromStream'){$ENDIF};
try
// read component stream from clipboard
if (s.Size<=S.Position) then begin
debugln('TDesigner.DoInsertFromStream Stream Empty s.Size=',dbgs(s.Size),' S.Position=',dbgs(S.Position));
exit;
end;
// create components and add to LookupRoot
FOnPasteComponent(Self,FLookupRoot,s,PasteParent,NewComponents);
// add new component to new selection
for i:=0 to NewComponents.Count-1 do begin
NewComponent:=TComponent(NewComponents[i]);
NewSelection.Add(NewComponent);
// set new nice bounds
if cpsfFindUniquePositions in PasteFlags then
FindUniquePosition(NewComponent);
// finish adding component
NotifyPersistentAdded(NewComponent);
Modified;
// add action in undo list
AddUndoAction(NewComponent, uopAdd, i = 0, 'Name', '', NewComponent.Name);
end;
if NewSelection.Count>0 then
FOnPastedComponents(Self,FLookupRoot);
finally
Form.EnableAutoSizing{$IFDEF DebugDisableAutoSizing}('TDesigner.DoInsertFromStream'){$ENDIF};
end;
finally
NewComponents.Free;
if NewSelection.Count>0 then
Selection.AssignSelection(NewSelection);
NewSelection.Free;
end;
Result:=true;
end;
function TDesigner.DoUndo: Boolean;
var GroupId: int64;
begin
repeat
Result := CanUndo;
if not Result then Exit;
Dec(FUndoCurr);
GroupId := FUndoList[FUndoCurr].GroupId;
ExecuteUndoItem(true);
until (FUndoCurr=Low(FUndoList)) or (GroupId <> FUndoList[FUndoCurr - 1].GroupId);
end;
function TDesigner.DoRedo: Boolean;
var GroupId: int64;
begin
repeat
Result := CanRedo;
if not Result then Exit;
ExecuteUndoItem(false);
GroupId := FUndoList[FUndoCurr].GroupId;
Inc(FUndoCurr);
until (FUndoCurr>High(FUndoList)) or (GroupId <> FUndoList[FUndoCurr].GroupId);
end;
procedure TDesigner.ExecuteUndoItem(IsActUndo: boolean);
procedure SetPropVal(AVal: variant);
var
tmpStr, str: string;
tmpCompName: TComponentName;
tmpObj: TObject;
tmpInt: integer;
aPropType: PTypeInfo;
begin
tmpCompName := FUndoList[FUndoCurr].compName;
if FUndoList[FUndoCurr].fieldName = 'Name' then
begin
if IsActUndo then
tmpCompName := FUndoList[FUndoCurr].newVal
else
tmpCompName := FUndoList[FUndoCurr].oldVal;
end;
if FForm.Name <> tmpCompName then
tmpObj := TObject(FForm.FindComponent(tmpCompName))
else
tmpObj := TObject(FForm);
if VarIsError(AVal) or VarIsEmpty(AVal) or VarIsNull(AVal) then
ShowMessage('error: invalid var type');
tmpStr := VarToStr(AVal);
with FUndoList[FUndoCurr] do begin
if propInfo<>nil then
begin
aPropType:=propInfo^.propType;
case aPropType^.Kind of
tkInteger, tkInt64:
begin
if (aPropType^.Name = 'TColor') or
(aPropType^.Name = 'TGraphicsColor') then
SetOrdProp(tmpObj, fieldName, StringToColor(tmpStr))
else if aPropType^.Name = 'TCursor' then
SetOrdProp(tmpObj, fieldName, StringToCursor(tmpStr))
else
SetOrdProp(tmpObj, fieldName, StrToInt(tmpStr));
end;
tkChar, tkWChar, tkUChar:
begin
if Length(tmpStr) = 1 then
SetOrdProp(tmpObj, FUndoList[FUndoCurr].fieldName, Ord(tmpStr[1]))
else if (tmpStr[1] = '#') then
begin
str := Copy(tmpStr, 2, Length(tmpStr) - 1);
if TryStrToInt(str, tmpInt) and (tmpInt >= 0) and (tmpInt <= High(Byte)) then
SetOrdProp(tmpObj, FUndoList[FUndoCurr].fieldName, tmpInt);
end;
end;
tkEnumeration:
SetEnumProp(tmpObj, FUndoList[FUndoCurr].fieldName, tmpStr);
tkFloat:
SetFloatProp(tmpObj, fieldName, StrToFloat(tmpStr));
tkBool:
SetOrdProp(tmpObj, FUndoList[FUndoCurr].fieldName, Integer(StrToBoolOI(tmpStr)));
tkString, tkLString, tkAString, tkUString, tkWString:
SetStrProp(tmpObj, fieldName, tmpStr);
tkSet:
SetSetProp(tmpObj, FUndoList[FUndoCurr].fieldName, tmpStr);
tkVariant:
SetVariantProp(tmpObj, fieldName, AVal);
else
ShowMessage(Format('error: unknown TTypeKind(%d)', [Integer(aPropType^.Kind)]));
end;
end else begin
// field is not published
if tmpObj is TComponent then
begin
// special case: TComponent.Left,Top
if CompareText(fieldName,'Left')=0 then
SetDesignInfoLeft(TComponent(tmpObj),StrToInt(tmpStr))
else if CompareText(fieldName,'Top')=0 then
SetDesignInfoTop(TComponent(tmpObj),StrToInt(tmpStr));
end;
end;
end;
PropertyEditorHook.Modified(tmpObj);
end;
var
CurTextCompStream: TMemoryStream;
SaveControlSelection: TControlSelection;
begin
if (IsActUndo and (FUndoList[FUndoCurr].opType in [uopAdd])) or
(not IsActUndo and (FUndoList[FUndoCurr].opType in [uopDelete])) then
begin
Selection.BeginUpdate;
try
SaveControlSelection := TControlSelection.Create;
try
Inc(FUndoLock);
SaveControlSelection.Assign(Selection);
Selection.AssignPersistent(FForm.FindComponent(FUndoList[FUndoCurr].compName));
DeleteSelection;
finally
Dec(FUndoLock);
Selection.Assign(SaveControlSelection);
SaveControlSelection.Free;
end;
finally
Selection.EndUpdate;
end;
end;
if (IsActUndo and (FUndoList[FUndoCurr].opType in [uopDelete])) or
(not IsActUndo and (FUndoList[FUndoCurr].opType in [uopAdd])) then
begin
CurTextCompStream := TMemoryStream.Create;
try
Inc(FUndoLock);
CurTextCompStream.Write(FUndoList[FUndoCurr].obj[1], Length(FUndoList[FUndoCurr].obj));
CurTextCompStream.Position := 0;
DoInsertFromStream(CurTextCompStream,
TWinControl(FForm.FindChildControl(FUndoList[FUndoCurr].parentName)), []);
finally
Dec(FUndoLock);
CurTextCompStream.Free;
end;
end;
if FUndoList[FUndoCurr].opType = uopChange then
begin
Inc(FUndoLock);
try
if IsActUndo then
SetPropVal(FUndoList[FUndoCurr].oldVal)
else
SetPropVal(FUndoList[FUndoCurr].newVal);
finally
Dec(FUndoLock);
end;
end;
PropertyEditorHook.RefreshPropertyValues;
end;
procedure TDesigner.DoShowAnchorEditor;
begin
if Assigned(FOnShowAnchorEditor) then
FOnShowAnchorEditor(Self);
end;
procedure TDesigner.DoShowTabOrderEditor;
begin
if Assigned(FOnShowTabOrderEditor) then
FOnShowTabOrderEditor(Self);
end;
procedure TDesigner.DoShowObjectInspector;
begin
if Assigned(FOnShowObjectInspector) then
OnShowObjectInspector(Self);
end;
procedure TDesigner.DoChangeZOrder(TheAction: Integer);
var
Control: TControl;
Parent: TWinControl;
OI: TObjectInspectorDlg;
begin
if Selection.Count <> 1 then Exit;
if not Selection[0].IsTControl then Exit;
Control := TControl(Selection[0].Persistent);
Parent := Control.Parent;
if (Parent = nil) and (TheAction in [2, 3]) then Exit;
case TheAction of
0: Control.BringToFront;
1: Control.SendToBack;
2: Parent.SetControlIndex(Control, Parent.GetControlIndex(Control) + 1);
3: Parent.SetControlIndex(Control, Parent.GetControlIndex(Control) - 1);
end;
// Ensure the order of controls in the OI now reflects the new ZOrder
// Unfortunately, if there is no parent, this code doesn't achieve a refresh
// of ComponentTree in the OI
if assigned(Parent) then
begin
Parent.ReAlign;
SelectOnlyThisComponent(Parent);
end;
SelectOnlyThisComponent(Control);
Modified;
OI := FormEditingHook.GetCurrentObjectInspector;
if Assigned(OI) then
OI.ComponentTree.RebuildComponentNodes;
end;
procedure TDesigner.GiveComponentsNames;
var
i: Integer;
CurComponent: TComponent;
begin
if LookupRoot=nil then exit;
for i:=0 to LookupRoot.ComponentCount-1 do begin
CurComponent:=LookupRoot.Components[i];
if CurComponent.Name='' then
CurComponent.Name:=UniqueName(CurComponent.ClassName);
end;
end;
procedure TDesigner.NotifyPersistentAdded(APersistent: TPersistent);
begin
try
GiveComponentsNames;
GlobalDesignHook.PersistentAdded(APersistent,false);
except
on E: Exception do
IDEMessageDialog('Error:',E.Message,mtError,[mbOk]);
end;
end;
procedure TDesigner.SelectOnlyThisComponent(AComponent: TComponent);
begin
Selection.AssignPersistent(AComponent);
end;
function TDesigner.CopySelection: boolean;
begin
Result := DoCopySelectionToClipboard;
end;
function TDesigner.CutSelection: boolean;
begin
Result := DoCopySelectionToClipboard and DoDeleteSelectedPersistents;
end;
procedure TDesigner.CutSelectionAsync(Data: PtrInt);
begin
CutSelection;
end;
function TDesigner.CanCopy: Boolean;
begin
Result := (Selection.Count > 0) and
(Selection.SelectionForm = Form) and
Selection.OkToCopy and
not Selection.OnlyInvisiblePersistentsSelected and
not Selection.LookupRootSelected;
end;
function TDesigner.CanPaste: Boolean;
begin
Result:= Assigned(Form) and
Assigned(FLookupRoot) and
ClipBoard.HasFormat(CF_Text) and
not (csDestroying in FLookupRoot.ComponentState);
end;
function TDesigner.PasteSelection(
PasteFlags: TComponentPasteSelectionFlags): boolean;
begin
Result:=DoPasteSelectionFromClipboard(PasteFlags);
end;
function TDesigner.ClearSelection: boolean;
begin
Selection.Clear;
Result:=Selection.Count=0;
end;
function TDesigner.DeleteSelection: boolean;
begin
Result:=DoDeleteSelectedPersistents;
end;
function TDesigner.InvokeComponentEditor(AComponent: TComponent): boolean;
var
CompEditor: TBaseComponentEditor;
begin
Result:=false;
DebugLn('TDesigner.InvokeComponentEditor A ',AComponent.Name,':',AComponent.ClassName);
CompEditor:=TheFormEditor.GetComponentEditor(AComponent);
if CompEditor=nil then begin
DebugLn('TDesigner.InvokeComponentEditor',
' WARNING: no component editor found for ',
AComponent.Name,':',AComponent.ClassName);
exit;
end;
DebugLn('TDesigner.InvokeComponentEditor B ',CompEditor.ClassName);
try
CompEditor.Edit;
Result:=true;
except
on E: Exception do begin
DebugLn('TDesigner.InvokeComponentEditor ERROR: ',E.Message);
IDEMessageDialog(Format(lisErrorIn, [CompEditor.ClassName]),
Format(lisTheComponentEditorOfClassHasCreatedTheError,
[CompEditor.ClassName, LineEnding, E.Message]),
mtError,[mbOk]);
end;
end;
try
CompEditor.Free;
except
on E: Exception do begin
DebugLn('TDesigner.InvokeComponentEditor ERROR freeing component editor: ',E.Message);
end;
end;
end;
function TDesigner.ChangeClass: boolean;
begin
if (Selection.Count=1) and (not Selection.LookupRootSelected) then
Result:=ShowChangeClassDialog(Self,Selection[0].Persistent)=mrOK
else
Result:=false;
end;
procedure TDesigner.DoProcessCommand(Sender: TObject; var Command: word;
var Handled: boolean);
begin
if Assigned(OnProcessCommand) and (Command <> ecNone)
then begin
OnProcessCommand(Self,Command,Handled);
Handled := Handled or (Command = ecNone);
end;
if Handled then Exit;
case Command of
ecDesignerSelectParent : SelectParentOfSelection;
ecDesignerCopy : CopySelection;
ecDesignerCut : CutSelection;
ecDesignerPaste : PasteSelection([cpsfFindUniquePositions]);
ecDesignerMoveToFront : DoChangeZOrder(0);
ecDesignerMoveToBack : DoChangeZOrder(1);
ecDesignerForwardOne : DoChangeZOrder(2);
ecDesignerBackOne : DoChangeZOrder(3);
ecDesignerToggleNonVisComps: ShowNonVisualComponents:=not ShowNonVisualComponents;
else
Exit;
end;
Handled := True;
end;
function TDesigner.CanUndo: Boolean;
begin
Result := Assigned(Form) and (FUndoCurr > Low(FUndoList)) and
(FUndoList[FUndoCurr - 1].isValid) and (FUndoList[FUndoCurr - 1].opType <> uopNone);
end;
function TDesigner.CanRedo: Boolean;
begin
Result := Assigned(Form) and (FUndoCurr <= High(FUndoList)) and
(FUndoList[FUndoCurr].isValid) and (FUndoList[FUndoCurr].opType <> uopNone);
end;
function TDesigner.Undo: Boolean;
begin
Result := DoUndo;
end;
function TDesigner.Redo: Boolean;
begin
Result := DoRedo;
end;
function TDesigner.AddUndoAction(const aPersistent: TPersistent;
aOpType: TUndoOpType; StartNewGroup: boolean; aFieldName: string; const aOldVal,
aNewVal: variant): boolean;
procedure ShiftUndoList;
var
i: integer;
begin
for i := Low(FUndoList) + 1 to High(FUndoList) do
FUndoList[i - 1] := FUndoList[i];
ClearUndoItem(High(FUndoList));
Dec(FUndoCurr);
end;
var
i: integer;
SaveControlSelection: TControlSelection;
AStream: TStringStream;
APropInfo: PPropInfo;
begin
Result := (FUndoLock = 0);
if not Result then Exit;
APropInfo := GetPropInfo(aPersistent, aFieldName);
Inc(FUndoLock);
try
if FUndoCurr > High(FUndoList) then
ShiftUndoList;
// clear Redo items
i := FUndoCurr;
while (i <= High(FUndoList)) do
begin
ClearUndoItem(i);
Inc(i);
end;
if StartNewGroup then
SetNextUndoGroupId;
if (aOpType in [uopAdd, uopDelete]) and (FForm <> aPersistent) then
begin
Selection.BeginUpdate;
try
SaveControlSelection := TControlSelection.Create;
try
SaveControlSelection.Assign(Selection);
AStream := TStringStream.Create('');
try
Selection.AssignPersistent(aPersistent);
CopySelectionToStream(AStream);
FUndoList[FUndoCurr].obj := AStream.DataString;
finally
AStream.Free;
end;
finally
Selection.Assign(SaveControlSelection);
SaveControlSelection.Free;
end;
finally
Selection.EndUpdate;
end;
end;
// add to FUndoList
with FUndoList[FUndoCurr] do
begin
oldVal := aOldVal;
newVal := aNewVal;
fieldName := aFieldName;
compName := '';
parentName := '';
if aPersistent is TComponent then begin
compName := TComponent(aPersistent).Name;
if TComponent(aPersistent).HasParent then
parentName := TComponent(aPersistent).GetParentComponent.Name;
end;
opType := aOpType;
isValid := true;
GroupId := FUndoGroupId;
propInfo := APropInfo;
end;
Inc(FUndoCurr);
finally
Dec(FUndoLock);
end;
end;
function TDesigner.IsUndoLocked: boolean;
begin
Result := FUndoLock > 0;
end;
procedure TDesigner.ClearUndoItem(AIndex: Integer);
begin
if (AIndex < 0) or (AIndex >= Length(FUndoList)) then Exit;
with FUndoList[AIndex] do
begin
obj := '';
fieldName := '';
VarClear(oldVal);
VarClear(newVal);
compName := '';
parentName := '';
opType := uopNone;
isValid := false;
GroupId := 0;
end;
end;
function TDesigner.NonVisualComponentLeftTop(AComponent: TComponent): TPoint;
var
ParentForm: TPoint;
begin
Result.X := LeftFromDesignInfo(AComponent.DesignInfo);
Result.Y := TopFromDesignInfo(AComponent.DesignInfo);
// convert to lookuproot coords
if (AComponent.Owner <> FLookupRoot) then
begin
ParentForm:=GetParentFormRelativeClientOrigin(AComponent.Owner);
inc(Result.X,ParentForm.X);
inc(Result.Y,ParentForm.Y);
end;
end;
procedure TDesigner.InvalidateWithParent(AComponent: TComponent);
begin
{$IFDEF VerboseDesigner}
DebugLn('TDesigner.INVALIDATEWITHPARENT ',AComponent.Name,':',AComponent.ClassName);
{$ENDIF}
if AComponent is TControl then begin
if TControl(AComponent).Parent<>nil then
TControl(AComponent).Parent.Invalidate
else
TControl(AComponent).Invalidate;
end else begin
FForm.Invalidate;
end;
end;
procedure TDesigner.SetDefaultFormBounds(const AValue: TRect);
begin
FDefaultFormBounds:=AValue;
end;
procedure TDesigner.SetGridColor(const AValue: TColor);
begin
if GridColor=AValue then exit;
EnvironmentOptions.GridColor:=AValue;
Form.Invalidate;
end;
procedure TDesigner.SetShowBorderSpacing(const AValue: boolean);
begin
if ShowBorderSpacing=AValue then exit;
EnvironmentOptions.ShowBorderSpacing:=AValue;
Form.Invalidate;
end;
procedure TDesigner.SetShowComponentCaptions(const AValue: boolean);
begin
if AValue=ShowComponentCaptions then exit;
if AValue then
Include(FFlags, dfShowComponentCaptions)
else
Exclude(FFlags, dfShowComponentCaptions);
Form.Invalidate;
end;
function TDesigner.PaintControl(Sender: TControl; TheMessage: TLMPaint): Boolean;
var
OldDuringPaintControl: boolean;
begin
Result:=true;
{$IFDEF VerboseDsgnPaintMsg}
writeln('*** TDesigner.PaintControl A ',Sender.Name,':',Sender.ClassName,
' DC=',DbgS(TheMessage.DC));
{$ENDIF}
// Set flag
OldDuringPaintControl:=dfDuringPaintControl in FFlags;
Include(FFlags,dfDuringPaintControl);
// send the Paint message to the control, so that it paints itself
//writeln('TDesigner.PaintControl B ',Sender.Name);
Sender.Dispatch(TheMessage);
//writeln('TDesigner.PaintControl C ',Sender.Name,' DC=',DbgS(TheMessage.DC));
// paint the Designer stuff
if TheMessage.DC <> 0 then begin
Include(FFlags,dfNeedPainting);
if Sender is TControl then
DDC.SetDC(Form, TControl(Sender), TheMessage.DC)
else
if Sender <> nil then
DDC.SetDC(Form, Sender.Parent, TheMessage.DC)
else
DDC.SetDC(Form, nil, TheMessage.DC);
{$IFDEF VerboseDesignerDraw}
writeln('TDesigner.PaintControl D ',dbgsname(Sender),
' DC=',DbgS(DDC.DC,8),
{' FormOrigin=',DDC.FormOrigin.X,',',DDC.FormOrigin.Y,}
' DCOrigin=',DDC.DCOrigin.X,',',DDC.DCOrigin.Y,
' FormClientOrigin=',DDC.FormClientOrigin.X,',',DDC.FormClientOrigin.Y
);
{$ENDIF}
if LastPaintSender=Sender then begin
//writeln('NOTE: TDesigner.PaintControl E control painted twice: ',
// Sender.Name,':',Sender.ClassName,' DC=',DbgS(TheMessage.DC));
//RaiseGDBException('');
end;
LastPaintSender:=Sender;
if IsDesignerDC(Form.Handle, TheMessage.DC) then
DoPaintDesignerItems
else
begin
// client grid
if (Sender is TWinControl) and (csAcceptsControls in Sender.ControlStyle) then
PaintClientGrid(TWinControl(Sender),DDC);
if (WidgetSet.GetLCLCapability(lcCanDrawOutsideOnPaint) <> 0) and
not EnvironmentOptions.DesignerPaintLazy then
DoPaintDesignerItems;
end;
// clean up
DDC.Clear;
end;
//writeln('TDesigner.PaintControl END ',Sender.Name);
if not OldDuringPaintControl then
Exclude(FFlags,dfDuringPaintControl);
end;
function TDesigner.HandleSetCursor(var TheMessage: TLMessage): boolean;
begin
Result := Lo(DWord(TheMessage.LParam)) = HTCLIENT;
if Result then
begin
SetTempCursor(Form, LastFormCursor);
TheMessage.Result := 1;
end;
end;
procedure TDesigner.HandlePopupMenu(Sender: TControl; var Message: TLMContextMenu);
var
PopupPos: TPoint;
begin
if Message.XPos = -1 then
begin
PopupMenuComponentEditor := GetComponentEditorForSelection;
BuildPopupMenu;
with Selection do
PopupPos := Point(Left + Width, Top);
with Form.ClientToScreen(PopupPos) do
FDesignerPopupMenu.Popup(X, Y);
end;
Message.Result := 1;
end;
procedure TDesigner.GetMouseMsgShift(TheMessage: TLMMouse; out
Shift: TShiftState; out Button: TMouseButton);
begin
Shift := [];
Button := mbLeft;
if (TheMessage.Keys and MK_Shift) = MK_Shift then
Include(Shift, ssShift);
if (TheMessage.Keys and MK_Control) = MK_Control then
Include(Shift, ssCtrl);
if GetKeyState(VK_MENU) < 0 then Include(Shift, ssAlt);
if (GetKeyState(VK_LWIN) < 0) or (GetKeyState(VK_RWIN) < 0) then Include(Shift, ssMeta);
case TheMessage.Msg of
LM_LBUTTONUP,LM_LBUTTONDBLCLK,LM_LBUTTONTRIPLECLK,LM_LBUTTONQUADCLK:
begin
Include(Shift, ssLeft);
Button := mbLeft;
end;
LM_MBUTTONUP,LM_MBUTTONDBLCLK,LM_MBUTTONTRIPLECLK,LM_MBUTTONQUADCLK:
begin
Include(Shift, ssMiddle);
Button := mbMiddle;
end;
LM_RBUTTONUP,LM_RBUTTONDBLCLK,LM_RBUTTONTRIPLECLK,LM_RBUTTONQUADCLK:
begin
Include(Shift, ssRight);
Button := mbRight;
end;
else
if (TheMessage.Keys and MK_MButton) <> 0 then
begin
Include(Shift, ssMiddle);
Button := mbMiddle;
end;
if (TheMessage.Keys and MK_RButton) <> 0 then
begin
Include(Shift, ssRight);
Button := mbRight;
end;
if (TheMessage.Keys and MK_LButton) <> 0 then
begin
Include(Shift, ssLeft);
Button := mbLeft;
end;
if (TheMessage.Keys and MK_XBUTTON1) <> 0 then
begin
Include(Shift, ssExtra1);
Button := mbExtra1;
end;
if (TheMessage.Keys and MK_XBUTTON2) <> 0 then
begin
Include(Shift, ssExtra2);
Button := mbExtra2;
end;
end;
case TheMessage.Msg of
LM_LBUTTONDBLCLK,LM_MBUTTONDBLCLK,LM_RBUTTONDBLCLK,LM_XBUTTONDBLCLK:
Include(Shift, ssDouble);
LM_LBUTTONTRIPLECLK,LM_MBUTTONTRIPLECLK,LM_RBUTTONTRIPLECLK,LM_XBUTTONTRIPLECLK:
Include(Shift, ssTriple);
LM_LBUTTONQUADCLK,LM_MBUTTONQUADCLK,LM_RBUTTONQUADCLK,LM_XBUTTONQUADCLK:
Include(Shift, ssQuad);
end;
end;
function TDesigner.GetDesignControl(AControl: TControl): TControl;
// checks if AControl is designable.
// if not check Owner.
// AControl can be a TNonControlDesignerForm
var
OwnerControl: TControl;
AComponent: TComponent;
begin
Result:=AControl;
if (Result=nil) or (Result=LookupRoot) or (Result.Owner=LookupRoot) then exit;
if Result=Form then exit;
if (Result.Owner is TControl) then begin
OwnerControl:=TControl(Result.Owner);
if (not (csOwnedChildrenNotSelectable in OwnerControl.ControlStyle)) then
exit;
Result:=GetDesignControl(OwnerControl);
end else begin
AComponent:=GetDesignedComponent(AControl);
if AComponent is TControl then
Result:=TControl(AComponent)
else
Result:=nil;
end;
end;
function TDesigner.SizeControl(Sender: TControl; TheMessage: TLMSize): Boolean;
begin
Result := True;
Sender.Dispatch(TheMessage);
if Selection.SelectionForm = Form then
begin
Selection.CheckForLCLChanges(True);
end;
end;
function TDesigner.MoveControl(Sender: TControl; TheMessage: TLMMove): Boolean;
begin
Result := True;
Sender.Dispatch(TheMessage);
//debugln('*** TDesigner.MoveControl A ',Sender.Name,':',Sender.ClassName,' ',Selection.SelectionForm=Form,' ',not Selection.IsResizing,' ',Selection.IsSelected(Sender));
if Selection.SelectionForm = Form then
begin
if not Selection.CheckForLCLChanges(True) and (Sender = Form) and
Selection.LookupRootSelected then
begin
// the selected form was moved (nothing else has changed)
// Selection does not need an update, but properties like
// Form.Left/Top have to be updated in the OI
OnPropertiesChanged(Self);
end;
end;
end;
procedure TDesigner.MouseDownOnControl(Sender: TControl;
var TheMessage: TLMMouse);
var
CompIndex:integer;
SelectedCompClass: TRegisteredComponent;
ParentForm: TCustomForm;
Shift: TShiftState;
DesignSender: TControl;
Button: TMouseButton;
Handled: Boolean;
MouseDownControl: TControl;
p: types.TPoint;
begin
FHintTimer.Enabled := False;
FHintWindow.Visible := False;
Exclude(FFLags, dfHasSized);
SetCaptureControl(nil);
DesignSender := GetDesignControl(Sender);
ParentForm := GetDesignerForm(DesignSender);
//DebugLn(['TDesigner.MouseDownOnControl DesignSender=',dbgsName(DesignSender),' ParentForm=',dbgsName(ParentForm)]);
if (ParentForm = nil) then exit;
MouseDownPos := GetFormRelativeMousePosition(Form);
LastMouseMovePos := MouseDownPos;
MouseDownSender := nil;
MouseDownComponent := ComponentAtPos(MouseDownPos.X, MouseDownPos.Y, True, True);
if (MouseDownComponent = nil) then exit;
if ComponentIsIcon(MouseDownComponent) then
begin
if Assigned(IDEComponentsMaster) then
if not IDEComponentsMaster.DrawNonVisualComponents(FLookupRoot) then
begin
MouseDownComponent := nil;
Exit;
end;
MoveNonVisualComponentIntoForm(MouseDownComponent);
end;
MouseDownSender := DesignSender;
GetMouseMsgShift(TheMessage,Shift,Button);
MouseDownShift:=Shift;
{$IFDEF VerboseDesigner}
DebugLn('************************************************************');
DbgOut('MouseDownOnControl');
DbgOut(' Sender=',dbgsName(Sender),' DesignSender=',dbgsName(DesignSender));
//write(' Msg=',TheMessage.Pos.X,',',TheMessage.Pos.Y);
//write(' Mouse=',MouseDownPos.X,',',MouseDownPos.Y);
//writeln('');
if (TheMessage.Keys and MK_Shift) = MK_Shift then
DbgOut(' Shift down')
else
DbgOut(' No Shift down');
if (TheMessage.Keys and MK_Control) = MK_Control then
DebugLn(', CTRL down')
else
DebugLn(', No CTRL down');
{$ENDIF}
if (MouseDownComponent <> nil) and (MouseDownComponent is TControl) then
begin
MouseDownControl:=TControl(MouseDownComponent);
p:=MouseDownControl.ScreenToClient(Form.ClientToScreen(MouseDownPos));
if (csDesignInteractive in MouseDownControl.ControlStyle)
or (MouseDownControl.Perform(CM_DESIGNHITTEST, TheMessage.Keys, Longint(SmallPoint(p.X, p.Y))) > 0) then
begin
TControlAccess(MouseDownComponent).MouseDown(Button, Shift, p.X, p.Y);
Exit;
end;
end
else
p:=Point(0,0);
if Mediator<>nil then begin
Handled:=false;
Mediator.MouseDown(Button,Shift,MouseDownPos,Handled);
if Handled then exit;
end;
SelectedCompClass := GetSelectedComponentClass;
if Button=mbLeft then begin
// left button
// -> check if a grabber was activated
Selection.ActiveGrabber:=
Selection.GrabberAtPos(MouseDownPos.X, MouseDownPos.Y);
SetCaptureControl(ParentForm);
if SelectedCompClass = nil then begin
// selection mode
if Selection.ActiveGrabber=nil then begin
// no grabber resizing
CompIndex:=Selection.IndexOf(MouseDownComponent);
if ssCtrl in Shift then begin
// child selection
end
else if (ssShift in Shift) then begin
// shift key pressed (multiselection)
if CompIndex<0 then begin
// not selected
// add component to selection
if (Selection.SelectionForm<>nil)
and (Selection.SelectionForm<>Form)
then begin
IDEMessageDialog(lisInvalidMultiselection,
fdInvalidMultiselectionText,
mtInformation,[mbOk]);
end else begin
Selection.Add(MouseDownComponent);
end;
end else begin
// remove from multiselection
Selection.Delete(CompIndex);
end;
end else begin
// no shift key (single selection or keeping multiselection)
if (CompIndex<0) then begin
// select only this component
Selection.AssignPersistent(MouseDownComponent);
end else
// sync with the interface
Selection.UpdateBounds;
end;
end else begin
// mouse down on grabber -> begin sizing
// grabber is already activated
// the sizing is handled in mousemove and mouseup
end;
end else begin
// add component mode -> handled in mousemove and mouseup
// but check if we pressed mouse on the form which is not selected
if (Selection.SelectionForm <> Form) then
Selection.AssignPersistent(MouseDownComponent);
end;
end else begin
// not left button
Selection.ActiveGrabber := nil;
if (Button = mbRight) and EnvironmentOptions.RightClickSelects and
(Selection.SelectionForm <> Form) then
Selection.AssignPersistent(MouseDownComponent);
end;
if PropertyEditorHook<>nil then
PropertyEditorHook.DesignerMouseDown(Sender, Button, Shift, p.X, p.Y);
if not Selection.OnlyVisualComponentsSelected and ShowComponentCaptions then
Form.Invalidate;
{$IFDEF VerboseDesigner}
DebugLn('[TDesigner.MouseDownOnControl] END');
{$ENDIF}
end;
procedure TDesigner.MouseUpOnControl(Sender : TControl; var TheMessage:TLMMouse);
var
Button: TMouseButton;
Shift: TShiftState;
SenderParentForm: TCustomForm;
RubberBandWasActive: boolean;
PopupPos: TPoint;
SelectedCompClass: TRegisteredComponent;
SelectionChanged, NewRubberbandSelection: boolean;
DesignSender: TControl;
procedure DoAddComponent;
var
NewParent: TComponent;
NewComponentClass: TComponentClass;
NewLeft, NewTop, NewWidth, NewHeight: Integer;
ParentClientOrigin: TPoint;
begin
if MouseDownComponent=nil then exit;
NewComponentClass := SelectedCompClass.GetCreationClass;
//debugln(['AddComponent NewComponentClass=',DbgSName(NewComponentClass)]);
// find a parent for the new component
NewParent:=nil;
if not PropertyEditorHook.AddClicked(Self,MouseDownComponent,Button,Shift,
MouseUpPos.X,MouseUpPos.Y,NewComponentClass,NewParent) then exit;
AddComponentCheckParent(NewParent, MouseDownComponent,
WinControlAtPos(MouseUpPos.X, MouseUpPos.Y, true, true), NewComponentClass);
if not Assigned(NewParent) then exit;
// calculate initial bounds
NewLeft:=Min(MouseDownPos.X,MouseUpPos.X);
NewTop:=Min(MouseDownPos.Y,MouseUpPos.Y);
if (Mediator<>nil) then begin
ParentClientOrigin:=Mediator.GetComponentOriginOnForm(NewParent);
DebugLn(['AddComponent ParentClientOrigin=',dbgs(ParentClientOrigin)]);
// adjust left,top to parent origin
dec(NewLeft,ParentClientOrigin.X);
dec(NewTop,ParentClientOrigin.Y);
end else if NewComponentClass.InheritsFrom(TControl) then
begin
ParentClientOrigin:=GetParentFormRelativeClientOrigin(NewParent);
// adjust left,top to parent origin
dec(NewLeft,ParentClientOrigin.X);
dec(NewTop,ParentClientOrigin.Y);
end;
NewWidth:=Abs(MouseUpPos.X-MouseDownPos.X);
NewHeight:=Abs(MouseUpPos.Y-MouseDownPos.Y);
if Abs(NewWidth+NewHeight)<7 then begin
// this very small component is probably only a wag, take default size
NewWidth:=0;
NewHeight:=0;
end;
//DebugLn(['AddComponent ',dbgsName(NewComponentClass)]);
if NewComponentClass = nil then exit;
AddComponent(SelectedCompClass, NewComponentClass, NewParent, NewLeft, NewTop, NewWidth, NewHeight);
end;
procedure RubberbandSelect;
var
MaxParentComponent: TComponent;
begin
if (ssShift in Shift)
and (Selection.SelectionForm<>nil)
and (Selection.SelectionForm<>Form)
then begin
IDEMessageDialog(lisInvalidMultiselection,
fdInvalidMultiselectionText,
mtInformation,[mbOk]);
exit;
end;
// check if start new selection or add/remove:
NewRubberbandSelection:= (not (ssShift in Shift))
or (Selection.SelectionForm<>Form);
// update non visual components
MoveNonVisualComponentsIntoForm;
// if user press the Control key, then component candidates are only
// children of the control, where the mouse started
if (ssCtrl in shift) then begin
if MouseDownComponent=Form then
MaxParentComponent:=FLookupRoot
else
MaxParentComponent:=MouseDownComponent;
end else
MaxParentComponent:=FLookupRoot;
SelectionChanged:=false;
Selection.SelectWithRubberBand(
FLookupRoot,Mediator,NewRubberbandSelection,ssShift in Shift,
SelectionChanged,MaxParentComponent);
if Selection.Count=0 then begin
Selection.Add(FLookupRoot);
SelectionChanged:=true;
end;
Selection.RubberbandActive:=false;
{$IFDEF VerboseDesigner}
DebugLn('RubberbandSelect ',DbgS(ControlSelection.Grabbers[0]));
{$ENDIF}
Form.Invalidate;
end;
procedure PointSelect;
begin
if not (ssShift in Shift) then
begin
// select only the mouse down component
Selection.AssignPersistent(MouseDownComponent);
if (ssDouble in MouseDownShift) and (Selection.SelectionForm = Form) then
begin
// Double Click -> invoke 'Edit' of the component editor
FShiftState := Shift;
InvokeComponentEditor(MouseDownComponent);
FShiftState := [];
end;
end;
end;
procedure DisableRubberBand;
begin
if Selection.RubberbandActive then
Selection.RubberbandActive := False;
end;
var
Handled: Boolean;
i, j: Integer;
SelectedPersistent: TSelectedControl;
MouseDownControl: TControl;
p: types.TPoint;
begin
FHintTimer.Enabled := False;
FHintWindow.Visible := False;
SetCaptureControl(nil);
// check if the message is for the designed form and there was a mouse down before
DesignSender:=GetDesignControl(Sender);
SenderParentForm:=GetDesignerForm(DesignSender);
//DebugLn(['TDesigner.MouseUpOnControl DesignSender=',dbgsName(DesignSender),' SenderParentForm=',dbgsName(SenderParentForm),' ',TheMessage.XPos,',',TheMessage.YPos]);
if (MouseDownComponent=nil) or (SenderParentForm=nil)
or (SenderParentForm<>Form)
or ((Selection.SelectionForm<>nil)
and (Selection.SelectionForm<>Form)) then
begin
MouseDownComponent:=nil;
MouseDownSender:=nil;
exit;
end;
Selection.ActiveGrabber:=nil;
RubberBandWasActive:=Selection.RubberBandActive;
SelectedCompClass:=GetSelectedComponentClass;
GetMouseMsgShift(TheMessage,Shift,Button);
MouseUpPos:=GetFormRelativeMousePosition(Form);
{$IFDEF VerboseDesigner}
DebugLn('************************************************************');
DbgOut('MouseUpOnControl');
DbgOut(' Sender=',dbgsName(Sender),' DesignSender=',dbgsName(DesignSender));
//write(' Msg=',TheMessage.Pos.X,',',TheMessage.Pos.Y);
DebugLn('');
{$ENDIF}
if (MouseDownComponent <> nil) and (MouseDownComponent is TControl) then
begin
MouseDownControl:=TControl(MouseDownComponent);
p:=MouseDownControl.ScreenToClient(Form.ClientToScreen(MouseUpPos));
if (csDesignInteractive in MouseDownControl.ControlStyle)
or (MouseDownControl.Perform(CM_DESIGNHITTEST, TheMessage.Keys, Longint(SmallPoint(p.X, p.Y))) > 0) then
begin
TControlAccess(MouseDownComponent).MouseUp(Button, Shift, p.X, p.Y);
Exit;
end;
end
else
p:=Point(0,0);
if Mediator<>nil then
begin
Handled:=false;
Mediator.MouseUp(Button,Shift,MouseUpPos,Handled);
if Handled then exit;
end;
Selection.BeginUpdate;
if Button=mbLeft then
begin
if SelectedCompClass = nil then
begin
if (FUndoState = ucsSaveChange) then
begin
// update undo list stored component bounds (Left, Top, Width, Height)
// see TControlSelection.EndResizing
// the list of all TComponent, Left,Top,Width,Height
// Note: not every component has all four properties.
j := FUndoCurr - 1;
i := Selection.Count-1;
while i>=0 do
begin
SelectedPersistent:=Selection.Items[i];
if SelectedPersistent.IsTComponent then
begin
while (j>=0) do
begin
if (FUndoList[j].compName <> TComponent(SelectedPersistent.Persistent).Name)
then begin
// this is not a list of bounds -> stop
i:=0;
break;
end;
if (FUndoList[j].fieldName = 'Width') then
FUndoList[j].newVal := SelectedPersistent.Width
else if (FUndoList[j].fieldName = 'Height') then
FUndoList[j].newVal := SelectedPersistent.Height
else if (FUndoList[j].fieldName = 'Left') then
FUndoList[j].newVal := SelectedPersistent.Left
else if (FUndoList[j].fieldName = 'Top') then
FUndoList[j].newVal := SelectedPersistent.Top
else begin
// this is not a list of bounds -> stop
i:=0;
break;
end;
dec(j);
end;
end;
dec(i);
end;
end;
FUndoState := ucsNone;
// layout mode (selection, moving and resizing)
if not (dfHasSized in FFlags) then
begin
// new selection
if RubberBandWasActive then
begin
// rubberband selection
RubberbandSelect;
end else
begin
// point selection
PointSelect;
end;
end
else
Selection.UpdateBounds;
end else
begin
// create new a component on the form
DoAddComponent;
end;
end
else if Button=mbRight then
begin
// right click -> popup menu
DisableRubberBand;
Selection.EndUpdate;
if EnvironmentOptions.RightClickSelects
and (not Selection.IsSelected(MouseDownComponent))
and (Shift - [ssRight] = []) then
PointSelect;
PopupMenuComponentEditor := GetComponentEditorForSelection;
BuildPopupMenu;
PopupPos := Form.ClientToScreen(MouseUpPos);
FDesignerPopupMenu.Popup(PopupPos.X, PopupPos.Y);
Selection.BeginUpdate;
end;
DisableRubberBand;
LastMouseMovePos.X:=-1;
if (not Selection.OnlyVisualComponentsSelected and ShowComponentCaptions)
or (dfHasSized in FFlags) then
Form.Invalidate;
Exclude(FFlags,dfHasSized);
MouseDownComponent:=nil;
MouseDownSender:=nil;
if PropertyEditorHook<>nil then
PropertyEditorHook.DesignerMouseUp(Sender, Button, Shift, p.X, p.Y);
Selection.EndUpdate;
{$IFDEF VerboseDesigner}
DebugLn('[TDesigner.MouseUpOnControl] END');
{$ENDIF}
end;
procedure TDesigner.MouseMoveOnControl(Sender: TControl;
var TheMessage: TLMMouse);
var
Button: TMouseButton;
Shift : TShiftState;
SenderParentForm:TCustomForm;
OldMouseMovePos: TPoint;
Grabber: TGrabber;
ACursor: TCursor;
SelectedCompClass: TRegisteredComponent;
CurSnappedMousePos, OldSnappedMousePos: TPoint;
DesignSender: TControl;
Handled: Boolean;
MouseMoveComponent: TComponent;
MouseMoveControl: TControl;
p: types.TPoint;
begin
GetMouseMsgShift(TheMessage, Shift, Button);
if [dfShowEditorHints] * FFlags <> [] then
begin
FHintTimer.Enabled := False;
// hide hint
FHintTimer.Enabled := Shift * [ssLeft, ssRight, ssMiddle] = [];
if not (dfHasSized in FFlags) then
FHintWindow.Visible := False;
end;
DesignSender := GetDesignControl(Sender);
//DebugLn('TDesigner.MouseMoveOnControl Sender=',dbgsName(Sender),' ',dbgsName(DesignSender));
SenderParentForm := GetDesignerForm(DesignSender);
if (SenderParentForm = nil) or (SenderParentForm <> Form) then Exit;
OldMouseMovePos := LastMouseMovePos;
LastMouseMovePos := GetFormRelativeMousePosition(Form);
if (OldMouseMovePos.X = LastMouseMovePos.X) and (OldMouseMovePos.Y = LastMouseMovePos.Y) then
Exit;
MouseMoveComponent := MouseDownComponent;
if MouseMoveComponent = nil then
MouseMoveComponent := ComponentAtPos(LastMouseMovePos.X, LastMouseMovePos.Y, True, True);
if (MouseMoveComponent <> nil) and (MouseMoveComponent is TControl) then
begin
MouseMoveControl:=TControl(MouseMoveComponent);
p:=MouseMoveControl.ScreenToClient(Form.ClientToScreen(LastMouseMovePos));
if (csDesignInteractive in MouseMoveControl.ControlStyle)
or (MouseMoveControl.Perform(CM_DESIGNHITTEST, TheMessage.Keys, Longint(SmallPoint(p.X, p.Y))) > 0) then
begin
TControlAccess(MouseMoveComponent).MouseMove(Shift, p.X, p.Y);
Exit;
end;
end;
if Mediator <> nil then
begin
Handled := False;
Mediator.MouseMove(Shift, LastMouseMovePos, Handled);
if Handled then Exit;
end;
if Selection.SelectionForm = Form then
Grabber := Selection.GrabberAtPos(LastMouseMovePos.X, LastMouseMovePos.Y)
else
Grabber := nil;
if MouseDownComponent = nil then
begin
if Grabber = nil then
ACursor := crDefault
else
ACursor := Grabber.Cursor;
if ACursor <> LastFormCursor then
begin
LastFormCursor := ACursor;
SetTempCursor(Form, ACursor);
end;
Exit;
end;
if (Selection.SelectionForm = nil) or (Selection.SelectionForm = Form) then
begin
if Button = mbLeft then // left button pressed
begin
if (Selection.ActiveGrabber <> nil) then // grabber active => resizing
begin
// grabber moving -> size selection
if not Selection.LookupRootSelected then // if not current form is selected then resize selection
begin
if not (dfHasSized in FFlags) then
begin
Selection.SaveBounds(false);
Include(FFlags, dfHasSized);
end;
// skip snapping when Alt is pressed
if not (ssAlt in Shift) then
begin
OldSnappedMousePos := Selection.SnapGrabberMousePos(OldMouseMovePos);
CurSnappedMousePos := Selection.SnapGrabberMousePos(LastMouseMovePos);
end
else
begin
OldSnappedMousePos := OldMouseMovePos;
CurSnappedMousePos := LastMouseMovePos;
end;
Selection.SizeSelection(
CurSnappedMousePos.X - OldSnappedMousePos.X,
CurSnappedMousePos.Y - OldSnappedMousePos.Y);
DoModified;
end;
end
else
begin // no grabber active => moving
SelectedCompClass := GetSelectedComponentClass;
if (not Selection.RubberBandActive) and
(SelectedCompClass=nil) and
((Shift=[ssLeft]) or (Shift=[ssAlt, ssLeft])) and
(Selection.Count>=1) and
(not Selection.LookupRootSelected) then
begin // move selection
if not (dfHasSized in FFlags) then
begin
Selection.SaveBounds(false);
Include(FFlags, dfHasSized);
end;
//debugln('TDesigner.MouseMoveOnControl Move MouseDownComponent=',dbgsName(MouseDownComponent),' OldMouseMovePos=',dbgs(OldMouseMovePos),' MouseMovePos',dbgs(LastMouseMovePos),' MouseDownPos=',dbgs(MouseDownPos));
if (ssAlt in Shift) then begin
if Selection.MoveSelection(LastMouseMovePos.X - MouseDownPos.X, LastMouseMovePos.Y - MouseDownPos.Y, True) then
DoModified;
end else begin
if Selection.MoveSelectionWithSnapping(LastMouseMovePos.X - MouseDownPos.X, LastMouseMovePos.Y - MouseDownPos.Y) then
DoModified;
end;
end
else
begin
// rubberband sizing (selection or creation)
Selection.RubberBandBounds := Rect(MouseDownPos.X, MouseDownPos.Y,
LastMouseMovePos.X, LastMouseMovePos.Y);
if SelectedCompClass = nil then
Selection.RubberbandType := rbtSelection
else
Selection.RubberbandType := rbtCreating;
Selection.RubberBandActive := True;
end;
end;
end
else
Selection.ActiveGrabber:=nil;
end;
if [dfShowEditorHints, dfHasSized] * FFlags = [dfShowEditorHints, dfHasSized] then
HintTimer(Self);
end;
{
-----------------------------K E Y D O W N -------------------------------
}
{
Handles the keydown messages. DEL deletes the selected controls, CTRL-ARROR
moves the selection up one, SHIFT-ARROW resizes, etc.
}
procedure TDesigner.KeyDown(Sender: TControl; var TheMessage: TLMKEY);
var
Shift: TShiftState;
Command: word;
Handled: boolean;
Current: TComponent;
NameRes: TAskCompNameDialogResult;
UTF8Char: TUTF8Char;
procedure Nudge(x, y: integer);
begin
if (ssCtrl in Shift) then
begin
if ssShift in Shift then
begin
x := x * GetGridSizeX;
y := y * GetGridSizeY;
end;
NudgePosition(x, y)
end
else
if (ssShift in Shift) then
NudgeSize(x, y)
else
if (Shift = []) then
NudgeSelection(x, y);
end;
begin
{$IFDEF VerboseDesigner}
DebugLn(['TDesigner.KEYDOWN ',TheMessage.CharCode,' ',TheMessage.KeyData]);
{$ENDIF}
Shift := KeyDataToShiftState(TheMessage.KeyData);
Handled := False;
if Mediator<>nil then
Mediator.KeyDown(Sender,TheMessage.CharCode,Shift);
Command := FTheFormEditor.TranslateKeyToDesignerCommand(TheMessage.CharCode, Shift);
//DebugLn(['TDesigner.KEYDOWN Command=',dbgs(Command),' ',TheMessage.CharCode,' ',dbgs(Shift)]);
DoProcessCommand(Self, Command, Handled);
//DebugLn(['TDesigner.KeyDown Command=',Command,' Handled=',Handled,' TheMessage.CharCode=',TheMessage.CharCode]);
if not Handled and (SourceEditorManager.ActiveSourceWindow<>nil)
and (GetParentForm(SourceEditorManager.ActiveSourceWindow) = GetParentForm(Sender)) then
begin
// send special commands to current editor if they have same parent (designer is docked to the editor)
case Command of
ecNextEditor, ecPrevEditor, ecNextEditorInHistory, ecPrevEditorInHistory:
begin
FillChar(UTF8Char{%H-}, SizeOf(UTF8Char), 0);
SourceEditorManager.ActiveSourceWindow.ProcessParentCommand(Self, Command, UTF8Char, nil, Handled);
end;
end;
end;
if not Handled then
begin
Handled := True;
case TheMessage.CharCode of
VK_DELETE:
if not Selection.OnlyInvisiblePersistentsSelected then
DoDeleteSelectedPersistents;
VK_UP:
Nudge(0,-1);
VK_DOWN:
Nudge(0,1);
VK_RIGHT:
Nudge(1,0);
VK_LEFT:
Nudge(-1,0);
VK_TAB:
if Shift = [ssShift] then
NudgeSelection(False)
else
if Shift = [] then
NudgeSelection(True)
else
Handled := False;
VK_RETURN:
if Shift = [] then
DoShowObjectInspector
else
Handled := False;
VK_A:
if Shift = [ssCtrl] then
DoSelectAll
else
Handled := False;
VK_F2:
if (Selection.Count=1) and Selection[0].IsTComponent then begin
Current := TComponent(Selection[0].Persistent);
NameRes := ShowComponentNameDialog(LookupRoot, Current);
if NameRes.NameChanged then
GlobalDesignHook.ComponentRenamed(Current);
if NameRes.TextChanged then
GlobalDesignHook.Modified(Current, NameRes.TextPropertyName);
if NameRes.Changed then
Modified;
end; // don't forget the semicolon before else !!!
else
Handled := False;
end;
end;
if Handled then
begin
TheMessage.CharCode := 0;
TheMessage.Result := 1;
end;
end;
{------------------------------------K E Y U P --------------------------------}
procedure TDesigner.KeyUp(Sender: TControl; var TheMessage: TLMKEY);
var
Shift: TShiftState;
Begin
{$IFDEF VerboseDesigner}
//Writeln('TDesigner.KEYUP ',TheMessage.CharCode,' ',TheMessage.KeyData);
{$ENDIF}
if Mediator<>nil then begin
Shift := KeyDataToShiftState(TheMessage.KeyData);
Mediator.KeyUp(Sender,TheMessage.CharCode,Shift);
end;
end;
function TDesigner.DoDeleteSelectedPersistents: boolean;
var
i: integer;
APersistent: TPersistent;
AncestorRoot: TComponent;
AComponent: TComponent;
begin
Result:=true;
if (Selection.Count=0) or (Selection.SelectionForm<>Form) then
exit;
Result:=false;
// check if a component is the lookup root (can not be deleted)
if (Selection.LookupRootSelected) then begin
if Selection.Count>1 then
IDEMessageDialog(lisInvalidDelete,
lisTheRootComponentCanNotBeDeleted, mtInformation,
[mbOk]);
exit;
end;
// check if a selected component is inherited (can not be deleted)
for i:=0 to Selection.Count-1 do begin
if not Selection[i].IsTComponent then continue;
AncestorRoot:=TheFormEditor.GetAncestorLookupRoot(
TComponent(Selection[i].Persistent));
if AncestorRoot<>nil then begin
IDEMessageDialog(lisInvalidDelete,
Format(lisTheComponentIsInheritedFromToDeleteAnInheritedComp,
[dbgsName(Selection[i].Persistent), dbgsName(AncestorRoot), LineEnding]),
mtInformation, [mbOk]);
exit;
end;
end;
// check if a selected component is not owned by lookuproot (can not be deleted)
for i:=0 to Selection.Count-1 do begin
if not Selection[i].IsTComponent then continue;
AComponent:=TComponent(Selection[i].Persistent);
if AComponent.Owner<>FLookupRoot then begin
IDEMessageDialog(lisInvalidDelete,
Format(lisTheComponentCanNotBeDeletedBecauseItIsNotOwnedBy, [dbgsName(
Selection[i].Persistent), dbgsName(FLookupRoot)]),
mtInformation, [mbOk]);
exit;
end;
end;
for i := 0 to Selection.Count - 1 do
begin
if not Selection[i].IsTComponent then continue;
AComponent := TComponent(Selection[i].Persistent);
AddUndoAction(AComponent, uopDelete, i = 0, 'Name', AComponent.Name, '');
end;
// mark selected components for deletion
for i:=0 to Selection.Count-1 do
begin
APersistent := Selection[i].Persistent;
if DeletingPersistent.IndexOf(APersistent) = -1 then
DeletingPersistent.Add(APersistent);
end;
// clear selection by selecting the LookupRoot
SelectOnlyThisComponent(FLookupRoot);
// delete marked components
try
if DeletingPersistent.Count=0 then exit;
while DeletingPersistent.Count>0 do begin
APersistent:=TPersistent(DeletingPersistent[DeletingPersistent.Count-1]);
//debugln(['TDesigner.DoDeleteSelectedComponents A ',dbgsName(APersistent),' ',(APersistent is TComponent) and (TheFormEditor.FindComponent(TComponent(APersistent))<>nil)]);
RemovePersistentAndChilds(APersistent);
end;
MouseDownComponent := Nil;
finally
Modified;
end;
Result:=true;
end;
procedure TDesigner.DoDeleteSelectedPersistentsAsync(Data: PtrInt);
begin
DoDeleteSelectedPersistents;
end;
procedure TDesigner.DoSelectAll;
begin
Selection.BeginUpdate;
Selection.Clear;
Selection.SelectAll(FLookupRoot);
Selection.EndUpdate;
Form.Invalidate;
end;
procedure TDesigner.DoDeletePersistent(APersistent: TPersistent; FreeIt: boolean);
var
Hook: TPropertyEditorHook;
begin
if APersistent=nil then exit;
try
//debugln(['TDesigner.DoDeletePersistent A ',dbgsName(APersistent),' FreeIt=',FreeIt]);
// unselect component
Selection.Remove(APersistent);
if APersistent is TComponent then begin
PopupMenuComponentEditor:=nil;
if csDestroying in TComponent(APersistent).ComponentState then
FreeIt:=false;
end;
if GetDesignerForm(APersistent)=nil then begin
// has no designer
// -> do not call handlers and simply get rid of the rubbish
if FreeIt then begin
//debugln('TDesigner.DoDeletePersistent UNKNOWN in formeditor: ',dbgsName(APersistent));
APersistent.Free;
end;
exit;
end;
// call component deleting handlers
Hook:=GetPropertyEditorHook;
if Hook<>nil then
Hook.PersistentDeleting(APersistent);
// delete component
if APersistent is TComponent then
TheFormEditor.DeleteComponent(TComponent(APersistent),FreeIt)
else if FreeIt then
APersistent.Free;
finally
// unmark component
DeletingPersistent.Remove(APersistent);
end;
// call ComponentDeleted handler
if Assigned(FOnPersistentDeleted) then
FOnPersistentDeleted(Self,APersistent);
if Hook<>nil then
Hook.PersistentDeleted;
end;
function TDesigner.GetSelectedComponentClass: TRegisteredComponent;
begin
Result:=nil;
if Assigned(FOnGetSelectedComponentClass) then
FOnGetSelectedComponentClass(Self,Result);
end;
function TDesigner.IsDesignMsg(Sender: TControl; var TheMessage: TLMessage): Boolean;
var
Act: Word;
begin
Result := false;
if csDesigning in Sender.ComponentState then begin
Result:=true;
Inc(FProcessingDesignerEvent);
try
case TheMessage.Msg of
LM_PAINT: Result := PaintControl(Sender, TLMPaint(TheMessage));
CN_KEYDOWN,CN_SYSKEYDOWN: KeyDown(Sender,TLMKey(TheMessage));
CN_KEYUP,CN_SYSKEYUP: KeyUP(Sender,TLMKey(TheMessage));
LM_LBUTTONDOWN,
LM_RBUTTONDOWN,
LM_LBUTTONDBLCLK: MouseDownOnControl(Sender,TLMMouse(TheMessage));
LM_LBUTTONUP,
LM_RBUTTONUP: MouseUpOnControl(Sender, TLMMouse(TheMessage));
LM_MOUSEMOVE: MouseMoveOnControl(Sender, TLMMouse(TheMessage));
LM_SIZE: Result:=SizeControl(Sender, TLMSize(TheMessage));
LM_MOVE: Result:=MoveControl(Sender, TLMMove(TheMessage));
LM_ACTIVATE: begin
{$IFDEF VerboseComponentPalette}
DebugLn(['TDesigner.IsDesignMsg: Got LM_ACTIVATE message.',
' Message.Active=',TLMActivate(TheMessage).Active]);
{$ENDIF}
Act:=TLMActivate(TheMessage).Active;
Result:=DoFormActivated(Act in [WA_ACTIVE, WA_CLICKACTIVE]);
end;
LM_CLOSEQUERY: Result:=DoFormCloseQuery;
LM_SETCURSOR: Result:=HandleSetCursor(TheMessage);
LM_CONTEXTMENU: HandlePopupMenu(Sender, TLMContextMenu(TheMessage));
else
Result:=false;
end;
finally
Dec(FProcessingDesignerEvent);
end;
end else begin
if (TheMessage.Msg=LM_PAINT)
or (TheMessage.Msg=CN_KEYDOWN)
or (TheMessage.Msg=CN_KEYUP)
or (TheMessage.Msg=LM_LBUTTONDOWN)
or (TheMessage.Msg=LM_RBUTTONDOWN)
or (TheMessage.Msg=LM_LBUTTONDBLCLK)
or (TheMessage.Msg=LM_LBUTTONUP)
or (TheMessage.Msg=LM_RBUTTONUP)
or (TheMessage.Msg=LM_MOUSEMOVE)
or (TheMessage.Msg=LM_SIZE)
or (TheMessage.Msg=LM_MOVE)
or (TheMessage.Msg=LM_ACTIVATE)
or (TheMessage.Msg=LM_CLOSEQUERY)
or (TheMessage.Msg=LM_SETCURSOR)
then
DebugLn(['TDesigner.IsDesignMsg NOT DESIGNING? ',dbgsName(Sender),' TheMessage.Msg=',GetMessageName(TheMessage.Msg)]);
end;
end;
function TDesigner.UniqueName(const BaseName: string): string;
begin
Result:=TheFormEditor.CreateUniqueComponentName(BaseName,LookupRoot);
end;
procedure TDesigner.UTF8KeyPress(var UTF8Key: TUTF8Char);
begin
if ((Length(UTF8Key) = 1) and (Ord(UTF8Key[1]) < 32))
or (UTF8Key = sLineBreak) then // pass only printable characters
Exit;
if UTF8Key<>'' then
begin
DoOnForwardKeyToObjectInspector(Self, UTF8Key);
UTF8Key := '';
end;
end;
procedure TDesigner.Modified;
Begin
Selection.SaveBounds;
DoModified;
inherited Modified;
end;
procedure TDesigner.RemovePersistentAndChilds(APersistent: TPersistent);
var
i: integer;
AWinControl: TWinControl;
ChildControl: TControl;
Begin
if APersistent=nil then exit;
{$IFDEF VerboseDesigner}
DebugLn('[TDesigner.RemovePersistentAndChilds] START ',dbgsName(APersistent),' ',DbgS(APersistent));
{$ENDIF}
if (APersistent=FLookupRoot) or (APersistent=Form)
then exit;
// remove all child controls owned by the LookupRoot
if (APersistent is TWinControl) then begin
AWinControl:=TWinControl(APersistent);
// Component may auto-create new components during deletion unless informed.
// ComponentState does not have csDestroying yet when removing children.
AWinControl.DesignerDeleting := True;
i:=AWinControl.ControlCount-1;
while (i>=0) do begin
ChildControl:=AWinControl.Controls[i];
if ChildControl.Owner=FLookupRoot then begin
//Debugln(['[TDesigner.RemoveComponentAndChilds] B ',dbgsName(APersistent),' Child=',dbgsName(ChildControl),' i=',i,' ',TheFormEditor.FindComponent(ChildControl)<>nil]);
RemovePersistentAndChilds(ChildControl);
// the component list of the form has changed -> restart the search
i:=AWinControl.ControlCount-1;
end else
dec(i);
end;
AWinControl.DesignerDeleting := False;
end;
// remove component
{$IFDEF VerboseDesigner}
DebugLn('[TDesigner.RemovePersistentAndChilds] DoDeletePersistent ',dbgsName(APersistent));
{$ENDIF}
DoDeletePersistent(APersistent,true);
end;
procedure TDesigner.Notification(AComponent: TComponent; Operation: TOperation);
begin
if Operation = opInsert then begin
{$IFDEF VerboseDesigner}
DebugLn('opInsert ',dbgsName(AComponent),' ',DbgS(AComponent));
{$ENDIF}
end
else
if Operation = opRemove then begin
{$IFDEF VerboseDesigner}
DebugLn('[TDesigner.Notification] opRemove ',dbgsName(AComponent));
{$ENDIF}
DoDeletePersistent(AComponent,false);
end;
end;
procedure TDesigner.PaintGrid;
begin
// This is normally done in PaintControls
if FLookupRoot<>FForm then begin
// this is a special designer form -> lets draw itself
TCustomFormAccess(FForm).Paint;
end;
end;
procedure TDesigner.PaintClientGrid(AWinControl: TWinControl;
aDDC: TDesignerDeviceContext);
var
Clip: integer;
Count: integer;
i: integer;
CurControl: TControl;
begin
if (AWinControl=nil)
or (not (csAcceptsControls in AWinControl.ControlStyle))
or ((not ShowGrid) and (not ShowBorderSpacing)) then exit;
aDDC.BeginPainting;
try
// exclude all child control areas
Count:=AWinControl.ControlCount;
for i := 0 to Count - 1 do begin
with AWinControl.Controls[I] do begin
if (Visible or ((csDesigning in ComponentState)
and not (csNoDesignVisible in ControlStyle)))
then begin
Clip := ExcludeClipRect(aDDC.DC, Left, Top, Left + Width, Top + Height);
if Clip = NullRegion then exit;
end;
end;
end;
// paint points
if ShowGrid then
begin
ADDC.Canvas.Pen.Color := GridColor;
ADDC.Canvas.Pen.Width := 1;
ADDC.Canvas.Pen.Style := psSolid;
DrawGrid(ADDC.Canvas.Handle, TWinControlAccess(AWinControl).GetLogicalClientRect,
GridSizeX, GridSizeY);
end;
if ShowBorderSpacing then
begin
aDDC.Canvas.Brush.Color := clRed;
for i := 0 to Count - 1 do
begin
CurControl := AWinControl.Controls[i];
if csNoDesignSelectable in CurControl.ControlStyle then
Continue;
aDDC.Canvas.FrameRect(
CurControl.Left-CurControl.BorderSpacing.GetSideSpace(akLeft),
CurControl.Top-CurControl.BorderSpacing.GetSideSpace(akTop),
CurControl.Left+CurControl.Width+CurControl.BorderSpacing.GetSideSpace(akRight),
CurControl.Top+CurControl.Height+CurControl.BorderSpacing.GetSideSpace(akBottom)
);
end;
end;
finally
aDDC.EndPainting;
end;
end;
procedure TDesigner.ValidateRename(AComponent: TComponent;
const CurName, NewName: string);
begin
// check if component is initialized
if (CurName='') or (NewName='')
or ((AComponent<>nil) and (csDestroying in AComponent.ComponentState)) then
exit;
// check if component is the LookupRoot
if AComponent=nil then AComponent:=FLookupRoot;
// consistency check
if CurName<>AComponent.Name then
DebugLn('WARNING: TDesigner.ValidateRename: OldComponentName="',CurName,'" <> AComponent=',dbgsName(AComponent));
if Assigned(OnRenameComponent) then
OnRenameComponent(Self,AComponent,NewName);
end;
function TDesigner.GetShiftState: TShiftState;
begin
Result:=FShiftState;
end;
function TDesigner.CreateUniqueComponentName(const AClassName: string): string;
begin
Result:=TheFormEditor.CreateUniqueComponentName(AClassName,FLookupRoot);
end;
procedure TDesigner.OnComponentEditorVerbMenuItemClick(Sender: TObject);
var
Verb: integer;
VerbCaption: string;
AMenuItem: TMenuItem;
begin
if (PopupMenuComponentEditor=nil) or (Sender=nil) then exit;
//DebugLn(['TDesigner.OnComponentEditorVerbMenuItemClick Sender=',dbgsName(Sender)]);
if Sender is TMenuItem then
AMenuItem:=TMenuItem(Sender)
else if Sender is TIDEMenuCommand then
AMenuItem:=TIDEMenuCommand(Sender).MenuItem
else
exit;
Verb:=PopupMenuComponentEditor.GetVerbCount-1;
VerbCaption:=AMenuItem.Caption;
while (Verb>=0) and (VerbCaption<>PopupMenuComponentEditor.GetVerb(Verb)) do
dec(Verb);
if Verb<0 then exit;
try
PopupMenuComponentEditor.ExecuteVerb(Verb);
except
on E: Exception do begin
DebugLn('TDesigner.OnComponentEditorVerbMenuItemClick ERROR: ',E.Message);
IDEMessageDialog(Format(lisErrorIn, [PopupMenuComponentEditor.ClassName]),
Format(lisTheComponentEditorOfClassInvokedWithVerbHasCreated,
[PopupMenuComponentEditor.ClassName, LineEnding, IntToStr(Verb),
VerbCaption, LineEnding, LineEnding, E.Message]),
mtError,[mbOk]);
end;
end;
end;
procedure TDesigner.OnDeleteSelectionMenuClick(Sender: TObject);
begin
Application.QueueAsyncCall(@DoDeleteSelectedPersistentsAsync, 0);
end;
procedure TDesigner.OnSelectAllMenuClick(Sender: TObject);
begin
DoSelectAll;
end;
procedure TDesigner.OnChangeClassMenuClick(Sender: TObject);
begin
ChangeClass;
end;
procedure TDesigner.OnChangeParentMenuClick(Sender: TObject);
begin
if Assigned(OnChangeParent) then
OnChangeParent(Self);
end;
procedure TDesigner.OnShowNonVisualComponentsMenuClick(Sender: TObject);
begin
ShowNonVisualComponents:=not ShowNonVisualComponents;
end;
procedure TDesigner.OnSnapToGridOptionMenuClick(Sender: TObject);
begin
EnvironmentOptions.SnapToGrid := not EnvironmentOptions.SnapToGrid;
end;
procedure TDesigner.OnShowOptionsMenuItemClick(Sender: TObject);
begin
if Assigned(OnShowOptions) then OnShowOptions(Self);
end;
procedure TDesigner.OnSnapToGuideLinesOptionMenuClick(Sender: TObject);
begin
EnvironmentOptions.SnapToGuideLines := not EnvironmentOptions.SnapToGuideLines;
end;
procedure TDesigner.OnViewLFMMenuClick(Sender: TObject);
begin
if Assigned(OnViewLFM) then OnViewLFM(Self);
end;
procedure TDesigner.OnSaveAsXMLMenuClick(Sender: TObject);
begin
if Assigned(OnSaveAsXML) then OnSaveAsXML(Self);
end;
procedure TDesigner.OnCenterFormMenuClick(Sender: TObject);
var
NewLeft: Integer;
NewTop: Integer;
begin
if Form=nil then exit;
NewLeft:=Max(30,(Screen.Width-Form.Width) div 2);
NewTop:=Max(30,(Screen.Height-Form.Height) div 2);
Form.SetBounds(NewLeft,NewTop,Form.Width,Form.Height);
end;
procedure TDesigner.OnCopyMenuClick(Sender: TObject);
begin
CopySelection;
end;
procedure TDesigner.OnCutMenuClick(Sender: TObject);
begin
Application.QueueAsyncCall(@CutSelectionAsync, 0);
end;
procedure TDesigner.OnPasteMenuClick(Sender: TObject);
begin
PasteSelection([cpsfFindUniquePositions]);
end;
procedure TDesigner.OnAnchorEditorMenuClick(Sender: TObject);
begin
DoShowAnchorEditor;
end;
procedure TDesigner.OnTabOrderMenuClick(Sender: TObject);
begin
DoShowTabOrderEditor;
end;
function TDesigner.GetGridColor: TColor;
begin
Result:=EnvironmentOptions.GridColor;
end;
function TDesigner.GetShowBorderSpacing: boolean;
begin
Result:=EnvironmentOptions.ShowBorderSpacing;
end;
function TDesigner.GetShowComponentCaptions: boolean;
begin
Result:=dfShowComponentCaptions in FFlags;
end;
function TDesigner.GetShowGrid: boolean;
begin
Result:=EnvironmentOptions.ShowGrid;
end;
function TDesigner.GetShowNonVisualComponents: boolean;
begin
Result:=dfShowNonVisualComponents in FFlags;
end;
function TDesigner.GetGridSizeX: integer;
begin
Result:=EnvironmentOptions.GridSizeX;
if Result<2 then Result:=2;
end;
function TDesigner.GetGridSizeY: integer;
begin
Result:=EnvironmentOptions.GridSizeY;
if Result<2 then Result:=2;
end;
function TDesigner.GetIsControl: Boolean;
Begin
Result := True;
end;
function TDesigner.GetShowEditorHints: boolean;
begin
Result:=dfShowEditorHints in FFlags;
end;
function TDesigner.GetSnapToGrid: boolean;
begin
Result := EnvironmentOptions.SnapToGrid;
end;
procedure TDesigner.SetShowGrid(const AValue: boolean);
begin
if ShowGrid=AValue then exit;
EnvironmentOptions.ShowGrid:=AValue;
Form.Invalidate;
end;
procedure TDesigner.SetShowNonVisualComponents(AValue: boolean);
var
i: Integer;
begin
if ShowNonVisualComponents=AValue then exit;
if AValue then begin
Include(FFlags,dfShowNonVisualComponents);
Form.Invalidate;
end else begin
Exclude(FFlags,dfShowNonVisualComponents);
Selection.BeginUpdate;
try
for i:=Selection.Count-1 downto 0 do
if Selection[i].IsNonVisualComponent then
Selection.Delete(i);
finally
Selection.EndUpdate;
Form.Invalidate;
end;
end;
end;
procedure TDesigner.SetGridSizeX(const AValue: integer);
begin
if GridSizeX=AValue then exit;
EnvironmentOptions.GridSizeX:=AValue;
end;
procedure TDesigner.SetGridSizeY(const AValue: integer);
begin
if GridSizeY=AValue then exit;
EnvironmentOptions.GridSizeY:=AValue;
end;
procedure TDesigner.SetMediator(const AValue: TDesignerMediator);
begin
if Mediator=AValue then exit;
if Mediator<>nil then Mediator.Designer:=nil;
FMediator:=AValue;
if Mediator<>nil then Mediator.Designer:=Self;
end;
procedure TDesigner.SetPopupMenuComponentEditor(const AValue: TBaseComponentEditor);
begin
if FPopupMenuComponentEditor <> AValue then
begin
FPopupMenuComponentEditor.Free;
FPopupMenuComponentEditor := AValue;
end;
end;
procedure TDesigner.SetShowEditorHints(const AValue: boolean);
begin
if AValue = ShowEditorHints then Exit;
if AValue then
Include(FFlags, dfShowEditorHints)
else
Exclude(FFlags, dfShowEditorHints);
end;
procedure TDesigner.DrawNonVisualComponent(AComponent: TComponent);
var
ItemLeft, ItemTop, ItemRight, ItemBottom: integer;
Diff, ItemLeftTop: TPoint;
OwnerRect, IconRect, TextRect: TRect;
TextSize: TSize;
IsSelected: Boolean;
RGN: HRGN;
IL: TCustomImageList;
II: TImageIndex;
Res: TScaledImageListResolution;
Icon: TBitmap;
ScaleFactor: Double;
begin
if (AComponent is TControl)
and (csNoDesignVisible in TControl(AComponent).ControlStyle) then
exit;
if (csDestroying in AComponent.ComponentState) then
exit;
// draw children
if (AComponent.Owner=nil) then
begin
FDDC.BeginPainting;
TComponentAccess(AComponent).GetChildren(@DrawNonVisualComponent, AComponent);
FDDC.EndPainting;
end
else if (csInline in AComponent.ComponentState) then
begin
if AComponent is TControl then
begin
// clip to client area
FDDC.BeginPainting;
FDDC.Canvas.SaveHandleState;
OwnerRect := TControl(AComponent).ClientRect;
Diff := GetParentFormRelativeClientOrigin(AComponent);
OffsetRect(OwnerRect, Diff.X, Diff.Y);
with OwnerRect do
RGN := CreateRectRGN(Left, Top, Right, Bottom);
SelectClipRGN(FDDC.DC, RGN);
DeleteObject(RGN);
end;
TComponentAccess(AComponent).GetChildren(@DrawNonVisualComponent, AComponent);
if AComponent is TControl then
begin
FDDC.Canvas.RestoreHandleState;
FDDC.EndPainting;
end;
end
else
TComponentAccess(AComponent).GetChildren(@DrawNonVisualComponent, AComponent.Owner);
if not ComponentIsIcon(AComponent) or (AComponent.Owner = nil) then
Exit;
// actual draw
Diff := FDDC.FormOrigin;
//DebugLn(['FDDC.FormOrigin - ', Diff.X, ' : ' ,Diff.Y]);
// non-visual component
if FDDC.Form<>nil then
ScaleFactor := FDDC.Form.GetCanvasScaleFactor
else
ScaleFactor := 1;
ItemLeftTop := NonVisualComponentLeftTop(AComponent);
ItemLeft := ItemLeftTop.X - Diff.X;
ItemTop := ItemLeftTop.Y - Diff.Y;
ItemRight := ItemLeft + NonVisualCompWidth;
ItemBottom := ItemTop + NonVisualCompWidth;
if not FDDC.RectVisible(ItemLeft, ItemTop, ItemRight, ItemBottom) then
Exit;
IsSelected := Selection.IsSelected(AComponent);
if FSurface = nil then
begin
FSurface := TBitmap.Create;
FSurface.SetSize(Round(NonVisualCompWidth*ScaleFactor),
Round(NonVisualCompWidth*ScaleFactor));
FSurface.Canvas.Brush.Color := clBtnFace;
FSurface.Canvas.Pen.Width := 1;
end;
IconRect := Rect(0, 0, Round(NonVisualCompWidth*ScaleFactor),
Round(NonVisualCompWidth*ScaleFactor));
FSurface.Canvas.Frame3D(IconRect, 1, bvRaised);
FSurface.Canvas.FillRect(IconRect);
// draw component Name
if ShowComponentCaptions
and (((GetKeyState(VK_LBUTTON) and $80) = 0) or not IsSelected) then
begin
// workarounds gtk2 problem with DrawText on gc with GDK_INCLUDE_INFERIORS
// it uses pango drawing and this for some reason does not take subwindow_mode
// into account
Icon := TBitmap.Create;
try
Icon.Canvas.Font.Assign(FDDC.Canvas.Font);
Icon.Canvas.Font.PixelsPerInch := FDDC.Canvas.Font.PixelsPerInch;
Icon.Canvas.Font.Height := Round(GetFontData(FDDC.Canvas.Font.Reference.Handle).Height*ScaleFactor);
TextSize := Icon.Canvas.TextExtent(AComponent.Name);
Icon.SetSize(TextSize.cx, TextSize.cy);
TextRect := Rect(0, 0, TextSize.cx, TextSize.cy);
if FDDC.Form <> nil then
Icon.Canvas.Brush.Color := FDDC.Form.Brush.Color
else
Icon.Canvas.Brush.Color := clBtnFace;
Icon.Canvas.FillRect(TextRect);
DrawText(Icon.Canvas.Handle, PChar(AComponent.Name), -1, TextRect,
DT_CENTER or DT_VCENTER or DT_SINGLELINE or DT_NOCLIP);
TextRect.Left := (ItemLeft + ItemRight - LongInt(Round(TextSize.cx/ScaleFactor))) div 2;
TextRect.Top := (ItemBottom + NonVisualCompBorder + 2);
TextRect.Right := TextRect.Left + Round(TextSize.cx/ScaleFactor);
TextRect.Bottom := TextRect.Top + Round(TextSize.cy/ScaleFactor);
FDDC.Canvas.StretchDraw(TextRect, Icon);
finally
Icon.Free;
end;
end;
// draw component icon
if Assigned(FOnGetNonVisualCompIcon) then
begin
Icon := nil;
FOnGetNonVisualCompIcon(Self, AComponent, IL{%H-}, II{%H-});
if (IL<>nil) and (II>=0) then
begin
Res := IL.ResolutionForPPI[0, FDDC.Canvas.Font.PixelsPerInch, ScaleFactor];
InflateRect(IconRect,
- (IconRect.Right-IconRect.Left-Res.Resolution.Width) div 2,
- (IconRect.Bottom-IconRect.Top-Res.Resolution.Height) div 2);
Res.StretchDraw(FSurface.Canvas, II, IconRect);
end;
end;
FDDC.Canvas.StretchDraw(Rect(ItemLeft, ItemTop, ItemRight, ItemBottom), FSurface);
if (Selection.Count > 1) and IsSelected then
Selection.DrawMarkerAt(FDDC,
ItemLeft, ItemTop, NonVisualCompWidth, NonVisualCompWidth);
end;
procedure TDesigner.DrawNonVisualComponents(aDDC: TDesignerDeviceContext);
begin
if not ShowNonVisualComponents then exit;
FSurface := nil;
FDDC := aDDC;
DrawNonVisualComponent(FLookupRoot);
FDDC := nil;
FreeAndNil(FSurface);
end;
procedure TDesigner.DrawDesignerItems(OnlyIfNeeded: boolean);
var
DesignerDC: HDC;
begin
if WidgetSet.GetLCLCapability(lcCanDrawOutsideOnPaint) = 0 then Exit;
if OnlyIfNeeded and (not (dfNeedPainting in FFlags)) then exit;
Exclude(FFlags,dfNeedPainting);
if (Form=nil) or (not Form.HandleAllocated) then exit;
//writeln('TDesigner.DrawDesignerItems B painting');
DesignerDC := GetDesignerDC(Form.Handle);
DDC.SetDC(Form, Form, DesignerDC);
DDC.BeginPainting;
DoPaintDesignerItems;
DDC.EndPainting;
DDC.Clear;
ReleaseDesignerDC(Form.Handle, DesignerDC);
end;
procedure TDesigner.CheckFormBounds;
// check if the Form was moved or resized
// Note: During form loading the window manager can resize and position
// the Form. Such initial changes are ignored, by waiting and comparing
// not before the IDE becomes idle. When the IDE becomes the first time
// idle, the form bounds are stored and used as default.
// After that any change of the Form Bounds is treated as a user move
// and thus calls Modified.
var
NewFormBounds: TRect;
begin
NewFormBounds:=Form.BoundsRect;
if FDefaultFormBoundsValid then begin
if (not CompareRect(@NewFormBounds,@FLastFormBounds))
and (not CompareRect(@NewFormBounds,@FDefaultFormBounds)) then begin
//debugln('TDesigner.CheckFormBounds');
Modified;
if Selection.SelectionForm=Form then begin
Selection.CheckForLCLChanges(true);
end;
end;
end else begin
FDefaultFormBoundsValid:=true;
FDefaultFormBounds:=NewFormBounds;
end;
FLastFormBounds:=NewFormBounds;
end;
procedure TDesigner.DoPaintDesignerItems;
begin
// marker (multi selection markers)
if (Selection.SelectionForm = Form) and (Selection.Count > 1) then
begin
Selection.DrawMarkers(DDC);
end;
// non visual component icons
if not Assigned(IDEComponentsMaster)
or IDEComponentsMaster.DrawNonVisualComponents(FLookupRoot) then
DrawNonVisualComponents(DDC);
// guidelines and grabbers
if (Selection.SelectionForm=Form) then
begin
if EnvironmentOptions.ShowGuideLines then
Selection.DrawGuideLines(DDC);
Selection.DrawGrabbers(DDC);
end;
// rubberband
if Selection.RubberBandActive and
((Selection.SelectionForm = Form) or (Selection.SelectionForm = nil)) then
begin
Selection.DrawRubberBand(DDC);
end;
end;
function TDesigner.ComponentIsIcon(AComponent: TComponent): boolean;
begin
Result:=DesignerProcs.ComponentIsNonVisual(AComponent);
if Result and (Mediator<>nil) then
Result:=Mediator.ComponentIsIcon(AComponent);
end;
function TDesigner.GetParentFormRelativeClientOrigin(AComponent: TComponent): TPoint;
begin
if Mediator<>nil then begin
Result:=Mediator.GetComponentOriginOnForm(AComponent);
end else begin
Result:=DesignerProcs.GetParentFormRelativeClientOrigin(AComponent);
end;
end;
function TDesigner.GetDesignedComponent(AComponent: TComponent): TComponent;
begin
Result:=AComponent;
if AComponent=Form then begin
Result:=FLookupRoot;
end else begin
while (Result<>nil)
and (Result<>FLookupRoot)
and (Result.Owner<>FLookupRoot)
and (Result is TControl) do
Result:=TControl(Result).Parent;
end;
end;
function TDesigner.GetComponentEditorForSelection: TBaseComponentEditor;
begin
Result := nil;
if (Selection.Count <> 1) or
(Selection.SelectionForm <> Form) or
(not Selection[0].IsTComponent) then Exit;
Result := TheFormEditor.GetComponentEditor(TComponent(Selection[0].Persistent));
end;
procedure TDesigner.AddComponentEditorMenuItems(
AComponentEditor: TBaseComponentEditor; ClearOldOnes: boolean);
var
VerbCount, i: integer;
NewMenuCmd: TIDEMenuCommand;
begin
if ClearOldOnes then
DesignerMenuSectionComponentEditor.Clear;
if (AComponentEditor = nil) or (DesignerMenuSectionComponentEditor = nil) then
Exit;
VerbCount := AComponentEditor.GetVerbCount;
for i := 0 to VerbCount - 1 do
begin
NewMenuCmd:=RegisterIDEMenuCommand(DesignerMenuSectionComponentEditor,
'ComponentEditorVerMenuItem' + IntToStr(i),
AComponentEditor.GetVerb(i),
@OnComponentEditorVerbMenuItemClick);
if NewMenuCmd.MenuItem<>nil then
AComponentEditor.PrepareItem(i, NewMenuCmd.MenuItem);
end;
end;
function TDesigner.NonVisualComponentAtPos(X, Y: integer): TComponent;
var
s: TComponentSearch;
begin
// Note: Do not check ShowNonVisualComponents
s := TComponentSearch.Create(nil);
try
s.MinClass := TComponent;
s.AtPos := Point(X,Y);
s.IgnoreHidden := true;
s.OnlyNonVisual := true;
s.Search(FLookupRoot);
s.Mediator := Mediator;
Result := s.Best;
finally
s.Free;
end;
end;
procedure TDesigner.MoveNonVisualComponentIntoForm(AComponent: TComponent);
var
X, Y: SmallInt;
begin
DesignInfoToLeftTop(AComponent.DesignInfo, X, Y);
AComponent.DesignInfo := LeftTopToDesignInfo(X, Y);
end;
procedure TDesigner.MoveNonVisualComponentsIntoForm;
var
i: Integer;
AComponent: TComponent;
begin
for i:=0 to FLookupRoot.ComponentCount-1 do begin
AComponent:=FLookupRoot.Components[i];
if ComponentIsIcon(AComponent) then begin
MoveNonVisualComponentIntoForm(AComponent);
end;
end;
end;
function TDesigner.ComponentClassAtPos(const AClass: TComponentClass;
const APos: TPoint; const UseRootAsDefault, IgnoreHidden: boolean
): TComponent;
var
s: TComponentSearch;
MediatorFlags: TDMCompAtPosFlags;
begin
if Mediator <> nil then
begin
MediatorFlags := [];
if IgnoreHidden then
Include(MediatorFlags, dmcapfOnlyVisible);
Result := Mediator.ComponentAtPos(APos,AClass,MediatorFlags);
end
else
begin
s := TComponentSearch.Create(nil);
try
s.AtPos := APos;
s.MinClass := AClass;
s.IgnoreHidden := IgnoreHidden;
s.IgnoreNonVisual := not ShowNonVisualComponents;
s.Search(FLookupRoot);
s.Mediator := Mediator;
Result := s.Best;
finally
s.Free;
end;
end;
if (Result = nil) and UseRootAsDefault and (FLookupRoot.InheritsFrom(AClass)) then
Result := LookupRoot;
end;
procedure TDesigner.SetTempCursor(ARoot: TWinControl; ACursor: TCursor);
procedure Traverse(ARoot: TWinControl);
var
i: integer;
begin
for i := 0 to ARoot.ControlCount - 1 do
begin
ARoot.Controls[i].SetTempCursor(ACursor);
if ARoot.Controls[i] is TWinControl then
Traverse(TWinControl(ARoot.Controls[i]));
end;
end;
begin
Traverse(ARoot);
ARoot.SetTempCursor(ACursor);
end;
function TDesigner.WinControlAtPos(x, y: integer; UseRootAsDefault,
IgnoreHidden: boolean): TWinControl;
begin
Result := TWinControl(ComponentClassAtPos(TWinControl, Point(x,y),
UseRootAsDefault, IgnoreHidden));
end;
function TDesigner.ControlAtPos(x, y: integer; UseRootAsDefault,
IgnoreHidden: boolean): TControl;
begin
Result := TControl(ComponentClassAtPos(TControl, Point(x,y), UseRootAsDefault,
IgnoreHidden));
end;
function TDesigner.ComponentAtPos(x, y: integer; UseRootAsDefault,
IgnoreHidden: boolean): TComponent;
begin
Result := ComponentClassAtPos(TComponent, Point(x,y), UseRootAsDefault,
IgnoreHidden);
end;
procedure TDesigner.BuildPopupMenu;
begin
if FDesignerPopupMenu = nil then
begin
FDesignerPopupMenu:=TPopupMenu.Create(nil);
with FDesignerPopupMenu do
begin
Name := 'DesignerPopupmenu';
OnPopup := @DesignerPopupMenuPopup;
Images := IDEImages.Images_16;
end;
end;
// assign the root TMenuItem to the registered menu root.
// This will automatically create all registered items
{$IFDEF VerboseMenuIntf}
FDesignerPopupMenu.Items.WriteDebugReport('TSourceNotebook.BuildPopupMenu ');
DesignerMenuRoot.ConsistencyCheck;
{$ENDIF}
DesignerMenuRoot.MenuItem := FDesignerPopupMenu.Items;
DesignerMenuAlign.OnClick := @OnAlignPopupMenuClick;
DesignerMenuMirrorHorizontal.OnClick := @OnMirrorHorizontalPopupMenuClick;
DesignerMenuMirrorVertical.OnClick := @OnMirrorVerticalPopupMenuClick;
DesignerMenuScale.OnClick := @OnScalePopupMenuClick;
DesignerMenuSize.OnClick := @OnSizePopupMenuClick;
DesignerMenuReset.OnClick := @OnResetPopupMenuClick;
DesignerMenuAnchorEditor.OnClick:=@OnAnchorEditorMenuClick;
DesignerMenuTabOrder.OnClick:=@OnTabOrderMenuClick;
DesignerMenuOrderMoveToFront.OnClick := @OnOrderMoveToFrontMenuClick;
DesignerMenuOrderMoveToFront.MenuItem.ShortCut :=
EditorOpts.KeyMap.CommandToShortCut(ecDesignerMoveToFront);
DesignerMenuOrderMoveToBack.OnClick := @OnOrderMoveToBackMenuClick;
DesignerMenuOrderMoveToBack.MenuItem.ShortCut :=
EditorOpts.KeyMap.CommandToShortCut(ecDesignerMoveToBack);
DesignerMenuOrderForwardOne.OnClick := @OnOrderForwardOneMenuClick;
DesignerMenuOrderForwardOne.MenuItem.ShortCut :=
EditorOpts.KeyMap.CommandToShortCut(ecDesignerForwardOne);
DesignerMenuOrderBackOne.OnClick := @OnOrderBackOneMenuClick;
DesignerMenuOrderBackOne.MenuItem.ShortCut :=
EditorOpts.KeyMap.CommandToShortCut(ecDesignerBackOne);
DesignerMenuCut.OnClick:=@OnCutMenuClick;
DesignerMenuCopy.OnClick:=@OnCopyMenuClick;
DesignerMenuPaste.OnClick:=@OnPasteMenuClick;
DesignerMenuDeleteSelection.OnClick:=@OnDeleteSelectionMenuClick;
DesignerMenuSelectAll.OnClick:=@OnSelectAllMenuClick;
DesignerMenuChangeClass.OnClick:=@OnChangeClassMenuClick;
DesignerMenuChangeParent.OnClick:=@OnChangeParentMenuClick;
DesignerMenuViewLFM.OnClick:=@OnViewLFMMenuClick;
DesignerMenuSaveAsXML.OnClick:=@OnSaveAsXMLMenuClick;
DesignerMenuCenterForm.OnClick:=@OnCenterFormMenuClick;
DesignerMenuShowNonVisualComponents.OnClick:=@OnShowNonVisualComponentsMenuClick;
DesignerMenuShowNonVisualComponents.ShowAlwaysCheckable:=true;
DesignerMenuSnapToGridOption.OnClick:=@OnSnapToGridOptionMenuClick;
DesignerMenuSnapToGridOption.ShowAlwaysCheckable:=true;
DesignerMenuSnapToGuideLinesOption.OnClick:=@OnSnapToGuideLinesOptionMenuClick;
DesignerMenuSnapToGuideLinesOption.ShowAlwaysCheckable:=true;
DesignerMenuShowOptions.OnClick:=@OnShowOptionsMenuItemClick;
end;
procedure TDesigner.DesignerPopupMenuPopup(Sender: TObject);
var
ControlSelIsNotEmpty,
LookupRootIsSelected,
OnlyNonVisualsAreSelected,
CompsAreSelected: boolean;
MultiCompsAreSelected: boolean;
OneControlSelected: Boolean;
SelectionVisible: Boolean;
SrcFile: TLazProjectFile;
UnitIsVirtual, DesignerCanCopy, HasChangeParentCandidates: Boolean;
PersistentSelection: TPersistentSelectionList;
ChangeParentCandidates: TFPList;
begin
SrcFile:=LazarusIDE.GetProjectFileWithDesigner(Self);
ControlSelIsNotEmpty:=(Selection.Count>0)
and (Selection.SelectionForm=Form);
LookupRootIsSelected:=Selection.LookupRootSelected;
OnlyNonVisualsAreSelected := Selection.OnlyNonVisualPersistentsSelected;
SelectionVisible:=not Selection.OnlyInvisiblePersistentsSelected;
CompsAreSelected:=ControlSelIsNotEmpty and SelectionVisible
and not LookupRootIsSelected;
OneControlSelected := ControlSelIsNotEmpty and not Selection[0].IsNonVisualComponent;
MultiCompsAreSelected := CompsAreSelected and (Selection.Count>1);
UnitIsVirtual:=(SrcFile=nil) or not FilenameIsAbsolute(SrcFile.Filename);
PersistentSelection:=TPersistentSelectionList.Create;
try
Selection.GetSelection(PersistentSelection);
ChangeParentCandidates:=GetChangeParentCandidates(GlobalDesignHook,PersistentSelection);
HasChangeParentCandidates:=ChangeParentCandidates.Count>0;
FreeAndNil(ChangeParentCandidates);
finally
FreeAndNil(PersistentSelection);
end;
AddComponentEditorMenuItems(PopupMenuComponentEditor,true);
DesignerMenuAlign.Enabled := CompsAreSelected and not OnlyNonVisualsAreSelected;
DesignerMenuMirrorHorizontal.Enabled := MultiCompsAreSelected and not OnlyNonVisualsAreSelected;
DesignerMenuMirrorVertical.Enabled := MultiCompsAreSelected and not OnlyNonVisualsAreSelected;
DesignerMenuScale.Enabled := CompsAreSelected and not OnlyNonVisualsAreSelected;
DesignerMenuSize.Enabled := CompsAreSelected and not OnlyNonVisualsAreSelected;
DesignerMenuReset.Enabled := CompsAreSelected;
DesignerMenuAnchorEditor.Enabled := (FLookupRoot is TWinControl) and (TWinControl(FLookupRoot).ControlCount > 0);
DesignerMenuTabOrder.Enabled := (FLookupRoot is TWinControl) and (TWinControl(FLookupRoot).ControlCount > 0);
DesignerMenuSectionZOrder.Enabled := CompsAreSelected and not OnlyNonVisualsAreSelected;
DesignerMenuOrderMoveToFront.Enabled := OneControlSelected and not OnlyNonVisualsAreSelected;
DesignerMenuOrderMoveToBack.Enabled := OneControlSelected and not OnlyNonVisualsAreSelected;
DesignerMenuOrderForwardOne.Enabled := OneControlSelected and not OnlyNonVisualsAreSelected;
DesignerMenuOrderBackOne.Enabled := OneControlSelected and not OnlyNonVisualsAreSelected;
DesignerCanCopy := CanCopy;
DesignerMenuCut.Enabled := DesignerCanCopy;
DesignerMenuCopy.Enabled := DesignerCanCopy;
DesignerMenuPaste.Enabled := CanPaste;
DesignerMenuDeleteSelection.Enabled := CompsAreSelected;
DesignerMenuChangeClass.Enabled := CompsAreSelected and (Selection.Count = 1);
// Disable ViewLFM menu item for virtual units. There is no form file yet.
DesignerMenuViewLFM.Enabled := not UnitIsVirtual;
DesignerMenuChangeParent.Enabled := HasChangeParentCandidates;
DesignerMenuSnapToGridOption.Checked := EnvironmentOptions.SnapToGrid;
DesignerMenuShowNonVisualComponents.Checked := ShowNonVisualComponents;
DesignerMenuSnapToGuideLinesOption.Checked := EnvironmentOptions.SnapToGuideLines;
end;
procedure TDesigner.OnAlignPopupMenuClick(Sender: TObject);
var
HorizAlignment, VertAlignment: TComponentAlignment;
HorizAlignID, VertAlignID: integer;
begin
if ShowAlignComponentsDialog(HorizAlignID,VertAlignID)=mrOk then
begin
case HorizAlignID of
1: HorizAlignment:=csaSides1;
2: HorizAlignment:=csaCenters;
3: HorizAlignment:=csaSides2;
4: HorizAlignment:=csaCenterInWindow;
5: HorizAlignment:=csaSpaceEqually;
6: HorizAlignment:=csaSide1SpaceEqually;
7: HorizAlignment:=csaSide2SpaceEqually;
else HorizAlignment:=csaNone; // value=0, this prevents compiler warning.
end;
case VertAlignID of
1: VertAlignment:=csaSides1;
2: VertAlignment:=csaCenters;
3: VertAlignment:=csaSides2;
4: VertAlignment:=csaCenterInWindow;
5: VertAlignment:=csaSpaceEqually;
6: VertAlignment:=csaSide1SpaceEqually;
7: VertAlignment:=csaSide2SpaceEqually;
else VertAlignment:=csaNone; // value=0, this prevents compiler warning.
end;
Selection.AlignComponents(HorizAlignment,VertAlignment);
Modified;
end;
end;
procedure TDesigner.OnMirrorHorizontalPopupMenuClick(Sender: TObject);
begin
Selection.MirrorHorizontal;
Modified;
end;
procedure TDesigner.OnMirrorVerticalPopupMenuClick(Sender: TObject);
begin
Selection.MirrorVertical;
Modified;
end;
procedure TDesigner.OnScalePopupMenuClick(Sender: TObject);
var
ScaleInPercent: integer;
begin
if ShowScaleComponentsDialog(ScaleInPercent)=mrOk then
begin
Selection.ScaleComponents(ScaleInPercent);
Modified;
end;
end;
procedure TDesigner.OnSizePopupMenuClick(Sender: TObject);
var
HorizSizing, VertSizing: TComponentSizing;
HorizSizingID, VertSizingID: integer;
AWidth, AHeight: integer;
begin
if ShowSizeComponentsDialog(HorizSizingID,AWidth,VertSizingID,AHeight) = mrOk then
begin
case HorizSizingID of
1: HorizSizing:=cssShrinkToSmallest;
2: HorizSizing:=cssGrowToLargest;
3: HorizSizing:=cssFixed;
else HorizSizing:=cssNone; // value=0, this prevents compiler warning.
end;
case VertSizingID of
1: VertSizing:=cssShrinkToSmallest;
2: VertSizing:=cssGrowToLargest;
3: VertSizing:=cssFixed;
else VertSizing:=cssNone; // value=0, this prevents compiler warning.
end;
Selection.SizeComponents(HorizSizing,AWidth,VertSizing,AHeight);
Modified;
end;
end;
procedure TDesigner.OnResetPopupMenuClick(Sender: TObject);
var
ResetComps: TFPList;
HasChanged: Boolean;
procedure ResetControl(AControl: TControl; Recursive: boolean);
var
Ancestor: TControl;
i: Integer;
OldBounds: TRect;
NewBounds: TRect;
begin
if ResetComps.IndexOf(AControl)>=0 then exit;
ResetComps.Add(AControl);
Ancestor:=TControl(TheFormEditor.GetAncestorInstance(AControl));
if not (Ancestor is TControl) then exit;
OldBounds:=AControl.BoundsRect;
NewBounds:=Ancestor.BoundsRect;
if not CompareRect(@OldBounds,@NewBounds) then begin
AControl.BoundsRect:=NewBounds;
HasChanged:=true;
end;
if Recursive and (AControl is TWinControl) then begin
for i:=0 to TWinControl(AControl).ControlCount-1 do
ResetControl(TWinControl(AControl).Controls[i],true);
end;
end;
var
MsgResult: TModalResult;
i: Integer;
Item: TSelectedControl;
AComponent: TComponent;
AncestorComponent: TComponent;
begin
MsgResult:=IDEQuestionDialog(lisReset,
lisResetLeftTopWidthHeightOfSelectedComponentsToTheir,
mtConfirmation, [mrYes, lisSelected,
mrYesToAll, lisSelectedAndChildControls,
mrCancel]);
if not (MsgResult in [mrYes,mrYesToAll]) then exit;
HasChanged:=false;
Form.DisableAutoSizing{$IFDEF DebugDisableAutoSizing}('TDesigner.OnResetPopupMenuClick'){$ENDIF};
ResetComps:=TFPList.Create;
try
for i:=0 to Selection.Count-1 do begin
Item:=Selection[i];
if Item.IsTControl then begin
ResetControl(TControl(Item.Persistent),MsgResult=mrYesToAll);
end else if Item.IsTComponent then begin
AComponent:=TComponent(Item.Persistent);
if ResetComps.IndexOf(AComponent)>=0 then continue;
ResetComps.Add(AComponent);
if Item.IsNonVisualComponent then begin
AncestorComponent:=TheFormEditor.GetAncestorInstance(AComponent);
if AncestorComponent=nil then continue;
if AComponent.DesignInfo=AncestorComponent.DesignInfo then continue;
AComponent.DesignInfo:=AncestorComponent.DesignInfo;
HasChanged:=true;
end;
end;
end;
finally
ResetComps.Free;
Form.EnableAutoSizing{$IFDEF DebugDisableAutoSizing}('TDesigner.OnResetPopupMenuClick'){$ENDIF};
if HasChanged then
Modified;
end;
end;
procedure TDesigner.OnOrderMoveToFrontMenuClick(Sender: TObject);
begin
DoChangeZOrder(0);
end;
procedure TDesigner.OnOrderMoveToBackMenuClick(Sender: TObject);
begin
DoChangeZOrder(1);
end;
procedure TDesigner.OnOrderForwardOneMenuClick(Sender: TObject);
begin
DoChangeZOrder(2);
end;
procedure TDesigner.OnOrderBackOneMenuClick(Sender: TObject);
begin
DoChangeZOrder(3);
end;
procedure TDesigner.HintTimer(Sender: TObject);
function GetComponentHintText(AComponent: TComponent): String;
const
HintNameStr = '%s: %s';
HintPositionStr = 'Position: %d, %d';
HintSizeStr = 'Size: %d x %d';
HintTabStr = 'TabStop: %s; TabOrder: %d';
var
AControl: TControl absolute AComponent;
AWinControl: TWinControl absolute AComponent;
AComponentEditor: TBaseComponentEditor;
S: String;
begin
// component name and classname
Result := Format(HintNameStr, [AComponent.Name, AComponent.ClassName]);
// component position
Result := Result + LineEnding + Format(HintPositionStr, [GetComponentLeft(AComponent), GetComponentTop(AComponent)]);
if AComponent is TControl then // more info for controls
begin
// size
Result := Result + '; ' + Format(HintSizeStr, [AControl.Width, AControl.Height]);
// and TabStop, TabOrder for TWinControl
if (AComponent is TWinControl) and not (AComponent = Form) then
Result := Result + LineEnding + Format(HintTabStr, [BoolToStr(AWinControl.TabStop, True), AWinControl.TabOrder]);
end;
AComponentEditor := TheFormEditor.GetComponentEditor(AComponent);
if Assigned(AComponentEditor) then
begin
S := AComponentEditor.GetCustomHint;
if S <> '' then
Result := Result + LineEnding + S;
AComponentEditor.Free;
end;
end;
function GetSelectionSizeHintText: String;
begin
Result := Format('%d x %d', [Selection.Width, Selection.Height]);
end;
function ParentComponent(AComponent: TComponent): TComponent;
begin
Result := AComponent.GetParentComponent;
if (Result = nil) and ComponentIsIcon(AComponent) then
Result := AComponent.Owner;
end;
function GetSelectionPosHintText: String;
var
BaseParent, TestParent: TComponent;
BaseFound: Boolean;
i: integer;
P: TPoint;
begin
BaseFound := Selection[0].IsTComponent;
// search for one parent of our selection
if BaseFound then
begin
BaseParent := ParentComponent(TComponent(Selection[0].Persistent));
BaseFound := BaseParent is TWinControl;
if BaseFound then
begin
for i := 1 to Selection.Count - 1 do
begin
if Selection[0].IsTComponent then
TestParent := ParentComponent(TComponent(Selection[0].Persistent))
else
TestParent := nil;
if TestParent <> BaseParent then
begin
BaseFound := False;
Break;
end;
end;
end;
end;
P := Point(Selection.Left, Selection.Top);
if BaseFound then
P := TWinControl(BaseParent).ScreenToClient(Form.ClientToScreen(P));
Result := Format('%d, %d', [P.X, P.Y]);
end;
var
Rect: TRect;
AHint: String;
Position, ClientPos: TPoint;
AWinControl: TWinControl;
AComponent: TComponent;
begin
FHintTimer.Enabled := False;
if [dfShowEditorHints]*FFlags=[] then exit;
Position := Mouse.CursorPos;
if not (dfHasSized in FFlags) then
begin
AWinControl := FindLCLWindow(Position);
if not (Assigned(AWinControl)) then Exit;
if GetDesignerForm(AWinControl) <> Form then exit;
// search a component at the position
ClientPos := Form.ScreenToClient(Position);
AComponent := ComponentAtPos(ClientPos.X,ClientPos.Y,true,true);
if not Assigned(AComponent) then
AComponent := AWinControl;
AComponent := GetDesignedComponent(AComponent);
if AComponent = nil then exit;
AHint := GetComponentHintText(AComponent);
end
else
begin
// components are either resize or move
if (Selection.LookupRoot <> Form) or (Selection.Count = 0) then
Exit;
if Selection.ActiveGrabber <> nil then
AHint := GetSelectionSizeHintText
else
AHint := GetSelectionPosHintText;
end;
Rect := FHintWindow.CalcHintRect(0, AHint, Nil); //no maxwidth
Rect.Left := Position.X + 15;
Rect.Top := Position.Y + 15;
Rect.Right := Rect.Left + Rect.Right;
Rect.Bottom := Rect.Top + Rect.Bottom;
FHintWindow.ActivateHint(Rect, AHint);
end;
procedure TDesigner.SetSnapToGrid(const AValue: boolean);
begin
if SnapToGrid=AValue then exit;
EnvironmentOptions.SnapToGrid:=AValue;
end;
procedure TDesigner.DoOnForwardKeyToObjectInspector(Sender: TObject;
Key: TUTF8Char);
begin
if Assigned(FOnForwardKeyToObjectInspector) then
FOnForwardKeyToObjectInspector(Self, Key);
end;
function TDesigner.DoFormActivated(Active: boolean): boolean;
begin
if Active then begin
// designer form was activated.
if Assigned(FOnActivated) then FOnActivated(Self);
end else begin
// designer form deactivated
end;
Result:=false; // pass message to form, needed for focussing
end;
function TDesigner.DoFormCloseQuery: boolean;
begin
if Assigned(FOnCloseQuery) then FOnCloseQuery(Self);
Result:=true; // do not pass to form
end;
function TDesigner.GetPropertyEditorHook: TPropertyEditorHook;
begin
Result:=TheFormEditor.PropertyEditorHook;
end;
end.
|