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
|
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Portions Copyright (C) 1998 - 2011, Julian Smart
// Portions Copyright (C) 2011 - 2014, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// drawn.cpp - wxDrawnShape
//
//////////////////////////////////////////////////////////////////////////
#include "pgAdmin3.h"
#include "ogl/ogl.h"
static wxChar *
oglCopystring (const wxChar *s)
{
if (s == NULL) s = wxEmptyString;
size_t len = wxStrlen (s) + 1;
wxChar *news = new wxChar[len];
memcpy (news, s, len * sizeof(wxChar)); // Should be the fastest
return news;
}
#include <math.h>
#if 0
static void IntToHex(unsigned int dec, wxChar *buf);
static unsigned long HexToInt(wxChar *buf);
#endif
extern wxChar *oglBuffer;
#define gyTYPE_PEN 40
#define gyTYPE_BRUSH 41
#define gyTYPE_FONT 42
/*
* Drawn object
*
*/
IMPLEMENT_DYNAMIC_CLASS(wxDrawnShape, wxRectangleShape)
wxDrawnShape::wxDrawnShape(): wxRectangleShape(100.0, 50.0)
{
m_saveToFile = TRUE;
m_currentAngle = oglDRAWN_ANGLE_0;
}
wxDrawnShape::~wxDrawnShape()
{
}
void wxDrawnShape::OnDraw(wxDC &dc)
{
// Pass pen and brush in case we have force outline
// and fill colours
if (m_shadowMode != SHADOW_NONE)
{
if (m_shadowBrush)
m_metafiles[m_currentAngle].m_fillBrush = m_shadowBrush;
m_metafiles[m_currentAngle].m_outlinePen = g_oglTransparentPen;
m_metafiles[m_currentAngle].Draw(dc, m_xpos + m_shadowOffsetX, m_ypos + m_shadowOffsetY);
}
m_metafiles[m_currentAngle].m_outlinePen = m_pen;
m_metafiles[m_currentAngle].m_fillBrush = m_brush;
m_metafiles[m_currentAngle].Draw(dc, m_xpos, m_ypos);
}
void wxDrawnShape::SetSize(double w, double h, bool WXUNUSED(recursive))
{
SetAttachmentSize(w, h);
double scaleX;
double scaleY;
if (GetWidth() == 0.0)
scaleX = 1.0;
else scaleX = w / GetWidth();
if (GetHeight() == 0.0)
scaleY = 1.0;
else scaleY = h / GetHeight();
for (int i = 0; i < 4; i++)
{
if (m_metafiles[i].IsValid())
m_metafiles[i].Scale(scaleX, scaleY);
}
m_width = w;
m_height = h;
SetDefaultRegionSize();
}
void wxDrawnShape::Scale(double sx, double sy)
{
int i;
for (i = 0; i < 4; i++)
{
if (m_metafiles[i].IsValid())
{
m_metafiles[i].Scale(sx, sy);
m_metafiles[i].CalculateSize(this);
}
}
}
void wxDrawnShape::Translate(double x, double y)
{
int i;
for (i = 0; i < 4; i++)
{
if (m_metafiles[i].IsValid())
{
m_metafiles[i].Translate(x, y);
m_metafiles[i].CalculateSize(this);
}
}
}
// theta is absolute rotation from the zero position
void wxDrawnShape::Rotate(double x, double y, double theta)
{
m_currentAngle = DetermineMetaFile(theta);
if (m_currentAngle == 0)
{
// Rotate metafile
if (!m_metafiles[0].GetRotateable())
return;
m_metafiles[0].Rotate(x, y, theta);
}
double actualTheta = theta - m_rotation;
// Rotate attachment points
double sinTheta = (double)sin(actualTheta);
double cosTheta = (double)cos(actualTheta);
wxNode *node = m_attachmentPoints.GetFirst();
while (node)
{
wxAttachmentPoint *point = (wxAttachmentPoint *)node->GetData();
double x1 = point->m_x;
double y1 = point->m_y;
point->m_x = x1 * cosTheta - y1 * sinTheta + x * (1.0 - cosTheta) + y * sinTheta;
point->m_y = x1 * sinTheta + y1 * cosTheta + y * (1.0 - cosTheta) + x * sinTheta;
node = node->GetNext();
}
m_rotation = theta;
m_metafiles[m_currentAngle].CalculateSize(this);
}
// Which metafile do we use now? Based on current rotation and validity
// of metafiles.
int wxDrawnShape::DetermineMetaFile(double rotation)
{
double tolerance = 0.0001;
const double pi = 3.1415926535897932384626433832795 ;
double angle1 = 0.0;
double angle2 = pi / 2.0;
double angle3 = pi;
double angle4 = 3.0 * pi / 2.0;
int whichMetafile = 0;
if (oglRoughlyEqual(rotation, angle1, tolerance))
{
whichMetafile = 0;
}
else if (oglRoughlyEqual(rotation, angle2, tolerance))
{
whichMetafile = 1;
}
else if (oglRoughlyEqual(rotation, angle3, tolerance))
{
whichMetafile = 2;
}
else if (oglRoughlyEqual(rotation, angle4, tolerance))
{
whichMetafile = 3;
}
if ((whichMetafile > 0) && !m_metafiles[whichMetafile].IsValid())
whichMetafile = 0;
return whichMetafile;
}
void wxDrawnShape::OnDrawOutline(wxDC &dc, double x, double y, double w, double h)
{
if (m_metafiles[m_currentAngle].GetOutlineOp() != -1)
{
wxNode *node = m_metafiles[m_currentAngle].GetOps().Item(m_metafiles[m_currentAngle].GetOutlineOp());
wxASSERT (node != NULL);
wxDrawOp *op = (wxDrawOp *) node->GetData();
if (op->OnDrawOutline(dc, x, y, w, h, m_width, m_height))
return;
}
// Default... just use a rectangle
wxRectangleShape::OnDrawOutline(dc, x, y, w, h);
}
// Get the perimeter point using the special outline op, if there is one,
// otherwise use default wxRectangleShape scheme
bool wxDrawnShape::GetPerimeterPoint(double x1, double y1,
double x2, double y2,
double *x3, double *y3)
{
if (m_metafiles[m_currentAngle].GetOutlineOp() != -1)
{
wxNode *node = m_metafiles[m_currentAngle].GetOps().Item(m_metafiles[m_currentAngle].GetOutlineOp());
wxASSERT (node != NULL);
wxDrawOp *op = (wxDrawOp *) node->GetData();
if (op->GetPerimeterPoint(x1, y1, x2, y2, x3, y3, GetX(), GetY(), GetAttachmentMode()))
return TRUE;
}
// Default... just use a rectangle
return wxRectangleShape::GetPerimeterPoint(x1, y1, x2, y2, x3, y3);
}
#if wxUSE_PROLOGIO
void wxDrawnShape::WriteAttributes(wxExpr *clause)
{
wxRectangleShape::WriteAttributes(clause);
clause->AddAttributeValue(wxT("current_angle"), (long)m_currentAngle);
clause->AddAttributeValue(wxT("save_metafile"), (long)m_saveToFile);
if (m_saveToFile)
{
for (int i = 0; i < 4; i++)
{
if (m_metafiles[i].IsValid())
m_metafiles[i].WriteAttributes(clause, i);
}
}
}
void wxDrawnShape::ReadAttributes(wxExpr *clause)
{
wxRectangleShape::ReadAttributes(clause);
int iVal = (int) m_saveToFile;
clause->GetAttributeValue(wxT("save_metafile"), iVal);
clause->GetAttributeValue(wxT("current_angle"), m_currentAngle);
m_saveToFile = (iVal != 0);
if (m_saveToFile)
{
for (int i = 0; i < 4; i++)
{
m_metafiles[i].ReadAttributes(clause, i);
}
}
}
#endif
// Does the copying for this object
void wxDrawnShape::Copy(wxShape ©)
{
wxRectangleShape::Copy(copy);
wxASSERT( copy.IsKindOf(CLASSINFO(wxDrawnShape)) ) ;
wxDrawnShape &drawnCopy = (wxDrawnShape &) copy;
for (int i = 0; i < 4; i++)
{
m_metafiles[i].Copy(drawnCopy.m_metafiles[i]);
}
drawnCopy.m_saveToFile = m_saveToFile;
drawnCopy.m_currentAngle = m_currentAngle;
}
bool wxDrawnShape::LoadFromMetaFile(const wxString &filename)
{
return m_metafiles[0].LoadFromMetaFile(filename, &m_width, &m_height);
}
// Set of functions for drawing into a pseudo metafile.
// They use integers, but doubles are used internally for accuracy
// when scaling.
void wxDrawnShape::DrawLine(const wxPoint &pt1, const wxPoint &pt2)
{
m_metafiles[m_currentAngle].DrawLine(pt1, pt2);
}
void wxDrawnShape::DrawRectangle(const wxRect &rect)
{
m_metafiles[m_currentAngle].DrawRectangle(rect);
}
void wxDrawnShape::DrawRoundedRectangle(const wxRect &rect, double radius)
{
m_metafiles[m_currentAngle].DrawRoundedRectangle(rect, radius);
}
void wxDrawnShape::DrawEllipse(const wxRect &rect)
{
m_metafiles[m_currentAngle].DrawEllipse(rect);
}
void wxDrawnShape::DrawArc(const wxPoint ¢rePt, const wxPoint &startPt, const wxPoint &endPt)
{
m_metafiles[m_currentAngle].DrawArc(centrePt, startPt, endPt);
}
void wxDrawnShape::DrawEllipticArc(const wxRect &rect, double startAngle, double endAngle)
{
m_metafiles[m_currentAngle].DrawEllipticArc(rect, startAngle, endAngle);
}
void wxDrawnShape::DrawPoint(const wxPoint &pt)
{
m_metafiles[m_currentAngle].DrawPoint(pt);
}
void wxDrawnShape::DrawText(const wxString &text, const wxPoint &pt)
{
m_metafiles[m_currentAngle].DrawText(text, pt);
}
void wxDrawnShape::DrawLines(int n, wxPoint pts[])
{
m_metafiles[m_currentAngle].DrawLines(n, pts);
}
void wxDrawnShape::DrawPolygon(int n, wxPoint pts[], int flags)
{
if (flags & oglMETAFLAGS_ATTACHMENTS)
{
ClearAttachments();
int i;
for (i = 0; i < n; i++)
m_attachmentPoints.Append(new wxAttachmentPoint(i, pts[i].x, pts[i].y));
}
m_metafiles[m_currentAngle].DrawPolygon(n, pts, flags);
}
void wxDrawnShape::DrawSpline(int n, wxPoint pts[])
{
m_metafiles[m_currentAngle].DrawSpline(n, pts);
}
void wxDrawnShape::SetClippingRect(const wxRect &rect)
{
m_metafiles[m_currentAngle].SetClippingRect(rect);
}
void wxDrawnShape::DestroyClippingRect()
{
m_metafiles[m_currentAngle].DestroyClippingRect();
}
void wxDrawnShape::SetDrawnPen(wxPen *pen, bool isOutline)
{
m_metafiles[m_currentAngle].SetPen(pen, isOutline);
}
void wxDrawnShape::SetDrawnBrush(wxBrush *brush, bool isFill)
{
m_metafiles[m_currentAngle].SetBrush(brush, isFill);
}
void wxDrawnShape::SetDrawnFont(wxFont *font)
{
m_metafiles[m_currentAngle].SetFont(font);
}
void wxDrawnShape::SetDrawnTextColour(const wxColour &colour)
{
m_metafiles[m_currentAngle].SetTextColour(colour);
}
void wxDrawnShape::SetDrawnBackgroundColour(const wxColour &colour)
{
m_metafiles[m_currentAngle].SetBackgroundColour(colour);
}
void wxDrawnShape::SetDrawnBackgroundMode(int mode)
{
m_metafiles[m_currentAngle].SetBackgroundMode(mode);
}
/*
* Individual operations
*
*/
/*
* Set font, brush, text colour
*
*/
wxOpSetGDI::wxOpSetGDI(int theOp, wxPseudoMetaFile *theImage, int theGdiIndex, int theMode):
wxDrawOp(theOp)
{
m_gdiIndex = theGdiIndex;
m_image = theImage;
m_mode = theMode;
}
void wxOpSetGDI::Do(wxDC &dc, double WXUNUSED(xoffset), double WXUNUSED(yoffset))
{
switch (m_op)
{
case DRAWOP_SET_PEN:
{
// Check for overriding this operation for outline
// colour
if (m_image->m_outlineColours.Member((wxObject *)m_gdiIndex))
{
if (m_image->m_outlinePen)
dc.SetPen(* m_image->m_outlinePen);
}
else
{
wxNode *node = m_image->m_gdiObjects.Item(m_gdiIndex);
if (node)
{
wxPen *pen = (wxPen *)node->GetData();
if (pen)
dc.SetPen(* pen);
}
}
break;
}
case DRAWOP_SET_BRUSH:
{
// Check for overriding this operation for outline or fill
// colour
if (m_image->m_outlineColours.Member((wxObject *)m_gdiIndex))
{
// Need to construct a brush to match the outline pen's colour
if (m_image->m_outlinePen)
{
wxBrush *br = wxTheBrushList->FindOrCreateBrush(m_image->m_outlinePen->GetColour(), wxSOLID);
if (br)
dc.SetBrush(* br);
}
}
else if (m_image->m_fillColours.Member((wxObject *)m_gdiIndex))
{
if (m_image->m_fillBrush)
{
dc.SetBrush(* m_image->m_fillBrush);
}
}
else
{
wxNode *node = m_image->m_gdiObjects.Item(m_gdiIndex);
if (node)
{
wxBrush *brush = (wxBrush *)node->GetData();
if (brush)
dc.SetBrush(* brush);
}
}
break;
}
case DRAWOP_SET_FONT:
{
wxNode *node = m_image->m_gdiObjects.Item(m_gdiIndex);
if (node)
{
wxFont *font = (wxFont *)node->GetData();
if (font)
dc.SetFont(* font);
}
break;
}
case DRAWOP_SET_TEXT_COLOUR:
{
wxColour col(m_r, m_g, m_b);
dc.SetTextForeground(col);
break;
}
case DRAWOP_SET_BK_COLOUR:
{
wxColour col(m_r, m_g, m_b);
dc.SetTextBackground(col);
break;
}
case DRAWOP_SET_BK_MODE:
{
dc.SetBackgroundMode(m_mode);
break;
}
default:
break;
}
}
wxDrawOp *wxOpSetGDI::Copy(wxPseudoMetaFile *newImage)
{
wxOpSetGDI *newOp = new wxOpSetGDI(m_op, newImage, m_gdiIndex, m_mode);
newOp->m_r = m_r;
newOp->m_g = m_g;
newOp->m_b = m_b;
return newOp;
}
#if wxUSE_PROLOGIO
wxExpr *wxOpSetGDI::WriteExpr(wxPseudoMetaFile *WXUNUSED(image))
{
wxExpr *expr = new wxExpr(wxExprList);
expr->Append(new wxExpr((long)m_op));
switch (m_op)
{
case DRAWOP_SET_PEN:
case DRAWOP_SET_BRUSH:
case DRAWOP_SET_FONT:
{
expr->Append(new wxExpr((long)m_gdiIndex));
break;
}
case DRAWOP_SET_TEXT_COLOUR:
case DRAWOP_SET_BK_COLOUR:
{
expr->Append(new wxExpr((long)m_r));
expr->Append(new wxExpr((long)m_g));
expr->Append(new wxExpr((long)m_b));
break;
}
case DRAWOP_SET_BK_MODE:
{
expr->Append(new wxExpr((long)m_mode));
break;
}
default:
break;
}
return expr;
}
void wxOpSetGDI::ReadExpr(wxPseudoMetaFile *WXUNUSED(image), wxExpr *expr)
{
switch (m_op)
{
case DRAWOP_SET_PEN:
case DRAWOP_SET_BRUSH:
case DRAWOP_SET_FONT:
{
m_gdiIndex = (int)expr->Nth(1)->IntegerValue();
break;
}
case DRAWOP_SET_TEXT_COLOUR:
case DRAWOP_SET_BK_COLOUR:
{
m_r = (unsigned char)expr->Nth(1)->IntegerValue();
m_g = (unsigned char)expr->Nth(2)->IntegerValue();
m_b = (unsigned char)expr->Nth(3)->IntegerValue();
break;
}
case DRAWOP_SET_BK_MODE:
{
m_mode = (int)expr->Nth(1)->IntegerValue();
break;
}
default:
break;
}
}
#endif
/*
* Set/destroy clipping
*
*/
wxOpSetClipping::wxOpSetClipping(int theOp, double theX1, double theY1,
double theX2, double theY2): wxDrawOp(theOp)
{
m_x1 = theX1;
m_y1 = theY1;
m_x2 = theX2;
m_y2 = theY2;
}
wxDrawOp *wxOpSetClipping::Copy(wxPseudoMetaFile *WXUNUSED(newImage))
{
wxOpSetClipping *newOp = new wxOpSetClipping(m_op, m_x1, m_y1, m_x2, m_y2);
return newOp;
}
void wxOpSetClipping::Do(wxDC &dc, double xoffset, double yoffset)
{
switch (m_op)
{
case DRAWOP_SET_CLIPPING_RECT:
{
dc.SetClippingRegion((long)(m_x1 + xoffset), (long)(m_y1 + yoffset), (long)(m_x2 + xoffset), (long)(m_y2 + yoffset));
break;
}
case DRAWOP_DESTROY_CLIPPING_RECT:
{
dc.DestroyClippingRegion();
break;
}
default:
break;
}
}
void wxOpSetClipping::Scale(double xScale, double yScale)
{
m_x1 *= xScale;
m_y1 *= yScale;
m_x2 *= xScale;
m_y2 *= yScale;
}
void wxOpSetClipping::Translate(double x, double y)
{
m_x1 += x;
m_y1 += y;
}
#if wxUSE_PROLOGIO
wxExpr *wxOpSetClipping::WriteExpr(wxPseudoMetaFile *WXUNUSED(image))
{
wxExpr *expr = new wxExpr(wxExprList);
expr->Append(new wxExpr((long)m_op));
switch (m_op)
{
case DRAWOP_SET_CLIPPING_RECT:
{
expr->Append(new wxExpr(m_x1));
expr->Append(new wxExpr(m_y1));
expr->Append(new wxExpr(m_x2));
expr->Append(new wxExpr(m_y2));
break;
}
default:
break;
}
return expr;
}
void wxOpSetClipping::ReadExpr(wxPseudoMetaFile *WXUNUSED(image), wxExpr *expr)
{
switch (m_op)
{
case DRAWOP_SET_CLIPPING_RECT:
{
m_x1 = expr->Nth(1)->RealValue();
m_y1 = expr->Nth(2)->RealValue();
m_x2 = expr->Nth(3)->RealValue();
m_y2 = expr->Nth(4)->RealValue();
break;
}
default:
break;
}
}
#endif
/*
* Draw line, rectangle, rounded rectangle, ellipse, point, arc, text
*
*/
wxOpDraw::wxOpDraw(int theOp, double theX1, double theY1, double theX2, double theY2,
double theRadius, wxChar *s) : wxDrawOp(theOp)
{
m_x1 = theX1;
m_y1 = theY1;
m_x2 = theX2;
m_y2 = theY2;
m_x3 = 0.0;
m_y3 = 0.0;
m_radius = theRadius;
if (s) m_textString = oglCopystring(s);
else m_textString = NULL;
}
wxOpDraw::~wxOpDraw()
{
if (m_textString) delete[] m_textString;
}
wxDrawOp *wxOpDraw::Copy(wxPseudoMetaFile *WXUNUSED(newImage))
{
wxOpDraw *newOp = new wxOpDraw(m_op, m_x1, m_y1, m_x2, m_y2, m_radius, m_textString);
newOp->m_x3 = m_x3;
newOp->m_y3 = m_y3;
return newOp;
}
void wxOpDraw::Do(wxDC &dc, double xoffset, double yoffset)
{
switch (m_op)
{
case DRAWOP_DRAW_LINE:
{
dc.DrawLine(WXROUND(m_x1 + xoffset), WXROUND(m_y1 + yoffset), WXROUND(m_x2 + xoffset), WXROUND(m_y2 + yoffset));
break;
}
case DRAWOP_DRAW_RECT:
{
dc.DrawRectangle(WXROUND(m_x1 + xoffset), WXROUND(m_y1 + yoffset), WXROUND(m_x2), WXROUND(m_y2));
break;
}
case DRAWOP_DRAW_ROUNDED_RECT:
{
dc.DrawRoundedRectangle(WXROUND(m_x1 + xoffset), WXROUND(m_y1 + yoffset), WXROUND(m_x2), WXROUND(m_y2), m_radius);
break;
}
case DRAWOP_DRAW_ELLIPSE:
{
dc.DrawEllipse(WXROUND(m_x1 + xoffset), WXROUND(m_y1 + yoffset), WXROUND(m_x2), WXROUND(m_y2));
break;
}
case DRAWOP_DRAW_ARC:
{
dc.DrawArc(WXROUND(m_x2 + xoffset), WXROUND(m_y2 + yoffset),
WXROUND(m_x3 + xoffset), WXROUND(m_y3 + yoffset),
WXROUND(m_x1 + xoffset), WXROUND(m_y1 + yoffset));
break;
}
case DRAWOP_DRAW_ELLIPTIC_ARC:
{
const double pi = 3.1415926535897932384626433832795 ;
// Convert back to degrees
dc.DrawEllipticArc(
WXROUND(m_x1 + xoffset), WXROUND(m_y1 + yoffset),
WXROUND(m_x2), WXROUND(m_y2),
WXROUND(m_x3 * (360.0 / (2.0 * pi))), WXROUND(m_y3 * (360.0 / (2.0 * pi))));
break;
}
case DRAWOP_DRAW_POINT:
{
dc.DrawPoint(WXROUND(m_x1 + xoffset), WXROUND(m_y1 + yoffset));
break;
}
case DRAWOP_DRAW_TEXT:
{
dc.DrawText(m_textString, WXROUND(m_x1 + xoffset), WXROUND(m_y1 + yoffset));
break;
}
default:
break;
}
}
void wxOpDraw::Scale(double scaleX, double scaleY)
{
m_x1 *= scaleX;
m_y1 *= scaleY;
m_x2 *= scaleX;
m_y2 *= scaleY;
if (m_op != DRAWOP_DRAW_ELLIPTIC_ARC)
{
m_x3 *= scaleX;
m_y3 *= scaleY;
}
m_radius *= scaleX;
}
void wxOpDraw::Translate(double x, double y)
{
m_x1 += x;
m_y1 += y;
switch (m_op)
{
case DRAWOP_DRAW_LINE:
{
m_x2 += x;
m_y2 += y;
break;
}
case DRAWOP_DRAW_ARC:
{
m_x2 += x;
m_y2 += y;
m_x3 += x;
m_y3 += y;
break;
}
case DRAWOP_DRAW_ELLIPTIC_ARC:
{
break;
}
default:
break;
}
}
void wxOpDraw::Rotate(double x, double y, double theta, double sinTheta, double cosTheta)
{
double newX1 = m_x1 * cosTheta - m_y1 * sinTheta + x * (1.0 - cosTheta) + y * sinTheta;
double newY1 = m_x1 * sinTheta + m_y1 * cosTheta + y * (1.0 - cosTheta) + x * sinTheta;
switch (m_op)
{
case DRAWOP_DRAW_LINE:
{
double newX2 = m_x2 * cosTheta - m_y2 * sinTheta + x * (1.0 - cosTheta) + y * sinTheta;
double newY2 = m_x2 * sinTheta + m_y2 * cosTheta + y * (1.0 - cosTheta) + x * sinTheta;
m_x1 = newX1;
m_y1 = newY1;
m_x2 = newX2;
m_y2 = newY2;
break;
}
case DRAWOP_DRAW_RECT:
case DRAWOP_DRAW_ROUNDED_RECT:
case DRAWOP_DRAW_ELLIPTIC_ARC:
{
// Assume only 0, 90, 180, 270 degree rotations.
// oldX1, oldY1 represents the top left corner. Find the
// bottom right, and rotate that. Then the width/height is the difference
// between x/y values.
double oldBottomRightX = m_x1 + m_x2;
double oldBottomRightY = m_y1 + m_y2;
double newBottomRightX = oldBottomRightX * cosTheta - oldBottomRightY * sinTheta + x * (1.0 - cosTheta) + y * sinTheta;
double newBottomRightY = oldBottomRightX * sinTheta + oldBottomRightY * cosTheta + y * (1.0 - cosTheta) + x * sinTheta;
// Now find the new top-left, bottom-right coordinates.
double minX = wxMin(newX1, newBottomRightX);
double minY = wxMin(newY1, newBottomRightY);
double maxX = wxMax(newX1, newBottomRightX);
double maxY = wxMax(newY1, newBottomRightY);
m_x1 = minX;
m_y1 = minY;
m_x2 = maxX - minX; // width
m_y2 = maxY - minY; // height
if (m_op == DRAWOP_DRAW_ELLIPTIC_ARC)
{
// Add rotation to angles
m_x3 += theta;
m_y3 += theta;
}
break;
}
case DRAWOP_DRAW_ARC:
{
double newX2 = m_x2 * cosTheta - m_y2 * sinTheta + x * (1.0 - cosTheta) + y * sinTheta;
double newY2 = m_x2 * sinTheta + m_y2 * cosTheta + y * (1.0 - cosTheta) + x * sinTheta;
double newX3 = m_x3 * cosTheta - m_y3 * sinTheta + x * (1.0 - cosTheta) + y * sinTheta;
double newY3 = m_x3 * sinTheta + m_y3 * cosTheta + y * (1.0 - cosTheta) + x * sinTheta;
m_x1 = newX1;
m_y1 = newY1;
m_x2 = newX2;
m_y2 = newY2;
m_x3 = newX3;
m_y3 = newY3;
break;
}
default:
break;
}
}
#if wxUSE_PROLOGIO
wxExpr *wxOpDraw::WriteExpr(wxPseudoMetaFile *WXUNUSED(image))
{
wxExpr *expr = new wxExpr(wxExprList);
expr->Append(new wxExpr((long)m_op));
switch (m_op)
{
case DRAWOP_DRAW_LINE:
case DRAWOP_DRAW_RECT:
case DRAWOP_DRAW_ELLIPSE:
{
expr->Append(new wxExpr(m_x1));
expr->Append(new wxExpr(m_y1));
expr->Append(new wxExpr(m_x2));
expr->Append(new wxExpr(m_y2));
break;
}
case DRAWOP_DRAW_ROUNDED_RECT:
{
expr->Append(new wxExpr(m_x1));
expr->Append(new wxExpr(m_y1));
expr->Append(new wxExpr(m_x2));
expr->Append(new wxExpr(m_y2));
expr->Append(new wxExpr(m_radius));
break;
}
case DRAWOP_DRAW_POINT:
{
expr->Append(new wxExpr(m_x1));
expr->Append(new wxExpr(m_y1));
break;
}
case DRAWOP_DRAW_TEXT:
{
expr->Append(new wxExpr(m_x1));
expr->Append(new wxExpr(m_y1));
expr->Append(new wxExpr(wxExprString, m_textString));
break;
}
case DRAWOP_DRAW_ARC:
case DRAWOP_DRAW_ELLIPTIC_ARC:
{
expr->Append(new wxExpr(m_x1));
expr->Append(new wxExpr(m_y1));
expr->Append(new wxExpr(m_x2));
expr->Append(new wxExpr(m_y2));
expr->Append(new wxExpr(m_x3));
expr->Append(new wxExpr(m_y3));
break;
}
default:
{
break;
}
}
return expr;
}
void wxOpDraw::ReadExpr(wxPseudoMetaFile *WXUNUSED(image), wxExpr *expr)
{
switch (m_op)
{
case DRAWOP_DRAW_LINE:
case DRAWOP_DRAW_RECT:
case DRAWOP_DRAW_ELLIPSE:
{
m_x1 = expr->Nth(1)->RealValue();
m_y1 = expr->Nth(2)->RealValue();
m_x2 = expr->Nth(3)->RealValue();
m_y2 = expr->Nth(4)->RealValue();
break;
}
case DRAWOP_DRAW_ROUNDED_RECT:
{
m_x1 = expr->Nth(1)->RealValue();
m_y1 = expr->Nth(2)->RealValue();
m_x2 = expr->Nth(3)->RealValue();
m_y2 = expr->Nth(4)->RealValue();
m_radius = expr->Nth(5)->RealValue();
break;
}
case DRAWOP_DRAW_POINT:
{
m_x1 = expr->Nth(1)->RealValue();
m_y1 = expr->Nth(2)->RealValue();
break;
}
case DRAWOP_DRAW_TEXT:
{
m_x1 = expr->Nth(1)->RealValue();
m_y1 = expr->Nth(2)->RealValue();
wxString str(expr->Nth(3)->StringValue());
m_textString = oglCopystring(str);
break;
}
case DRAWOP_DRAW_ARC:
case DRAWOP_DRAW_ELLIPTIC_ARC:
{
m_x1 = expr->Nth(1)->RealValue();
m_y1 = expr->Nth(2)->RealValue();
m_x2 = expr->Nth(3)->RealValue();
m_y2 = expr->Nth(4)->RealValue();
m_x3 = expr->Nth(5)->RealValue();
m_y3 = expr->Nth(6)->RealValue();
break;
}
default:
{
break;
}
}
}
#endif
/*
* Draw polygon, polyline, spline
*
*/
wxOpPolyDraw::wxOpPolyDraw(int theOp, int n, wxRealPoint *thePoints): wxDrawOp(theOp)
{
m_noPoints = n;
m_points = thePoints;
}
wxOpPolyDraw::~wxOpPolyDraw()
{
delete[] m_points;
}
wxDrawOp *wxOpPolyDraw::Copy(wxPseudoMetaFile *WXUNUSED(newImage))
{
wxRealPoint *newPoints = new wxRealPoint[m_noPoints];
for (int i = 0; i < m_noPoints; i++)
{
newPoints[i].x = m_points[i].x;
newPoints[i].y = m_points[i].y;
}
wxOpPolyDraw *newOp = new wxOpPolyDraw(m_op, m_noPoints, newPoints);
return newOp;
}
void wxOpPolyDraw::Do(wxDC &dc, double xoffset, double yoffset)
{
switch (m_op)
{
case DRAWOP_DRAW_POLYLINE:
{
wxPoint *actualPoints = new wxPoint[m_noPoints];
int i;
for (i = 0; i < m_noPoints; i++)
{
actualPoints[i].x = WXROUND(m_points[i].x);
actualPoints[i].y = WXROUND(m_points[i].y);
}
dc.DrawLines(m_noPoints, actualPoints, WXROUND(xoffset), WXROUND(yoffset));
delete[] actualPoints;
break;
}
case DRAWOP_DRAW_POLYGON:
{
wxPoint *actualPoints = new wxPoint[m_noPoints];
int i;
for (i = 0; i < m_noPoints; i++)
{
actualPoints[i].x = WXROUND(m_points[i].x);
actualPoints[i].y = WXROUND(m_points[i].y);
}
dc.DrawPolygon(m_noPoints, actualPoints, WXROUND(xoffset), WXROUND(yoffset));
delete[] actualPoints;
break;
}
case DRAWOP_DRAW_SPLINE:
{
wxPoint *actualPoints = new wxPoint[m_noPoints];
int i;
for (i = 0; i < m_noPoints; i++)
{
actualPoints[i].x = WXROUND(m_points[i].x);
actualPoints[i].y = WXROUND(m_points[i].y);
}
dc.DrawSpline(m_noPoints, actualPoints); // no offsets in DrawSpline // , xoffset, yoffset);
delete[] actualPoints;
break;
}
default:
break;
}
}
void wxOpPolyDraw::Scale(double scaleX, double scaleY)
{
for (int i = 0; i < m_noPoints; i++)
{
m_points[i].x *= scaleX;
m_points[i].y *= scaleY;
}
}
void wxOpPolyDraw::Translate(double x, double y)
{
for (int i = 0; i < m_noPoints; i++)
{
m_points[i].x += x;
m_points[i].y += y;
}
}
void wxOpPolyDraw::Rotate(double x, double y, double WXUNUSED(theta), double sinTheta, double cosTheta)
{
for (int i = 0; i < m_noPoints; i++)
{
double x1 = m_points[i].x;
double y1 = m_points[i].y;
m_points[i].x = x1 * cosTheta - y1 * sinTheta + x * (1.0 - cosTheta) + y * sinTheta;
m_points[i].y = x1 * sinTheta + y1 * cosTheta + y * (1.0 - cosTheta) + x * sinTheta;
}
}
#if wxUSE_PROLOGIO
wxExpr *wxOpPolyDraw::WriteExpr(wxPseudoMetaFile *WXUNUSED(image))
{
wxExpr *expr = new wxExpr(wxExprList);
expr->Append(new wxExpr((long)m_op));
expr->Append(new wxExpr((long)m_noPoints));
// char buf1[9];
wxChar buf2[5];
wxChar buf3[5];
oglBuffer[0] = 0;
/*
* Store each coordinate pair in a hex string to save space.
* E.g. "1B9080CD". 4 hex digits per coordinate pair.
*
*/
for (int i = 0; i < m_noPoints; i++)
{
long signedX = (long)(m_points[i].x * 100.0);
long signedY = (long)(m_points[i].y * 100.0);
// Scale to 0 -> 64K
long unSignedX = (long)(signedX + 32767.0);
long unSignedY = (long)(signedY + 32767.0);
// IntToHex((unsigned int)signedX, buf2);
// IntToHex((unsigned int)signedY, buf3);
IntToHex((int)unSignedX, buf2);
IntToHex((int)unSignedY, buf3);
// Don't overrun the buffer
if ((i * 8) < 3000)
{
wxStrcat(oglBuffer, buf2);
wxStrcat(oglBuffer, buf3);
}
}
expr->Append(new wxExpr(wxExprString, oglBuffer));
return expr;
}
void wxOpPolyDraw::ReadExpr(wxPseudoMetaFile *WXUNUSED(image), wxExpr *expr)
{
m_noPoints = (int)expr->Nth(1)->IntegerValue();
wxChar buf1[5];
wxChar buf2[5];
m_points = new wxRealPoint[m_noPoints];
int i = 0;
int bufPtr = 0;
wxString hexString = expr->Nth(2)->StringValue();
while (i < m_noPoints)
{
buf1[0] = hexString[(size_t)bufPtr];
buf1[1] = hexString[(size_t)(bufPtr + 1)];
buf1[2] = hexString[(size_t)(bufPtr + 2)];
buf1[3] = hexString[(size_t)(bufPtr + 3)];
buf1[4] = 0;
buf2[0] = hexString[(size_t)(bufPtr + 4)];
buf2[1] = hexString[(size_t)(bufPtr + 5)];
buf2[2] = hexString[(size_t)(bufPtr + 6)];
buf2[3] = hexString[(size_t)(bufPtr + 7)];
buf2[4] = 0;
bufPtr += 8;
// int signedX = (signed int)HexToInt(buf1);
// int signedY = (signed int)HexToInt(buf2);
long unSignedX = HexToInt(buf1);
long unSignedY = HexToInt(buf2);
// Scale -32K -> +32K
long signedX = unSignedX - 32767;
long signedY = unSignedY - 32767;
#if defined(__WXMSW__) && 0
int testX = (signed int)unSignedX;
int testY = (signed int)unSignedY;
#endif
m_points[i].x = (double)(signedX / 100.0);
m_points[i].y = (double)(signedY / 100.0);
i ++;
}
}
#endif
// Draw an outline using the current operation.
bool wxOpPolyDraw::OnDrawOutline(wxDC &dc, double x, double y, double w, double h, double oldW, double oldH)
{
dc.SetBrush(* wxTRANSPARENT_BRUSH);
// Multiply all points by proportion of new size to old size
double x_proportion = (double)(fabs(w / oldW));
double y_proportion = (double)(fabs(h / oldH));
int n = m_noPoints;
wxPoint *intPoints = new wxPoint[n];
int i;
for (i = 0; i < n; i++)
{
intPoints[i].x = WXROUND (x_proportion * m_points[i].x);
intPoints[i].y = WXROUND (y_proportion * m_points[i].y);
}
dc.DrawPolygon(n, intPoints, (long) x, (long) y);
delete[] intPoints;
return TRUE;
}
// Assume (x1, y1) is centre of box (most generally, line end at box)
bool wxOpPolyDraw::GetPerimeterPoint(double x1, double y1,
double x2, double y2,
double *x3, double *y3,
double xOffset, double yOffset,
int attachmentMode)
{
int n = m_noPoints;
// First check for situation where the line is vertical,
// and we would want to connect to a point on that vertical --
// oglFindEndForPolyline can't cope with this (the arrow
// gets drawn to the wrong place).
if ((attachmentMode == ATTACHMENT_MODE_NONE) && (x1 == x2))
{
// Look for the point we'd be connecting to. This is
// a heuristic...
int i;
for (i = 0; i < n; i++)
{
wxRealPoint *point = & (m_points[i]);
if (point->x == 0.0)
{
if ((y2 > y1) && (point->y > 0.0))
{
*x3 = point->x + xOffset;
*y3 = point->y + yOffset;
return TRUE;
}
else if ((y2 < y1) && (point->y < 0.0))
{
*x3 = point->x + xOffset;
*y3 = point->y + yOffset;
return TRUE;
}
}
}
}
double *xpoints = new double[n];
double *ypoints = new double[n];
for (int i = 0; i < n; i++)
{
wxRealPoint *point = & (m_points[i]);
xpoints[i] = point->x + xOffset;
ypoints[i] = point->y + yOffset;
}
oglFindEndForPolyline(n, xpoints, ypoints,
x1, y1, x2, y2, x3, y3);
delete[] xpoints;
delete[] ypoints;
return TRUE;
}
/*
* Utilities
*
*/
#if 0
static char hexArray[] =
{
wxT('0'), wxT('1'), wxT('2'), wxT('3'), wxT('4'), wxT('5'), wxT('6'), wxT('7'),
wxT('8'), wxT('9'), wxT('A'), wxT('B'), wxT('C'), wxT('D'), wxT('E'), wxT('F')
};
// Convert unsigned 16-bit integer to 4-character hex string
static void IntToHex(unsigned int dec, wxChar *buf)
{
int digit1 = (int)(dec / 4096);
int digit2 = (int)((dec - (digit1 * 4096)) / 256);
int digit3 = (int)((dec - (digit1 * 4096) - (digit2 * 256)) / 16);
int digit4 = dec - (digit1 * 4096 + digit2 * 256 + digit3 * 16);
buf[0] = hexArray[digit1];
buf[1] = hexArray[digit2];
buf[2] = hexArray[digit3];
buf[3] = hexArray[digit4];
buf[4] = 0;
}
#endif
#if 0
// One hex digit to decimal number
static int HexToInt1(wxChar hex)
{
switch (hex)
{
case wxT('0'):
return 0;
case wxT('1'):
return 1;
case wxT('2'):
return 2;
case wxT('3'):
return 3;
case wxT('4'):
return 4;
case wxT('5'):
return 5;
case wxT('6'):
return 6;
case wxT('7'):
return 7;
case wxT('8'):
return 8;
case wxT('9'):
return 9;
case wxT('A'):
return 10;
case wxT('B'):
return 11;
case wxT('C'):
return 12;
case wxT('D'):
return 13;
case wxT('E'):
return 14;
case wxT('F'):
return 15;
#if 0
// handling this default outside switch removes warning under Borland
default:
return 0;
#endif
}
return 0;
}
// 4-digit hex string to unsigned integer
static unsigned long HexToInt(wxChar *buf)
{
long d1 = (long)(HexToInt1(buf[0]) * 4096.0) ;
long d2 = (long)(HexToInt1(buf[1]) * 256.0) ;
long d3 = (long)(HexToInt1(buf[2]) * 16.0) ;
long d4 = (long)(HexToInt1(buf[3])) ;
unsigned long n = (long)(d1 + d2 + d3 + d4) ;
return n;
}
#endif
/*
* wxPseudo meta-file
*
*/
IMPLEMENT_DYNAMIC_CLASS(wxPseudoMetaFile, wxObject)
wxPseudoMetaFile::wxPseudoMetaFile()
{
m_currentRotation = 0;
m_rotateable = TRUE;
m_width = 0.0;
m_height = 0.0;
m_outlinePen = NULL;
m_fillBrush = NULL;
m_outlineOp = -1;
}
wxPseudoMetaFile::wxPseudoMetaFile(wxPseudoMetaFile &mf)
{
mf.Copy(*this);
}
wxPseudoMetaFile::~wxPseudoMetaFile()
{
Clear();
}
void wxPseudoMetaFile::Clear()
{
wxNode *node = m_ops.GetFirst();
while (node)
{
wxDrawOp *op = (wxDrawOp *)node->GetData();
delete op;
node = node->GetNext();
}
m_ops.Clear();
m_gdiObjects.Clear();
m_outlineColours.Clear();
m_fillColours.Clear();
m_outlineOp = -1;
}
void wxPseudoMetaFile::Draw(wxDC &dc, double xoffset, double yoffset)
{
wxNode *node = m_ops.GetFirst();
while (node)
{
wxDrawOp *op = (wxDrawOp *)node->GetData();
op->Do(dc, xoffset, yoffset);
node = node->GetNext();
}
}
void wxPseudoMetaFile::Scale(double sx, double sy)
{
wxNode *node = m_ops.GetFirst();
while (node)
{
wxDrawOp *op = (wxDrawOp *)node->GetData();
op->Scale(sx, sy);
node = node->GetNext();
}
m_width *= sx;
m_height *= sy;
}
void wxPseudoMetaFile::Translate(double x, double y)
{
wxNode *node = m_ops.GetFirst();
while (node)
{
wxDrawOp *op = (wxDrawOp *)node->GetData();
op->Translate(x, y);
node = node->GetNext();
}
}
void wxPseudoMetaFile::Rotate(double x, double y, double theta)
{
double theta1 = theta - m_currentRotation;
if (theta1 == 0.0) return;
double cosTheta = (double)cos(theta1);
double sinTheta = (double)sin(theta1);
wxNode *node = m_ops.GetFirst();
while (node)
{
wxDrawOp *op = (wxDrawOp *)node->GetData();
op->Rotate(x, y, theta, sinTheta, cosTheta);
node = node->GetNext();
}
m_currentRotation = theta;
}
#if wxUSE_PROLOGIO
void wxPseudoMetaFile::WriteAttributes(wxExpr *clause, int whichAngle)
{
wxString widthStr;
widthStr.Printf(wxT("meta_width%d"), whichAngle);
wxString heightStr;
heightStr.Printf(wxT("meta_height%d"), whichAngle);
wxString outlineStr;
outlineStr.Printf(wxT("outline_op%d"), whichAngle);
wxString rotateableStr;
rotateableStr.Printf(wxT("meta_rotateable%d"), whichAngle);
// Write width and height
clause->AddAttributeValue(widthStr, m_width);
clause->AddAttributeValue(heightStr, m_height);
clause->AddAttributeValue(rotateableStr, (long)m_rotateable);
clause->AddAttributeValue(outlineStr, (long)m_outlineOp);
// Write GDI objects
wxChar buf[50];
int i = 1;
wxNode *node = m_gdiObjects.GetFirst();
while (node)
{
wxSprintf(buf, wxT("gdi%d_%d"), whichAngle, i);
wxObject *obj = (wxObject *)node->GetData();
wxExpr *expr = NULL;
if (obj)
{
if (obj->IsKindOf(CLASSINFO(wxPen)))
{
wxPen *thePen = (wxPen *)obj;
expr = new wxExpr(wxExprList);
expr->Append(new wxExpr((long)gyTYPE_PEN));
expr->Append(new wxExpr((long)thePen->GetWidth()));
expr->Append(new wxExpr((long)thePen->GetStyle()));
expr->Append(new wxExpr((long)thePen->GetColour().Red()));
expr->Append(new wxExpr((long)thePen->GetColour().Green()));
expr->Append(new wxExpr((long)thePen->GetColour().Blue()));
}
else if (obj->IsKindOf(CLASSINFO(wxBrush)))
{
wxBrush *theBrush = (wxBrush *)obj;
expr = new wxExpr(wxExprList);
expr->Append(new wxExpr((long)gyTYPE_BRUSH));
expr->Append(new wxExpr((long)theBrush->GetStyle()));
expr->Append(new wxExpr((long)theBrush->GetColour().Red()));
expr->Append(new wxExpr((long)theBrush->GetColour().Green()));
expr->Append(new wxExpr((long)theBrush->GetColour().Blue()));
}
else if (obj->IsKindOf(CLASSINFO(wxFont)))
{
wxFont *theFont = (wxFont *)obj;
expr = new wxExpr(wxExprList);
expr->Append(new wxExpr((long)gyTYPE_FONT));
expr->Append(new wxExpr((long)theFont->GetPointSize()));
expr->Append(new wxExpr((long)theFont->GetFamily()));
expr->Append(new wxExpr((long)theFont->GetStyle()));
expr->Append(new wxExpr((long)theFont->GetWeight()));
expr->Append(new wxExpr((long)theFont->GetUnderlined()));
}
}
else
{
// If no recognised GDI object, append a place holder anyway.
expr = new wxExpr(wxExprList);
expr->Append(new wxExpr((long)0));
}
if (expr)
{
clause->AddAttributeValue(buf, expr);
i ++;
}
node = node->GetNext();
}
// Write drawing operations
i = 1;
node = m_ops.GetFirst();
while (node)
{
wxSprintf(buf, wxT("op%d_%d"), whichAngle, i);
wxDrawOp *op = (wxDrawOp *)node->GetData();
wxExpr *expr = op->WriteExpr(this);
if (expr)
{
clause->AddAttributeValue(buf, expr);
i ++;
}
node = node->GetNext();
}
// Write outline and fill GDI op lists (if any)
if (m_outlineColours.GetCount() > 0)
{
wxExpr *outlineExpr = new wxExpr(wxExprList);
node = m_outlineColours.GetFirst();
while (node)
{
outlineExpr->Append(new wxExpr((long)node->GetData()));
node = node->GetNext();
}
wxString outlineObjectsStr;
outlineObjectsStr.Printf(wxT("outline_objects%d"), whichAngle);
clause->AddAttributeValue(outlineObjectsStr, outlineExpr);
}
if (m_fillColours.GetCount() > 0)
{
wxExpr *fillExpr = new wxExpr(wxExprList);
node = m_fillColours.GetFirst();
while (node)
{
fillExpr->Append(new wxExpr((long)node->GetData()));
node = node->GetNext();
}
wxString fillObjectsStr;
fillObjectsStr.Printf(wxT("fill_objects%d"), whichAngle);
clause->AddAttributeValue(fillObjectsStr, fillExpr);
}
}
void wxPseudoMetaFile::ReadAttributes(wxExpr *clause, int whichAngle)
{
wxString widthStr;
widthStr.Printf(wxT("meta_width%d"), whichAngle);
wxString heightStr;
heightStr.Printf(wxT("meta_height%d"), whichAngle);
wxString outlineStr;
outlineStr.Printf(wxT("outline_op%d"), whichAngle);
wxString rotateableStr;
rotateableStr.Printf(wxT("meta_rotateable%d"), whichAngle);
clause->GetAttributeValue(widthStr, m_width);
clause->GetAttributeValue(heightStr, m_height);
clause->GetAttributeValue(outlineStr, m_outlineOp);
int iVal = (int) m_rotateable;
clause->GetAttributeValue(rotateableStr, iVal);
m_rotateable = (iVal != 0);
// Read GDI objects
wxChar buf[50];
int i = 1;
bool keepGoing = TRUE;
while (keepGoing)
{
wxSprintf(buf, wxT("gdi%d_%d"), whichAngle, i);
wxExpr *expr = NULL;
clause->GetAttributeValue(buf, &expr);
if (!expr)
{
keepGoing = FALSE;
}
else
{
wxExpr *idExpr = expr->Nth(0);
switch (idExpr->IntegerValue())
{
case gyTYPE_PEN:
{
int penWidth = (int)expr->Nth(1)->IntegerValue();
int penStyle = (int)expr->Nth(2)->IntegerValue();
int penRed = (int)expr->Nth(3)->IntegerValue();
int penGreen = (int)expr->Nth(4)->IntegerValue();
int penBlue = (int)expr->Nth(5)->IntegerValue();
wxColour col(penRed, penGreen, penBlue);
wxPen *p = wxThePenList->FindOrCreatePen(col, penWidth, penStyle);
if (!p)
p = wxBLACK_PEN;
m_gdiObjects.Append(p);
break;
}
case gyTYPE_BRUSH:
{
int brushStyle = (int)expr->Nth(1)->IntegerValue();
int brushRed = (int)expr->Nth(2)->IntegerValue();
int brushGreen = (int)expr->Nth(3)->IntegerValue();
int brushBlue = (int)expr->Nth(4)->IntegerValue();
wxColour col(brushRed, brushGreen, brushBlue);
wxBrush *b = wxTheBrushList->FindOrCreateBrush(col, brushStyle);
if (!b)
b = wxWHITE_BRUSH;
m_gdiObjects.Append(b);
break;
}
case gyTYPE_FONT:
{
int fontPointSize = (int)expr->Nth(1)->IntegerValue();
int fontFamily = (int)expr->Nth(2)->IntegerValue();
int fontStyle = (int)expr->Nth(3)->IntegerValue();
int fontWeight = (int)expr->Nth(4)->IntegerValue();
int fontUnderlined = (int)expr->Nth(5)->IntegerValue();
m_gdiObjects.Append(wxTheFontList->FindOrCreateFont(fontPointSize,
fontFamily, fontStyle, fontWeight, (fontUnderlined != 0)));
break;
}
default:
{
// Place holder
m_gdiObjects.Append(NULL);
break;
}
}
i ++;
}
}
// Now read in the operations
keepGoing = TRUE;
i = 1;
while (keepGoing)
{
wxSprintf(buf, wxT("op%d_%d"), whichAngle, i);
wxExpr *expr = NULL;
clause->GetAttributeValue(buf, &expr);
if (!expr)
{
keepGoing = FALSE;
}
else
{
wxExpr *idExpr = expr->Nth(0);
int opId = (int)idExpr->IntegerValue();
switch (opId)
{
case DRAWOP_SET_PEN:
case DRAWOP_SET_BRUSH:
case DRAWOP_SET_FONT:
case DRAWOP_SET_TEXT_COLOUR:
case DRAWOP_SET_BK_COLOUR:
case DRAWOP_SET_BK_MODE:
{
wxOpSetGDI *theOp = new wxOpSetGDI(opId, this, 0);
theOp->ReadExpr(this, expr);
m_ops.Append(theOp);
break;
}
case DRAWOP_SET_CLIPPING_RECT:
case DRAWOP_DESTROY_CLIPPING_RECT:
{
wxOpSetClipping *theOp = new wxOpSetClipping(opId, 0.0, 0.0, 0.0, 0.0);
theOp->ReadExpr(this, expr);
m_ops.Append(theOp);
break;
}
case DRAWOP_DRAW_LINE:
case DRAWOP_DRAW_RECT:
case DRAWOP_DRAW_ROUNDED_RECT:
case DRAWOP_DRAW_ELLIPSE:
case DRAWOP_DRAW_POINT:
case DRAWOP_DRAW_ARC:
case DRAWOP_DRAW_TEXT:
{
wxOpDraw *theOp = new wxOpDraw(opId, 0.0, 0.0, 0.0, 0.0);
theOp->ReadExpr(this, expr);
m_ops.Append(theOp);
break;
}
case DRAWOP_DRAW_SPLINE:
case DRAWOP_DRAW_POLYLINE:
case DRAWOP_DRAW_POLYGON:
{
wxOpPolyDraw *theOp = new wxOpPolyDraw(opId, 0, NULL);
theOp->ReadExpr(this, expr);
m_ops.Append(theOp);
break;
}
default:
break;
}
}
i ++;
}
wxString outlineObjectsStr;
outlineObjectsStr.Printf(wxT("outline_objects%d"), whichAngle);
// Now read in the list of outline and fill operations, if any
wxExpr *expr1 = clause->AttributeValue(outlineObjectsStr);
if (expr1)
{
wxExpr *eachExpr = expr1->GetFirst();
while (eachExpr)
{
m_outlineColours.Append((wxObject *)eachExpr->IntegerValue());
eachExpr = eachExpr->GetNext();
}
}
wxString fillObjectsStr;
fillObjectsStr.Printf(wxT("fill_objects%d"), whichAngle);
expr1 = clause->AttributeValue(fillObjectsStr);
if (expr1)
{
wxExpr *eachExpr = expr1->GetFirst();
while (eachExpr)
{
m_fillColours.Append((wxObject *)eachExpr->IntegerValue());
eachExpr = eachExpr->GetNext();
}
}
}
#endif
// Does the copying for this object
void wxPseudoMetaFile::Copy(wxPseudoMetaFile ©)
{
copy.Clear();
copy.m_currentRotation = m_currentRotation;
copy.m_width = m_width;
copy.m_height = m_height;
copy.m_rotateable = m_rotateable;
copy.m_fillBrush = m_fillBrush;
copy.m_outlinePen = m_outlinePen;
copy.m_outlineOp = m_outlineOp;
// Copy the GDI objects
wxNode *node = m_gdiObjects.GetFirst();
while (node)
{
wxObject *obj = (wxObject *)node->GetData();
copy.m_gdiObjects.Append(obj);
node = node->GetNext();
}
// Copy the operations
node = m_ops.GetFirst();
while (node)
{
wxDrawOp *op = (wxDrawOp *)node->GetData();
copy.m_ops.Append(op->Copy(©));
node = node->GetNext();
}
// Copy the outline/fill operations
node = m_outlineColours.GetFirst();
while (node)
{
copy.m_outlineColours.Append((wxObject *)node->GetData());
node = node->GetNext();
}
node = m_fillColours.GetFirst();
while (node)
{
copy.m_fillColours.Append((wxObject *)node->GetData());
node = node->GetNext();
}
}
/*
* Pass size of existing image; scale height to
* fit width and return new width and height.
*
*/
bool wxPseudoMetaFile::LoadFromMetaFile(const wxString &filename, double *rwidth, double *rheight)
{
if (!wxFileExists(filename))
return FALSE;
wxXMetaFile *metaFile = new wxXMetaFile;
if (!metaFile->ReadFile(filename))
{
delete metaFile;
return FALSE;
}
double lastX = 0.0;
double lastY = 0.0;
// Convert from metafile records to wxDrawnShape records
wxNode *node = metaFile->metaRecords.GetFirst();
while (node)
{
wxMetaRecord *record = (wxMetaRecord *)node->GetData();
switch (record->metaFunction)
{
case META_SETBKCOLOR:
{
wxOpSetGDI *op = new wxOpSetGDI(DRAWOP_SET_BK_COLOUR, this, 0);
op->m_r = (unsigned char)record->param1;
op->m_g = (unsigned char)record->param2;
op->m_b = (unsigned char)record->param3;
m_ops.Append(op);
break;
}
case META_SETBKMODE:
{
wxOpSetGDI *op = new wxOpSetGDI(DRAWOP_SET_BK_MODE, this, 0, (int)record->param1);
m_ops.Append(op);
break;
}
case META_SETMAPMODE:
{
break;
}
// case META_SETROP2:
// case META_SETRELABS:
// case META_SETPOLYFILLMODE:
// case META_SETSTRETCHBLTMODE:
// case META_SETTEXTCHAREXTRA:
case META_SETTEXTCOLOR:
{
wxOpSetGDI *op = new wxOpSetGDI(DRAWOP_SET_TEXT_COLOUR, this, 0);
op->m_r = (unsigned char)record->param1;
op->m_g = (unsigned char)record->param2;
op->m_b = (unsigned char)record->param3;
m_ops.Append(op);
break;
}
// case META_SETTEXTJUSTIFICATION:
// case META_SETWINDOWORG:
// case META_SETWINDOWEXT:
// case META_SETVIEWPORTORG:
// case META_SETVIEWPORTEXT:
// case META_OFFSETWINDOWORG:
// case META_SCALEWINDOWEXT:
// case META_OFFSETVIEWPORTORG:
// case META_SCALEVIEWPORTEXT:
case META_LINETO:
{
wxOpDraw *op = new wxOpDraw(DRAWOP_DRAW_LINE, (double)lastX, (double)lastY,
(double)record->param1, (double)record->param2);
m_ops.Append(op);
break;
}
case META_MOVETO:
{
lastX = (double)record->param1;
lastY = (double)record->param2;
break;
}
case META_EXCLUDECLIPRECT:
{
/*
wxMetaRecord *rec = new wxMetaRecord(META_EXCLUDECLIPRECT);
rec->param4 = getshort(handle); // m_y2
rec->param3 = getshort(handle); // x2
rec->param2 = getshort(handle); // y1
rec->param1 = getshort(handle); // x1
*/
break;
}
case META_INTERSECTCLIPRECT:
{
/*
rec->param4 = getshort(handle); // m_y2
rec->param3 = getshort(handle); // x2
rec->param2 = getshort(handle); // y1
rec->param1 = getshort(handle); // x1
*/
break;
}
// case META_ARC: // DO!!!
case META_ELLIPSE:
{
wxOpDraw *op = new wxOpDraw(DRAWOP_DRAW_ELLIPSE,
(double)record->param1, (double)record->param2,
(double)(record->param3 - record->param1),
(double)(record->param4 - record->param2));
m_ops.Append(op);
break;
}
// case META_FLOODFILL:
// case META_PIE: // DO!!!
case META_RECTANGLE:
{
wxOpDraw *op = new wxOpDraw(DRAWOP_DRAW_RECT,
(double)record->param1, (double)record->param2,
(double)(record->param3 - record->param1),
(double)(record->param4 - record->param2));
m_ops.Append(op);
break;
}
case META_ROUNDRECT:
{
wxOpDraw *op = new wxOpDraw(DRAWOP_DRAW_ROUNDED_RECT,
(double)record->param1, (double)record->param2,
(double)(record->param3 - record->param1),
(double)(record->param4 - record->param2), (double)record->param5);
m_ops.Append(op);
break;
}
// case META_PATBLT:
// case META_SAVEDC:
case META_SETPIXEL:
{
wxOpDraw *op = new wxOpDraw(DRAWOP_DRAW_POINT,
(double)record->param1, (double)record->param2,
0.0, 0.0);
// SHOULD SET THE COLOUR - SET PEN?
// rec->param3 = getint(handle); // COLORREF
m_ops.Append(op);
break;
}
// case META_OFFSETCLIPRGN:
case META_TEXTOUT:
{
wxOpDraw *op = new wxOpDraw(DRAWOP_DRAW_TEXT,
(double)record->param1, (double)record->param2,
0.0, 0.0, 0.0, record->stringParam);
m_ops.Append(op);
break;
}
// case META_BITBLT:
// case META_STRETCHBLT:
case META_POLYGON:
{
int n = (int)record->param1;
wxRealPoint *newPoints = new wxRealPoint[n];
for (int i = 0; i < n; i++)
{
newPoints[i].x = record->points[i].x;
newPoints[i].y = record->points[i].y;
}
wxOpPolyDraw *op = new wxOpPolyDraw(DRAWOP_DRAW_POLYGON, n, newPoints);
m_ops.Append(op);
break;
}
case META_POLYLINE:
{
int n = (int)record->param1;
wxRealPoint *newPoints = new wxRealPoint[n];
for (int i = 0; i < n; i++)
{
newPoints[i].x = record->points[i].x;
newPoints[i].y = record->points[i].y;
}
wxOpPolyDraw *op = new wxOpPolyDraw(DRAWOP_DRAW_POLYLINE, n, newPoints);
m_ops.Append(op);
break;
}
// case META_ESCAPE:
// case META_RESTOREDC:
// case META_FILLREGION:
// case META_FRAMEREGION:
// case META_INVERTREGION:
// case META_PAINTREGION:
// case META_SELECTCLIPREGION: // DO THIS!
case META_SELECTOBJECT:
{
// The pen, brush etc. has already been created when the metafile
// was read in, so we don't create it - we set it.
wxNode *recNode = metaFile->gdiObjects.Item((int)record->param2);
if (recNode)
{
wxMetaRecord *gdiRec = (wxMetaRecord *)recNode->GetData();
if (gdiRec && (gdiRec->param1 != 0))
{
wxObject *obj = (wxObject *)gdiRec->param1;
if (obj->IsKindOf(CLASSINFO(wxPen)))
{
wxOpSetGDI *op = new wxOpSetGDI(DRAWOP_SET_PEN, this, (int)record->param2);
m_ops.Append(op);
}
else if (obj->IsKindOf(CLASSINFO(wxBrush)))
{
wxOpSetGDI *op = new wxOpSetGDI(DRAWOP_SET_BRUSH, this, (int)record->param2);
m_ops.Append(op);
}
else if (obj->IsKindOf(CLASSINFO(wxFont)))
{
wxOpSetGDI *op = new wxOpSetGDI(DRAWOP_SET_FONT, this, (int)record->param2);
m_ops.Append(op);
}
}
}
break;
}
// case META_SETTEXTALIGN:
// case META_DRAWTEXT:
// case META_CHORD:
// case META_SETMAPPERFLAGS:
// case META_EXTTEXTOUT:
// case META_SETDIBTODEV:
// case META_SELECTPALETTE:
// case META_REALIZEPALETTE:
// case META_ANIMATEPALETTE:
// case META_SETPALENTRIES:
// case META_POLYPOLYGON:
// case META_RESIZEPALETTE:
// case META_DIBBITBLT:
// case META_DIBSTRETCHBLT:
case META_DIBCREATEPATTERNBRUSH:
{
// Place holder
m_gdiObjects.Append(NULL);
break;
}
// case META_STRETCHDIB:
// case META_EXTFLOODFILL:
// case META_RESETDC:
// case META_STARTDOC:
// case META_STARTPAGE:
// case META_ENDPAGE:
// case META_ABORTDOC:
// case META_ENDDOC:
// case META_DELETEOBJECT: // DO!!
case META_CREATEPALETTE:
{
// Place holder
m_gdiObjects.Append(NULL);
break;
}
case META_CREATEBRUSH:
{
// Place holder
m_gdiObjects.Append(NULL);
break;
}
case META_CREATEPATTERNBRUSH:
{
// Place holder
m_gdiObjects.Append(NULL);
break;
}
case META_CREATEPENINDIRECT:
{
// The pen is created when the metafile is read in.
// We keep track of all the GDI objects needed for this
// image so when reading the wxDrawnShape from file,
// we can read in all the GDI objects, then refer
// to them by an index starting from zero thereafter.
m_gdiObjects.Append((wxObject *)record->param1);
break;
}
case META_CREATEFONTINDIRECT:
{
m_gdiObjects.Append((wxObject *)record->param1);
break;
}
case META_CREATEBRUSHINDIRECT:
{
// Don't have to do anything here: the pen is created
// when the metafile is read in.
m_gdiObjects.Append((wxObject *)record->param1);
break;
}
case META_CREATEBITMAPINDIRECT:
{
// Place holder
m_gdiObjects.Append(NULL);
break;
}
case META_CREATEBITMAP:
{
// Place holder
m_gdiObjects.Append(NULL);
break;
}
case META_CREATEREGION:
{
// Place holder
m_gdiObjects.Append(NULL);
break;
}
default:
{
break;
}
}
node = node->GetNext();
}
double actualWidth = (double)fabs(metaFile->right - metaFile->left);
double actualHeight = (double)fabs(metaFile->bottom - metaFile->top);
double initialScaleX = 1.0;
double initialScaleY = 1.0;
double xoffset, yoffset;
// Translate so origin is at centre of rectangle
if (metaFile->bottom > metaFile->top)
yoffset = - (double)((metaFile->bottom - metaFile->top) / 2.0);
else
yoffset = - (double)((metaFile->top - metaFile->bottom) / 2.0);
if (metaFile->right > metaFile->left)
xoffset = - (double)((metaFile->right - metaFile->left) / 2.0);
else
xoffset = - (double)((metaFile->left - metaFile->right) / 2.0);
Translate(xoffset, yoffset);
// Scale to a reasonable size (take the width of this wxDrawnShape
// as a guide)
if (actualWidth != 0.0)
{
initialScaleX = (double)((*rwidth) / actualWidth);
initialScaleY = initialScaleX;
(*rheight) = initialScaleY * actualHeight;
}
Scale(initialScaleX, initialScaleY);
m_width = (actualWidth * initialScaleX);
m_height = *rheight;
delete metaFile;
return TRUE;
}
// Scale to fit size
void wxPseudoMetaFile::ScaleTo(double w, double h)
{
double scaleX = (double)(w / m_width);
double scaleY = (double)(h / m_height);
// Do the scaling
Scale(scaleX, scaleY);
}
void wxPseudoMetaFile::GetBounds(double *boundMinX, double *boundMinY, double *boundMaxX, double *boundMaxY)
{
double maxX = (double) - 99999.9;
double maxY = (double) - 99999.9;
double minX = (double) 99999.9;
double minY = (double) 99999.9;
wxNode *node = m_ops.GetFirst();
while (node)
{
wxDrawOp *op = (wxDrawOp *)node->GetData();
switch (op->GetOp())
{
case DRAWOP_DRAW_LINE:
case DRAWOP_DRAW_RECT:
case DRAWOP_DRAW_ROUNDED_RECT:
case DRAWOP_DRAW_ELLIPSE:
case DRAWOP_DRAW_POINT:
case DRAWOP_DRAW_TEXT:
{
wxOpDraw *opDraw = (wxOpDraw *)op;
if (opDraw->m_x1 < minX) minX = opDraw->m_x1;
if (opDraw->m_x1 > maxX) maxX = opDraw->m_x1;
if (opDraw->m_y1 < minY) minY = opDraw->m_y1;
if (opDraw->m_y1 > maxY) maxY = opDraw->m_y1;
if (op->GetOp() == DRAWOP_DRAW_LINE)
{
if (opDraw->m_x2 < minX) minX = opDraw->m_x2;
if (opDraw->m_x2 > maxX) maxX = opDraw->m_x2;
if (opDraw->m_y2 < minY) minY = opDraw->m_y2;
if (opDraw->m_y2 > maxY) maxY = opDraw->m_y2;
}
else if (op->GetOp() == DRAWOP_DRAW_RECT ||
op->GetOp() == DRAWOP_DRAW_ROUNDED_RECT ||
op->GetOp() == DRAWOP_DRAW_ELLIPSE)
{
if ((opDraw->m_x1 + opDraw->m_x2) < minX) minX = (opDraw->m_x1 + opDraw->m_x2);
if ((opDraw->m_x1 + opDraw->m_x2) > maxX) maxX = (opDraw->m_x1 + opDraw->m_x2);
if ((opDraw->m_y1 + opDraw->m_y2) < minY) minY = (opDraw->m_y1 + opDraw->m_y2);
if ((opDraw->m_y1 + opDraw->m_y2) > maxY) maxY = (opDraw->m_y1 + opDraw->m_y2);
}
break;
}
case DRAWOP_DRAW_ARC:
{
// TODO: don't yet know how to calculate the bounding box
// for an arc. So pretend it's a line; to get a correct
// bounding box, draw a blank rectangle first, of the correct
// size.
wxOpDraw *opDraw = (wxOpDraw *)op;
if (opDraw->m_x1 < minX) minX = opDraw->m_x1;
if (opDraw->m_x1 > maxX) maxX = opDraw->m_x1;
if (opDraw->m_y1 < minY) minY = opDraw->m_y1;
if (opDraw->m_y1 > maxY) maxY = opDraw->m_y1;
if (opDraw->m_x2 < minX) minX = opDraw->m_x2;
if (opDraw->m_x2 > maxX) maxX = opDraw->m_x2;
if (opDraw->m_y2 < minY) minY = opDraw->m_y2;
if (opDraw->m_y2 > maxY) maxY = opDraw->m_y2;
break;
}
case DRAWOP_DRAW_POLYLINE:
case DRAWOP_DRAW_POLYGON:
case DRAWOP_DRAW_SPLINE:
{
wxOpPolyDraw *poly = (wxOpPolyDraw *)op;
for (int i = 0; i < poly->m_noPoints; i++)
{
if (poly->m_points[i].x < minX) minX = poly->m_points[i].x;
if (poly->m_points[i].x > maxX) maxX = poly->m_points[i].x;
if (poly->m_points[i].y < minY) minY = poly->m_points[i].y;
if (poly->m_points[i].y > maxY) maxY = poly->m_points[i].y;
}
break;
}
default:
break;
}
node = node->GetNext();
}
*boundMinX = minX;
*boundMinY = minY;
*boundMaxX = maxX;
*boundMaxY = maxY;
/*
*w = (double)fabs(maxX - minX);
*h = (double)fabs(maxY - minY);
*/
}
// Calculate size from current operations
void wxPseudoMetaFile::CalculateSize(wxDrawnShape *shape)
{
double boundMinX, boundMinY, boundMaxX, boundMaxY;
GetBounds(& boundMinX, & boundMinY, & boundMaxX, & boundMaxY);
SetSize(boundMaxX - boundMinX, boundMaxY - boundMinY);
if (shape)
{
shape->SetWidth(m_width);
shape->SetHeight(m_height);
}
}
// Set of functions for drawing into a pseudo metafile.
// They use integers, but doubles are used internally for accuracy
// when scaling.
void wxPseudoMetaFile::DrawLine(const wxPoint &pt1, const wxPoint &pt2)
{
wxOpDraw *theOp = new wxOpDraw(DRAWOP_DRAW_LINE,
(double) pt1.x, (double) pt1.y, (double) pt2.x, (double) pt2.y);
m_ops.Append(theOp);
}
void wxPseudoMetaFile::DrawRectangle(const wxRect &rect)
{
wxOpDraw *theOp = new wxOpDraw(DRAWOP_DRAW_RECT,
(double) rect.x, (double) rect.y, (double) rect.width, (double) rect.height);
m_ops.Append(theOp);
}
void wxPseudoMetaFile::DrawRoundedRectangle(const wxRect &rect, double radius)
{
wxOpDraw *theOp = new wxOpDraw(DRAWOP_DRAW_ROUNDED_RECT,
(double) rect.x, (double) rect.y, (double) rect.width, (double) rect.height);
theOp->m_radius = radius;
m_ops.Append(theOp);
}
void wxPseudoMetaFile::DrawEllipse(const wxRect &rect)
{
wxOpDraw *theOp = new wxOpDraw(DRAWOP_DRAW_ELLIPSE,
(double) rect.x, (double) rect.y, (double) rect.width, (double) rect.height);
m_ops.Append(theOp);
}
void wxPseudoMetaFile::DrawArc(const wxPoint ¢rePt, const wxPoint &startPt, const wxPoint &endPt)
{
wxOpDraw *theOp = new wxOpDraw(DRAWOP_DRAW_ARC,
(double) centrePt.x, (double) centrePt.y, (double) startPt.x, (double) startPt.y);
theOp->m_x3 = (double) endPt.x;
theOp->m_y3 = (double) endPt.y;
m_ops.Append(theOp);
}
void wxPseudoMetaFile::DrawEllipticArc(const wxRect &rect, double startAngle, double endAngle)
{
const double pi = 3.1415926535897932384626433832795 ;
double startAngleRadians = startAngle * (pi * 2.0 / 360.0);
double endAngleRadians = endAngle * (pi * 2.0 / 360.0);
wxOpDraw *theOp = new wxOpDraw(DRAWOP_DRAW_ELLIPTIC_ARC,
(double) rect.x, (double) rect.y, (double) rect.width, (double) rect.height);
theOp->m_x3 = startAngleRadians;
theOp->m_y3 = endAngleRadians;
m_ops.Append(theOp);
}
void wxPseudoMetaFile::DrawPoint(const wxPoint &pt)
{
wxOpDraw *theOp = new wxOpDraw(DRAWOP_DRAW_POINT,
(double) pt.x, (double) pt.y, 0.0, 0.0);
m_ops.Append(theOp);
}
void wxPseudoMetaFile::DrawText(const wxString &text, const wxPoint &pt)
{
wxOpDraw *theOp = new wxOpDraw(DRAWOP_DRAW_TEXT,
(double) pt.x, (double) pt.y, 0.0, 0.0);
theOp->m_textString = oglCopystring(text);
m_ops.Append(theOp);
}
void wxPseudoMetaFile::DrawLines(int n, wxPoint pts[])
{
wxRealPoint *realPoints = new wxRealPoint[n];
int i;
for (i = 0; i < n; i++)
{
realPoints[i].x = pts[i].x;
realPoints[i].y = pts[i].y;
}
wxOpPolyDraw *theOp = new wxOpPolyDraw(DRAWOP_DRAW_POLYLINE, n, realPoints);
m_ops.Append(theOp);
}
void wxPseudoMetaFile::DrawPolygon(int n, wxPoint pts[], int flags)
{
wxRealPoint *realPoints = new wxRealPoint[n];
int i;
for (i = 0; i < n; i++)
{
realPoints[i].x = pts[i].x;
realPoints[i].y = pts[i].y;
}
wxOpPolyDraw *theOp = new wxOpPolyDraw(DRAWOP_DRAW_POLYGON, n, realPoints);
m_ops.Append(theOp);
if (flags & oglMETAFLAGS_OUTLINE)
m_outlineOp = (m_ops.GetCount() - 1);
}
void wxPseudoMetaFile::DrawSpline(int n, wxPoint pts[])
{
wxRealPoint *realPoints = new wxRealPoint[n];
int i;
for (i = 0; i < n; i++)
{
realPoints[i].x = pts[i].x;
realPoints[i].y = pts[i].y;
}
wxOpPolyDraw *theOp = new wxOpPolyDraw(DRAWOP_DRAW_SPLINE, n, realPoints);
m_ops.Append(theOp);
}
void wxPseudoMetaFile::SetClippingRect(const wxRect &rect)
{
/* wxOpSetClipping* theOp = */ new wxOpSetClipping(DRAWOP_SET_CLIPPING_RECT,
(double) rect.x, (double) rect.y, (double) rect.width, (double) rect.height);
}
void wxPseudoMetaFile::DestroyClippingRect()
{
wxOpSetClipping *theOp = new wxOpSetClipping(DRAWOP_DESTROY_CLIPPING_RECT,
0.0, 0.0, 0.0, 0.0);
m_ops.Append(theOp);
}
void wxPseudoMetaFile::SetPen(wxPen *pen, bool isOutline)
{
m_gdiObjects.Append(pen);
int n = m_gdiObjects.GetCount();
wxOpSetGDI *theOp = new wxOpSetGDI(DRAWOP_SET_PEN, this, n - 1);
m_ops.Append(theOp);
if (isOutline)
{
m_outlineColours.Append((wxObject *) (n - 1));
}
}
void wxPseudoMetaFile::SetBrush(wxBrush *brush, bool isFill)
{
m_gdiObjects.Append(brush);
int n = m_gdiObjects.GetCount();
wxOpSetGDI *theOp = new wxOpSetGDI(DRAWOP_SET_BRUSH, this, n - 1);
m_ops.Append(theOp);
if (isFill)
{
m_fillColours.Append((wxObject *) (n - 1));
}
}
void wxPseudoMetaFile::SetFont(wxFont *font)
{
m_gdiObjects.Append(font);
int n = m_gdiObjects.GetCount();
wxOpSetGDI *theOp = new wxOpSetGDI(DRAWOP_SET_FONT, this, n - 1);
m_ops.Append(theOp);
}
void wxPseudoMetaFile::SetTextColour(const wxColour &colour)
{
wxOpSetGDI *theOp = new wxOpSetGDI(DRAWOP_SET_TEXT_COLOUR, this, 0);
theOp->m_r = colour.Red();
theOp->m_g = colour.Green();
theOp->m_b = colour.Blue();
m_ops.Append(theOp);
}
void wxPseudoMetaFile::SetBackgroundColour(const wxColour &colour)
{
wxOpSetGDI *theOp = new wxOpSetGDI(DRAWOP_SET_BK_COLOUR, this, 0);
theOp->m_r = colour.Red();
theOp->m_g = colour.Green();
theOp->m_b = colour.Blue();
m_ops.Append(theOp);
}
void wxPseudoMetaFile::SetBackgroundMode(int mode)
{
wxOpSetGDI *theOp = new wxOpSetGDI(DRAWOP_SET_BK_MODE, this, 0, mode);
m_ops.Append(theOp);
}
|