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
|
// This file is part of Golly.
// See docs/License.html for the copyright notice.
#include "wx/wxprec.h" // for compilers that support precompilation
#ifndef WX_PRECOMP
#include "wx/wx.h" // for all others include the necessary headers
#endif
#if wxUSE_TOOLTIPS
#include "wx/tooltip.h" // for wxToolTip
#endif
#include "wx/dnd.h" // for wxFileDropTarget
#include "wx/filename.h" // for wxFileName
#include "wx/dir.h" // for wxDir
#include "wx/clipbrd.h" // for wxTheClipboard
#include "bigint.h"
#include "lifealgo.h"
#include "qlifealgo.h"
#include "hlifealgo.h"
#include "wxgolly.h" // for wxGetApp, statusptr, viewptr, bigview
#include "wxutils.h" // for Warning, Fatal, etc
#include "wxprefs.h" // for gollydir, datadir, SavePrefs, etc
#include "wxinfo.h" // for ShowInfo, GetInfoFrame
#include "wxhelp.h" // for ShowHelp, GetHelpFrame
#include "wxstatus.h" // for statusptr->...
#include "wxview.h" // for viewptr->...
#include "wxrender.h" // for DestroyDrawingData, etc
#include "wxedit.h" // for CreateEditBar, EditBarHeight, etc
#include "wxscript.h" // for inscript, PassKeyToScript
#include "wxalgos.h" // for algo_type, algomenu, algomenupop
#include "wxlayer.h" // for AddLayer, MAX_LAYERS, currlayer
#include "wxoverlay.h" // for curroverlay
#include "wxundo.h" // for currlayer->undoredo->...
#include "wxtimeline.h" // for CreateTimelineBar, TimelineExists, etc
#include "wxmain.h"
#ifdef __WXMAC__
#include <Carbon/Carbon.h> // for GetCurrentProcess, etc
#endif
#ifdef USING_VISUAL_LEAK_DETECTOR
#include <vld.h>
#endif
// -----------------------------------------------------------------------------
#ifdef __WXMSW__
static bool set_focus = false; // OnIdle needs to call SetFocus?
static wxString editpath = wxEmptyString; // OnIdle calls EditFile if this isn't empty
#endif
static bool call_close = false; // OnIdle needs to call Close?
static bool edit_file = false; // edit the clicked file?
// -----------------------------------------------------------------------------
// ids for bitmap buttons in tool bar
enum {
START_TOOL = 0,
STOP_TOOL,
RESET_TOOL,
ALGO_TOOL,
AUTOFIT_TOOL,
HYPER_TOOL,
NEW_TOOL,
OPEN_TOOL,
SAVE_TOOL,
FILES_TOOL,
INFO_TOOL,
HELP_TOOL,
NUM_BUTTONS // must be last
};
// bitmaps for tool bar buttons
#include "bitmaps/play.xpm"
#include "bitmaps/stop.xpm"
#include "bitmaps/reset.xpm"
#include "bitmaps/algo.xpm"
#include "bitmaps/autofit.xpm"
#include "bitmaps/hyper.xpm"
#include "bitmaps/new.xpm"
#include "bitmaps/open.xpm"
#include "bitmaps/save.xpm"
#include "bitmaps/files.xpm"
#include "bitmaps/info.xpm"
#include "bitmaps/help.xpm"
// bitmaps for down state of toggle buttons
#include "bitmaps/autofit_down.xpm"
#include "bitmaps/hyper_down.xpm"
#include "bitmaps/files_down.xpm"
// -----------------------------------------------------------------------------
// Define our own vertical tool bar to avoid bugs and limitations in wxToolBar:
// derive from wxPanel so we get current theme's background color on Windows
class ToolBar : public wxPanel
{
public:
ToolBar(wxWindow* parent, wxCoord xorg, wxCoord yorg, int wd, int ht);
~ToolBar() {}
// add a bitmap button to tool bar
void AddButton(int id, const wxString& tip);
// add a vertical gap between buttons
void AddSeparator();
// enable/disable button
void EnableButton(int id, bool enable);
// set state of start/stop button
void SetStartStopButton();
// set state of a toggle button
void SelectButton(int id, bool select);
// detect press and release of a bitmap button
void OnButtonDown(wxMouseEvent& event);
void OnButtonUp(wxMouseEvent& event);
void OnKillFocus(wxFocusEvent& event);
private:
// any class wishing to process wxWidgets events must use this macro
DECLARE_EVENT_TABLE()
// event handlers
void OnPaint(wxPaintEvent& event);
void OnMouseDown(wxMouseEvent& event);
void OnButton(wxCommandEvent& event);
// bitmaps for normal or down state
wxBitmap normtool[NUM_BUTTONS];
wxBitmap downtool[NUM_BUTTONS];
#ifdef __WXMSW__
// on Windows we need bitmaps for disabled buttons
wxBitmap disnormtool[NUM_BUTTONS];
wxBitmap disdowntool[NUM_BUTTONS];
#endif
// remember state of toggle buttons to avoid unnecessary drawing;
// 0 = not yet initialized, 1 = selected, -1 = not selected
int buttstate[NUM_BUTTONS];
// positioning data used by AddButton and AddSeparator
int ypos, xpos, smallgap, biggap;
};
BEGIN_EVENT_TABLE(ToolBar, wxPanel)
EVT_PAINT ( ToolBar::OnPaint)
EVT_LEFT_DOWN ( ToolBar::OnMouseDown)
EVT_BUTTON (wxID_ANY, ToolBar::OnButton)
END_EVENT_TABLE()
ToolBar* toolbarptr = NULL; // global pointer to tool bar
const int TOOLBARWD = 32; // width of (vertical) tool bar
// tool bar buttons (must be global to use Connect/Disconnect on Windows)
wxBitmapButton* tbbutt[NUM_BUTTONS];
// width and height of bitmap buttons
#if defined(__WXOSX_COCOA__) && wxCHECK_VERSION(3,0,0)
// note that BUTTON_WD will have to be at least 26 to avoid clipping bitmaps
// if we decide to use wxBORDER_SUNKEN rather than wxBORDER_SIMPLE
// (and TOOLBARWD will probably need to be increased to 48)
const int BUTTON_WD = 24;
const int BUTTON_HT = 24;
#elif defined(__WXOSX_COCOA__) || defined(__WXGTK__)
const int BUTTON_WD = 28;
const int BUTTON_HT = 28;
#else
const int BUTTON_WD = 24;
const int BUTTON_HT = 24;
#endif
// -----------------------------------------------------------------------------
ToolBar::ToolBar(wxWindow* parent, wxCoord xorg, wxCoord yorg, int wd, int ht)
: wxPanel(parent, wxID_ANY, wxPoint(xorg,yorg), wxSize(wd,ht),
wxNO_FULL_REPAINT_ON_RESIZE)
{
#ifdef __WXGTK__
// avoid erasing background on GTK+
SetBackgroundStyle(wxBG_STYLE_CUSTOM);
#endif
// init bitmaps for normal state
normtool[START_TOOL] = XPM_BITMAP(play);
normtool[STOP_TOOL] = XPM_BITMAP(stop);
normtool[RESET_TOOL] = XPM_BITMAP(reset);
normtool[ALGO_TOOL] = XPM_BITMAP(algo);
normtool[AUTOFIT_TOOL] = XPM_BITMAP(autofit);
normtool[HYPER_TOOL] = XPM_BITMAP(hyper);
normtool[NEW_TOOL] = XPM_BITMAP(new);
normtool[OPEN_TOOL] = XPM_BITMAP(open);
normtool[SAVE_TOOL] = XPM_BITMAP(save);
normtool[FILES_TOOL] = XPM_BITMAP(files);
normtool[INFO_TOOL] = XPM_BITMAP(info);
normtool[HELP_TOOL] = XPM_BITMAP(help);
// toggle buttons also have a down state
downtool[AUTOFIT_TOOL] = XPM_BITMAP(autofit_down);
downtool[HYPER_TOOL] = XPM_BITMAP(hyper_down);
downtool[FILES_TOOL] = XPM_BITMAP(files_down);
#ifdef __WXMSW__
for (int i = 0; i < NUM_BUTTONS; i++) {
CreatePaleBitmap(normtool[i], disnormtool[i]);
}
CreatePaleBitmap(downtool[AUTOFIT_TOOL], disdowntool[AUTOFIT_TOOL]);
CreatePaleBitmap(downtool[HYPER_TOOL], disdowntool[HYPER_TOOL]);
CreatePaleBitmap(downtool[FILES_TOOL], disdowntool[FILES_TOOL]);
#endif
for (int i = 0; i < NUM_BUTTONS; i++) {
buttstate[i] = 0;
}
// init position variables used by AddButton and AddSeparator
#ifdef __WXGTK__
// buttons are a different size in wxGTK
xpos = 2;
ypos = 2;
smallgap = 6;
#else
xpos = (32 - BUTTON_WD) / 2;
ypos = (32 - BUTTON_HT) / 2;
smallgap = 4;
#endif
biggap = 16;
}
// -----------------------------------------------------------------------------
void ToolBar::OnPaint(wxPaintEvent& WXUNUSED(event))
{
wxPaintDC dc(this);
int wd, ht;
GetClientSize(&wd, &ht);
if (wd < 1 || ht < 1 || !showtool) return;
wxRect r = wxRect(0, 0, wd, ht);
#ifdef __WXMSW__
dc.Clear();
// draw gray line at top edge
dc.SetPen(*wxGREY_PEN);
dc.DrawLine(0, 0, r.width, 0);
dc.SetPen(wxNullPen);
#else
// draw gray line at right edge
#ifdef __WXMAC__
wxBrush brush(wxColor(202,202,202));
FillRect(dc, r, brush);
wxPen linepen(wxColor(140,140,140));
dc.SetPen(linepen);
#else
dc.SetPen(*wxLIGHT_GREY_PEN);
#endif
dc.DrawLine(r.GetRight(), 0, r.GetRight(), r.height);
dc.SetPen(wxNullPen);
#endif
}
// -----------------------------------------------------------------------------
void ToolBar::OnMouseDown(wxMouseEvent& WXUNUSED(event))
{
// this is NOT called if user clicks a tool bar button;
// on Windows we need to reset keyboard focus to viewport window
viewptr->SetFocus();
}
// -----------------------------------------------------------------------------
void ToolBar::OnButton(wxCommandEvent& event)
{
int id = event.GetId();
int cmdid;
switch (id) {
case START_TOOL: cmdid = ID_START; break;
case RESET_TOOL: cmdid = ID_RESET; break;
case ALGO_TOOL: return; // handled in OnButtonDown
case AUTOFIT_TOOL: cmdid = ID_AUTO; break;
case HYPER_TOOL: cmdid = ID_HYPER; break;
case NEW_TOOL: cmdid = wxID_NEW; break;
case OPEN_TOOL: cmdid = wxID_OPEN; break;
case SAVE_TOOL: cmdid = wxID_SAVE; break;
case FILES_TOOL: cmdid = ID_SHOW_FILES; break;
case INFO_TOOL: cmdid = ID_INFO; break;
case HELP_TOOL: cmdid = ID_HELP_BUTT; break;
default: Warning(_("Unexpected button id!")); return;
}
// call MainFrame::OnMenu after OnButton finishes;
// this avoids start/stop button problem in GTK app
wxCommandEvent cmdevt(wxEVT_COMMAND_MENU_SELECTED, cmdid);
wxPostEvent(mainptr->GetEventHandler(), cmdevt);
// avoid weird bug on Mac where all buttons can be disabled after hitting
// RESET_TOOL button *and* the "All controls" option is ticked in
// System Prefs > Keyboard & Mouse > Keyboard Shortcuts
// (might also fix similar problem on Windows)
viewptr->SetFocus();
}
// -----------------------------------------------------------------------------
void ToolBar::OnKillFocus(wxFocusEvent& event)
{
int id = event.GetId();
tbbutt[id]->SetFocus(); // don't let button lose focus
}
// -----------------------------------------------------------------------------
void ToolBar::OnButtonDown(wxMouseEvent& event)
{
// a tool bar button has been pressed
int id = event.GetId();
#ifdef __WXMSW__
// connect a handler that keeps focus with the pressed button
if (id != ALGO_TOOL)
tbbutt[id]->Connect(id, wxEVT_KILL_FOCUS,
wxFocusEventHandler(ToolBar::OnKillFocus));
#endif
#ifdef __WXMAC__
// close any open tool tip window (probably wxMac bug)
wxToolTip::RemoveToolTips();
#endif
// we want pop-up menu to appear as soon as ALGO_TOOL button is pressed
if (id == ALGO_TOOL) {
// we use algomenupop here rather than algomenu to avoid assert messages in wx 2.9+
#ifdef __WXMSW__
tbbutt[id]->PopupMenu(algomenupop, 0, 25);
// fix prob on Win (almost -- button-up doesn't always close menu)
viewptr->SetFocus();
return;
#else
tbbutt[id]->PopupMenu(algomenupop, 0, 30);
#endif
#ifdef __WXOSX_COCOA__
viewptr->SetFocus();
// don't call event.Skip() otherwise algo button will remain selected
return;
#endif
}
event.Skip();
}
// -----------------------------------------------------------------------------
void ToolBar::OnButtonUp(wxMouseEvent& event)
{
// a tool bar button has been released (only called in wxMSW)
int id = event.GetId();
wxPoint pt = tbbutt[id]->ScreenToClient( wxGetMousePosition() );
int wd, ht;
tbbutt[id]->GetClientSize(&wd, &ht);
wxRect r(0, 0, wd, ht);
// diconnect kill-focus handler
if (id != ALGO_TOOL)
tbbutt[id]->Disconnect(id, wxEVT_KILL_FOCUS,
wxFocusEventHandler(ToolBar::OnKillFocus));
viewptr->SetFocus();
if ( r.Contains(pt) ) {
// call OnButton
wxCommandEvent buttevt(wxEVT_COMMAND_BUTTON_CLICKED, id);
buttevt.SetEventObject(tbbutt[id]);
tbbutt[id]->GetEventHandler()->ProcessEvent(buttevt);
}
}
// -----------------------------------------------------------------------------
void ToolBar::AddButton(int id, const wxString& tip)
{
tbbutt[id] = new wxBitmapButton(this, id, normtool[id], wxPoint(xpos,ypos),
#if defined(__WXOSX_COCOA__) && wxCHECK_VERSION(3,0,0)
wxSize(BUTTON_WD, BUTTON_HT), wxBORDER_SIMPLE
#else
wxSize(BUTTON_WD, BUTTON_HT)
#endif
);
if (tbbutt[id] == NULL) {
Fatal(_("Failed to create tool bar button!"));
} else {
ypos += BUTTON_HT + smallgap;
tbbutt[id]->SetToolTip(tip);
#ifdef __WXMSW__
// fix problem with tool bar buttons when generating/inscript
// due to focus being changed to viewptr
tbbutt[id]->Connect(id, wxEVT_LEFT_DOWN, wxMouseEventHandler(ToolBar::OnButtonDown));
tbbutt[id]->Connect(id, wxEVT_LEFT_UP, wxMouseEventHandler(ToolBar::OnButtonUp));
#else
// allow pop-up menu to appear as soon as ALGO_TOOL button is pressed
tbbutt[id]->Connect(id, wxEVT_LEFT_DOWN, wxMouseEventHandler(ToolBar::OnButtonDown));
#endif
}
}
// -----------------------------------------------------------------------------
void ToolBar::AddSeparator()
{
ypos += biggap - smallgap;
}
// -----------------------------------------------------------------------------
void ToolBar::EnableButton(int id, bool enable)
{
if (enable == tbbutt[id]->IsEnabled()) return;
#ifdef __WXMSW__
if (id == START_TOOL && (inscript || mainptr->generating)) {
tbbutt[id]->SetBitmapDisabled(disnormtool[STOP_TOOL]);
} else if (id == AUTOFIT_TOOL && currlayer->autofit) {
tbbutt[id]->SetBitmapDisabled(disdowntool[id]);
} else if (id == HYPER_TOOL && currlayer->hyperspeed) {
tbbutt[id]->SetBitmapDisabled(disdowntool[id]);
} else if (id == FILES_TOOL && showfiles) {
tbbutt[id]->SetBitmapDisabled(disdowntool[id]);
} else {
tbbutt[id]->SetBitmapDisabled(disnormtool[id]);
}
#endif
tbbutt[id]->Enable(enable);
}
// -----------------------------------------------------------------------------
void ToolBar::SetStartStopButton()
{
if (inscript || mainptr->generating) {
// show stop bitmap
if (buttstate[START_TOOL] == 1) return;
buttstate[START_TOOL] = 1;
tbbutt[START_TOOL]->SetBitmapLabel(normtool[STOP_TOOL]);
if (inscript)
tbbutt[START_TOOL]->SetToolTip(_("Stop script"));
else
tbbutt[START_TOOL]->SetToolTip(_("Stop generating"));
} else {
// show start bitmap
if (buttstate[START_TOOL] == -1) return;
buttstate[START_TOOL] = -1;
tbbutt[START_TOOL]->SetBitmapLabel(normtool[START_TOOL]);
tbbutt[START_TOOL]->SetToolTip(_("Start generating"));
}
tbbutt[START_TOOL]->Refresh(false);
}
// -----------------------------------------------------------------------------
void ToolBar::SelectButton(int id, bool select)
{
if (select) {
if (buttstate[id] == 1) return;
buttstate[id] = 1;
tbbutt[id]->SetBitmapLabel(downtool[id]);
} else {
if (buttstate[id] == -1) return;
buttstate[id] = -1;
tbbutt[id]->SetBitmapLabel(normtool[id]);
}
tbbutt[id]->Refresh(false);
}
// -----------------------------------------------------------------------------
void MainFrame::CreateToolbar()
{
int wd, ht;
GetClientSize(&wd, &ht);
toolbarptr = new ToolBar(this, 0, 0, TOOLBARWD, ht);
// add buttons to tool bar
toolbarptr->AddButton(START_TOOL, _("Start generating"));
toolbarptr->AddButton(RESET_TOOL, _("Reset"));
toolbarptr->AddSeparator();
toolbarptr->AddButton(ALGO_TOOL, _("Set algorithm"));
toolbarptr->AddButton(AUTOFIT_TOOL, _("Auto fit"));
toolbarptr->AddButton(HYPER_TOOL, _("Hyperspeed"));
toolbarptr->AddSeparator();
toolbarptr->AddButton(NEW_TOOL, _("New pattern"));
toolbarptr->AddButton(OPEN_TOOL, _("Open pattern"));
toolbarptr->AddButton(SAVE_TOOL, _("Save pattern"));
toolbarptr->AddSeparator();
toolbarptr->AddButton(FILES_TOOL, _("Show/hide files"));
toolbarptr->AddSeparator();
toolbarptr->AddButton(INFO_TOOL, _("Show pattern information"));
toolbarptr->AddButton(HELP_TOOL, _("Show help window"));
toolbarptr->Show(showtool);
}
// -----------------------------------------------------------------------------
void MainFrame::UpdateToolBar()
{
// update tool bar buttons according to the current state
if (toolbarptr && showtool) {
bool active = !viewptr->waitingforclick;
bool timeline = TimelineExists();
// set state of start/stop button
toolbarptr->SetStartStopButton();
// set state of toggle buttons
toolbarptr->SelectButton(AUTOFIT_TOOL, currlayer->autofit);
toolbarptr->SelectButton(HYPER_TOOL, currlayer->hyperspeed);
toolbarptr->SelectButton(FILES_TOOL, showfiles);
toolbarptr->EnableButton(START_TOOL, active && !timeline);
toolbarptr->EnableButton(RESET_TOOL, active && !timeline && !inscript &&
(generating || currlayer->algo->getGeneration() > currlayer->startgen));
toolbarptr->EnableButton(ALGO_TOOL, active && !timeline && !inscript);
toolbarptr->EnableButton(AUTOFIT_TOOL, active);
toolbarptr->EnableButton(HYPER_TOOL, active && !timeline);
toolbarptr->EnableButton(NEW_TOOL, active && !inscript);
toolbarptr->EnableButton(OPEN_TOOL, active && !inscript);
toolbarptr->EnableButton(SAVE_TOOL, active && !inscript);
toolbarptr->EnableButton(FILES_TOOL, active);
toolbarptr->EnableButton(INFO_TOOL, active && !currlayer->currfile.IsEmpty());
toolbarptr->EnableButton(HELP_TOOL, active);
}
}
// -----------------------------------------------------------------------------
bool MainFrame::ClipboardHasText()
{
bool hastext = false;
#ifdef __WXGTK__
// avoid re-entrancy bug in wxGTK 2.9.x
if (wxTheClipboard->IsOpened()) return false;
#endif
if (wxTheClipboard->Open()) {
hastext = wxTheClipboard->IsSupported(wxDF_TEXT);
if (!hastext) {
// we'll try to convert bitmap data to text pattern
hastext = wxTheClipboard->IsSupported(wxDF_BITMAP);
}
wxTheClipboard->Close();
}
return hastext;
}
// -----------------------------------------------------------------------------
void MainFrame::EnableAllMenus(bool enable)
{
wxMenuBar* mbar = GetMenuBar();
if (mbar) {
int count = (int)(mbar->GetMenuCount());
int i;
for (i = 0; i < count; i++) {
mbar->EnableTop(i, enable);
}
#ifdef __WXOSX_COCOA__
// enable/disable items in app menu
mbar->Enable(wxID_ABOUT, enable);
mbar->Enable(wxID_PREFERENCES, enable);
mbar->Enable(wxID_EXIT, enable);
#endif
}
}
// -----------------------------------------------------------------------------
void MainFrame::UpdateMenuItems()
{
// update menu bar items according to the given state
wxMenuBar* mbar = GetMenuBar();
if (mbar) {
// we need to disable most menu items if main window is not in front so user can
// hit return key to close help/info window rather than start/stop generating
bool active = infront && !viewptr->waitingforclick;
bool selexists = viewptr->SelectionExists();
bool timeline = TimelineExists();
bool textinclip = ClipboardHasText();
mbar->Enable(wxID_NEW, active && !inscript);
mbar->Enable(wxID_OPEN, active && !inscript);
mbar->Enable(ID_OPEN_CLIP, active && !inscript && textinclip);
mbar->Enable(ID_OPEN_RECENT, active && !inscript && numpatterns > 0);
mbar->Enable(wxID_SAVE, active && !inscript);
mbar->Enable(ID_SAVE_XRLE, active);
mbar->Enable(ID_RUN_SCRIPT, active && !timeline && !inscript);
mbar->Enable(ID_RUN_CLIP, active && !timeline && !inscript && textinclip);
mbar->Enable(ID_RUN_RECENT, active && !timeline && !inscript && numscripts > 0);
mbar->Enable(ID_SHOW_FILES, active);
mbar->Enable(ID_FILE_DIR, active);
// safer not to allow prefs dialog while script is running???
// mbar->Enable(wxID_PREFERENCES, !inscript);
bool can_undo = active && !timeline && currlayer->undoredo->CanUndo();
bool can_redo = active && !timeline && currlayer->undoredo->CanRedo();
mbar->Enable(ID_UNDO, can_undo);
mbar->Enable(ID_REDO, can_redo);
mbar->Enable(ID_NO_UNDO, active && !inscript);
mbar->Enable(ID_CUT, active && !timeline && !inscript && selexists);
mbar->Enable(ID_COPY, active && !inscript && selexists);
mbar->Enable(ID_CLEAR, active && !timeline && !inscript && selexists);
mbar->Enable(ID_OUTSIDE, active && !timeline && !inscript && selexists);
mbar->Enable(ID_PASTE, active && !timeline && !inscript && textinclip);
mbar->Enable(ID_PASTE_SEL, active && !timeline && !inscript && textinclip && selexists);
mbar->Enable(ID_PLOCATION, active);
mbar->Enable(ID_PMODE, active);
mbar->Enable(ID_SELECTALL, active && !inscript);
mbar->Enable(ID_REMOVE, active && !inscript && selexists);
mbar->Enable(ID_SHRINK, active && !inscript && selexists);
mbar->Enable(ID_RANDOM, active && !timeline && !inscript && selexists);
mbar->Enable(ID_FLIPTB, active && !timeline && !inscript && selexists);
mbar->Enable(ID_FLIPLR, active && !timeline && !inscript && selexists);
mbar->Enable(ID_ROTATEC, active && !timeline && !inscript && selexists);
mbar->Enable(ID_ROTATEA, active && !timeline && !inscript && selexists);
mbar->Enable(ID_CMODE, active);
if (inscript) {
// WARNING: next line is no longer needed on wxMac and actually caused a bad memory leak!
// mbar->SetLabel(ID_START, _("x"));
// escape key can be used to abort a running script
mbar->SetLabel(ID_START, _("Stop Script\tEscape"));
} else if (generating) {
mbar->SetLabel(ID_START, _("Stop Generating") + GetAccelerator(DO_STARTSTOP));
} else if (timeline && !currlayer->algo->isrecording()) {
if (TimelineIsPlaying())
mbar->SetLabel(ID_START, _("Stop Playing Timeline") + GetAccelerator(DO_STARTSTOP));
else
mbar->SetLabel(ID_START, _("Start Playing Timeline") + GetAccelerator(DO_STARTSTOP));
} else {
mbar->SetLabel(ID_START, _("Start Generating") + GetAccelerator(DO_STARTSTOP));
}
if (currlayer->algo->isrecording()) {
mbar->SetLabel(ID_RECORD, _("Stop Recording") + GetAccelerator(DO_RECORD));
} else {
mbar->SetLabel(ID_RECORD, _("Start Recording") + GetAccelerator(DO_RECORD));
}
mbar->Enable(ID_START, active && !currlayer->algo->isrecording());
#ifdef __WXMAC__
// for some unknown reason we need to disable these menu items when generating
// otherwise auto-repeating space/tab key doesn't work all the time
mbar->Enable(ID_NEXT, active && !timeline && !inscript && !generating);
mbar->Enable(ID_STEP, active && !timeline && !inscript && !generating);
#else
mbar->Enable(ID_NEXT, active && !timeline && !inscript);
mbar->Enable(ID_STEP, active && !timeline && !inscript);
#endif
mbar->Enable(ID_RESET, active && !timeline && !inscript &&
(generating || currlayer->algo->getGeneration() > currlayer->startgen));
mbar->Enable(ID_SETGEN, active && !timeline && !inscript);
mbar->Enable(ID_FASTER, active && !inscript && !(timeline && currlayer->algo->isrecording()));
mbar->Enable(ID_SLOWER, active && !inscript && !(timeline && currlayer->algo->isrecording()));
mbar->Enable(ID_SETBASE, active && !timeline && !inscript);
mbar->Enable(ID_AUTO, active);
mbar->Enable(ID_HYPER, active && !timeline);
mbar->Enable(ID_HINFO, active);
mbar->Enable(ID_SHOW_POP, active);
mbar->Enable(ID_RECORD, active && !inscript && currlayer->algo->hyperCapable());
mbar->Enable(ID_DELTIME, active && !inscript && timeline && !currlayer->algo->isrecording());
mbar->Enable(ID_CONVERT, active && !timeline && !inscript);
mbar->Enable(ID_SETALGO, active && !timeline && !inscript);
mbar->Enable(ID_SETRULE, active && !timeline && !inscript);
mbar->Enable(ID_FULL, active);
mbar->Enable(ID_FIT, active);
mbar->Enable(ID_FIT_SEL, active && selexists);
mbar->Enable(ID_MIDDLE, active);
mbar->Enable(ID_RESTORE00, active && (currlayer->originx != bigint::zero ||
currlayer->originy != bigint::zero));
mbar->Enable(wxID_ZOOM_IN, active /* && viewptr->GetMag() < MAX_MAG */);
// don't do this test because Win users won't hear beep
mbar->Enable(wxID_ZOOM_OUT, active);
mbar->Enable(ID_SET_SCALE, active);
mbar->Enable(ID_TOOL_BAR, active);
mbar->Enable(ID_LAYER_BAR, active);
mbar->Enable(ID_EDIT_BAR, active);
mbar->Enable(ID_ALL_STATES, active);
mbar->Enable(ID_STATUS_BAR, active);
mbar->Enable(ID_EXACT, active);
mbar->Enable(ID_GRID, active);
mbar->Enable(ID_ICONS, active);
mbar->Enable(ID_INVERT, active);
mbar->Enable(ID_SMARTSCALE, active);
mbar->Enable(ID_TIMELINE, active);
mbar->Enable(ID_SCROLL, active);
mbar->Enable(ID_INFO, !currlayer->currfile.IsEmpty());
mbar->Enable(ID_SAVE_OVERLAY, active && showoverlay && curroverlay->GetOverlayData());
mbar->Enable(ID_SHOW_OVERLAY, active);
mbar->Enable(ID_DEL_OVERLAY, active && !inscript && curroverlay->GetOverlayData());
mbar->Enable(ID_ADD_LAYER, active && !inscript && numlayers < MAX_LAYERS);
mbar->Enable(ID_CLONE, active && !inscript && numlayers < MAX_LAYERS);
mbar->Enable(ID_DUPLICATE, active && !inscript && numlayers < MAX_LAYERS);
mbar->Enable(ID_DEL_LAYER, active && !inscript && numlayers > 1);
mbar->Enable(ID_DEL_OTHERS, active && !inscript && numlayers > 1);
mbar->Enable(ID_MOVE_LAYER, active && !inscript && numlayers > 1);
mbar->Enable(ID_NAME_LAYER, active && !inscript);
mbar->Enable(ID_SET_COLORS, active && !inscript);
mbar->Enable(ID_SYNC_VIEW, active);
mbar->Enable(ID_SYNC_CURS, active);
mbar->Enable(ID_STACK, active);
mbar->Enable(ID_TILE, active);
for (int i = 0; i < numlayers; i++)
mbar->Enable(ID_LAYER0 + i, active && CanSwitchLayer(i));
// tick/untick menu items created using AppendCheckItem
mbar->Check(ID_SAVE_XRLE, savexrle);
mbar->Check(ID_SHOW_FILES, showfiles);
mbar->Check(ID_NO_UNDO, !allowundo);
mbar->Check(ID_AUTO, currlayer->autofit);
mbar->Check(ID_HYPER, currlayer->hyperspeed);
mbar->Check(ID_HINFO, currlayer->showhashinfo);
mbar->Check(ID_SHOW_POP, showpopulation);
mbar->Check(ID_TOOL_BAR, showtool);
mbar->Check(ID_LAYER_BAR, showlayer);
mbar->Check(ID_EDIT_BAR, showedit);
mbar->Check(ID_ALL_STATES, showallstates);
mbar->Check(ID_STATUS_BAR, showstatus);
mbar->Check(ID_EXACT, showexact);
mbar->Check(ID_GRID, showgridlines);
mbar->Check(ID_ICONS, showicons);
mbar->Check(ID_INVERT, swapcolors);
mbar->Check(ID_SMARTSCALE, smartscale);
mbar->Check(ID_TIMELINE, showtimeline);
mbar->Check(ID_SCROLL, showscrollbars);
mbar->Check(ID_PL_TL, plocation == TopLeft);
mbar->Check(ID_PL_TR, plocation == TopRight);
mbar->Check(ID_PL_BR, plocation == BottomRight);
mbar->Check(ID_PL_BL, plocation == BottomLeft);
mbar->Check(ID_PL_MID, plocation == Middle);
mbar->Check(ID_PM_AND, pmode == And);
mbar->Check(ID_PM_COPY, pmode == Copy);
mbar->Check(ID_PM_OR, pmode == Or);
mbar->Check(ID_PM_XOR, pmode == Xor);
mbar->Check(ID_DRAW, currlayer->curs == curs_pencil);
mbar->Check(ID_PICK, currlayer->curs == curs_pick);
mbar->Check(ID_SELECT, currlayer->curs == curs_cross);
mbar->Check(ID_MOVE, currlayer->curs == curs_hand);
mbar->Check(ID_ZOOMIN, currlayer->curs == curs_zoomin);
mbar->Check(ID_ZOOMOUT, currlayer->curs == curs_zoomout);
mbar->Check(ID_SCALE_1, viewptr->GetMag() == 0);
mbar->Check(ID_SCALE_2, viewptr->GetMag() == 1);
mbar->Check(ID_SCALE_4, viewptr->GetMag() == 2);
mbar->Check(ID_SCALE_8, viewptr->GetMag() == 3);
mbar->Check(ID_SCALE_16, viewptr->GetMag() == 4);
mbar->Check(ID_SCALE_32, viewptr->GetMag() == 5);
mbar->Check(ID_SYNC_VIEW, syncviews);
mbar->Check(ID_SYNC_CURS, synccursors);
mbar->Check(ID_STACK, stacklayers);
mbar->Check(ID_TILE, tilelayers);
mbar->Check(ID_SHOW_OVERLAY, showoverlay);
for (int i = 0; i < NumAlgos(); i++) {
mbar->Check(ID_ALGO0 + i, currlayer->algtype == i);
// keep algomenupop in sync with algomenu
algomenupop->Check(ID_ALGO0 + i, currlayer->algtype == i);
}
for (int i = 0; i < numlayers; i++) {
mbar->Check(ID_LAYER0 + i, currindex == i);
}
}
}
// -----------------------------------------------------------------------------
void MainFrame::UpdateUserInterface()
{
UpdateToolBar();
UpdateLayerBar();
UpdateEditBar();
UpdateTimelineBar();
UpdateMenuItems();
viewptr->CheckCursor(infront);
statusptr->CheckMouseLocation(infront);
#ifdef __WXMSW__
// ensure viewport window has keyboard focus if main window is active
if (infront) viewptr->SetFocus();
#endif
}
// -----------------------------------------------------------------------------
// update everything in main window, and menu bar and cursor
void MainFrame::UpdateEverything()
{
if (IsIconized()) {
// main window has been minimized, so only update menu bar items
UpdateMenuItems();
return;
}
// update all tool bars, menus and cursor
UpdateUserInterface();
if (inscript) {
// make sure scroll bars are accurate while running script
bigview->UpdateScrollBars();
return;
}
int wd, ht;
GetClientSize(&wd, &ht); // includes status bar and viewport
if (wd > 0 && ht > statusptr->statusht) {
bigview->Refresh(false);
bigview->UpdateScrollBars();
}
if (wd > 0 && ht > 0 && showstatus) {
statusptr->Refresh(false);
}
}
// -----------------------------------------------------------------------------
// only update viewport and status bar
void MainFrame::UpdatePatternAndStatus(bool update_now)
{
if (inscript || currlayer->undoredo->doingscriptchanges) return;
if (!IsIconized()) {
bigview->Refresh(false);
if (update_now) bigview->Update();
if (showstatus) {
statusptr->CheckMouseLocation(infront);
statusptr->Refresh(false);
if (update_now) statusptr->Update();
}
}
}
// -----------------------------------------------------------------------------
// only update status bar
void MainFrame::UpdateStatus()
{
if (inscript || currlayer->undoredo->doingscriptchanges) return;
if (!IsIconized()) {
if (showstatus) {
statusptr->CheckMouseLocation(infront);
statusptr->Refresh(false);
}
}
}
// -----------------------------------------------------------------------------
void MainFrame::SimplifyTree(wxString& indir, wxTreeCtrl* treectrl, wxTreeItemId root)
{
// delete old tree (except root)
treectrl->DeleteChildren(root);
// remove any terminating separator
wxString dir = indir;
if (dir.Last() == wxFILE_SEP_PATH) dir.Truncate(dir.Length()-1);
// append dir as only child
wxDirItemData* diritem = new wxDirItemData(dir, dir, true);
wxTreeItemId id;
id = treectrl->AppendItem(root, dir.AfterLast(wxFILE_SEP_PATH), 0, 0, diritem);
if ( diritem->HasFiles() || diritem->HasSubDirs() ) {
treectrl->SetItemHasChildren(id);
treectrl->Expand(id);
#ifndef __WXMSW__
// can cause crash on Windows
treectrl->ScrollTo(root);
#endif
}
// select top folder so hitting left arrow can collapse it and won't cause an assert
wxTreeItemIdValue cookie;
id = treectrl->GetFirstChild(root, cookie);
if (id.IsOk()) treectrl->SelectItem(id);
}
// -----------------------------------------------------------------------------
// Define a window for right pane of split window:
class RightWindow : public wxWindow
{
public:
RightWindow(wxWindow* parent)
: wxWindow(parent, wxID_ANY, wxDefaultPosition, wxDefaultSize,
wxNO_BORDER |
#ifdef __WXMSW__
// need this to avoid layer/edit/timeline bar buttons flashing on Windows
wxNO_FULL_REPAINT_ON_RESIZE
#else
// better for Mac and Linux
wxFULL_REPAINT_ON_RESIZE
#endif
)
{
#ifdef __WXGTK__
// avoid erasing background on GTK+
SetBackgroundStyle(wxBG_STYLE_CUSTOM);
#endif
}
~RightWindow() {}
// event handlers
void OnSize(wxSizeEvent& event);
void OnEraseBackground(wxEraseEvent& event);
DECLARE_EVENT_TABLE()
};
BEGIN_EVENT_TABLE(RightWindow, wxWindow)
EVT_ERASE_BACKGROUND (RightWindow::OnEraseBackground)
EVT_SIZE (RightWindow::OnSize)
END_EVENT_TABLE()
// -----------------------------------------------------------------------------
void RightWindow::OnEraseBackground(wxEraseEvent& WXUNUSED(event))
{
// do nothing because layer/edit/timeline bars and viewport cover all of right pane
}
// -----------------------------------------------------------------------------
static bool ok_to_resize = true;
void RightWindow::OnSize(wxSizeEvent& event)
{
// we need this to update right pane when dragging sash, or when toggling left pane
if (mainptr && ok_to_resize) {
mainptr->ResizeBigView();
}
event.Skip();
}
// -----------------------------------------------------------------------------
RightWindow* rightpane;
wxWindow* MainFrame::RightPane()
{
return rightpane;
}
// -----------------------------------------------------------------------------
void MainFrame::ResizeSplitWindow(int wd, int ht)
{
int x = showtool ? TOOLBARWD : 0;
int y = statusptr->statusht;
int w = showtool ? wd - TOOLBARWD : wd;
int h = ht > statusptr->statusht ? ht - statusptr->statusht : 0;
if (w < 0) w = 0;
if (h < 0) h = 0;
// following will call RightWindow::OnSize so avoid ResizeBigView being called twice
ok_to_resize = false;
splitwin->SetSize(x, y, w, h);
ok_to_resize = true;
ResizeBigView();
}
// -----------------------------------------------------------------------------
void MainFrame::ResizeBigView()
{
int wd, ht;
rightpane->GetClientSize(&wd, &ht);
if (wd > 0 && ht > 0) {
// resize layer/edit/timeline bars and main viewport window
int y = 0;
if (showlayer) {
ResizeLayerBar(wd);
y += LayerBarHeight();
ht -= LayerBarHeight();
}
if (showedit) {
ResizeEditBar(wd);
y += EditBarHeight();
ht -= EditBarHeight();
}
if (showtimeline) {
ht -= TimelineBarHeight();
// timeline bar goes underneath viewport
ResizeTimelineBar(y + ht, wd);
}
if (!fullscreen && showscrollbars) {
// make room for hbar and vbar
wd -= 15;
ht -= 15;
if (wd < 0) wd = 0;
if (ht < 0) ht = 0;
// resize hbar and vbar
#ifdef __WXMSW__
// extend scroll bar to right edge to avoid seeing junk
// in bottom right corner (need to figure out how to create a gripper!!!)
hbar->SetSize(0, y + ht, wd+15, 15);
#else
hbar->SetSize(0, y + ht, wd, 15);
#endif
vbar->SetSize(wd, y, 15, ht);
}
if (wd < 0) wd = 0;
if (ht < 0) ht = 0;
bigview->SetSize(0, y, wd, ht);
}
}
// -----------------------------------------------------------------------------
void MainFrame::ResizeStatusBar(int wd, int ht)
{
wxUnusedVar(ht);
// assume showstatus is true
statusptr->statusht = showexact ? STATUS_EXHT : STATUS_HT;
if (showtool) wd -= TOOLBARWD;
if (wd < 0) wd = 0;
statusptr->SetSize(showtool ? TOOLBARWD : 0, 0, wd, statusptr->statusht);
}
// -----------------------------------------------------------------------------
void MainFrame::ToggleStatusBar()
{
showstatus = !showstatus;
int wd, ht;
GetClientSize(&wd, &ht);
if (wd < 0) wd = 0;
if (ht < 0) ht = 0;
if (showstatus) {
ResizeStatusBar(wd, ht);
} else {
statusptr->statusht = 0;
statusptr->SetSize(0, 0, 0, 0);
}
ResizeSplitWindow(wd, ht);
UpdateEverything();
}
// -----------------------------------------------------------------------------
void MainFrame::ToggleExactNumbers()
{
showexact = !showexact;
int wd, ht;
GetClientSize(&wd, &ht);
if (wd < 0) wd = 0;
if (ht < 0) ht = 0;
if (showstatus) {
ResizeStatusBar(wd, ht);
ResizeSplitWindow(wd, ht);
UpdateEverything();
} else if (showexact) {
// show the status bar using new size
ToggleStatusBar();
} else {
UpdateMenuItems();
}
}
// -----------------------------------------------------------------------------
void MainFrame::ToggleToolBar()
{
showtool = !showtool;
int wd, ht;
GetClientSize(&wd, &ht);
if (wd < 0) wd = 0;
if (ht < 0) ht = 0;
if (showstatus) {
ResizeStatusBar(wd, ht);
}
if (showtool) {
// resize tool bar in case window was made larger while tool bar hidden
toolbarptr->SetSize(0, 0, TOOLBARWD, ht);
}
ResizeSplitWindow(wd, ht);
toolbarptr->Show(showtool);
}
// -----------------------------------------------------------------------------
void MainFrame::ToggleScrollBars()
{
showscrollbars = !showscrollbars;
if (showscrollbars) {
hbar->Show(true);
vbar->Show(true);
} else {
// hide scroll bars
hbar->Show(false);
vbar->Show(false);
}
// adjust size of viewport
int wd, ht;
GetClientSize(&wd, &ht);
ResizeSplitWindow(wd, ht);
UpdateEverything();
}
// -----------------------------------------------------------------------------
void MainFrame::ToggleFullScreen()
{
static bool restorestatusbar; // restore status bar at end of full screen mode?
static bool restorelayerbar; // restore layer bar?
static bool restoreeditbar; // restore edit bar?
static bool restoretimelinebar; // restore timeline bar?
static bool restoretoolbar; // restore tool bar?
static bool restorefiledir; // restore file directory?
if (!fullscreen) {
// save current location and size for use in SavePrefs
wxRect r = GetRect();
mainx = r.x;
mainy = r.y;
mainwd = r.width;
mainht = r.height;
}
fullscreen = !fullscreen;
ShowFullScreen(fullscreen, wxFULLSCREEN_NOMENUBAR | wxFULLSCREEN_NOBORDER | wxFULLSCREEN_NOCAPTION);
if (fullscreen) {
if (showscrollbars) {
// hide scroll bars
hbar->Show(false);
vbar->Show(false);
}
// hide status bar if necessary
restorestatusbar = showstatus;
if (restorestatusbar) {
showstatus = false;
statusptr->statusht = 0;
statusptr->SetSize(0, 0, 0, 0);
}
// hide layer bar if necessary
restorelayerbar = showlayer;
if (restorelayerbar) {
ToggleLayerBar();
}
// hide edit bar if necessary
restoreeditbar = showedit;
if (restoreeditbar) {
ToggleEditBar();
}
// hide timeline bar if necessary
restoretimelinebar = showtimeline;
if (restoretimelinebar) {
ToggleTimelineBar();
}
// hide tool bar if necessary
restoretoolbar = showtool;
if (restoretoolbar) {
ToggleToolBar();
}
// hide file directory if necessary
restorefiledir = showfiles;
if (restorefiledir) {
dirwinwd = splitwin->GetSashPosition();
splitwin->Unsplit(filectrl);
showfiles = false;
}
} else {
// first show tool bar if necessary
if (restoretoolbar && !showtool) {
ToggleToolBar();
if (showstatus) {
// reduce width of status bar below
restorestatusbar = true;
}
}
// show status bar if necessary;
// note that even if it's visible we may have to resize width
if (restorestatusbar) {
showstatus = true;
int wd, ht;
GetClientSize(&wd, &ht);
ResizeStatusBar(wd, ht);
}
// show layer bar if necessary
if (restorelayerbar && !showlayer) ToggleLayerBar();
// show edit bar if necessary
if (restoreeditbar && !showedit) ToggleEditBar();
// show timeline bar if necessary
if (restoretimelinebar && !showtimeline) ToggleTimelineBar();
// restore file directory if necessary
if ( restorefiledir && !splitwin->IsSplit() ) {
splitwin->SplitVertically(filectrl, RightPane(), dirwinwd);
showfiles = true;
}
if (showscrollbars) {
// restore scroll bars
hbar->Show(true);
vbar->Show(true);
}
}
// adjust size of viewport (and file directory if visible)
int wd, ht;
GetClientSize(&wd, &ht);
ResizeSplitWindow(wd, ht);
UpdateEverything();
}
// -----------------------------------------------------------------------------
void MainFrame::ToggleOverlay()
{
showoverlay = !showoverlay;
UpdateEverything();
}
// -----------------------------------------------------------------------------
void MainFrame::DeleteOverlay()
{
curroverlay->DeleteOverlay();
UpdateEverything();
}
// -----------------------------------------------------------------------------
void MainFrame::ToggleAllowUndo()
{
if (generating) {
command_pending = true;
cmdevent.SetId(ID_NO_UNDO);
Stop();
return;
}
allowundo = !allowundo;
if (allowundo) {
if (currlayer->algo->getGeneration() > currlayer->startgen) {
// undo list is empty but user can Reset, so add a generating change
// to undo list so user can Undo or Reset (and then Redo if they wish)
currlayer->undoredo->AddGenChange();
}
} else {
currlayer->undoredo->ClearUndoRedo();
// don't clear undo/redo history for other layers here; only do it
// if allowundo is false when user switches to another layer
}
}
// -----------------------------------------------------------------------------
void MainFrame::ShowPatternInfo()
{
if (viewptr->waitingforclick || currlayer->currfile.IsEmpty()) return;
ShowInfo(currlayer->currfile);
}
// -----------------------------------------------------------------------------
// event table and handlers for main window:
BEGIN_EVENT_TABLE(MainFrame, wxFrame)
EVT_MENU (wxID_ANY, MainFrame::OnMenu)
EVT_SET_FOCUS ( MainFrame::OnSetFocus)
EVT_ACTIVATE ( MainFrame::OnActivate)
EVT_IDLE ( MainFrame::OnIdle)
EVT_SIZE ( MainFrame::OnSize)
EVT_TREE_SEL_CHANGED (wxID_TREECTRL, MainFrame::OnDirTreeSelection)
EVT_SPLITTER_DCLICK (wxID_ANY, MainFrame::OnSashDblClick)
EVT_TIMER (ID_GENTIMER, MainFrame::OnGenTimer)
EVT_TIMER (ID_OPENTIMER, MainFrame::OnOpenTimer)
EVT_CLOSE ( MainFrame::OnClose)
EVT_COMMAND_SCROLL (wxID_ANY, MainFrame::OnScroll)
END_EVENT_TABLE()
// -----------------------------------------------------------------------------
void MainFrame::OnMenu(wxCommandEvent& event)
{
showbanner = false;
if (keepmessage) {
// don't clear message created by script while generating a pattern
keepmessage = false;
} else {
statusptr->ClearMessage();
}
int id = event.GetId();
switch (id) {
// File menu
case wxID_NEW: NewPattern(); break;
case wxID_OPEN: OpenPattern(); break;
case ID_OPEN_CLIP: OpenClipboard(); break;
case wxID_SAVE: SavePattern(); break;
case ID_SAVE_XRLE: savexrle = !savexrle; break;
case ID_RUN_SCRIPT: OpenScript(); break;
case ID_RUN_CLIP: RunClipboard(); break;
case ID_SHOW_FILES: ToggleShowFiles(); break;
case ID_FILE_DIR: ChangeFileDir(); break;
case wxID_PREFERENCES: ShowPrefsDialog(); break;
case wxID_EXIT: QuitApp(); break;
// Edit menu
case ID_UNDO: currlayer->undoredo->UndoChange(); break;
case ID_REDO: currlayer->undoredo->RedoChange(); break;
case ID_NO_UNDO: ToggleAllowUndo(); break;
case ID_CUT: viewptr->CutSelection(); break;
case ID_COPY: viewptr->CopySelection(); break;
case ID_CLEAR: viewptr->ClearSelection(); break;
case ID_OUTSIDE: viewptr->ClearOutsideSelection(); break;
case ID_PASTE: viewptr->PasteClipboard(false); break;
case ID_PASTE_SEL: viewptr->PasteClipboard(true); break;
case ID_PL_TL: SetPasteLocation("TopLeft"); break;
case ID_PL_TR: SetPasteLocation("TopRight"); break;
case ID_PL_BR: SetPasteLocation("BottomRight"); break;
case ID_PL_BL: SetPasteLocation("BottomLeft"); break;
case ID_PL_MID: SetPasteLocation("Middle"); break;
case ID_PM_AND: SetPasteMode("And"); break;
case ID_PM_COPY: SetPasteMode("Copy"); break;
case ID_PM_OR: SetPasteMode("Or"); break;
case ID_PM_XOR: SetPasteMode("Xor"); break;
case ID_SELECTALL: viewptr->SelectAll(); break;
case ID_REMOVE: viewptr->RemoveSelection(); break;
case ID_SHRINK: viewptr->ShrinkSelection(false); break;
case ID_SHRINKFIT: viewptr->ShrinkSelection(true); break;
case ID_RANDOM: viewptr->RandomFill(); break;
case ID_FLIPTB: viewptr->FlipSelection(true); break;
case ID_FLIPLR: viewptr->FlipSelection(false); break;
case ID_ROTATEC: viewptr->RotateSelection(true); break;
case ID_ROTATEA: viewptr->RotateSelection(false); break;
case ID_DRAW: viewptr->SetCursorMode(curs_pencil); break;
case ID_PICK: viewptr->SetCursorMode(curs_pick); break;
case ID_SELECT: viewptr->SetCursorMode(curs_cross); break;
case ID_MOVE: viewptr->SetCursorMode(curs_hand); break;
case ID_ZOOMIN: viewptr->SetCursorMode(curs_zoomin); break;
case ID_ZOOMOUT: viewptr->SetCursorMode(curs_zoomout); break;
// Control menu
case ID_START: StartOrStop(); break;
case ID_NEXT: NextGeneration(false); break;
case ID_STEP: NextGeneration(true); break;
case ID_RESET: ResetPattern(); break;
case ID_SETGEN: SetGeneration(); break;
case ID_FASTER: GoFaster(); break;
case ID_SLOWER: GoSlower(); break;
case ID_SETBASE: SetBaseStep(); break;
case ID_AUTO: ToggleAutoFit(); break;
case ID_HYPER: ToggleHyperspeed(); break;
case ID_HINFO: ToggleHashInfo(); break;
case ID_SHOW_POP: ToggleShowPopulation(); break;
case ID_RECORD: StartStopRecording(); break;
case ID_DELTIME: DeleteTimeline(); break;
case ID_CONVERT: ConvertOldRules(); break;
case ID_SETRULE: ShowRuleDialog(); break;
// View menu
case ID_FULL: ToggleFullScreen(); break;
case ID_FIT: viewptr->FitPattern(); break;
case ID_FIT_SEL: viewptr->FitSelection(); break;
case ID_MIDDLE: viewptr->ViewOrigin(); break;
case ID_RESTORE00: viewptr->RestoreOrigin(); break;
case wxID_ZOOM_IN: viewptr->ZoomIn(); break;
case wxID_ZOOM_OUT: viewptr->ZoomOut(); break;
case ID_SCALE_1: viewptr->SetPixelsPerCell(1); break;
case ID_SCALE_2: viewptr->SetPixelsPerCell(2); break;
case ID_SCALE_4: viewptr->SetPixelsPerCell(4); break;
case ID_SCALE_8: viewptr->SetPixelsPerCell(8); break;
case ID_SCALE_16: viewptr->SetPixelsPerCell(16); break;
case ID_SCALE_32: viewptr->SetPixelsPerCell(32); break;
case ID_TOOL_BAR: ToggleToolBar(); break;
case ID_LAYER_BAR: ToggleLayerBar(); break;
case ID_EDIT_BAR: ToggleEditBar(); break;
case ID_ALL_STATES: ToggleAllStates(); break;
case ID_STATUS_BAR: ToggleStatusBar(); break;
case ID_EXACT: ToggleExactNumbers(); break;
case ID_GRID: viewptr->ToggleGridLines(); break;
case ID_ICONS: viewptr->ToggleCellIcons(); break;
case ID_INVERT: viewptr->ToggleCellColors(); break;
case ID_SMARTSCALE: viewptr->ToggleSmarterScaling(); break;
case ID_TIMELINE: ToggleTimelineBar(); break;
case ID_SCROLL: ToggleScrollBars(); break;
case ID_INFO: ShowPatternInfo(); break;
// Layer menu
case ID_SAVE_OVERLAY: SaveOverlay(); break;
case ID_SHOW_OVERLAY: ToggleOverlay(); break;
case ID_DEL_OVERLAY: DeleteOverlay(); break;
case ID_ADD_LAYER: AddLayer(); break;
case ID_CLONE: CloneLayer(); break;
case ID_DUPLICATE: DuplicateLayer(); break;
case ID_DEL_LAYER: DeleteLayer(); break;
case ID_DEL_OTHERS: DeleteOtherLayers(); break;
case ID_MOVE_LAYER: MoveLayerDialog(); break;
case ID_NAME_LAYER: NameLayerDialog(); break;
case ID_SET_COLORS: SetLayerColors(); break;
case ID_SYNC_VIEW: ToggleSyncViews(); break;
case ID_SYNC_CURS: ToggleSyncCursors(); break;
case ID_STACK: ToggleStackLayers(); break;
case ID_TILE: ToggleTileLayers(); break;
// Help menu
case ID_HELP_INDEX: ShowHelp(_("Help/index.html")); break;
case ID_HELP_INTRO: ShowHelp(_("Help/intro.html")); break;
case ID_HELP_TIPS: ShowHelp(_("Help/tips.html")); break;
case ID_HELP_ALGOS: ShowHelp(_("Help/algos.html")); break;
case ID_HELP_LEXICON: ShowHelp(_("Help/Lexicon/lex.htm")); break;
case ID_HELP_ARCHIVES: ShowHelp(_("Help/archives.html")); break;
case ID_HELP_LUA: ShowHelp(_("Help/lua.html")); break;
case ID_HELP_OVERLAY: ShowHelp(_("Help/overlay.html")); break;
case ID_HELP_PYTHON: ShowHelp(_("Help/python.html")); break;
case ID_HELP_KEYBOARD: ShowHelp(SHOW_KEYBOARD_SHORTCUTS); break;
case ID_HELP_MOUSE: ShowHelp(_("Help/mouse.html")); break;
case ID_HELP_FILE: ShowHelp(_("Help/file.html")); break;
case ID_HELP_EDIT: ShowHelp(_("Help/edit.html")); break;
case ID_HELP_CONTROL: ShowHelp(_("Help/control.html")); break;
case ID_HELP_VIEW: ShowHelp(_("Help/view.html")); break;
case ID_HELP_LAYER: ShowHelp(_("Help/layer.html")); break;
case ID_HELP_HELP: ShowHelp(_("Help/help.html")); break;
case ID_HELP_REFS: ShowHelp(_("Help/refs.html")); break;
case ID_HELP_FORMATS: ShowHelp(_("Help/formats.html")); break;
case ID_HELP_BOUNDED: ShowHelp(_("Help/bounded.html")); break;
case ID_HELP_PROBLEMS: ShowHelp(_("Help/problems.html")); break;
case ID_HELP_CHANGES: ShowHelp(_("Help/changes.html")); break;
case ID_HELP_CREDITS: ShowHelp(_("Help/credits.html")); break;
case ID_HELP_BUTT: ShowHelp(wxEmptyString); break;
case wxID_ABOUT: ShowAboutBox(); break;
// Open/Run Recent submenus
case ID_CLEAR_MISSING_PATTERNS: ClearMissingPatterns(); break;
case ID_CLEAR_ALL_PATTERNS: ClearAllPatterns(); break;
case ID_CLEAR_MISSING_SCRIPTS: ClearMissingScripts(); break;
case ID_CLEAR_ALL_SCRIPTS: ClearAllScripts(); break;
default:
if ( id > ID_OPEN_RECENT && id <= ID_OPEN_RECENT + numpatterns ) {
OpenRecentPattern(id);
} else if ( id > ID_RUN_RECENT && id <= ID_RUN_RECENT + numscripts ) {
OpenRecentScript(id);
} else if ( id >= ID_ALGO0 && id <= ID_ALGOMAX ) {
int newtype = id - ID_ALGO0;
ChangeAlgorithm(newtype);
} else if ( id >= ID_LAYER0 && id <= ID_LAYERMAX ) {
SetLayer(id - ID_LAYER0);
} else {
// wxOSX app needs this to handle app menu items like "Hide Golly"
event.Skip();
}
}
UpdateUserInterface();
if (inscript) {
// update viewport, status bar, scroll bars, window title
inscript = false;
UpdatePatternAndStatus();
bigview->UpdateScrollBars();
SetWindowTitle(wxEmptyString);
inscript = true;
}
}
// -----------------------------------------------------------------------------
void MainFrame::OnSetFocus(wxFocusEvent& WXUNUSED(event))
{
// this is never called in Mac app, presumably because it doesn't
// make any sense for a wxFrame to get the keyboard focus
#ifdef __WXMSW__
// fix wxMSW problem: don't let main window get focus after being minimized
if (viewptr) viewptr->SetFocus();
#endif
}
// -----------------------------------------------------------------------------
void MainFrame::OnActivate(wxActivateEvent& event)
{
// IsActive() is not always reliable so we set infront flag
infront = event.GetActive();
if (viewptr->waitingforclick && !infront) {
// cancel paste if main window is no longer in front
viewptr->AbortPaste();
}
if (infront) {
// we must only call UpdateMenuItems when main window is being activated
// (otherwise menu problems will occur on Ubuntu when using Unity)
UpdateUserInterface();
viewptr->SetFocus(); // play safe
}
event.Skip();
}
// -----------------------------------------------------------------------------
void MainFrame::OnSize(wxSizeEvent& event)
{
#ifdef __WXMSW__
// save current location and size for use in SavePrefs if app
// is closed when window is minimized
wxRect r = GetRect();
mainx = r.x;
mainy = r.y;
mainwd = r.width;
mainht = r.height;
#endif
int wd, ht;
GetClientSize(&wd, &ht);
if (wd > 0 && ht > 0) {
// toolbarptr/statusptr/viewptr might be NULL if OnSize is called from MainFrame ctor
if (toolbarptr && showtool) {
// adjust size of tool bar
toolbarptr->SetSize(0, 0, TOOLBARWD, ht);
}
if (statusptr && showstatus) {
// adjust size of status bar
ResizeStatusBar(wd, ht);
}
if (viewptr && statusptr && ht > statusptr->statusht) {
// adjust size of viewport (and file directory if visible)
ResizeSplitWindow(wd, ht);
}
}
#ifdef __WXGTK__
// need to do default processing for menu bar and tool bar
event.Skip();
#else
wxUnusedVar(event);
#endif
}
// -----------------------------------------------------------------------------
// avoid recursive call of OpenFile
static bool inopen = false;
void MainFrame::OnOpenTimer(wxTimerEvent& WXUNUSED(event))
{
if (inopen) {
if (inscript && pass_file_events && pendingfiles.GetCount() > 0) {
// OpenFile has called RunScript so pass a pending file
// to the script after updating pendingfiles
wxString filepath = pendingfiles[0];
if (pendingfiles.GetCount() == 1) {
pendingfiles.Clear();
} else {
pendingfiles.RemoveAt(0);
}
PassFileToScript(filepath);
}
return;
}
if (pendingfiles.GetCount() > 0) {
size_t count = pendingfiles.GetCount();
if (count >= 2 && pendingfiles[count-2] == pendingfiles[count-1]) {
// avoid opening same file twice (can happen in wxMSW and wxMac)
pendingfiles.RemoveAt(count-1);
}
wxString filepath = pendingfiles[0];
// update pendingfiles before calling OpenFile
if (pendingfiles.GetCount() == 1) {
pendingfiles.Clear();
} else {
pendingfiles.RemoveAt(0);
}
// note that OnIdle will be called from OpenFile if it calls RunScript
inopen = true;
OpenFile(filepath);
inopen = false;
}
}
// -----------------------------------------------------------------------------
void MainFrame::OnIdle(wxIdleEvent& event)
{
#ifdef __WXMSW__
if (set_focus) {
set_focus = false;
// calling SetFocus once doesn't stuff up layer bar buttons
if (infront && viewptr) viewptr->SetFocus();
}
if (!editpath.IsEmpty()) {
EditFile(editpath);
editpath.Clear();
}
#else
// ensure viewport window has keyboard focus if main window is active;
// note that we can't do this on Windows because it stuffs up clicks
// in layer bar buttons
if (infront && viewptr) viewptr->SetFocus();
#endif
if (call_close) {
call_close = false;
Close(false); // false allows OnClose handler to veto close
} else {
// process any pending script/pattern files
if (pendingfiles.GetCount() > 0) {
// there are problems with calling OpenFile in OnIdle, at least on Mac OS
// (if it runs an interactive script then scroll bars don't immediately
// update the viewport, and in some cases modal dialogs can't be closed),
// so we call OpenFile from OnOpenTimer after a short delay
opentimer->Start(10, wxTIMER_ONE_SHOT);
}
}
event.Skip();
}
// -----------------------------------------------------------------------------
void MainFrame::EditFile(const wxString& filepath)
{
// prompt user if text editor hasn't been set yet
if (texteditor.IsEmpty()) {
ChooseTextEditor(this, texteditor);
if (texteditor.IsEmpty()) return;
}
// execute a command to open given file in user's preferred text editor
wxString cmd = wxString::Format(wxT("\"%s\" \"%s\""), texteditor.c_str(), filepath.c_str());
long result = wxExecute(cmd, wxEXEC_ASYNC);
#if defined(__WXMSW__)
// on Windows, wxExecute returns 0 if cmd fails
if (result == 0)
#elif defined(__WXMAC__)
// on Mac, wxExecute returns -1 if cmd succeeds (bug, or wx docs are wrong)
if (result != -1)
#elif defined(__WXGTK__)
// on Linux, wxExecute always returns a +ve number (pid?) if cmd fails OR succeeds (sheesh!)
// but if it fails an error message appears in shell window
if (result <= 0)
#endif
{
wxString msg = _("Failed to open file in your preferred text editor.\n");
msg += _("Try choosing a different editor in Preferences > File.");
Warning(msg);
}
}
// -----------------------------------------------------------------------------
#if defined(__WXMAC__) && wxCHECK_VERSION(2,9,0)
// wxMOD_CONTROL has been changed to mean Command key down (sheesh!)
#define wxMOD_CONTROL wxMOD_RAW_CONTROL
#define ControlDown RawControlDown
#endif
void MainFrame::OnTreeClick(wxMouseEvent& event)
{
// set global flag for testing in OnDirTreeSelection
edit_file = event.ControlDown() || event.RightDown();
wxGenericDirCtrl* dirctrl = NULL;
if (showfiles) dirctrl = mainptr->filectrl;
if (dirctrl) {
wxTreeCtrl* treectrl = dirctrl->GetTreeCtrl();
if (treectrl) {
// determine if an item was clicked
wxPoint pt = event.GetPosition();
int flags;
wxTreeItemId id = treectrl->HitTest(pt, flags);
if (!id.IsOk()) {
// click wasn't in any item
event.Skip();
return;
}
if (treectrl->ItemHasChildren(id)) {
// click was in a folder item
event.Skip();
return;
}
// check for click in an already selected item
if (id == treectrl->GetSelection()) {
// force a selection change so OnDirTreeSelection gets called
treectrl->Unselect();
}
treectrl->SelectItem(id);
// OnDirTreeSelection will be called -- don't call event.Skip()
}
}
}
// -----------------------------------------------------------------------------
void MainFrame::OnDirTreeSelection(wxTreeEvent& event)
{
if (viewptr == NULL) return; // ignore 1st call from MainFrame::MainFrame
wxTreeItemId id = event.GetItem();
if ( !id.IsOk() ) return;
wxGenericDirCtrl* dirctrl = NULL;
if (showfiles) dirctrl = filectrl;
if (dirctrl == NULL) return;
wxString filepath = dirctrl->GetFilePath();
if ( filepath.IsEmpty() ) {
// user clicked on a folder name
} else if (edit_file) {
// open file in text editor
#ifdef __WXMSW__
// call EditFile in later OnIdle to avoid right-click problem
editpath = filepath;
#else
EditFile(filepath);
#endif
} else {
// user clicked on a file name
#ifdef __WXMAC__
if ( !wxFileName::FileExists(filepath) ) {
// avoid wxMac bug in wxGenericDirCtrl::GetFilePath; ie. file name
// can contain "/" rather than ":" (but directory path is okay)
wxFileName fullpath(filepath);
wxString dir = fullpath.GetPath();
wxString name = fullpath.GetFullName();
wxString newpath = dir + wxT(":") + name;
if ( wxFileName::FileExists(newpath) ) filepath = newpath;
}
#endif
if ( inscript ) {
if (pass_file_events) {
PassFileToScript(filepath);
}
} else {
if (generating) {
command_pending = true;
if ( IsScriptFile(filepath) ) {
AddRecentScript(filepath);
cmdevent.SetId(ID_RUN_RECENT + 1);
} else {
AddRecentPattern(filepath);
cmdevent.SetId(ID_OPEN_RECENT + 1);
}
Stop();
} else {
// load pattern or run script;
// call OpenFile in later OnIdle -- this prevents the main window
// moving in front of the help window if a script calls help(...)
pendingfiles.Add(filepath);
}
}
}
#ifdef __WXMSW__
// call SetFocus in next OnIdle
set_focus = true;
#else
viewptr->SetFocus();
#endif
}
// -----------------------------------------------------------------------------
void MainFrame::OnSashDblClick(wxSplitterEvent& WXUNUSED(event))
{
// splitwin's sash was double-clicked
ToggleShowFiles();
UpdateMenuItems();
UpdateToolBar();
}
// -----------------------------------------------------------------------------
void MainFrame::OnScroll(wxScrollEvent& event)
{
WXTYPE type = event.GetEventType();
WXTYPE newtype = type;
// build equivalent wxScrollWinEvent and post it to bigview so that
// PatternView::OnScroll gets called and hbar/vbar are updated
if (type == wxEVT_SCROLL_LINEUP) newtype = wxEVT_SCROLLWIN_LINEUP;
if (type == wxEVT_SCROLL_LINEDOWN) newtype = wxEVT_SCROLLWIN_LINEDOWN;
if (type == wxEVT_SCROLL_PAGEUP) newtype = wxEVT_SCROLLWIN_PAGEUP;
if (type == wxEVT_SCROLL_PAGEDOWN) newtype = wxEVT_SCROLLWIN_PAGEDOWN;
if (type == wxEVT_SCROLL_THUMBTRACK) newtype = wxEVT_SCROLLWIN_THUMBTRACK;
if (type == wxEVT_SCROLL_THUMBRELEASE) newtype = wxEVT_SCROLLWIN_THUMBRELEASE;
wxScrollWinEvent newevt(newtype, event.GetPosition(), event.GetOrientation());
wxPostEvent(bigview->GetEventHandler(), newevt);
}
// -----------------------------------------------------------------------------
bool MainFrame::SaveCurrentLayer()
{
if (currlayer->algo->isEmpty()) return true; // no need to save empty universe
wxString query;
if (numlayers > 1) {
// make it clear which layer we're asking about
query.Printf(_("Save the changes to layer %d: \"%s\"?"),
currindex, currlayer->currname.c_str());
} else {
query.Printf(_("Save the changes to \"%s\"?"), currlayer->currname.c_str());
}
int answer = SaveChanges(query, _("If you don't save, your changes will be lost."));
switch (answer) {
case 2: {
bool result = SavePattern(); // true only if pattern was saved
if (inscript && !result) {
PassKeyToScript(WXK_ESCAPE); // abort script
}
return result;
}
case 1: {
// don't save changes (but continue)
return true;
}
default: {
// answer == 0 (ie. user selected Cancel)
if (inscript) {
PassKeyToScript(WXK_ESCAPE); // abort script
}
return false;
}
}
}
// -----------------------------------------------------------------------------
void MainFrame::OnClose(wxCloseEvent& event)
{
if (event.CanVeto()) {
if (inscript || generating) Stop();
// if insideYield is true then we might have been called from
// StepPattern in OnGenTimer, so we need to call OnClose again via
// OnIdle until insideYield is false and OnGenTimer has finished
if (insideYield) {
call_close = true;
event.Veto();
return;
}
// we can cancel the close event if necessary
if (viewptr->waitingforclick) {
event.Veto();
return;
}
if (askonquit) {
// keep track of which unique clones have been seen;
// we add 1 below to allow for cloneseen[0] (always false)
const int maxseen = MAX_LAYERS/2 + 1;
bool cloneseen[maxseen];
for (int i = 0; i < maxseen; i++) cloneseen[i] = false;
// for each dirty layer, ask user if they want to save changes
int oldindex = currindex;
for (int i = 0; i < numlayers; i++) {
// only ask once for each unique clone (cloneid == 0 for non-clone)
int cid = GetLayer(i)->cloneid;
if (!cloneseen[cid]) {
if (cid > 0) cloneseen[cid] = true;
if (GetLayer(i)->dirty) {
if (i != currindex) SetLayer(i);
if (!SaveCurrentLayer()) {
// user cancelled "save changes" dialog so restore layer
SetLayer(oldindex);
UpdateUserInterface();
event.Veto();
return;
}
}
}
}
}
}
if (GetHelpFrame()) GetHelpFrame()->Close(true);
if (GetInfoFrame()) GetInfoFrame()->Close(true);
if (splitwin->IsSplit()) dirwinwd = splitwin->GetSashPosition();
// if script is running or pattern is generating then CanVeto was false
// (probably due to user logging out or shutting down system)
// and we need to call exit below
bool callexit = inscript || generating;
// abort any running script and tidy up; also restores current directory
// to location of Golly app so prefs file will be saved in correct place
FinishScripting();
// save main window location and other user preferences
SavePrefs();
// delete any temporary files
if (wxFileExists(luafile)) wxRemoveFile(luafile);
if (wxFileExists(perlfile)) wxRemoveFile(perlfile);
if (wxFileExists(pythonfile)) wxRemoveFile(pythonfile);
for (int i = 0; i < numlayers; i++) {
Layer* layer = GetLayer(i);
if (wxFileExists(layer->tempstart)) wxRemoveFile(layer->tempstart);
// clear all undo/redo history for this layer
layer->undoredo->ClearUndoRedo();
}
if (wxFileName::DirExists(tempdir)) {
// delete all files in tempdir (we assume it has no subdirs)
wxDir* dir = new wxDir(tempdir);
wxArrayString files;
wxString filename;
bool more = dir->GetFirst(&filename);
while (more) {
files.Add(tempdir + filename);
more = dir->GetNext(&filename);
}
// delete wxDir object now otherwise Rmdir below will fail on Windows
delete dir;
for (size_t n = 0; n < files.GetCount(); n++) {
wxRemoveFile(files[n]);
}
// delete the (hopefully) empty tempdir
if (!wxFileName::Rmdir(tempdir)) {
Warning(_("Could not delete temporary directory:\n") + tempdir);
}
}
// allow clipboard data to persist after app exits
// (needed on Windows, not needed on Mac, doesn't work on Linux -- sheesh!)
if (wxTheClipboard->Open()) {
wxTheClipboard->Flush();
wxTheClipboard->Close();
}
// avoid possible error message or seg fault
if (callexit) exit(0);
Destroy();
#ifdef __WXGTK__
// avoid seg fault on Linux (only happens if ctrl-Q is used to quit)
exit(0);
#endif
// deallocate things (usually no need) to help find any real memory leaks
if (debuglevel == 666) {
wxGetApp().Yield(); // (because Destroy() doesn't act immediately)
if (numlayers > 1) DeleteOtherLayers();
delete currlayer;
delete stopwatch;
DeleteAlgorithms();
FreeCursors();
FreeDefaultColors();
}
}
// -----------------------------------------------------------------------------
void MainFrame::QuitApp()
{
Close(false); // false allows OnClose handler to veto close
}
// -----------------------------------------------------------------------------
#if wxUSE_DRAG_AND_DROP
// derive a simple class for handling dropped files
class DnDFile : public wxFileDropTarget
{
public:
DnDFile() {}
virtual bool OnDropFiles(wxCoord x, wxCoord y, const wxArrayString& filenames);
};
bool DnDFile::OnDropFiles(wxCoord, wxCoord, const wxArrayString& filenames)
{
// bring app to front
#ifdef __WXMAC__
ProcessSerialNumber process;
if ( GetCurrentProcess(&process) == noErr )
SetFrontProcess(&process);
#endif
#ifdef __WXMSW__
SetForegroundWindow( (HWND)mainptr->GetHandle() );
#endif
mainptr->Raise();
size_t numfiles = filenames.GetCount();
for ( size_t n = 0; n < numfiles; n++ ) {
// safer to call OpenFile via OnIdle
mainptr->pendingfiles.Add(filenames[n]);
}
return true;
}
wxDropTarget* MainFrame::NewDropTarget()
{
return new DnDFile();
}
#endif // wxUSE_DRAG_AND_DROP
// -----------------------------------------------------------------------------
void MainFrame::SetRandomFillPercentage()
{
// update Random Fill menu item to show randomfill value
wxMenuBar* mbar = GetMenuBar();
if (mbar) {
wxString randlabel;
randlabel.Printf(_("Random Fill (%d%c)"), randomfill, '%');
randlabel += GetAccelerator(DO_RANDFILL);
mbar->SetLabel(ID_RANDOM, randlabel);
}
}
// -----------------------------------------------------------------------------
void MainFrame::UpdateLayerItem(int index)
{
// update name in given layer's menu item
Layer* layer = GetLayer(index);
wxMenuBar* mbar = GetMenuBar();
if (mbar) {
wxString label = wxEmptyString;
// we no longer show index in front of name
// label.Printf(_("%d: "), index);
// display asterisk if pattern has been modified
if (layer->dirty) label += wxT("*");
int cid = layer->cloneid;
while (cid > 0) {
// display one or more "=" chars to indicate this is a cloned layer
label += wxT("=");
cid--;
}
if (layer->currname.IsEmpty()) {
// this should never happen, but play safe
label += wxT("UNKNOWN");
} else {
label += layer->currname;
}
// duplicate any ampersands so they appear
label.Replace(wxT("&"), wxT("&&"));
mbar->SetLabel(ID_LAYER0 + index, label);
// also update name in corresponding layer button
UpdateLayerButton(index, label);
}
}
// -----------------------------------------------------------------------------
void MainFrame::AppendLayerItem()
{
wxMenuBar* mbar = GetMenuBar();
if (mbar) {
wxMenu* layermenu = mbar->GetMenu( mbar->FindMenu(_("Layer")) );
if (layermenu) {
// no point setting the item name here because UpdateLayerItem
// will be called very soon
layermenu->AppendCheckItem(ID_LAYER0 + numlayers - 1, _("foo"));
} else {
Warning(_("Could not find Layer menu!"));
}
}
}
// -----------------------------------------------------------------------------
void MainFrame::RemoveLayerItem()
{
wxMenuBar* mbar = GetMenuBar();
if (mbar) {
wxMenu* layermenu = mbar->GetMenu( mbar->FindMenu(_("Layer")) );
if (layermenu) {
layermenu->Delete(ID_LAYER0 + numlayers);
} else {
Warning(_("Could not find Layer menu!"));
}
}
}
// -----------------------------------------------------------------------------
void MainFrame::CreateMenus()
{
wxMenu* fileMenu = new wxMenu();
wxMenu* editMenu = new wxMenu();
wxMenu* controlMenu = new wxMenu();
wxMenu* viewMenu = new wxMenu();
wxMenu* layerMenu = new wxMenu();
wxMenu* helpMenu = new wxMenu();
// create submenus
wxMenu* plocSubMenu = new wxMenu();
wxMenu* pmodeSubMenu = new wxMenu();
wxMenu* cmodeSubMenu = new wxMenu();
wxMenu* scaleSubMenu = new wxMenu();
plocSubMenu->AppendCheckItem(ID_PL_TL, _("Top Left"));
plocSubMenu->AppendCheckItem(ID_PL_TR, _("Top Right"));
plocSubMenu->AppendCheckItem(ID_PL_BR, _("Bottom Right"));
plocSubMenu->AppendCheckItem(ID_PL_BL, _("Bottom Left"));
plocSubMenu->AppendCheckItem(ID_PL_MID, _("Middle"));
pmodeSubMenu->AppendCheckItem(ID_PM_AND, _("And"));
pmodeSubMenu->AppendCheckItem(ID_PM_COPY, _("Copy"));
pmodeSubMenu->AppendCheckItem(ID_PM_OR, _("Or"));
pmodeSubMenu->AppendCheckItem(ID_PM_XOR, _("Xor"));
cmodeSubMenu->AppendCheckItem(ID_DRAW, _("Draw") + GetAccelerator(DO_CURSDRAW));
cmodeSubMenu->AppendCheckItem(ID_PICK, _("Pick") + GetAccelerator(DO_CURSPICK));
cmodeSubMenu->AppendCheckItem(ID_SELECT, _("Select") + GetAccelerator(DO_CURSSEL));
cmodeSubMenu->AppendCheckItem(ID_MOVE, _("Move") + GetAccelerator(DO_CURSMOVE));
cmodeSubMenu->AppendCheckItem(ID_ZOOMIN, _("Zoom In") + GetAccelerator(DO_CURSIN));
cmodeSubMenu->AppendCheckItem(ID_ZOOMOUT, _("Zoom Out") + GetAccelerator(DO_CURSOUT));
scaleSubMenu->AppendCheckItem(ID_SCALE_1, _("1:1") + GetAccelerator(DO_SCALE1));
scaleSubMenu->AppendCheckItem(ID_SCALE_2, _("1:2") + GetAccelerator(DO_SCALE2));
scaleSubMenu->AppendCheckItem(ID_SCALE_4, _("1:4") + GetAccelerator(DO_SCALE4));
scaleSubMenu->AppendCheckItem(ID_SCALE_8, _("1:8") + GetAccelerator(DO_SCALE8));
scaleSubMenu->AppendCheckItem(ID_SCALE_16, _("1:16") + GetAccelerator(DO_SCALE16));
scaleSubMenu->AppendCheckItem(ID_SCALE_32, _("1:32") + GetAccelerator(DO_SCALE32));
fileMenu->Append(wxID_NEW, _("New Pattern") + GetAccelerator(DO_NEWPATT));
fileMenu->AppendSeparator();
fileMenu->Append(wxID_OPEN, _("Open Pattern...") + GetAccelerator(DO_OPENPATT));
fileMenu->Append(ID_OPEN_CLIP, _("Open Clipboard") + GetAccelerator(DO_OPENCLIP));
fileMenu->Append(ID_OPEN_RECENT, _("Open Recent"), patternSubMenu);
fileMenu->AppendSeparator();
fileMenu->Append(wxID_SAVE, _("Save Pattern...") + GetAccelerator(DO_SAVE));
fileMenu->AppendCheckItem(ID_SAVE_XRLE, _("Save Extended RLE") + GetAccelerator(DO_SAVEXRLE));
fileMenu->AppendSeparator();
fileMenu->Append(ID_RUN_SCRIPT, _("Run Script...") + GetAccelerator(DO_RUNSCRIPT));
fileMenu->Append(ID_RUN_CLIP, _("Run Clipboard") + GetAccelerator(DO_RUNCLIP));
fileMenu->Append(ID_RUN_RECENT, _("Run Recent"), scriptSubMenu);
fileMenu->AppendSeparator();
fileMenu->AppendCheckItem(ID_SHOW_FILES, _("Show Files") + GetAccelerator(DO_SHOWFILES));
fileMenu->Append(ID_FILE_DIR, _("Set File Folder...") + GetAccelerator(DO_FILEDIR));
#if !defined(__WXOSX_COCOA__)
fileMenu->AppendSeparator();
#endif
// on the Mac the wxID_PREFERENCES item is moved to the app menu
fileMenu->Append(wxID_PREFERENCES, _("Preferences...") + GetAccelerator(DO_PREFS));
#if !defined(__WXOSX_COCOA__)
fileMenu->AppendSeparator();
#endif
// on the Mac the wxID_EXIT item is moved to the app menu and the app name is appended to "Quit "
fileMenu->Append(wxID_EXIT, _("Quit") + GetAccelerator(DO_QUIT));
editMenu->Append(ID_UNDO, _("Undo") + GetAccelerator(DO_UNDO));
editMenu->Append(ID_REDO, _("Redo") + GetAccelerator(DO_REDO));
editMenu->AppendCheckItem(ID_NO_UNDO, _("Disable Undo/Redo") + GetAccelerator(DO_DISABLE));
editMenu->AppendSeparator();
editMenu->Append(ID_CUT, _("Cut") + GetAccelerator(DO_CUT));
editMenu->Append(ID_COPY, _("Copy") + GetAccelerator(DO_COPY));
editMenu->Append(ID_CLEAR, _("Clear") + GetAccelerator(DO_CLEAR));
editMenu->Append(ID_OUTSIDE, _("Clear Outside") + GetAccelerator(DO_CLEAROUT));
editMenu->AppendSeparator();
editMenu->Append(ID_PASTE, _("Paste") + GetAccelerator(DO_PASTE));
editMenu->Append(ID_PMODE, _("Paste Mode"), pmodeSubMenu);
editMenu->Append(ID_PLOCATION, _("Paste Location"), plocSubMenu);
editMenu->Append(ID_PASTE_SEL, _("Paste to Selection") + GetAccelerator(DO_PASTESEL));
editMenu->AppendSeparator();
editMenu->Append(ID_SELECTALL, _("Select All") + GetAccelerator(DO_SELALL));
editMenu->Append(ID_REMOVE, _("Remove Selection") + GetAccelerator(DO_REMOVESEL));
editMenu->Append(ID_SHRINK, _("Shrink Selection") + GetAccelerator(DO_SHRINK));
// full label will be set later by SetRandomFillPercentage
editMenu->Append(ID_RANDOM, _("Random Fill") + GetAccelerator(DO_RANDFILL));
editMenu->Append(ID_FLIPTB, _("Flip Top-Bottom") + GetAccelerator(DO_FLIPTB));
editMenu->Append(ID_FLIPLR, _("Flip Left-Right") + GetAccelerator(DO_FLIPLR));
editMenu->Append(ID_ROTATEC, _("Rotate Clockwise") + GetAccelerator(DO_ROTATECW));
editMenu->Append(ID_ROTATEA, _("Rotate Anticlockwise") + GetAccelerator(DO_ROTATEACW));
editMenu->AppendSeparator();
editMenu->Append(ID_CMODE, _("Cursor Mode"), cmodeSubMenu);
controlMenu->Append(ID_START, _("Start Generating") + GetAccelerator(DO_STARTSTOP));
controlMenu->Append(ID_NEXT, _("Next Generation") + GetAccelerator(DO_NEXTGEN));
controlMenu->Append(ID_STEP, _("Next Step") + GetAccelerator(DO_NEXTSTEP));
controlMenu->AppendSeparator();
controlMenu->Append(ID_RESET, _("Reset") + GetAccelerator(DO_RESET));
controlMenu->Append(ID_SETGEN, _("Set Generation...") + GetAccelerator(DO_SETGEN));
controlMenu->AppendSeparator();
controlMenu->Append(ID_FASTER, _("Faster") + GetAccelerator(DO_FASTER));
controlMenu->Append(ID_SLOWER, _("Slower") + GetAccelerator(DO_SLOWER));
controlMenu->Append(ID_SETBASE, _("Set Base Step...") + GetAccelerator(DO_SETBASE));
controlMenu->AppendSeparator();
controlMenu->AppendCheckItem(ID_AUTO, _("Auto Fit") + GetAccelerator(DO_AUTOFIT));
controlMenu->AppendCheckItem(ID_HYPER, _("Hyperspeed") + GetAccelerator(DO_HYPER));
controlMenu->AppendCheckItem(ID_HINFO, _("Show Hash Info") + GetAccelerator(DO_HASHINFO));
controlMenu->AppendCheckItem(ID_SHOW_POP, _("Show Population") + GetAccelerator(DO_SHOWPOP));
controlMenu->AppendSeparator();
controlMenu->Append(ID_RECORD, _("Start Recording") + GetAccelerator(DO_RECORD));
controlMenu->Append(ID_DELTIME, _("Delete Timeline") + GetAccelerator(DO_DELTIME));
controlMenu->AppendSeparator();
controlMenu->Append(ID_CONVERT, _("Convert Old Rules")); // rarely used, so no accelerator
controlMenu->AppendSeparator();
controlMenu->Append(ID_SETALGO, _("Set Algorithm"), algomenu);
controlMenu->Append(ID_SETRULE, _("Set Rule...") + GetAccelerator(DO_SETRULE));
viewMenu->Append(ID_FULL, _("Full Screen") + GetAccelerator(DO_FULLSCREEN));
viewMenu->AppendSeparator();
viewMenu->Append(ID_FIT, _("Fit Pattern") + GetAccelerator(DO_FIT));
viewMenu->Append(ID_FIT_SEL, _("Fit Selection") + GetAccelerator(DO_FITSEL));
viewMenu->Append(ID_MIDDLE, _("Middle") + GetAccelerator(DO_MIDDLE));
viewMenu->Append(ID_RESTORE00, _("Restore Origin") + GetAccelerator(DO_RESTORE00));
viewMenu->AppendSeparator();
viewMenu->Append(wxID_ZOOM_IN, _("Zoom In") + GetAccelerator(DO_ZOOMIN));
viewMenu->Append(wxID_ZOOM_OUT, _("Zoom Out") + GetAccelerator(DO_ZOOMOUT));
viewMenu->Append(ID_SET_SCALE, _("Set Scale"), scaleSubMenu);
viewMenu->AppendSeparator();
viewMenu->AppendCheckItem(ID_TOOL_BAR, _("Show Tool Bar") + GetAccelerator(DO_SHOWTOOL));
viewMenu->AppendCheckItem(ID_LAYER_BAR, _("Show Layer Bar") + GetAccelerator(DO_SHOWLAYER));
viewMenu->AppendCheckItem(ID_EDIT_BAR, _("Show Edit Bar") + GetAccelerator(DO_SHOWEDIT));
viewMenu->AppendCheckItem(ID_ALL_STATES, _("Show All States") + GetAccelerator(DO_SHOWSTATES));
viewMenu->AppendCheckItem(ID_STATUS_BAR, _("Show Status Bar") + GetAccelerator(DO_SHOWSTATUS));
viewMenu->AppendCheckItem(ID_EXACT, _("Show Exact Numbers") + GetAccelerator(DO_SHOWEXACT));
viewMenu->AppendCheckItem(ID_GRID, _("Show Grid Lines") + GetAccelerator(DO_SHOWGRID));
viewMenu->AppendCheckItem(ID_ICONS, _("Show Cell Icons") + GetAccelerator(DO_SHOWICONS));
viewMenu->AppendCheckItem(ID_INVERT, _("Invert Colors") + GetAccelerator(DO_INVERT));
viewMenu->AppendCheckItem(ID_SMARTSCALE, _("Smarter Scaling") + GetAccelerator(DO_SMARTSCALE));
viewMenu->AppendCheckItem(ID_TIMELINE, _("Show Timeline") + GetAccelerator(DO_SHOWTIME));
viewMenu->AppendCheckItem(ID_SCROLL, _("Show Scroll Bars") + GetAccelerator(DO_SHOWSCROLL));
viewMenu->AppendSeparator();
viewMenu->Append(ID_INFO, _("Pattern Info") + GetAccelerator(DO_INFO));
layerMenu->Append(ID_SAVE_OVERLAY, _("Save Overlay...") + GetAccelerator(DO_SAVEOVERLAY));
layerMenu->AppendCheckItem(ID_SHOW_OVERLAY, _("Show Overlay") + GetAccelerator(DO_SHOWOVERLAY));
layerMenu->Append(ID_DEL_OVERLAY, _("Delete Overlay") + GetAccelerator(DO_DELOVERLAY));
layerMenu->AppendSeparator();
layerMenu->Append(ID_ADD_LAYER, _("Add Layer") + GetAccelerator(DO_ADD));
layerMenu->Append(ID_CLONE, _("Clone Layer") + GetAccelerator(DO_CLONE));
layerMenu->Append(ID_DUPLICATE, _("Duplicate Layer") + GetAccelerator(DO_DUPLICATE));
layerMenu->AppendSeparator();
layerMenu->Append(ID_DEL_LAYER, _("Delete Layer") + GetAccelerator(DO_DELETE));
layerMenu->Append(ID_DEL_OTHERS, _("Delete Other Layers") + GetAccelerator(DO_DELOTHERS));
layerMenu->AppendSeparator();
layerMenu->Append(ID_MOVE_LAYER, _("Move Layer...") + GetAccelerator(DO_MOVELAYER));
layerMenu->Append(ID_NAME_LAYER, _("Name Layer...") + GetAccelerator(DO_NAMELAYER));
layerMenu->Append(ID_SET_COLORS, _("Set Layer Colors...") + GetAccelerator(DO_SETCOLORS));
layerMenu->AppendSeparator();
layerMenu->AppendCheckItem(ID_SYNC_VIEW, _("Synchronize Views") + GetAccelerator(DO_SYNCVIEWS));
layerMenu->AppendCheckItem(ID_SYNC_CURS, _("Synchronize Cursors") + GetAccelerator(DO_SYNCCURS));
layerMenu->AppendSeparator();
layerMenu->AppendCheckItem(ID_STACK, _("Stack Layers") + GetAccelerator(DO_STACK));
layerMenu->AppendCheckItem(ID_TILE, _("Tile Layers") + GetAccelerator(DO_TILE));
layerMenu->AppendSeparator();
layerMenu->AppendCheckItem(ID_LAYER0, _("0"));
// UpdateLayerItem will soon change the above item name
helpMenu->Append(ID_HELP_INDEX, _("Contents"));
helpMenu->Append(ID_HELP_INTRO, _("Introduction"));
helpMenu->Append(ID_HELP_TIPS, _("Hints and Tips"));
helpMenu->Append(ID_HELP_ALGOS, _("Algorithms"));
helpMenu->Append(ID_HELP_LEXICON, _("Life Lexicon"));
helpMenu->Append(ID_HELP_ARCHIVES, _("Online Archives"));
helpMenu->AppendSeparator();
helpMenu->Append(ID_HELP_LUA, _("Lua Scripting"));
helpMenu->Append(ID_HELP_OVERLAY, _("Overlay"));
helpMenu->Append(ID_HELP_PYTHON, _("Python Scripting"));
helpMenu->AppendSeparator();
helpMenu->Append(ID_HELP_KEYBOARD, _("Keyboard Shortcuts"));
helpMenu->Append(ID_HELP_MOUSE, _("Mouse Shortcuts"));
helpMenu->AppendSeparator();
helpMenu->Append(ID_HELP_FILE, _("File Menu"));
helpMenu->Append(ID_HELP_EDIT, _("Edit Menu"));
helpMenu->Append(ID_HELP_CONTROL, _("Control Menu"));
helpMenu->Append(ID_HELP_VIEW, _("View Menu"));
helpMenu->Append(ID_HELP_LAYER, _("Layer Menu"));
helpMenu->Append(ID_HELP_HELP, _("Help Menu"));
helpMenu->AppendSeparator();
helpMenu->Append(ID_HELP_REFS, _("References"));
helpMenu->Append(ID_HELP_FORMATS, _("File Formats"));
helpMenu->Append(ID_HELP_BOUNDED, _("Bounded Grids"));
helpMenu->Append(ID_HELP_PROBLEMS, _("Known Problems"));
helpMenu->Append(ID_HELP_CHANGES, _("Changes"));
helpMenu->Append(ID_HELP_CREDITS, _("Credits"));
#ifndef __WXMAC__
helpMenu->AppendSeparator();
#endif
// on the Mac the wxID_ABOUT item gets moved to the app menu
helpMenu->Append(wxID_ABOUT, _("About Golly") + GetAccelerator(DO_ABOUT));
// create the menu bar and append menus;
// avoid using "&" in menu names because it prevents using keyboard shortcuts
// like Alt+L on Linux
wxMenuBar* menuBar = new wxMenuBar();
menuBar->Append(fileMenu, _("File"));
menuBar->Append(editMenu, _("Edit"));
menuBar->Append(controlMenu, _("Control"));
menuBar->Append(viewMenu, _("View"));
menuBar->Append(layerMenu, _("Layer"));
#ifdef __WXMAC__
// wxMac bug: need the "&" otherwise we get an extra Help menu
menuBar->Append(helpMenu, _("&Help"));
#else
menuBar->Append(helpMenu, _("Help"));
#endif
#ifdef __WXMAC__
// prevent Window menu being added automatically by wxMac 2.6.1+
menuBar->SetAutoWindowMenu(false);
#endif
// attach menu bar to the frame
SetMenuBar(menuBar);
}
// -----------------------------------------------------------------------------
void MainFrame::UpdateMenuAccelerators()
{
// keyboard shortcuts have changed, so update all menu item accelerators
wxMenuBar* mbar = GetMenuBar();
if (mbar) {
// wxMac bug: these app menu items aren't updated (but user isn't likely
// to change them so don't bother trying to fix the bug)
SetAccelerator(mbar, wxID_ABOUT, DO_ABOUT);
SetAccelerator(mbar, wxID_PREFERENCES, DO_PREFS);
SetAccelerator(mbar, wxID_EXIT, DO_QUIT);
SetAccelerator(mbar, ID_DRAW, DO_CURSDRAW);
SetAccelerator(mbar, ID_PICK, DO_CURSPICK);
SetAccelerator(mbar, ID_SELECT, DO_CURSSEL);
SetAccelerator(mbar, ID_MOVE, DO_CURSMOVE);
SetAccelerator(mbar, ID_ZOOMIN, DO_CURSIN);
SetAccelerator(mbar, ID_ZOOMOUT, DO_CURSOUT);
SetAccelerator(mbar, ID_SCALE_1, DO_SCALE1);
SetAccelerator(mbar, ID_SCALE_2, DO_SCALE2);
SetAccelerator(mbar, ID_SCALE_4, DO_SCALE4);
SetAccelerator(mbar, ID_SCALE_8, DO_SCALE8);
SetAccelerator(mbar, ID_SCALE_16, DO_SCALE16);
SetAccelerator(mbar, ID_SCALE_32, DO_SCALE32);
SetAccelerator(mbar, wxID_NEW, DO_NEWPATT);
SetAccelerator(mbar, wxID_OPEN, DO_OPENPATT);
SetAccelerator(mbar, ID_OPEN_CLIP, DO_OPENCLIP);
SetAccelerator(mbar, wxID_SAVE, DO_SAVE);
SetAccelerator(mbar, ID_SAVE_XRLE, DO_SAVEXRLE);
SetAccelerator(mbar, ID_RUN_SCRIPT, DO_RUNSCRIPT);
SetAccelerator(mbar, ID_RUN_CLIP, DO_RUNCLIP);
SetAccelerator(mbar, ID_SHOW_FILES, DO_SHOWFILES);
SetAccelerator(mbar, ID_FILE_DIR, DO_FILEDIR);
SetAccelerator(mbar, ID_UNDO, DO_UNDO);
SetAccelerator(mbar, ID_REDO, DO_REDO);
SetAccelerator(mbar, ID_NO_UNDO, DO_DISABLE);
SetAccelerator(mbar, ID_CUT, DO_CUT);
SetAccelerator(mbar, ID_COPY, DO_COPY);
SetAccelerator(mbar, ID_CLEAR, DO_CLEAR);
SetAccelerator(mbar, ID_OUTSIDE, DO_CLEAROUT);
SetAccelerator(mbar, ID_PASTE, DO_PASTE);
SetAccelerator(mbar, ID_PASTE_SEL, DO_PASTESEL);
SetAccelerator(mbar, ID_SELECTALL, DO_SELALL);
SetAccelerator(mbar, ID_REMOVE, DO_REMOVESEL);
SetAccelerator(mbar, ID_SHRINK, DO_SHRINK);
SetAccelerator(mbar, ID_RANDOM, DO_RANDFILL);
SetAccelerator(mbar, ID_FLIPTB, DO_FLIPTB);
SetAccelerator(mbar, ID_FLIPLR, DO_FLIPLR);
SetAccelerator(mbar, ID_ROTATEC, DO_ROTATECW);
SetAccelerator(mbar, ID_ROTATEA, DO_ROTATEACW);
SetAccelerator(mbar, ID_START, DO_STARTSTOP);
SetAccelerator(mbar, ID_NEXT, DO_NEXTGEN);
SetAccelerator(mbar, ID_STEP, DO_NEXTSTEP);
SetAccelerator(mbar, ID_RESET, DO_RESET);
SetAccelerator(mbar, ID_SETGEN, DO_SETGEN);
SetAccelerator(mbar, ID_FASTER, DO_FASTER);
SetAccelerator(mbar, ID_SLOWER, DO_SLOWER);
SetAccelerator(mbar, ID_SETBASE, DO_SETBASE);
SetAccelerator(mbar, ID_AUTO, DO_AUTOFIT);
SetAccelerator(mbar, ID_HYPER, DO_HYPER);
SetAccelerator(mbar, ID_HINFO, DO_HASHINFO);
SetAccelerator(mbar, ID_SHOW_POP, DO_SHOWPOP);
SetAccelerator(mbar, ID_RECORD, DO_RECORD);
SetAccelerator(mbar, ID_DELTIME, DO_DELTIME);
SetAccelerator(mbar, ID_SETRULE, DO_SETRULE);
SetAccelerator(mbar, ID_FULL, DO_FULLSCREEN);
SetAccelerator(mbar, ID_FIT, DO_FIT);
SetAccelerator(mbar, ID_FIT_SEL, DO_FITSEL);
SetAccelerator(mbar, ID_MIDDLE, DO_MIDDLE);
SetAccelerator(mbar, ID_RESTORE00, DO_RESTORE00);
SetAccelerator(mbar, wxID_ZOOM_IN, DO_ZOOMIN);
SetAccelerator(mbar, wxID_ZOOM_OUT, DO_ZOOMOUT);
SetAccelerator(mbar, ID_TOOL_BAR, DO_SHOWTOOL);
SetAccelerator(mbar, ID_LAYER_BAR, DO_SHOWLAYER);
SetAccelerator(mbar, ID_EDIT_BAR, DO_SHOWEDIT);
SetAccelerator(mbar, ID_ALL_STATES, DO_SHOWSTATES);
SetAccelerator(mbar, ID_STATUS_BAR, DO_SHOWSTATUS);
SetAccelerator(mbar, ID_EXACT, DO_SHOWEXACT);
SetAccelerator(mbar, ID_GRID, DO_SHOWGRID);
SetAccelerator(mbar, ID_ICONS, DO_SHOWICONS);
SetAccelerator(mbar, ID_INVERT, DO_INVERT);
SetAccelerator(mbar, ID_SMARTSCALE, DO_SMARTSCALE);
SetAccelerator(mbar, ID_TIMELINE, DO_SHOWTIME);
SetAccelerator(mbar, ID_SCROLL, DO_SHOWSCROLL);
SetAccelerator(mbar, ID_INFO, DO_INFO);
SetAccelerator(mbar, ID_SAVE_OVERLAY, DO_SAVEOVERLAY);
SetAccelerator(mbar, ID_SHOW_OVERLAY, DO_SHOWOVERLAY);
SetAccelerator(mbar, ID_DEL_OVERLAY, DO_DELOVERLAY);
SetAccelerator(mbar, ID_ADD_LAYER, DO_ADD);
SetAccelerator(mbar, ID_CLONE, DO_CLONE);
SetAccelerator(mbar, ID_DUPLICATE, DO_DUPLICATE);
SetAccelerator(mbar, ID_DEL_LAYER, DO_DELETE);
SetAccelerator(mbar, ID_DEL_OTHERS, DO_DELOTHERS);
SetAccelerator(mbar, ID_MOVE_LAYER, DO_MOVELAYER);
SetAccelerator(mbar, ID_NAME_LAYER, DO_NAMELAYER);
SetAccelerator(mbar, ID_SET_COLORS, DO_SETCOLORS);
SetAccelerator(mbar, ID_SYNC_VIEW, DO_SYNCVIEWS);
SetAccelerator(mbar, ID_SYNC_CURS, DO_SYNCCURS);
SetAccelerator(mbar, ID_STACK, DO_STACK);
SetAccelerator(mbar, ID_TILE, DO_TILE);
}
}
// -----------------------------------------------------------------------------
void MainFrame::CreateDirControl()
{
filectrl = new wxGenericDirCtrl(splitwin, wxID_ANY, wxEmptyString,
wxDefaultPosition, wxDefaultSize,
#ifdef __WXMSW__
// speed up a bit
wxDIRCTRL_DIR_ONLY | wxNO_BORDER,
#else
wxNO_BORDER,
#endif
wxEmptyString // see all file types
);
#ifdef __WXMSW__
// now remove wxDIRCTRL_DIR_ONLY so we see files
filectrl->SetWindowStyle(wxNO_BORDER);
#endif
#if defined(__WXGTK__)
// make sure background is white when using KDE's GTK theme
#if wxCHECK_VERSION(2,9,0)
filectrl->GetTreeCtrl()->SetBackgroundStyle(wxBG_STYLE_ERASE);
#else
filectrl->GetTreeCtrl()->SetBackgroundStyle(wxBG_STYLE_COLOUR);
#endif
filectrl->GetTreeCtrl()->SetBackgroundColour(*wxWHITE);
// reduce indent a bit
filectrl->GetTreeCtrl()->SetIndent(8);
#elif defined(__WXMAC__)
// reduce indent a bit more
filectrl->GetTreeCtrl()->SetIndent(6);
#else
// reduce indent a lot on Windows
filectrl->GetTreeCtrl()->SetIndent(4);
#endif
#ifdef __WXMAC__
// reduce font size (to get this to reduce line height we had to
// make a few changes to wxMac/src/generic/treectlg.cpp)
wxFont font = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT);
font.SetPointSize(12);
filectrl->GetTreeCtrl()->SetFont(font);
#endif
if ( wxFileName::DirExists(filedir) ) {
// only show filedir and its contents
SimplifyTree(filedir, filectrl->GetTreeCtrl(), filectrl->GetRootId());
}
// install event handler to detect clicking on a file
filectrl->GetTreeCtrl()->Connect(wxID_ANY, wxEVT_LEFT_DOWN, wxMouseEventHandler(MainFrame::OnTreeClick));
filectrl->GetTreeCtrl()->Connect(wxID_ANY, wxEVT_RIGHT_DOWN, wxMouseEventHandler(MainFrame::OnTreeClick));
filectrl->GetTreeCtrl()->Connect(wxID_ANY, wxEVT_LEFT_DCLICK, wxMouseEventHandler(MainFrame::OnTreeClick));
}
// -----------------------------------------------------------------------------
// create the main window
MainFrame::MainFrame()
: wxFrame(NULL, wxID_ANY, wxEmptyString, wxPoint(mainx,mainy), wxSize(mainwd,mainht))
{
wxGetApp().SetFrameIcon(this);
pendingfiles.Clear(); // no pending script/pattern files
command_pending = false; // no pending command
draw_pending = false; // no pending draw
keepmessage = false; // clear status message
generating = false; // not generating pattern
fullscreen = false; // not in full screen mode
showbanner = true; // avoid first file clearing banner message
// initialize paths to some temporary files (in datadir so no need to be hidden);
// they must be absolute paths in case they are used from a script command when the
// current directory has been changed to the location of the script file
clipfile = datadir + wxT("golly_clipboard");
luafile = datadir + wxT("golly_clip.lua");
perlfile = datadir + wxT("golly_clip.pl");
pythonfile = datadir + wxT("golly_clip.py");
// create timer for generating patterns (see OnGenTimer in wxcontrol.cpp)
gentimer = new wxTimer(this, ID_GENTIMER);
// create timer for calling OpenFile via OnIdle
opentimer = new wxTimer(this, ID_OPENTIMER);
// create a scriptable graphics layer
curroverlay = new Overlay();
CreateMenus();
CreateToolbar();
// if tool bar is visible then adjust position of other child windows
int toolwd = showtool ? TOOLBARWD : 0;
int wd, ht;
GetClientSize(&wd, &ht);
// wd or ht might be < 1 on Windows
if (wd < 1) wd = 1;
if (ht < 1) ht = 1;
// wxStatusBar can only appear at bottom of frame so we use our own
// status bar class which creates a child window at top of frame
// but to the right of the tool bar
int statht = showexact ? STATUS_EXHT : STATUS_HT;
if (!showstatus) statht = 0;
statusptr = new StatusBar(this, toolwd, 0, wd - toolwd, statht);
// create a split window with file directory in left pane
// and layer/edit/timeline bars and pattern viewport in right pane
splitwin = new wxSplitterWindow(this, wxID_ANY,
wxPoint(toolwd, statht),
wxSize(wd - toolwd, ht - statht),
#ifdef __WXMSW__
wxSP_BORDER |
#endif
wxSP_3DSASH | wxSP_NO_XP_THEME | wxSP_LIVE_UPDATE);
// create filectrl in left pane
CreateDirControl();
// create a window for right pane which contains layer/edit/timeline bars
// and pattern viewport
rightpane = new RightWindow(splitwin);
// create layer bar and initial layer
CreateLayerBar(rightpane);
AddLayer();
// create edit bar
CreateEditBar(rightpane);
// create timeline bar
CreateTimelineBar(rightpane);
// enable/disable tool tips after creating bars with buttons
#if wxUSE_TOOLTIPS
wxToolTip::Enable(showtips);
wxToolTip::SetDelay(1500); // 1.5 secs
#endif
CreateTranslucentControls(); // must be done BEFORE creating viewport
// create viewport at minimum size
int y = 0;
if (showlayer) y += LayerBarHeight();
if (showedit) y += EditBarHeight();
viewptr = new PatternView(rightpane, 0, y, 40, 40,
wxNO_BORDER |
wxWANTS_CHARS | // receive all keyboard events
wxFULL_REPAINT_ON_RESIZE);
// this is the main viewport window (tile windows have a tileindex >= 0)
viewptr->tileindex = -1;
bigview = viewptr;
// create the scroll bars
hbar = new wxScrollBar(rightpane, wxID_ANY, wxPoint(0,0), wxSize(-1, 15), wxSB_HORIZONTAL);
vbar = new wxScrollBar(rightpane, wxID_ANY, wxPoint(0,0), wxSize(15, -1), wxSB_VERTICAL);
hbar->SetMinSize(wxDefaultSize);
vbar->SetMinSize(wxDefaultSize);
if (!showscrollbars) {
// hide scroll bars
hbar->Show(false);
vbar->Show(false);
}
#if wxUSE_DRAG_AND_DROP
// let users drop files onto viewport
viewptr->SetDropTarget(new DnDFile());
#endif
// these seemingly redundant steps are needed to avoid problems on Windows
splitwin->SplitVertically(filectrl, rightpane, dirwinwd);
splitwin->SetSashPosition(dirwinwd);
splitwin->SetMinimumPaneSize(MIN_DIRWD);
splitwin->Unsplit(filectrl);
splitwin->UpdateSize();
if (showfiles) splitwin->SplitVertically(filectrl, rightpane, dirwinwd);
}
// -----------------------------------------------------------------------------
MainFrame::~MainFrame()
{
delete hbar;
delete vbar;
delete curroverlay;
delete gentimer;
delete opentimer;
DestroyDrawingData();
}
|