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
|
/*
* bltCanvEps.c --
*
* This file implements Encapsulated PostScript items for canvas widgets.
*
* Copyright 1991-1998 Lucent Technologies, Inc.
*
* Permission to use, copy, modify, and distribute this software and
* its documentation for any purpose and without fee is hereby
* granted, provided that the above copyright notice appear in all
* copies and that both that the copyright notice and warranty
* disclaimer appear in supporting documentation, and that the names
* of Lucent Technologies any of their entities not be used in
* advertising or publicity pertaining to distribution of the software
* without specific, written prior permission.
*
* Lucent Technologies disclaims all warranties with regard to this
* software, including all implied warranties of merchantability and
* fitness. In no event shall Lucent Technologies be liable for any
* special, indirect or consequential damages or any damages
* whatsoever resulting from loss of use, data or profits, whether in
* an action of contract, negligence or other tortuous action, arising
* out of or in connection with the use or performance of this
* software.
*
* EPS canvas item created by George Howlett.
*/
/*
* To do:
*
* 1. Add -rotate option. Allow arbitrary rotation of image and EPS.
* 2. Draw color images instead of photos. This will eliminate the need
* to create hidden photo images.
* 3. Create a spiffy demo that lets you edit your page description.
*/
#include "bltInt.h"
#include "bltPs.h"
#include "bltImage.h"
#ifdef HAVE_TIFF_H
#include "tiff.h"
#endif
#include <fcntl.h>
#if defined(_MSC_VER) || defined(__BORLANDC__)
#include <io.h>
#define open _open
#define close _close
#define write _write
#define unlink _unlink
#define lseek _lseek
#define fdopen _fdopen
#define fcntl _fcntl
#ifdef _MSC_VER
#define O_RDWR _O_RDWR
#define O_CREAT _O_CREAT
#define O_TRUNC _O_TRUNC
#define O_EXCL _O_EXCL
#endif /* _MSC_VER */
#endif /* _MSC_VER || __BORLANDC__ */
#define DEBUG_READER 0
#ifndef WIN32
#define PurifyPrintf printf
#endif
#define PS_PREVIEW_EPSI 0
#define PS_PREVIEW_WMF 1
#define PS_PREVIEW_TIFF 2
#define xLeft header.x1
#define xRight header.x2
#define yTop header.y1
#define yBottom header.y2
#define MAX_EPS_LINE_LENGTH 255 /* Maximum line length for a EPS file */
/*
* ParseInfo --
*
* This structure is used to pass PostScript file information
* around to various routines while parsing the EPS file.
*/
typedef struct {
int maxBytes; /* Maximum length of PostScript code. */
int lineNumber; /* Current line number of EPS file */
char line[MAX_EPS_LINE_LENGTH + 1];
/* Buffer to contain a single line from
* the PostScript file. */
char hexTable[256]; /* Table for converting ASCII hex digits to
* values */
char *nextPtr; /* Pointer to the next character to process on
* the current line. If NULL (or if nextPtr
* points a NULL byte), this indicates the
* the next line needs to be read. */
FILE *f; /* */
} ParseInfo;
#define DEF_EPS_ANCHOR "nw"
#define DEF_EPS_OUTLINE_COLOR RGB_BLACK
#define DEF_EPS_OUTLINE_MONO RGB_BLACK
#define DEF_EPS_BORDERWIDTH STD_BORDERWIDTH
#define DEF_EPS_FILE_NAME (char *)NULL
#define DEF_EPS_FONT STD_FONT
#define DEF_EPS_FILL_COLOR STD_NORMAL_FOREGROUND
#define DEF_EPS_FILL_MONO STD_NORMAL_FG_MONO
#define DEF_EPS_HEIGHT "0"
#define DEF_EPS_IMAGE_NAME (char *)NULL
#define DEF_EPS_JUSTIFY "center"
#define DEF_EPS_QUICK_RESIZE "no"
#define DEF_EPS_RELIEF "sunken"
#define DEF_EPS_SHADOW_COLOR (char *)NULL
#define DEF_EPS_SHADOW_MONO (char *)NULL
#define DEF_EPS_SHOW_IMAGE "yes"
#define DEF_EPS_STIPPLE (char *)NULL
#define DEF_EPS_TAGS (char *)NULL
#define DEF_EPS_TITLE (char *)NULL
#define DEF_EPS_TITLE_ANCHOR "center"
#define DEF_EPS_TITLE_COLOR RGB_BLACK
#define DEF_EPS_TITLE_ROTATE "0"
#define DEF_EPS_WIDTH "0"
/*
* Information used for parsing configuration specs:
*/
static Tk_CustomOption tagsOption;
extern Tk_CustomOption bltDistanceOption;
extern Tk_CustomOption bltShadowOption;
/*
* The structure below defines the record for each EPS item.
*/
typedef struct {
Tk_Item header; /* Generic stuff that's the same for all
* types. MUST BE FIRST IN STRUCTURE. */
Tk_Canvas canvas; /* Canvas containing the EPS item. */
int canvasX, canvasY; /* Translated (by the anchor) canvas
* coordinates of the EPS item. */
int lastWidth, lastHeight; /* Last known dimensions of the EPS item.
* This is used to know if the color image
* preview needs to be resized. */
Tcl_Interp *interp;
FILE *psFile; /* File pointer to Encapsulated
* PostScript file. We'll hold this as
* long as the EPS item is using this
* file. */
size_t psStart; /* File offset of PostScript code. */
size_t psLength; /* Length of PostScript code. If zero,
* indicates to read to EOF. */
size_t wmfStart; /* File offset of Windows Metafile preview. */
size_t wmfLength; /* Length of WMF portion in bytes. If zero,
* indicates there is no WMF preview. */
size_t tiffStart; /* File offset of TIFF preview. */
size_t tiffLength; /* Length of TIFF portion in bytes. If zero,
* indicates there is no TIFF preview. */
char *previewName;
int previewFormat;
Tk_Image preview; /* A Tk photo image provided as a
* preview of the EPS contents. This
* image supersedes any EPS preview
* embedded PostScript preview (EPSI). */
Tk_Image tmpImage; /* Used to display the resized preview image.
* Created and deleted internally. */
Pixmap pixmap; /* Pixmap representing scaled preview. This
* isn't currently used. For now we're
* overwriting the Tk image everytime the
* EPS item is resized. In the future
* we'll use our own image routines. */
ColorTable colorTable; /* Pointer to color table */
Blt_ColorImage colorImage; /* The original photo or PostScript
* preview image converted to a color
* image. This is kept around for
* resampling or resizing the image. */
int firstLine, lastLine;
/* First and last line numbers of the
* PostScript preview. They are used
* to skip over the preview when
* encapsulating PostScript for the
* canvas item. */
GC fillGC; /* Graphics context to fill background
* of image outline if no preview image
* was present. */
int llx, lly, urx, ury; /* Lower left and upper right coordinates
* of PostScript bounding box, retrieved
* from file's "BoundingBox:" field. */
char *title; /* Title, retrieved from the file's "Title:"
* field, to be displayed over the top of
* the EPS preview (malloc-ed). */
Tcl_DString dString; /* Contains the encapsulate PostScript. */
/* User configurable fields */
double x, y; /* Canvas coordinates of the item */
Tk_Anchor anchor;
char *fileName; /* Name of the encapsulated PostScript file.
* If NULL, indicates that no EPS file
* has be successfully loaded yet. */
char *reqTitle; /* Title to be displayed in the EPS item.
* Supersedes the title found in the EPS
* file. If NULL, indicates that the title
* found in the EPS file should be used. */
int width, height; /* Dimensions of EPS item. If set to zero,
* the dimension found in the "%%BoundingBox:"
* specification from the EPS file are
* used. */
int showImage; /* Indicates if the image or the outline
* rectangle should be displayed */
int quick;
XColor *fillColor; /* Fill color of the image outline. */
Tk_3DBorder border; /* Outline color */
int borderWidth;
int relief;
TextStyle titleStyle; /* Font, color, etc. for title */
Pixmap stipple; /* Stipple for image fill */
ClientData tiffPtr;
#ifdef WIN32
HENHMETAFILE *hMetaFile; /* Windows metafile. */
#endif
} EpsItem;
static Tk_ConfigSpec configSpecs[] =
{
{TK_CONFIG_ANCHOR, "-anchor", (char *)NULL, (char *)NULL,
DEF_EPS_ANCHOR, Tk_Offset(EpsItem, anchor),
TK_CONFIG_DONT_SET_DEFAULT},
{TK_CONFIG_SYNONYM, "-bd", "borderWidth", (char *)NULL, (char *)NULL, 0, 0},
{TK_CONFIG_CUSTOM, "-borderwidth", "borderWidth", (char *)NULL,
DEF_EPS_BORDERWIDTH, Tk_Offset(EpsItem, borderWidth),
TK_CONFIG_DONT_SET_DEFAULT, &bltDistanceOption},
{TK_CONFIG_STRING, "-file", (char *)NULL, (char *)NULL,
DEF_EPS_FILE_NAME, Tk_Offset(EpsItem, fileName), TK_CONFIG_NULL_OK},
{TK_CONFIG_FONT, "-font", "font", "Font",
DEF_EPS_FONT, Tk_Offset(EpsItem, titleStyle.font), 0},
{TK_CONFIG_COLOR, "-fill", "fill", (char *)NULL,
DEF_EPS_FILL_COLOR, Tk_Offset(EpsItem, fillColor), TK_CONFIG_COLOR_ONLY},
{TK_CONFIG_COLOR, "-fill", "fill", (char *)NULL,
DEF_EPS_FILL_MONO, Tk_Offset(EpsItem, fillColor), TK_CONFIG_MONO_ONLY},
{TK_CONFIG_CUSTOM, "-height", (char *)NULL, (char *)NULL,
DEF_EPS_HEIGHT, Tk_Offset(EpsItem, height),
TK_CONFIG_DONT_SET_DEFAULT, &bltDistanceOption},
{TK_CONFIG_STRING, "-image", (char *)NULL, (char *)NULL,
DEF_EPS_IMAGE_NAME, Tk_Offset(EpsItem, previewName),
TK_CONFIG_NULL_OK},
{TK_CONFIG_JUSTIFY, "-justify", "justify", "Justify",
DEF_EPS_JUSTIFY, Tk_Offset(EpsItem, titleStyle.justify),
TK_CONFIG_DONT_SET_DEFAULT},
{TK_CONFIG_BORDER, "-outline", "outline", (char *)NULL,
DEF_EPS_OUTLINE_COLOR, Tk_Offset(EpsItem, border),
TK_CONFIG_COLOR_ONLY | TK_CONFIG_NULL_OK},
{TK_CONFIG_BORDER, "-outline", "outline", (char *)NULL,
DEF_EPS_OUTLINE_MONO, Tk_Offset(EpsItem, border),
TK_CONFIG_MONO_ONLY | TK_CONFIG_NULL_OK},
{TK_CONFIG_BOOLEAN, "-quick", "quick", "Quick",
DEF_EPS_QUICK_RESIZE, Tk_Offset(EpsItem, quick),
TK_CONFIG_DONT_SET_DEFAULT},
{TK_CONFIG_RELIEF, "-relief", (char *)NULL, (char *)NULL,
DEF_EPS_RELIEF, Tk_Offset(EpsItem, relief),
TK_CONFIG_DONT_SET_DEFAULT},
{TK_CONFIG_CUSTOM, "-shadow", "shadow", "Shadow",
DEF_EPS_SHADOW_COLOR, Tk_Offset(EpsItem, titleStyle.shadow),
TK_CONFIG_COLOR_ONLY, &bltShadowOption},
{TK_CONFIG_CUSTOM, "-shadow", "shadow", "Shadow",
DEF_EPS_SHADOW_MONO, Tk_Offset(EpsItem, titleStyle.shadow),
TK_CONFIG_MONO_ONLY, &bltShadowOption},
{TK_CONFIG_BOOLEAN, "-showimage", "showImage", "ShowImage",
DEF_EPS_SHOW_IMAGE, Tk_Offset(EpsItem, showImage),
TK_CONFIG_DONT_SET_DEFAULT},
{TK_CONFIG_BITMAP, "-stipple", (char *)NULL, (char *)NULL,
DEF_EPS_STIPPLE, Tk_Offset(EpsItem, stipple), TK_CONFIG_NULL_OK},
{TK_CONFIG_CUSTOM, "-tags", (char *)NULL, (char *)NULL,
DEF_EPS_TAGS, 0, TK_CONFIG_NULL_OK, &tagsOption},
{TK_CONFIG_STRING, "-title", (char *)NULL, (char *)NULL,
DEF_EPS_TITLE, Tk_Offset(EpsItem, reqTitle), TK_CONFIG_NULL_OK},
{TK_CONFIG_ANCHOR, "-titleanchor", (char *)NULL, (char *)NULL,
DEF_EPS_TITLE_ANCHOR, Tk_Offset(EpsItem, titleStyle.anchor), 0},
{TK_CONFIG_COLOR, "-titlecolor", (char *)NULL, (char *)NULL,
DEF_EPS_TITLE_COLOR, Tk_Offset(EpsItem, titleStyle.color),
TK_CONFIG_COLOR_ONLY},
{TK_CONFIG_DOUBLE, "-titlerotate", "titleRotate", "TitleRotate",
DEF_EPS_TITLE_ROTATE, Tk_Offset(EpsItem, titleStyle.theta),
TK_CONFIG_DONT_SET_DEFAULT},
{TK_CONFIG_CUSTOM, "-width", (char *)NULL, (char *)NULL,
DEF_EPS_WIDTH, Tk_Offset(EpsItem, width),
TK_CONFIG_DONT_SET_DEFAULT, &bltDistanceOption},
{TK_CONFIG_END, (char *)NULL, (char *)NULL, (char *)NULL,
(char *)NULL, 0, 0}
};
/*
* Prototypes for procedures defined in this file:
*/
static void ImageChangedProc _ANSI_ARGS_((ClientData clientData, int x, int y,
int width, int height, int imgWidth, int imgHeight));
static int EpsToArea _ANSI_ARGS_((Tk_Canvas canvas, Tk_Item * itemPtr,
double *rectPtr));
static double EpsToPoint _ANSI_ARGS_((Tk_Canvas canvas, Tk_Item * itemPtr,
double *coordPtr));
static void ComputeEpsBbox _ANSI_ARGS_((Tk_Canvas canvas, EpsItem *imgPtr));
#ifdef USE_OLD_CANVAS
static int ConfigureEps _ANSI_ARGS_((Tcl_Interp *interp, Tk_Canvas canvas,
Tk_Item * itemPtr, int argc, char **argv, int flags));
static int CreateEps _ANSI_ARGS_((Tcl_Interp *interp, Tk_Canvas canvas,
Tk_Item * itemPtr, int argc, char **argv));
static int EpsCoords _ANSI_ARGS_((Tcl_Interp *interp, Tk_Canvas canvas,
Tk_Item * itemPtr, int argc, char **argv));
#else
static int ConfigureEps _ANSI_ARGS_((Tcl_Interp *interp, Tk_Canvas canvas,
Tk_Item * itemPtr, int argc, Tcl_Obj *CONST *objv, int flags));
static int CreateEps _ANSI_ARGS_((Tcl_Interp *interp, Tk_Canvas canvas,
Tk_Item * itemPtr, int argc, Tcl_Obj *CONST *objv));
static int EpsCoords _ANSI_ARGS_((Tcl_Interp *interp, Tk_Canvas canvas,
Tk_Item * itemPtr, int argc, Tcl_Obj *CONST *objv));
#endif
static void DeleteEps _ANSI_ARGS_((Tk_Canvas canvas, Tk_Item * itemPtr,
Display *display));
static void DisplayEps _ANSI_ARGS_((Tk_Canvas canvas, Tk_Item * itemPtr,
Display *display, Drawable dst, int x, int y, int width, int height));
static void ScaleEps _ANSI_ARGS_((Tk_Canvas canvas, Tk_Item * itemPtr,
double originX, double originY, double scaleX, double scaleY));
static void TranslateEps _ANSI_ARGS_((Tk_Canvas canvas, Tk_Item * itemPtr,
double deltaX, double deltaY));
static int EpsToPostScript _ANSI_ARGS_((Tcl_Interp *interp, Tk_Canvas canvas,
Tk_Item * itemPtr, int prepass));
static int ReadPostScript _ANSI_ARGS_((Tcl_Interp *interp, EpsItem *epsPtr));
static char *
SkipBlanks(piPtr)
ParseInfo *piPtr;
{
char *s;
for (s = piPtr->line; isspace(UCHAR(*s)); s++) {
/*empty*/
}
return s;
}
static int
ReadPsLine(piPtr)
ParseInfo *piPtr;
{
if (ftell(piPtr->f) < piPtr->maxBytes) {
if (fgets(piPtr->line, MAX_EPS_LINE_LENGTH, piPtr->f) != NULL) {
piPtr->lineNumber++;
#if DEBUG_READER
PurifyPrintf("%d: %s\n", piPtr->lineNumber, piPtr->line);
#endif
return TRUE;
}
}
return FALSE;
}
/*
*----------------------------------------------------------------------
*
* ReverseBits --
*
* Convert a byte from a X image into PostScript image order.
* This requires not only the nybbles to be reversed but also
* their bit values.
*
* Results:
* The converted byte is returned.
*
*----------------------------------------------------------------------
*/
INLINE static unsigned char
ReverseBits(byte)
register unsigned char byte;
{
byte = ((byte >> 1) & 0x55) | ((byte << 1) & 0xaa);
byte = ((byte >> 2) & 0x33) | ((byte << 2) & 0xcc);
byte = ((byte >> 4) & 0x0f) | ((byte << 4) & 0xf0);
return byte;
}
/*
*----------------------------------------------------------------------
*
* GetHexValue --
*
* Reads the next ASCII hex value from EPS preview image and
* converts it.
*
* Results:
* One of three Tcl return values is possible.
*
* TCL_OK the next byte was successfully parsed.
* TCL_ERROR an error occurred processing the next hex value.
* TCL_RETURN "%%EndPreview" line was detected.
*
* The converted hex value is returned via "bytePtr".
*
*----------------------------------------------------------------------
*/
static int
GetHexValue(piPtr, bytePtr)
ParseInfo *piPtr;
unsigned char *bytePtr;
{
register char *p;
unsigned int byte;
p = piPtr->nextPtr;
if (p == NULL) {
nextLine:
if (!ReadPsLine(piPtr)) {
#if DEBUG_READER
PurifyPrintf("short file\n");
#endif
return TCL_ERROR; /* Short file */
}
if (piPtr->line[0] != '%') {
#if DEBUG_READER
PurifyPrintf("line doesn't start with %% (%s)\n", piPtr->line);
#endif
return TCL_ERROR;
}
if ((piPtr->line[1] == '%') &&
(strncmp(piPtr->line + 2, "EndPreview", 10) == 0)) {
#if DEBUG_READER
PurifyPrintf("end of preview (%s)\n", piPtr->line);
#endif
return TCL_RETURN;
}
p = piPtr->line + 1;
}
while (isspace((int)*p)) {
p++; /* Skip spaces */
}
if (*p == '\0') {
goto nextLine;
}
if ((!isxdigit((int)p[0])) || (!isxdigit((int)p[1]))) {
#if DEBUG_READER
PurifyPrintf("not a hex digit (%s)\n", piPtr->line);
#endif
return TCL_ERROR;
}
byte = (piPtr->hexTable[(int)p[0]] << 4) | piPtr->hexTable[(int)p[1]];
p += 2;
piPtr->nextPtr = p;
*bytePtr = byte;
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
* ReadEPSI --
*
* Reads the EPS preview image from the PostScript file, converting
* the image into a Blt_ColorImage. If an error occurs when parsing
* the preview, the preview is silently ignored.
*
* Results:
* None.
*
*----------------------------------------------------------------------
*/
static void
ReadEPSI(epsPtr, piPtr)
EpsItem *epsPtr;
ParseInfo *piPtr;
{
Blt_ColorImage image;
int width, height, bitsPerPixel, nLines;
char *dscBeginPreview;
dscBeginPreview = piPtr->line + 16;
if (sscanf(dscBeginPreview, "%d %d %d %d", &width, &height, &bitsPerPixel,
&nLines) != 4) {
#if DEBUG_READER
PurifyPrintf("bad %%BeginPreview (%s) format\n", dscBeginPreview);
#endif
return;
}
if (((bitsPerPixel != 1) && (bitsPerPixel != 8)) || (width < 1) ||
(width > SHRT_MAX) || (height < 1) || (height > SHRT_MAX)) {
#if DEBUG_READER
PurifyPrintf("Bad %%BeginPreview (%s) values\n", dscBeginPreview);
#endif
return; /* Bad "%%BeginPreview:" information */
}
epsPtr->firstLine = piPtr->lineNumber;
Blt_InitHexTable(piPtr->hexTable);
piPtr->nextPtr = NULL;
image = Blt_CreateColorImage(width, height);
if (bitsPerPixel == 8) {
int result;
register Pix32 *destPtr;
register int x, y;
unsigned char byte;
for (y = height - 1; y >= 0; y--) {
destPtr = Blt_ColorImageBits(image) + (y * width);
for (x = 0; x < width; x++, destPtr++) {
result = GetHexValue(piPtr, &byte);
if (result == TCL_ERROR) {
goto error;
}
if (result == TCL_RETURN) {
goto done;
}
destPtr->Red = destPtr->Green = destPtr->Blue = ~byte;
destPtr->Alpha = 0xFF;
}
}
} else if (bitsPerPixel == 1) {
int result;
register Pix32 *destPtr;
register int x, y;
unsigned char byte;
register int bit;
destPtr = Blt_ColorImageBits(image);
for (y = 0; y < height; y++) {
bit = 8;
for (x = 0; x < width; x++, destPtr++) {
if (bit == 8) {
result = GetHexValue(piPtr, &byte);
if (result == TCL_ERROR) {
goto error;
}
if (result == TCL_RETURN) {
goto done;
}
byte = ReverseBits(byte);
bit = 0;
}
if (((byte >> bit) & 0x01) == 0) {
destPtr->value = 0xFFFFFFFF;
}
bit++;
}
}
} else {
fprintf(stderr, "unknown EPSI bitsPerPixel (%d)\n", bitsPerPixel);
}
done:
epsPtr->colorImage = image;
epsPtr->lastLine = piPtr->lineNumber + 1;
return;
error:
epsPtr->firstLine = epsPtr->lastLine = -1;
if (image != NULL) {
Blt_FreeColorImage(image);
}
}
/*
*----------------------------------------------------------------------
*
* ReadPostScript --
*
* This routine reads and parses the few fields we need out
* of an EPS file.
*
* The EPS standards are outlined from Appendix H of the
* "PostScript Language Reference Manual" pp. 709-736.
*
* Mandatory fields:
*
* - Starts with "%!PS*"
* - Contains "%%BoundingBox: llx lly urx ury"
*
* Optional fields for EPS item:
* - "%%BeginPreview: w h bpp #lines"
* Preview is in hexadecimal. Each line must start with "%"
* - "%%EndPreview"
* - "%%Title: (string)"
*
*----------------------------------------------------------------------
*/
static int
ReadPostScript(interp, epsPtr)
Tcl_Interp *interp;
EpsItem *epsPtr;
{
char *field;
char *dscTitle, *dscBoundingBox;
char *dscEndComments;
ParseInfo pi;
pi.line[0] = '\0';
pi.maxBytes = epsPtr->psLength;
pi.lineNumber = 0;
pi.f = epsPtr->psFile;
Tcl_DStringInit(&epsPtr->dString);
if (pi.maxBytes == 0) {
pi.maxBytes = INT_MAX;
}
if (epsPtr->psStart > 0) {
if (fseek(epsPtr->psFile, epsPtr->psStart, 0) != 0) {
Tcl_AppendResult(interp,
"can't seek to start of PostScript code in \"",
epsPtr->fileName, "\"", (char *)NULL);
return TCL_ERROR;
}
}
if (!ReadPsLine(&pi)) {
Tcl_AppendResult(interp, "file \"", epsPtr->fileName, "\" is empty?",
(char *)NULL);
return TCL_ERROR;
}
if (strncmp(pi.line, "%!PS", 4) != 0) {
Tcl_AppendResult(interp, "file \"", epsPtr->fileName,
"\" doesn't start with \"%!PS\"", (char *)NULL);
return TCL_ERROR;
}
/*
* Initialize field flags to NULL. We want to look only at the
* first appearance of these comment fields. The file itself may
* have another EPS file embedded into it.
*/
dscBoundingBox = dscTitle = dscEndComments = NULL;
pi.lineNumber = 1;
while (ReadPsLine(&pi)) {
pi.lineNumber++;
if ((pi.line[0] == '%') && (pi.line[1] == '%')) { /* Header comment */
field = pi.line + 2;
if (field[0] == 'B') {
if (strncmp(field, "BeginSetup", 8) == 0) {
break; /* Done */
}
if (strncmp(field, "BeginProlog", 8) == 0) {
break; /* Done */
}
if ((strncmp(field, "BoundingBox:", 12) == 0) &&
(dscBoundingBox == NULL)) {
int nFields;
dscBoundingBox = field + 12;
nFields = sscanf(dscBoundingBox, "%d %d %d %d",
&(epsPtr->llx), &(epsPtr->lly),
&(epsPtr->urx), &(epsPtr->ury));
if (nFields != 4) {
Tcl_AppendResult(interp,
"bad \"%%BoundingBox\" values: \"",
dscBoundingBox, "\"", (char *)NULL);
goto error;
}
}
} else if ((field[0] == 'T') &&
(strncmp(field, "Title:", 6) == 0)) {
if (dscTitle == NULL) {
dscTitle = Blt_Strdup(field + 6);
}
} else if (field[0] == 'E') {
if (strncmp(field, "EndComments", 11) == 0) {
dscEndComments = field;
break; /* Done */
}
}
} /* %% */
}
if (dscBoundingBox == NULL) {
Tcl_AppendResult(interp, "no \"%%BoundingBox:\" found in \"",
epsPtr->fileName, "\"", (char *)NULL);
goto error;
}
if (dscEndComments != NULL) {
/* Check if a "%%BeginPreview" immediately follows */
while (ReadPsLine(&pi)) {
field = SkipBlanks(&pi);
if (field[0] != '\0') {
break;
}
}
if (strncmp(pi.line, "%%BeginPreview:", 15) == 0) {
ReadEPSI(epsPtr, &pi);
}
}
if (dscTitle != NULL) {
epsPtr->title = dscTitle;
}
/* Finally save the PostScript into a dynamic string. */
while (ReadPsLine(&pi)) {
Tcl_DStringAppend(&epsPtr->dString, pi.line, -1);
Tcl_DStringAppend(&epsPtr->dString, "\n", 1);
}
return TCL_OK;
error:
if (dscTitle != NULL) {
Blt_Free(dscTitle);
}
return TCL_ERROR; /* BoundingBox: is required. */
}
static int
OpenEpsFile(interp, epsPtr)
Tcl_Interp *interp;
EpsItem *epsPtr;
{
FILE *f;
#ifdef WIN32
DOSEPSHEADER dosHeader;
int nBytes;
#endif
f = fopen(epsPtr->fileName, "rb");
if (f == NULL) {
Tcl_AppendResult(epsPtr->interp, "can't open \"", epsPtr->fileName,
"\": ", Tcl_PosixError(epsPtr->interp), (char *)NULL);
return TCL_ERROR;
}
epsPtr->psFile = f;
epsPtr->psStart = epsPtr->psLength = 0L;
epsPtr->wmfStart = epsPtr->wmfLength = 0L;
epsPtr->tiffStart = epsPtr->tiffLength = 0L;
#ifdef WIN32
nBytes = fread(&dosHeader, sizeof(DOSEPSHEADER), 1, f);
if ((nBytes == sizeof(DOSEPSHEADER)) &&
(dosHeader.magic[0] == 0xC5) && (dosHeader.magic[1] == 0xD0) &&
(dosHeader.magic[2] == 0xD3) && (dosHeader.magic[3] == 0xC6)) {
/* DOS EPS file */
epsPtr->psStart = dosHeader.psStart;
epsPtr->wmfStart = dosHeader.wmfStart;
epsPtr->wmfLength = dosHeader.wmfLength;
epsPtr->tiffStart = dosHeader.tiffStart;
epsPtr->tiffLength = dosHeader.tiffLength;
epsPtr->previewFormat = PS_PREVIEW_EPSI;
#ifdef HAVE_TIFF_H
if (epsPtr->tiffLength > 0) {
epsPtr->previewFormat = PS_PREVIEW_TIFF;
}
#endif /* HAVE_TIFF_H */
if (epsPtr->wmfLength > 0) {
epsPtr->previewFormat = PS_PREVIEW_WMF;
}
}
fseek(f, 0, 0);
#endif /* WIN32 */
return ReadPostScript(interp, epsPtr);
}
static void
CloseEpsFile(epsPtr)
EpsItem *epsPtr;
{
if (epsPtr->psFile != NULL) {
fclose(epsPtr->psFile);
epsPtr->psFile = NULL;
}
}
#ifdef HAVE_TIFF_H
static void
ReadTiffPreview(epsPtr)
EpsItem *epsPtr;
{
unsigned int width, height;
Blt_ColorImage image;
Pix32 *dataPtr;
FILE *f;
int n;
TIFFGetField(epsPtr->tiffPtr, TIFFTAG_IMAGEWIDTH, &width);
TIFFGetField(epsPtr->tiffPtr, TIFFTAG_IMAGELENGTH, &height);
image = Blt_CreateColorImage(width, height);
dataPtr = Blt_ColorImageBits(image);
if (!TIFFReadRGBAImage(epsPtr->tiffPtr, width, height, dataPtr, 0)) {
Blt_FreeColorImage(image);
return;
}
/* Reverse the order of the components for each pixel. */
/* ... */
epsPtr->colorImage = image;
}
#endif
#ifdef notdef
ReadWMF(f, epsPtr, headerPtr)
FILE *f;
{
HANDLE hMem;
Tk_Window tkwin;
if (fseek(f, headerPtr->wmfStart, 0) != 0) {
Tcl_AppendResult(interp, "can't seek in \"", epsPtr->fileName,
"\"", (char *)NULL);
return TCL_ERROR;
}
hMem = GlobalAlloc(GHND, size);
if (hMem == NULL) {
Tcl_AppendResult(graphPtr->interp, "can't allocate global memory:",
Blt_LastError(), (char *)NULL);
return TCL_ERROR;
}
buffer = (LPVOID)GlobalLock(hMem);
/* Read the header and see what kind of meta file it is. */
fread(buffer, sizeof(unsigned char), headerPtr->wmfLength, f);
mfp.mm = 0;
mfp.xExt = epsPtr->width;
mfp.yExt = epsPtr->height;
mfp.hMF = hMetaFile;
tkwin = Tk_CanvasTkwin(epsPtr->canvas);
hRefDC = TkWinGetDrawableDC(Tk_Display(tkwin), Tk_WindowId(tkwin), &state);
hDC = CreateEnhMetaFile(hRefDC, NULL, NULL, NULL);
mfp.hMF = CloseEnhMetaFile(hDC);
hMetaFile = SetWinMetaFileBits(size, buffer, MM_ANISOTROPIC, &pict);
Tcl_AppendResult(graphPtr->interp, "can't get metafile data:",
Blt_LastError(), (char *)NULL);
goto error;
}
#endif
/*
*----------------------------------------------------------------------
*
* DeleteEps --
*
* This procedure is called to clean up the data structure
* associated with a EPS item.
*
* Results:
* None.
*
* Side effects:
* Resources associated with itemPtr are released.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static void
DeleteEps(canvas, itemPtr, display)
Tk_Canvas canvas; /* Info about overall canvas widget. */
Tk_Item *itemPtr; /* Item that is being deleted. */
Display *display; /* Display containing window for
* canvas. */
{
EpsItem *epsPtr = (EpsItem *)itemPtr;
Tk_FreeOptions(configSpecs, (char *)epsPtr, display, 0);
CloseEpsFile(epsPtr);
if (epsPtr->colorImage != NULL) {
Blt_FreeColorImage(epsPtr->colorImage);
}
if (epsPtr->preview != NULL) {
Tk_FreeImage(epsPtr->preview);
}
if (epsPtr->previewName != NULL) {
Blt_Free(epsPtr->previewName);
}
if (epsPtr->tmpImage != NULL) {
Blt_DestroyTemporaryImage(epsPtr->interp, epsPtr->tmpImage);
}
if (epsPtr->pixmap != None) {
#ifdef notyet
Blt_FreeColorTable(epsPtr->colorTable);
#endif
Tk_FreePixmap(display, epsPtr->pixmap);
}
if (epsPtr->stipple != None) {
Tk_FreePixmap(display, epsPtr->stipple);
}
if (epsPtr->fillGC != NULL) {
Tk_FreeGC(display, epsPtr->fillGC);
}
Blt_FreeTextStyle(display, &(epsPtr->titleStyle));
if (epsPtr->title != NULL) {
Blt_Free(epsPtr->title);
}
}
/*
*----------------------------------------------------------------------
*
* CreateEps --
*
* This procedure is invoked to create a new EPS item
* in a canvas.
*
* Results:
* A standard Tcl return value. If an error occurred in
* creating the item, then an error message is left in
* interp->result; in this case itemPtr is left uninitialized,
* so it can be safely freed by the caller.
*
* Side effects:
* A new EPS item is created.
*
*----------------------------------------------------------------------
*/
#ifdef USE_OLD_CANVAS
static int
CreateEps(interp, canvas, itemPtr, argc, argv)
Tcl_Interp *interp; /* Interpreter for error reporting. */
Tk_Canvas canvas; /* Canvas to hold new item. */
Tk_Item *itemPtr; /* Record to hold new item; header
* has been initialized by caller. */
int argc; /* Number of arguments in argv. */
char **argv; /* Arguments describing rectangle. */
{
EpsItem *epsPtr = (EpsItem *)itemPtr;
Tk_Window tkwin;
tkwin = Tk_CanvasTkwin(canvas);
if (argc < 2) {
Tcl_AppendResult(interp, "wrong # args: should be \"",
Tk_PathName(tkwin), " create ", itemPtr->typePtr->name,
" x1 y1 ?options?\"", (char *)NULL);
return TCL_ERROR;
}
/*
* Initialize the item's record by hand (bleah).
*/
epsPtr->anchor = TK_ANCHOR_NW;
epsPtr->border = NULL;
epsPtr->borderWidth = 2;
epsPtr->canvas = canvas;
epsPtr->fileName = NULL;
epsPtr->psFile = NULL;
epsPtr->fillGC = NULL;
epsPtr->fillColor = NULL;
epsPtr->colorImage = NULL;
epsPtr->previewName = NULL;
epsPtr->preview = NULL;
epsPtr->interp = interp;
epsPtr->tmpImage = NULL;
epsPtr->pixmap = None;
epsPtr->firstLine = epsPtr->lastLine = -1;
epsPtr->relief = TK_RELIEF_SUNKEN;
epsPtr->reqTitle = NULL;
epsPtr->stipple = None;
epsPtr->showImage = TRUE;
epsPtr->quick = FALSE;
epsPtr->title = NULL;
epsPtr->lastWidth = epsPtr->lastHeight = 0;
epsPtr->width = epsPtr->height = 0;
epsPtr->x = epsPtr->y = 0.0;
epsPtr->llx = epsPtr->lly = epsPtr->urx = epsPtr->ury = 0;
epsPtr->canvasX = epsPtr->canvasY = 0;
Tcl_DStringInit(&epsPtr->dString);
memset(&(epsPtr->titleStyle), 0, sizeof(TextStyle));
#define PAD 8
epsPtr->titleStyle.padLeft = epsPtr->titleStyle.padRight = PAD;
epsPtr->titleStyle.padTop = epsPtr->titleStyle.padBottom = PAD;
/*
* Process the arguments to fill in the item record.
*/
if ((Tk_CanvasGetCoord(interp, canvas, argv[0], &(epsPtr->x)) != TCL_OK) ||
(Tk_CanvasGetCoord(interp, canvas, argv[1], &(epsPtr->y)) != TCL_OK)) {
return TCL_ERROR;
}
if (ConfigureEps(interp, canvas, itemPtr, argc - 2, argv + 2, 0)
!= TCL_OK) {
DeleteEps(canvas, itemPtr, Tk_Display(tkwin));
return TCL_ERROR;
}
return TCL_OK;
}
#else
static int
CreateEps(interp, canvas, itemPtr, argc, objv)
Tcl_Interp *interp; /* Interpreter for error reporting. */
Tk_Canvas canvas; /* Canvas to hold new item. */
Tk_Item *itemPtr; /* Record to hold new item; header
* has been initialized by caller. */
int argc; /* Number of arguments in argv. */
Tcl_Obj *CONST *objv; /* Arguments describing rectangle. */
{
EpsItem *epsPtr = (EpsItem *)itemPtr;
Tk_Window tkwin;
int i;
tkwin = Tk_CanvasTkwin(canvas);
if (argc < 1) {
Tcl_AppendResult(interp, "wrong # args: should be \"",
Tk_PathName(tkwin), " create ", itemPtr->typePtr->name,
" coords ?options?\"", (char *)NULL);
return TCL_ERROR;
}
/*
* Initialize the item's record by hand (bleah).
*/
epsPtr->anchor = TK_ANCHOR_NW;
epsPtr->border = NULL;
epsPtr->borderWidth = 2;
epsPtr->canvas = canvas;
epsPtr->fileName = NULL;
epsPtr->psFile = NULL;
epsPtr->fillGC = NULL;
epsPtr->fillColor = NULL;
epsPtr->colorImage = NULL;
epsPtr->previewName = NULL;
epsPtr->preview = NULL;
epsPtr->interp = interp;
epsPtr->tmpImage = NULL;
epsPtr->pixmap = None;
epsPtr->firstLine = epsPtr->lastLine = -1;
epsPtr->relief = TK_RELIEF_SUNKEN;
epsPtr->reqTitle = NULL;
epsPtr->stipple = None;
epsPtr->showImage = TRUE;
epsPtr->quick = FALSE;
epsPtr->title = NULL;
epsPtr->lastWidth = epsPtr->lastHeight = 0;
epsPtr->width = epsPtr->height = 0;
epsPtr->x = epsPtr->y = 0.0;
epsPtr->llx = epsPtr->lly = epsPtr->urx = epsPtr->ury = 0;
epsPtr->canvasX = epsPtr->canvasY = 0;
Tcl_DStringInit(&epsPtr->dString);
memset(&(epsPtr->titleStyle), 0, sizeof(TextStyle));
#define PAD 8
epsPtr->titleStyle.padLeft = epsPtr->titleStyle.padRight = PAD;
epsPtr->titleStyle.padTop = epsPtr->titleStyle.padBottom = PAD;
/*
* Process the arguments to fill in the item record.
*/
if (argc == 1) {
i = 1;
} else {
char *arg = Tcl_GetString(objv[1]);
i = 2;
if ((arg[0] == '-') && (arg[1] >= 'a') && (arg[1] <= 'z')) {
i = 1;
}
}
if ((EpsCoords(interp, canvas, itemPtr, i, objv) != TCL_OK)) {
return TCL_ERROR;
}
if (ConfigureEps(interp, canvas, itemPtr, argc - i, objv + i, 0)
!= TCL_OK) {
DeleteEps(canvas, itemPtr, Tk_Display(tkwin));
return TCL_ERROR;
}
return TCL_OK;
}
#endif
/*
*----------------------------------------------------------------------
*
* ImageChangedProc
*
* The image is over-written each time the EPS item is resized.
* So we only worry if the image is deleted.
*
* We always resample from the color image we saved when the
* photo image was specified (-image option).
*
* Results:
* None.
*
*----------------------------------------------------------------------
*/
/* ARGSUSED */
static void
ImageChangedProc(clientData, x, y, width, height, imageWidth, imageHeight)
ClientData clientData;
int x, y, width, height; /* Not used. */
int imageWidth, imageHeight;/* Not used. */
{
EpsItem *epsPtr = clientData;
if ((epsPtr->preview == NULL) || (Tk_ImageIsDeleted(epsPtr->preview))) {
epsPtr->preview = NULL;
if (epsPtr->previewName != NULL) {
Blt_Free(epsPtr->previewName);
epsPtr->previewName = NULL;
}
Tk_CanvasEventuallyRedraw(epsPtr->canvas, epsPtr->xLeft, epsPtr->yTop,
epsPtr->xRight, epsPtr->yBottom);
}
}
/*
*----------------------------------------------------------------------
*
* ConfigureEps --
*
* This procedure is invoked to configure various aspects
* of an EPS item, such as its background color.
*
* Results:
* A standard Tcl result code. If an error occurs, then
* an error message is left in interp->result.
*
* Side effects:
* Configuration information may be set for itemPtr.
*
*----------------------------------------------------------------------
*/
#ifdef USE_OLD_CANVAS
static int
ConfigureEps(interp, canvas, itemPtr, argc, argv, flags)
Tcl_Interp *interp; /* Used for error reporting. */
Tk_Canvas canvas; /* Canvas containing itemPtr. */
Tk_Item *itemPtr; /* EPS item to reconfigure. */
int argc; /* Number of elements in argv. */
CONST char **argv; /* Arguments describing things to configure. */
int flags; /* Flags to pass to Tk_ConfigureWidget. */
{
EpsItem *epsPtr = (EpsItem *)itemPtr;
Tk_Window tkwin;
XGCValues gcValues;
unsigned long gcMask;
GC newGC;
int width, height;
tkwin = Tk_CanvasTkwin(canvas);
if (Blt_ConfigureWidget(interp, tkwin, configSpecs, argc,
argv, (char *)epsPtr, flags) != TCL_OK) {
return TCL_ERROR;
}
/* Determine the size of the EPS item */
width = height = 0;
/*
* Check for a "-image" option specifying an image to be displayed
* representing the EPS canvas item.
*/
if (Blt_ConfigModified(configSpecs, interp, "-image", (char *)NULL)) {
if (epsPtr->preview != NULL) {
Tk_FreeImage(epsPtr->preview); /* Release old Tk image */
Blt_FreeColorImage(epsPtr->colorImage);
epsPtr->preview = NULL;
epsPtr->colorImage = NULL;
}
if (epsPtr->previewName != NULL) {
Tk_PhotoHandle photo; /* Photo handle to Tk image. */
/*
* Allocate a new image, if one was named.
*/
photo = Blt_FindPhoto(interp, epsPtr->previewName);
if (photo == NULL) {
Tcl_AppendResult(interp, "image \"", epsPtr->previewName,
"\" doesn't exist or is not a photo image",
(char *)NULL);
return TCL_ERROR;
}
epsPtr->preview = Tk_GetImage(interp, tkwin, epsPtr->previewName,
ImageChangedProc, epsPtr);
if (epsPtr->preview == NULL) {
Tcl_AppendResult(interp, "can't find an image \"",
epsPtr->previewName, "\"", (char *)NULL);
Blt_Free(epsPtr->previewName);
epsPtr->previewName = NULL;
return TCL_ERROR;
}
epsPtr->colorImage = Blt_PhotoToColorImage(photo);
width = Blt_ColorImageWidth(epsPtr->colorImage);
height = Blt_ColorImageHeight(epsPtr->colorImage);
}
}
if (Blt_ConfigModified(configSpecs, interp, "-file", (char *)NULL)) {
CloseEpsFile(epsPtr);
if (epsPtr->pixmap != None) {
#ifdef notyet
Blt_FreeColorTable(epsPtr->colorTable);
#endif
Tk_FreePixmap(Tk_Display(tkwin), epsPtr->pixmap);
epsPtr->pixmap = None;
}
if (epsPtr->colorImage != NULL) {
Blt_FreeColorImage(epsPtr->colorImage);
epsPtr->colorImage = NULL;
}
epsPtr->firstLine = epsPtr->lastLine = -1;
if (epsPtr->fileName != NULL) {
if (OpenEpsFile(interp, epsPtr) != TCL_OK) {
return TCL_ERROR;
}
}
}
if ((epsPtr->colorImage != NULL) && (epsPtr->tmpImage == NULL)) {
epsPtr->tmpImage = Blt_CreateTemporaryImage(interp, tkwin, epsPtr);
if (epsPtr->tmpImage == NULL) {
return TCL_ERROR;
}
} else if ((epsPtr->colorImage == NULL) && (epsPtr->tmpImage != NULL)) {
Blt_DestroyTemporaryImage(epsPtr->interp, epsPtr->tmpImage);
}
if (epsPtr->preview != NULL) {
Tk_SizeOfImage(epsPtr->preview, &width, &height);
}
if (epsPtr->width == 0) {
if (epsPtr->fileName != NULL) {
width = (epsPtr->urx - epsPtr->llx);
}
epsPtr->width = width;
}
if (epsPtr->height == 0) {
if (epsPtr->fileName != NULL) {
height = (epsPtr->ury - epsPtr->lly);
}
epsPtr->height = height;
}
Blt_ResetTextStyle(tkwin, &(epsPtr->titleStyle));
if (Blt_ConfigModified(configSpecs, interp, "-quick", (char *)NULL)) {
epsPtr->lastWidth = epsPtr->lastHeight = 0;
}
/* Fill color GC */
newGC = NULL;
if (epsPtr->fillColor != NULL) {
gcMask = GCForeground;
gcValues.foreground = epsPtr->fillColor->pixel;
if (epsPtr->stipple != None) {
gcMask |= (GCStipple | GCFillStyle);
gcValues.stipple = epsPtr->stipple;
if (epsPtr->border != NULL) {
gcValues.foreground = Tk_3DBorderColor(epsPtr->border)->pixel;
gcValues.background = epsPtr->fillColor->pixel;
gcMask |= GCBackground;
gcValues.fill_style = FillOpaqueStippled;
} else {
gcValues.fill_style = FillStippled;
}
}
newGC = Tk_GetGC(tkwin, gcMask, &gcValues);
}
if (epsPtr->fillGC != NULL) {
Tk_FreeGC(Tk_Display(tkwin), epsPtr->fillGC);
}
epsPtr->fillGC = newGC;
CloseEpsFile(epsPtr);
ComputeEpsBbox(canvas, epsPtr);
return TCL_OK;
}
#else
static int
ConfigureEps(interp, canvas, itemPtr, argc, objv, flags)
Tcl_Interp *interp; /* Used for error reporting. */
Tk_Canvas canvas; /* Canvas containing itemPtr. */
Tk_Item *itemPtr; /* EPS item to reconfigure. */
int argc; /* Number of elements in argv. */
Tcl_Obj *CONST objv[]; /* Arguments describing things to configure. */
int flags; /* Flags to pass to Tk_ConfigureWidget. */
{
EpsItem *epsPtr = (EpsItem *)itemPtr;
Tk_Window tkwin;
XGCValues gcValues;
unsigned long gcMask;
GC newGC;
int width, height, i;
CONST char **argv;
tkwin = Tk_CanvasTkwin(canvas);
argv = (CONST char **)ckalloc((argc+1)*sizeof(char*));
for (i=0; i<argc; i++) {
argv[i] = Tcl_GetString(objv[i]);
}
argv[i] = 0;
if (Tk_ConfigureWidget(interp, tkwin, configSpecs, argc,
argv, (char *)epsPtr, flags) != TCL_OK) {
ckfree((char*)argv);
return TCL_ERROR;
}
ckfree((char*)argv);
/* Determine the size of the EPS item */
width = height = 0;
/*
* Check for a "-image" option specifying an image to be displayed
* representing the EPS canvas item.
*/
if (Blt_ConfigModified(configSpecs, interp, "-image", (char *)NULL)) {
if (epsPtr->preview != NULL) {
Tk_FreeImage(epsPtr->preview); /* Release old Tk image */
Blt_FreeColorImage(epsPtr->colorImage);
epsPtr->preview = NULL;
epsPtr->colorImage = NULL;
}
if (epsPtr->previewName != NULL) {
Tk_PhotoHandle photo; /* Photo handle to Tk image. */
/*
* Allocate a new image, if one was named.
*/
photo = Blt_FindPhoto(interp, epsPtr->previewName);
if (photo == NULL) {
Tcl_AppendResult(interp, "image \"", epsPtr->previewName,
"\" doesn't exist or is not a photo image",
(char *)NULL);
return TCL_ERROR;
}
epsPtr->preview = Tk_GetImage(interp, tkwin, epsPtr->previewName,
ImageChangedProc, epsPtr);
if (epsPtr->preview == NULL) {
Tcl_AppendResult(interp, "can't find an image \"",
epsPtr->previewName, "\"", (char *)NULL);
Blt_Free(epsPtr->previewName);
epsPtr->previewName = NULL;
return TCL_ERROR;
}
epsPtr->colorImage = Blt_PhotoToColorImage(photo);
width = Blt_ColorImageWidth(epsPtr->colorImage);
height = Blt_ColorImageHeight(epsPtr->colorImage);
}
}
if (Blt_ConfigModified(configSpecs, interp, "-file", (char *)NULL)) {
CloseEpsFile(epsPtr);
if (epsPtr->pixmap != None) {
#ifdef notyet
Blt_FreeColorTable(epsPtr->colorTable);
#endif
Tk_FreePixmap(Tk_Display(tkwin), epsPtr->pixmap);
epsPtr->pixmap = None;
}
if (epsPtr->colorImage != NULL) {
Blt_FreeColorImage(epsPtr->colorImage);
epsPtr->colorImage = NULL;
}
epsPtr->firstLine = epsPtr->lastLine = -1;
if (epsPtr->fileName != NULL) {
if (OpenEpsFile(interp, epsPtr) != TCL_OK) {
return TCL_ERROR;
}
}
}
if ((epsPtr->colorImage != NULL) && (epsPtr->tmpImage == NULL)) {
epsPtr->tmpImage = Blt_CreateTemporaryImage(interp, tkwin, epsPtr);
if (epsPtr->tmpImage == NULL) {
return TCL_ERROR;
}
} else if ((epsPtr->colorImage == NULL) && (epsPtr->tmpImage != NULL)) {
Blt_DestroyTemporaryImage(epsPtr->interp, epsPtr->tmpImage);
}
if (epsPtr->preview != NULL) {
Tk_SizeOfImage(epsPtr->preview, &width, &height);
}
if (epsPtr->width == 0) {
if (epsPtr->fileName != NULL) {
width = (epsPtr->urx - epsPtr->llx);
}
epsPtr->width = width;
}
if (epsPtr->height == 0) {
if (epsPtr->fileName != NULL) {
height = (epsPtr->ury - epsPtr->lly);
}
epsPtr->height = height;
}
Blt_ResetTextStyle(tkwin, &(epsPtr->titleStyle));
if (Blt_ConfigModified(configSpecs, interp, "-quick", (char *)NULL)) {
epsPtr->lastWidth = epsPtr->lastHeight = 0;
}
/* Fill color GC */
newGC = NULL;
if (epsPtr->fillColor != NULL) {
gcMask = GCForeground;
gcValues.foreground = epsPtr->fillColor->pixel;
if (epsPtr->stipple != None) {
gcMask |= (GCStipple | GCFillStyle);
gcValues.stipple = epsPtr->stipple;
if (epsPtr->border != NULL) {
gcValues.foreground = Tk_3DBorderColor(epsPtr->border)->pixel;
gcValues.background = epsPtr->fillColor->pixel;
gcMask |= GCBackground;
gcValues.fill_style = FillOpaqueStippled;
} else {
gcValues.fill_style = FillStippled;
}
}
newGC = Tk_GetGC(tkwin, gcMask, &gcValues);
}
if (epsPtr->fillGC != NULL) {
Tk_FreeGC(Tk_Display(tkwin), epsPtr->fillGC);
}
epsPtr->fillGC = newGC;
CloseEpsFile(epsPtr);
ComputeEpsBbox(canvas, epsPtr);
return TCL_OK;
}
#endif
/*
*----------------------------------------------------------------------
*
* EpsCoords --
*
* This procedure is invoked to process the "coords" widget
* command on EPS items. See the user documentation for
* details on what it does.
*
* Results:
* Returns TCL_OK or TCL_ERROR, and sets interp->result.
*
* Side effects:
* The coordinates for the given item may be changed.
*
*----------------------------------------------------------------------
*/
#ifdef USE_OLD_CANVAS
static int
EpsCoords(interp, canvas, itemPtr, argc, argv)
Tcl_Interp *interp; /* Used for error reporting. */
Tk_Canvas canvas; /* Canvas containing item. */
Tk_Item *itemPtr; /* Item whose coordinates are to be
* read or modified. */
int argc; /* Number of coordinates supplied in
* argv. */
char **argv; /* Array of coordinates: x1, y1,
* x2, y2, ... */
{
EpsItem *epsPtr = (EpsItem *)itemPtr;
if ((argc != 0) && (argc != 2)) {
Tcl_AppendResult(interp, "wrong # coordinates: expected 0 or 2, got ",
Blt_Itoa(argc), (char *)NULL);
return TCL_ERROR;
}
if (argc == 2) {
double x, y; /* Don't overwrite old coordinates on errors */
if ((Tk_CanvasGetCoord(interp, canvas, argv[0], &x) != TCL_OK) ||
(Tk_CanvasGetCoord(interp, canvas, argv[1], &y) != TCL_OK)) {
return TCL_ERROR;
}
epsPtr->x = x;
epsPtr->y = y;
ComputeEpsBbox(canvas, epsPtr);
return TCL_OK;
}
Tcl_AppendElement(interp, Blt_Dtoa(interp, epsPtr->x));
Tcl_AppendElement(interp, Blt_Dtoa(interp, epsPtr->y));
return TCL_OK;
}
#else
static int
EpsCoords(interp, canvas, itemPtr, argc, objv)
Tcl_Interp *interp; /* Used for error reporting. */
Tk_Canvas canvas; /* Canvas containing item. */
Tk_Item *itemPtr; /* Item whose coordinates are to be
* read or modified. */
int argc; /* Number of coordinates supplied in
* argv. */
Tcl_Obj *CONST objv[]; /* Array of coordinates: x1, y1,
* x2, y2, ... */
{
EpsItem *epsPtr = (EpsItem *)itemPtr;
if (argc > 2) {
Tcl_AppendResult(interp, "wrong # coordinates: expected 0, 1, or 2, got ",
Blt_Itoa(argc), (char *)NULL);
return TCL_ERROR;
}
if (argc==1) {
if (Tcl_ListObjGetElements(interp, objv[0], &argc,
(Tcl_Obj ***) &objv) != TCL_OK) {
return TCL_ERROR;
} else if (argc != 2) {
char buf[64];
sprintf(buf, "wrong # coordinates: expected 2, got %d", argc);
Tcl_SetResult(interp, buf, TCL_VOLATILE);
return TCL_ERROR;
}
}
if (argc == 2) {
double x, y; /* Don't overwrite old coordinates on errors */
if ((Tk_CanvasGetCoord(interp, canvas, Tcl_GetString(objv[0]), &x) != TCL_OK) ||
(Tk_CanvasGetCoord(interp, canvas, Tcl_GetString(objv[1]), &y) != TCL_OK)) {
return TCL_ERROR;
}
epsPtr->x = x;
epsPtr->y = y;
ComputeEpsBbox(canvas, epsPtr);
return TCL_OK;
}
Tcl_AppendElement(interp, Blt_Dtoa(interp, epsPtr->x));
Tcl_AppendElement(interp, Blt_Dtoa(interp, epsPtr->y));
return TCL_OK;
}
#endif
/*
*----------------------------------------------------------------------
*
* ComputeEpsBbox --
*
* This procedure is invoked to compute the bounding box of
* all the pixels that may be drawn as part of a EPS item.
* This procedure is where the preview image's placement is
* computed.
*
* Results:
* None.
*
* Side effects:
* The fields x1, y1, x2, and y2 are updated in the header
* for itemPtr.
*
*----------------------------------------------------------------------
*/
/* ARGSUSED */
static void
ComputeEpsBbox(canvas, epsPtr)
Tk_Canvas canvas; /* Canvas that contains item. */
EpsItem *epsPtr; /* Item whose bbox is to be recomputed. */
{
int x, y;
x = ROUND(epsPtr->x), y = ROUND(epsPtr->y);
Blt_TranslateAnchor(x, y, epsPtr->width, epsPtr->height, epsPtr->anchor,
&x, &y);
epsPtr->xLeft = epsPtr->canvasX = x;
epsPtr->yTop = epsPtr->canvasY = y;
/*
* The right and bottom are (weirdly) exterior to the item. Can't
* complain much since it's documented in the Tk_CreateItemType
* manual page.
*
* "These fields give a bounding box for the items using integer
* canvas coordinates: the item should not cover any pixels with
* x-coordinate lower than x1 or y-coordinate lower than y1, nor
* should it cover any pixels with x-coordinate greater than or
* equal to x2 or y-coordinate greater than or equal to y2."
*/
epsPtr->xRight = x + epsPtr->width;
epsPtr->yBottom = y + epsPtr->height;
}
/*
*----------------------------------------------------------------------
*
* DisplayEps --
*
* This procedure is invoked to draw the EPS item in a
* given drawable. The EPS item may be drawn as either
* a solid rectangle or a pixmap of the preview image.
*
* Results:
* None.
*
* Side effects:
* ItemPtr is drawn in drawable using the transformation
* information in canvas.
*
*----------------------------------------------------------------------
*/
static void
DisplayEps(canvas, itemPtr, display, drawable, x, y, width, height)
Tk_Canvas canvas; /* Canvas that contains item. */
Tk_Item *itemPtr; /* Item to be displayed. */
Display *display; /* Display on which to draw item. */
Drawable drawable; /* Pixmap or window in which to draw
* item. */
int x, y, width, height; /* Describes region of canvas that
* must be redisplayed (not used). */
{
Tk_Window tkwin;
EpsItem *epsPtr = (EpsItem *)itemPtr;
short int drawableX, drawableY;
char *title;
int twiceBW;
int noImage;
if ((epsPtr->width < 1) || (epsPtr->height < 1)) {
return;
}
tkwin = Tk_CanvasTkwin(canvas);
epsPtr->showImage = TRUE;
if ((epsPtr->showImage) && (epsPtr->colorImage != NULL) &&
((epsPtr->lastWidth != epsPtr->width) ||
(epsPtr->lastHeight != epsPtr->height))) {
Blt_ColorImage image;
if (epsPtr->quick) {
image = Blt_ResizeColorImage(epsPtr->colorImage, 0, 0,
Blt_ColorImageWidth(epsPtr->colorImage),
Blt_ColorImageHeight(epsPtr->colorImage),
epsPtr->width, epsPtr->height);
} else {
image = Blt_ResampleColorImage(epsPtr->colorImage, epsPtr->width,
epsPtr->height, bltBoxFilterPtr, bltBoxFilterPtr);
}
if (epsPtr->tmpImage != NULL) {
Tk_PhotoHandle photo;
/*
* Resize the Tk photo image used to represent the EPS item.
* We will over-write the temporary image with a resampled one.
*/
photo = Blt_FindPhoto(epsPtr->interp,
Blt_NameOfImage(epsPtr->tmpImage));
Blt_ColorImageToPhoto(image, photo);
} else {
#ifdef notyet
epsPtr->pixmap = Blt_ColorImageToPixmap(epsPtr->interp, tkwin,
image, &(epsPtr->colorTable));
#endif
}
epsPtr->lastHeight = epsPtr->height;
epsPtr->lastWidth = epsPtr->width;
Blt_FreeColorImage(image);
}
/*
* Translate the coordinates to those of the EPS item, then redisplay it.
*/
Tk_CanvasDrawableCoords(canvas, (double)epsPtr->canvasX,
(double)epsPtr->canvasY, &drawableX, &drawableY);
x = (int)drawableX;
y = (int)drawableY;
twiceBW = epsPtr->borderWidth * 2;
title = epsPtr->title;
if (epsPtr->reqTitle != NULL) {
title = epsPtr->reqTitle;
}
width = epsPtr->width;
height = epsPtr->height;
noImage = ((!epsPtr->showImage) || ((epsPtr->tmpImage == NULL) &&
(epsPtr->pixmap == None)));
if (noImage) {
if ((twiceBW >= width) || (twiceBW >= height)) {
return;
}
width -= twiceBW;
height -= twiceBW;
if (epsPtr->fillGC != NULL) {
XSetTSOrigin(display, epsPtr->fillGC, x, y);
XFillRectangle(display, drawable, epsPtr->fillGC, x, y,
epsPtr->width, epsPtr->height);
XSetTSOrigin(display, epsPtr->fillGC, 0, 0);
}
} else {
if (epsPtr->pixmap != None) {
XCopyArea(Tk_Display(tkwin), epsPtr->pixmap, drawable,
epsPtr->fillGC, 0, 0, width, height, x, y);
} else {
Tk_RedrawImage(epsPtr->tmpImage, 0, 0, width, height, drawable,
x, y);
}
}
if (title != NULL) {
TextLayout *textPtr;
double rotWidth, rotHeight;
int destWidth, destHeight;
/* Translate the title to an anchor position within the EPS item */
textPtr = Blt_GetTextLayout(title, &(epsPtr->titleStyle));
Blt_GetBoundingBox(textPtr->width, textPtr->height,
epsPtr->titleStyle.theta, &rotWidth, &rotHeight, (Point2D *)NULL);
destWidth = (int)ceil(rotWidth);
destHeight = (int)ceil(rotHeight);
if ((destWidth <= width) && (destHeight <= height)) {
int titleX, titleY;
Blt_TranslateAnchor(x, y, width, height, epsPtr->titleStyle.anchor,
&titleX, &titleY);
if (noImage) {
titleX += epsPtr->borderWidth;
titleY += epsPtr->borderWidth;
}
Blt_DrawTextLayout(tkwin, drawable, textPtr, &(epsPtr->titleStyle),
titleX, titleY);
}
Blt_Free(textPtr);
}
if ((noImage) && (epsPtr->border != NULL)) {
Blt_Draw3DRectangle(tkwin, drawable, epsPtr->border, x, y,
epsPtr->width, epsPtr->height, epsPtr->borderWidth, epsPtr->relief);
}
}
/*
*----------------------------------------------------------------------
*
* EpsToPoint --
*
* Computes the distance from a given point to a given
* rectangle, in canvas units.
*
* Results:
* The return value is 0 if the point whose x and y coordinates
* are coordPtr[0] and coordPtr[1] is inside the EPS item. If the
* point isn't inside the item then the return value is the
* distance from the point to the EPS item.
*
* Side effects:
* None.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static double
EpsToPoint(canvas, itemPtr, coordArr)
Tk_Canvas canvas; /* Canvas containing item. */
Tk_Item *itemPtr; /* Item to check against point. */
double *coordArr; /* Pointer to x and y coordinates. */
{
EpsItem *epsPtr = (EpsItem *)itemPtr;
double dx, dy;
/*
* Point is outside rectangle.
*/
if (coordArr[0] < epsPtr->xLeft) {
dx = epsPtr->xLeft - coordArr[0];
} else if (coordArr[0] > epsPtr->xRight) {
dx = coordArr[0] - epsPtr->xRight;
} else {
dx = 0;
}
if (coordArr[1] < epsPtr->yTop) {
dy = epsPtr->yTop - coordArr[1];
} else if (coordArr[1] > epsPtr->yBottom) {
dy = coordArr[1] - epsPtr->yBottom;
} else {
dy = 0;
}
return hypot(dx, dy);
}
/*
*----------------------------------------------------------------------
*
* EpsToArea --
*
* This procedure is called to determine whether an item
* lies entirely inside, entirely outside, or overlapping
* a given rectangle.
*
* Results:
* -1 is returned if the item is entirely outside the area
* given by rectPtr, 0 if it overlaps, and 1 if it is entirely
* inside the given area.
*
* Side effects:
* None.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static int
EpsToArea(canvas, itemPtr, area)
Tk_Canvas canvas; /* Canvas containing item. */
Tk_Item *itemPtr; /* Item to check against rectangle. */
double area[]; /* Pointer to array of four coordinates
* (x1, y1, x2, y2) describing rectangular
* area. */
{
EpsItem *epsPtr = (EpsItem *)itemPtr;
if ((area[2] <= epsPtr->xLeft) || (area[0] >= epsPtr->xRight) ||
(area[3] <= epsPtr->yTop) || (area[1] >= epsPtr->yBottom)) {
return -1;
}
if ((area[0] <= epsPtr->xLeft) && (area[1] <= epsPtr->yTop) &&
(area[2] >= epsPtr->xRight) && (area[3] >= epsPtr->yBottom)) {
return 1;
}
return 0;
}
/*
*----------------------------------------------------------------------
*
* ScaleEps --
*
* This procedure is invoked to rescale an item.
*
* Results:
* None.
*
* Side effects:
* The item referred to by itemPtr is rescaled so that the
* following transformation is applied to all point coordinates:
* x' = originX + scaleX*(x-originX)
* y' = originY + scaleY*(y-originY)
*
*----------------------------------------------------------------------
*/
static void
ScaleEps(canvas, itemPtr, originX, originY, scaleX, scaleY)
Tk_Canvas canvas; /* Canvas containing rectangle. */
Tk_Item *itemPtr; /* Rectangle to be scaled. */
double originX, originY; /* Origin about which to scale rect. */
double scaleX; /* Amount to scale in X direction. */
double scaleY; /* Amount to scale in Y direction. */
{
EpsItem *epsPtr = (EpsItem *)itemPtr;
epsPtr->x = originX + scaleX * (epsPtr->x - originX);
epsPtr->y = originY + scaleY * (epsPtr->y - originY);
ComputeEpsBbox(canvas, epsPtr);
}
/*
*----------------------------------------------------------------------
*
* TranslateEps --
*
* This procedure is called to move an item by a given amount.
*
* Results:
* None.
*
* Side effects:
* The position of the item is offset by (xDelta, yDelta), and
* the bounding box is updated in the generic part of the item
* structure.
*
*----------------------------------------------------------------------
*/
static void
TranslateEps(canvas, itemPtr, deltaX, deltaY)
Tk_Canvas canvas; /* Canvas containing item. */
Tk_Item *itemPtr; /* Item that is being moved. */
double deltaX, deltaY; /* Amount by which item is to be
* moved. */
{
EpsItem *epsPtr = (EpsItem *)itemPtr;
epsPtr->x += deltaX;
epsPtr->y += deltaY;
ComputeEpsBbox(canvas, epsPtr);
}
/*
*----------------------------------------------------------------------
*
* EpsToPostscript --
*
* This procedure is called to generate Postscript for EPS
* canvas items.
*
* Results:
* The return value is a standard Tcl result. If an error
* occurs in generating Postscript then an error message is
* left in interp->result, replacing whatever used
* to be there. If no error occurs, then Postscript for the
* item is appended to the result.
*
* Side effects:
* None.
*
*----------------------------------------------------------------------
*/
static int
EpsToPostScript(interp, canvas, itemPtr, prepass)
Tcl_Interp *interp; /* Leave Postscript or error message
* here. */
Tk_Canvas canvas; /* Information about overall canvas. */
Tk_Item *itemPtr; /* Item for which Postscript is
* wanted. */
int prepass; /* 1 means this is a prepass to
* collect font information; 0 means
* final Postscript is being created. */
{
EpsItem *epsPtr = (EpsItem *)itemPtr;
PsToken psToken;
Tk_Window tkwin;
double xScale, yScale;
int x, y, width, height;
if (prepass) {
return TCL_OK;
}
tkwin = Tk_CanvasTkwin(epsPtr->canvas);
psToken = Blt_GetPsToken(interp, tkwin);
x = epsPtr->canvasX;
y = (int)Tk_CanvasPsY(canvas, (double)epsPtr->canvasY + epsPtr->height);
if (epsPtr->fileName == NULL) {
/* No PostScript file, generate PostScript of resized image instead. */
if (epsPtr->tmpImage != NULL) {
Tk_PhotoHandle photo;
Blt_FormatToPostScript(psToken, "gsave\n");
/*
* First flip the PostScript y-coordinate axis so that the
* origin is the upper-left corner like our color image.
*/
Blt_FormatToPostScript(psToken, " %d %d translate\n",
x, y + epsPtr->height);
Blt_FormatToPostScript(psToken, " 1 -1 scale\n");
photo = Blt_FindPhoto(epsPtr->interp,
Blt_NameOfImage(epsPtr->tmpImage));
Blt_PhotoToPostScript(psToken, photo, 0.0, 0.0);
Blt_FormatToPostScript(psToken, "grestore\n");
Tcl_AppendResult(interp, Blt_PostScriptFromToken(psToken),
(char *)NULL);
Blt_ReleasePsToken(psToken);
}
return TCL_OK;
}
/* Copy in the PostScript prolog for EPS encapsulation. */
if (Blt_FileToPostScript(psToken, "bltCanvEps.pro") != TCL_OK) {
goto error;
}
Blt_AppendToPostScript(psToken, "BeginEPSF\n", (char *)NULL);
width = epsPtr->width;
height = epsPtr->height;
xScale = (double)width / (double)(epsPtr->urx - epsPtr->llx);
yScale = (double)height / (double)(epsPtr->ury - epsPtr->lly);
/* Set up scaling and translation transformations for the EPS item */
Blt_FormatToPostScript(psToken, "%d %d translate\n", x, y);
Blt_FormatToPostScript(psToken, "%g %g scale\n", xScale, yScale);
Blt_FormatToPostScript(psToken, "%d %d translate\n", -(epsPtr->llx),
-(epsPtr->lly));
Blt_FormatToPostScript(psToken, "%d %d %d %d SetClipRegion\n",
epsPtr->llx, epsPtr->lly, epsPtr->urx, epsPtr->ury);
Blt_AppendToPostScript(psToken, "%% including \"", epsPtr->fileName,
"\"\n\n", (char *)NULL);
Blt_AppendToPostScript(psToken, Tcl_DStringValue(&epsPtr->dString),
(char *)NULL);
Blt_AppendToPostScript(psToken, "EndEPSF\n", (char *)NULL);
Tcl_AppendResult(interp, Blt_PostScriptFromToken(psToken), (char *)NULL);
Blt_ReleasePsToken(psToken);
return TCL_OK;
error:
Blt_ReleasePsToken(psToken);
return TCL_ERROR;
}
/*
* The structures below defines the EPS item type in terms of
* procedures that can be invoked by generic item code.
*/
static Tk_ItemType epsItemType =
{
"eps", /* name */
sizeof(EpsItem), /* itemSize */
(Tk_ItemCreateProc *)CreateEps, /* createProc */
configSpecs, /* configSpecs */
(Tk_ItemConfigureProc *)ConfigureEps, /* configureProc */
(Tk_ItemCoordProc *)EpsCoords, /* coordProc */
DeleteEps, /* deleteProc */
DisplayEps, /* displayProc */
#ifdef USE_OLD_CANVAS
0,
#else
TK_CONFIG_OBJS, /* alwaysRedraw */
#endif
EpsToPoint, /* pointProc */
EpsToArea, /* areaProc */
EpsToPostScript, /* postscriptProc */
ScaleEps, /* scaleProc */
TranslateEps, /* translateProc */
(Tk_ItemIndexProc *) NULL, /* indexProc */
(Tk_ItemCursorProc *) NULL, /* icursorProc */
(Tk_ItemSelectionProc *) NULL, /* selectionProc */
(Tk_ItemInsertProc *) NULL, /* insertProc */
(Tk_ItemDCharsProc *) NULL, /* dTextProc */
(Tk_ItemType *) NULL /* nextPtr */
};
/*ARGSUSED*/
void
Blt_InitEpsCanvasItem(interp)
Tcl_Interp *interp; /* Not used. */
{
Tk_CreateItemType(&epsItemType);
/* Initialize custom canvas option routines. */
tagsOption.parseProc = (Tk_OptionParseProc *)Tk_CanvasTagsParseProc;
tagsOption.printProc = (Tk_OptionPrintProc *)Tk_CanvasTagsPrintProc;
}
|