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
|
/*----------------------------------------------------------------------*/
/* xtfuncs.c --- Functions associated with the XCircuit Xt GUI */
/* (no Tcl/Tk interpreter) */
/* Copyright (c) 2002 Tim Edwards, Johns Hopkins University */
/*----------------------------------------------------------------------*/
#ifndef TCL_WRAPPER
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <sys/types.h>
#include <errno.h>
#include <limits.h>
#ifndef XC_WIN32
#include <X11/Intrinsic.h>
#include <X11/StringDefs.h>
#include <X11/Xutil.h>
#include "Xw/Xw.h"
#include "Xw/MenuBtn.h"
#include "Xw/PopupMgr.h"
#endif
/*----------------------------------------------------------------------*/
/* Local includes */
/*----------------------------------------------------------------------*/
#include "colordefs.h"
#include "xcircuit.h"
/*----------------------------------------------------------------------*/
/* Function prototype declarations */
/*----------------------------------------------------------------------*/
#include "prototypes.h"
/*----------------------------------------------------------------------*/
/* External Variable definitions */
/*----------------------------------------------------------------------*/
extern char _STR2[250];
extern char _STR[150]; /* Generic multipurpose string */
extern xcWidget top;
extern Display *dpy;
extern Globaldata xobjs;
extern XCWindowData *areawin;
extern int *appcolors;
extern int number_colors;
extern colorindex *colorlist;
extern ApplicationData appdata;
extern Cursor appcursors[NUM_CURSORS];
extern fontinfo *fonts;
extern short fontcount;
extern xcWidget menuwidgets[];
extern xcWidget toolbar;
extern short popups; /* total number of popup windows */
/*----------------------------------------------------------------------*/
/* The rest of the local includes depend on the prototype declarations */
/* and some of the external global variable declarations. */
/*----------------------------------------------------------------------*/
#include "menus.h"
#include "menudep.h"
/*----------------------------------------------------------------------*/
/* Local Variable definitions */
/*----------------------------------------------------------------------*/
u_short *fontnumbers;
u_char nfontnumbers;
/*----------------------------------------------*/
/* Set Poly and Arc line styles and fill styles */
/*----------------------------------------------*/
#define BORDERS (NOBORDER | DOTTED | DASHED)
#define ALLFILLS (FILLSOLID | FILLED)
/*--------------------------------------------------------------*/
/* Menu toggle button functions (keeps Xt functions out of the */
/* file menucalls.c). These are wrappers for toggleexcl(). */
/*--------------------------------------------------------------*/
void togglegridstyles(xcWidget button) {
if (button != NULL)
toggleexcl(button, GridStyles, XtNumber(GridStyles));
}
void togglejustifs(xcWidget button) {
if (button != NULL)
toggleexcl(button, Justifs, XtNumber(Justifs));
}
void togglefontstyles(xcWidget button) {
if (button != NULL)
toggleexcl(button, FontStyles, XtNumber(FontStyles));
}
void toggleencodings(xcWidget button) {
if (button != NULL)
toggleexcl(button, FontEncodings, XtNumber(FontEncodings));
}
/*--------------------------------------------------------------*/
/* Toggle a bit in the justification field of a label */
/*--------------------------------------------------------------*/
void dojustifybit(xcWidget w, labelptr settext, short bitfield)
{
if (settext != NULL) {
int oldjust = (int)settext->justify;
undrawtext(settext);
settext->justify ^= bitfield;
redrawtext(settext);
pwriteback(areawin->topinstance);
register_for_undo(XCF_Justify, UNDO_MORE, areawin->topinstance,
(genericptr)settext, oldjust);
}
else
areawin->justify ^= bitfield;
if (w != NULL) {
Boolean boolval;
if (settext)
boolval = (settext->justify & bitfield) ? 0 : 1;
else
boolval = (areawin->justify & bitfield) ? 0 : 1;
toggle(w, (pointertype)(-1), &boolval);
}
}
/*--------------------------------------------------------------*/
/* Toggle a pin-related bit in the justification field of a */
/* label. This differs from dojustifybit() in that the label */
/* must be a pin, and this function cannot change the default */
/* behavior set by areawin->justify. */
/*--------------------------------------------------------------*/
void dopinjustbit(xcWidget w, labelptr settext, short bitfield)
{
if ((settext != NULL) && settext->pin) {
int oldjust = (int)settext->justify;
undrawtext(settext);
settext->justify ^= bitfield;
redrawtext(settext);
pwriteback(areawin->topinstance);
register_for_undo(XCF_Justify, UNDO_MORE, areawin->topinstance,
(genericptr)settext, oldjust);
if (w != NULL) {
Boolean boolval = (settext->justify & bitfield) ? 0 : 1;
toggle(w, (pointertype)(-1), &boolval);
}
}
}
/*----------------------------------------------------------------*/
/* Set the justification for the label passed as 3rd parameter */
/*----------------------------------------------------------------*/
void setjust(xcWidget w, pointertype value, labelptr settext, short mode)
{
short newjust, oldjust;
if (settext != NULL) {
if (mode == 1)
newjust = (settext->justify & (NONJUSTFIELD | TBJUSTFIELD))
| value;
else
newjust = (settext->justify & (NONJUSTFIELD | RLJUSTFIELD))
| value;
if (settext->justify != newjust) {
oldjust = (int)settext->justify;
undrawtext(settext);
settext->justify = newjust;
redrawtext(settext);
pwriteback(areawin->topinstance);
register_for_undo(XCF_Justify, UNDO_MORE, areawin->topinstance,
(genericptr)settext, oldjust);
}
}
else {
if (mode == 1)
newjust = (areawin->justify & (NONJUSTFIELD | TBJUSTFIELD))
| value;
else
newjust = (areawin->justify & (NONJUSTFIELD | RLJUSTFIELD))
| value;
areawin->justify = newjust;
}
if (w != NULL) togglejustifs(w);
}
/*----------------------------------------------------------------*/
/* Set vertical justification (top, middle, bottom) on all */
/* selected labels */
/*----------------------------------------------------------------*/
void setvjust(xcWidget w, pointertype value, caddr_t nulldata)
{
short *fselect;
labelptr settext;
short labelcount = 0;
if (eventmode == TEXT_MODE || eventmode == ETEXT_MODE) {
settext = *((labelptr *)EDITPART);
setjust(w, value, settext, 2);
}
else {
for (fselect = areawin->selectlist; fselect < areawin->selectlist +
areawin->selects; fselect++) {
if (SELECTTYPE(fselect) == LABEL) {
labelcount++;
settext = SELTOLABEL(fselect);
setjust(NULL, value, settext, 2);
}
}
if (labelcount == 0) setjust(w, value, NULL, 2);
else unselect_all();
}
}
/*----------------------------------------------------------------*/
/* Set horizontal justification (left, center, right) on all */
/* selected labels */
/*----------------------------------------------------------------*/
void sethjust(xcWidget w, pointertype value, caddr_t nulldata)
{
short *fselect;
labelptr settext;
short labelcount = 0;
if (eventmode == TEXT_MODE || eventmode == ETEXT_MODE) {
settext = *((labelptr *)EDITPART);
setjust(w, value, settext, 1);
}
else {
for (fselect = areawin->selectlist; fselect < areawin->selectlist +
areawin->selects; fselect++) {
if (SELECTTYPE(fselect) == LABEL) {
labelcount++;
settext = SELTOLABEL(fselect);
setjust(NULL, value, settext, 1);
}
}
if (labelcount == 0) setjust(w, value, NULL, 1);
else unselect_all();
}
}
/*--------------------------------------------------------------*/
/* Set a justify field bit on all selected labels */
/* (flip invariance, latex mode, etc.) */
/*--------------------------------------------------------------*/
void setjustbit(xcWidget w, pointertype value, caddr_t nulldata)
{
short *fselect;
labelptr settext;
short labelcount = 0;
if (eventmode == TEXT_MODE || eventmode == ETEXT_MODE) {
settext = *((labelptr *)EDITPART);
dojustifybit(w, settext, (short)value);
}
else {
for (fselect = areawin->selectlist; fselect < areawin->selectlist +
areawin->selects; fselect++) {
if (SELECTTYPE(fselect) == LABEL) {
labelcount++;
settext = SELTOLABEL(fselect);
dojustifybit(NULL, settext, (short)value);
}
}
if (labelcount == 0) dojustifybit(w, NULL, (short)value);
else unselect_all();
}
}
/*--------------------------------------------------------------*/
/* Set pin-related bit field of "justify" on all selected pins */
/* (e.g., pin visibility) */
/*--------------------------------------------------------------*/
void setpinjustbit(xcWidget w, pointertype value, caddr_t nulldata)
{
short *fselect;
labelptr settext;
if (eventmode == TEXT_MODE || eventmode == ETEXT_MODE) {
settext = *((labelptr *)EDITPART);
if (settext->pin)
dopinjustbit(w, settext, (short)value);
}
else {
for (fselect = areawin->selectlist; fselect < areawin->selectlist +
areawin->selects; fselect++) {
if (SELECTTYPE(fselect) == LABEL) {
settext = SELTOLABEL(fselect);
if (settext->pin)
dopinjustbit(NULL, settext, (short)value);
}
}
unselect_all();
}
}
/*--------------------------------------------------------------*/
/* Enable or Disable the toolbar */
/*--------------------------------------------------------------*/
#ifdef HAVE_XPM
void dotoolbar(xcWidget w, caddr_t clientdata, caddr_t calldata)
{
Arg wargs[1];
if (areawin->toolbar_on) {
areawin->toolbar_on = False;
XtUnmanageChild(toolbar);
XtSetArg(wargs[0], XtNlabel, "Enable Toolbar");
XtSetValues(OptionsDisableToolbarButton, wargs, 1);
XtRemoveCallback(areawin->area, XtNresize, (XtCallbackProc)resizetoolbar, NULL);
}
else {
areawin->toolbar_on = True;
XtManageChild(toolbar);
XtSetArg(wargs[0], XtNlabel, "Disable Toolbar");
XtSetValues(OptionsDisableToolbarButton, wargs, 1);
XtAddCallback(areawin->area, XtNresize, (XtCallbackProc)resizetoolbar, NULL);
}
}
/*--------------------------------------------------------------*/
/* Overwrite the toolbar pixmap for color or stipple entries */
/*--------------------------------------------------------------*/
#ifndef XC_WIN32
void overdrawpixmap(xcWidget button)
{
xcWidget pbutton;
Arg args[3];
int ltype, color;
Pixmap stippix;
if (button == NULL) return;
XtSetArg(args[0], XtNlabelType, <ype);
XtGetValues(button, args, 1);
if (ltype != XwRECT && button != ColorInheritColorButton) return;
XtSetArg(args[0], XtNrectColor, &color);
XtSetArg(args[1], XtNrectStipple, &stippix);
XtGetValues(button, args, 2);
if (stippix == (Pixmap)NULL && button != FillBlackButton)
pbutton = ColorsToolButton;
else
pbutton = FillsToolButton;
if (button == ColorInheritColorButton) {
XtSetArg(args[0], XtNlabelType, XwIMAGE);
XtSetValues(pbutton, args, 1);
}
else if (button == FillBlackButton) {
XtSetArg(args[0], XtNlabelType, XwRECT);
XtSetArg(args[1], XtNrectColor, color);
XtSetArg(args[2], XtNrectStipple, (Pixmap)NULL);
XtSetValues(pbutton, args, 3);
}
else if (button != FillOpaqueButton) {
XtSetArg(args[0], XtNlabelType, XwRECT);
if (stippix == (Pixmap)NULL)
XtSetArg(args[1], XtNrectColor, color);
else
XtSetArg(args[1], XtNrectStipple, stippix);
XtSetValues(pbutton, args, 2);
}
}
#endif
#else
#define overdrawpixmap(a)
#endif /* XPM */
/*--------------------------------------------------------------*/
/* Generic routine for use by all other data handling routines */
/*--------------------------------------------------------------*/
buttonsave *getgeneric(xcWidget button, void (*getfunction)(), void *dataptr)
{
Arg wargs[1];
buttonsave *saveptr;
saveptr = (buttonsave *)malloc(sizeof(buttonsave));
saveptr->button = button;
saveptr->buttoncall = getfunction;
saveptr->dataptr = dataptr;
if (button != NULL) {
XtSetArg(wargs[0], XtNforeground, &saveptr->foreground);
XtGetValues(button, wargs, 1);
XtSetArg(wargs[0], XtNforeground, OFFBUTTONCOLOR);
XtSetValues(button, wargs, 1);
XtRemoveAllCallbacks(button, XtNselect);
}
return saveptr;
}
/*--------------------------------------------------------------*/
/* Generate popup dialog for snap space value input */
/*--------------------------------------------------------------*/
void getsnapspace(xcWidget button, caddr_t clientdata, caddr_t calldata)
{
char buffer[50];
buttonsave *savebutton;
float *floatptr = &xobjs.pagelist[areawin->page]->snapspace;
savebutton = getgeneric(button, getsnapspace, (void *)floatptr);
measurestr(*floatptr, buffer);
popupprompt(button, "Enter value:", buffer, setgrid, savebutton, NULL);
}
/*--------------------------------------------------------------*/
/* Generate popup dialog for grid space value input */
/*--------------------------------------------------------------*/
void getgridspace(xcWidget button, caddr_t clientdata, caddr_t calldata)
{
char buffer[50];
buttonsave *savebutton;
float *floatptr = &xobjs.pagelist[areawin->page]->gridspace;
savebutton = getgeneric(button, getgridspace, (void *)floatptr);
measurestr(*floatptr, buffer);
popupprompt(button, "Enter value:", buffer, setgrid, savebutton, NULL);
}
/*----------------------------------------------------------------*/
/* Generic routine for setting a floating-point value (through a */
/* (float *) pointer passed as the second parameter) */
/*----------------------------------------------------------------*/
void setfloat(xcWidget w, float *dataptr)
{
float oldvalue = *dataptr;
int res = sscanf(_STR2, "%f", dataptr);
if (res == 0 || *dataptr <= 0) {
*dataptr = oldvalue;
Wprintf("Illegal value");
}
if (oldvalue != *dataptr) drawarea(NULL, NULL, NULL);
}
/*----------------------------------------------------------------*/
/* Set text scale. */
/*----------------------------------------------------------------*/
void settsize(xcWidget w, labelptr settext)
{
float tmpres;
int res = sscanf(_STR2, "%f", &tmpres);
if (res == 0 || tmpres <= 0) { /* can't interpret value or bad value */
Wprintf("Illegal value");
return;
}
changetextscale(tmpres);
if (areawin->selects > 0) unselect_all();
}
/*--------------------------------------------------------------*/
/* Auto-set: Enable automatic scaling */
/*--------------------------------------------------------------*/
void autoset(xcWidget w, xcWidgetList entertext, caddr_t nulldata)
{
xobjs.pagelist[areawin->page]->pmode |= 2;
updatetext(w, entertext, nulldata);
}
/*--------------------------------------------------------------*/
void autostop(xcWidget w, caddr_t clientdata, caddr_t nulldata)
{
xobjs.pagelist[areawin->page]->pmode &= 1;
}
/*--------------------------------------------------------------*/
/* Set the denomenator value of the drawing scale */
/*--------------------------------------------------------------*/
void setscaley(xcWidget w, float *dataptr)
{
float oldvalue = *dataptr;
int res = sscanf(_STR2, "%f", dataptr);
if (res == 0 || *dataptr <= 0 || topobject->bbox.height == 0) {
*dataptr = oldvalue;
Wprintf("Illegal value");
}
else {
*dataptr = (*dataptr * 72) / topobject->bbox.height;
*dataptr /= getpsscale(1.0, areawin->page);
}
}
/*----------------------------------------------------------------*/
/* Set the numerator value of the drawing scale */
/*----------------------------------------------------------------*/
void setscalex(xcWidget w, float *dataptr)
{
float oldvalue = *dataptr;
int res = sscanf(_STR2, "%f", dataptr);
if (res == 0 || *dataptr <= 0 || topobject->bbox.width == 0) {
*dataptr = oldvalue;
Wprintf("Illegal value");
}
else {
*dataptr = (*dataptr * 72) / topobject->bbox.width;
*dataptr /= getpsscale(1.0, areawin->page);
}
}
/*----------------------------------------------------------------*/
/* Set the page orientation (either Landscape or Portrait) */
/*----------------------------------------------------------------*/
void setorient(xcWidget w, short *dataptr)
{
Arg wargs[1];
if (*dataptr == 0) {
*dataptr = 90;
XtSetArg(wargs[0], XtNlabel, "Landscape");
}
else {
*dataptr = 0;
XtSetArg(wargs[0], XtNlabel, "Portrait");
}
XtSetValues(w, wargs, 1);
}
/*----------------------------------------------------------------*/
/* Set the output mode to "Full Page" (unencapsulated PostScript) */
/* or "Embedded" (encapsulated PostScript) */
/*----------------------------------------------------------------*/
void setpmode(xcWidget w, short *dataptr)
{
Arg wargs[1];
xcWidget pwidg = XtParent(w);
xcWidget autowidg = XtNameToWidget(pwidg, "Auto-fit");
if (!(*dataptr & 1)) {
*dataptr = 1;
XtSetArg(wargs[0], XtNlabel, "Full Page");
XtManageChild(XtNameToWidget(pwidg, "fpedit"));
XtManageChild(XtNameToWidget(pwidg, "fpokay"));
XtManageChild(autowidg);
}
else {
*dataptr = 0; /* This also turns off auto-fit */
XtSetArg(wargs[0], XtNset, False);
XtSetValues(autowidg, wargs, 1);
XtSetArg(wargs[0], XtNlabel, "Embedded");
XtUnmanageChild(XtNameToWidget(pwidg, "fpedit"));
XtUnmanageChild(XtNameToWidget(pwidg, "fpokay"));
XtUnmanageChild(autowidg);
}
XtSetValues(w, wargs, 1);
}
/*--------------------------------------------------------------*/
/* Set the output page size, in the current unit of measure */
/*--------------------------------------------------------------*/
void setpagesize(xcWidget w, XPoint *dataptr)
{
char fpedit[75];
Arg wargs[1];
Boolean is_inches;
is_inches = setoutputpagesize(dataptr);
sprintf(fpedit, "%3.2f x %3.2f %s",
(float)xobjs.pagelist[areawin->page]->pagesize.x / 72.0,
(float)xobjs.pagelist[areawin->page]->pagesize.y / 72.0,
(is_inches) ? "in" : "cm");
XtSetArg(wargs[0], XtNstring, fpedit);
XtSetValues(XtNameToWidget(XtParent(w), "fpedit"), wargs, 1);
}
/*--------------------------------------------------------------*/
/* Generate popup dialog to get a character kern value, which */
/* is two integer numbers in the range -128 to +127 (size char) */
/*--------------------------------------------------------------*/
void getkern(xcWidget button, caddr_t nulldata, caddr_t calldata)
{
char buffer[50];
buttonsave *savebutton;
int kx, ky;
stringpart *strptr, *nextptr;
strcpy(buffer, "0,0");
if (eventmode == TEXT_MODE || eventmode == ETEXT_MODE) {
labelptr curlabel = TOLABEL(EDITPART);
strptr = findstringpart(areawin->textpos - 1, NULL, curlabel->string,
areawin->topinstance);
nextptr = findstringpart(areawin->textpos, NULL, curlabel->string,
areawin->topinstance);
if (strptr->type == KERN) {
kx = strptr->data.kern[0];
ky = strptr->data.kern[1];
sprintf(buffer, "%d,%d", kx, ky);
}
else if (nextptr && nextptr->type == KERN) {
strptr = nextptr;
kx = strptr->data.kern[0];
ky = strptr->data.kern[1];
sprintf(buffer, "%d,%d", kx, ky);
}
else strptr = NULL;
}
savebutton = getgeneric(button, getkern, strptr);
popupprompt(button, "Enter Kern X,Y:", buffer, setkern, savebutton, NULL);
}
/*----------------------------------------------------------------*/
/* Generate popup dialog to get the drawing scale, specified as a */
/* whole-number ratio X:Y */
/*----------------------------------------------------------------*/
void getdscale(xcWidget button, caddr_t nulldata, caddr_t calldata)
{
char buffer[50];
buttonsave *savebutton;
XPoint *ptptr = &(xobjs.pagelist[areawin->page]->drawingscale);
savebutton = getgeneric(button, getdscale, ptptr);
sprintf(buffer, "%d:%d", ptptr->x, ptptr->y);
popupprompt(button, "Enter Scale:", buffer, setdscale, savebutton, NULL);
}
/*--------------------------------------------------------------*/
/* Generate the popup dialog for getting text scale. */
/*--------------------------------------------------------------*/
void gettsize(xcWidget button, caddr_t nulldata, caddr_t calldata)
{
char buffer[50];
buttonsave *savebutton;
float *floatptr;
Boolean local;
labelptr settext;
settext = gettextsize(&floatptr);
sprintf(buffer, "%5.2f", *floatptr);
if (settext) {
savebutton = getgeneric(button, gettsize, settext);
popupprompt(button, "Enter text scale:", buffer, settsize, savebutton, NULL);
}
else {
savebutton = getgeneric(button, gettsize, floatptr);
popupprompt(button,
"Enter default text scale:", buffer, setfloat, savebutton, NULL);
}
}
/*----------------------------------------------------------------*/
/* Generate popup dialog for getting object scale */
/*----------------------------------------------------------------*/
void getosize(xcWidget button, caddr_t clientdata, caddr_t calldata)
{
char buffer[50];
float flval;
buttonsave *savebutton;
short *osel = areawin->selectlist;
short selects = 0;
objinstptr setobj = NULL;
for (; osel < areawin->selectlist + areawin->selects; osel++)
if (SELECTTYPE(osel) == OBJINST) {
setobj = SELTOOBJINST(osel);
selects++;
break;
}
if (setobj == NULL) {
Wprintf("No objects were selected for scaling.");
return;
}
flval = setobj->scale;
savebutton = getgeneric(button, getosize, setobj);
sprintf(buffer, "%4.2f", flval);
popupprompt(button, "Enter object scale:", buffer, setosize, savebutton, NULL);
}
/*----------------------------------------------------------------*/
/* Generate popup prompt for getting global linewidth */
/*----------------------------------------------------------------*/
void getwirewidth(xcWidget button, caddr_t clientdata, caddr_t calldata)
{
char buffer[50];
buttonsave *savebutton;
float *widthptr;
widthptr = &(xobjs.pagelist[areawin->page]->wirewidth);
savebutton = getgeneric(button, getwirewidth, widthptr);
sprintf(buffer, "%4.2f", *widthptr / 2.0);
popupprompt(button, "Enter new global linewidth:", buffer, setwidth,
savebutton, NULL);
}
/*----------------------------------------------------------------*/
/* Generate popup dialong for getting linewidths of elements */
/*----------------------------------------------------------------*/
void getwwidth(xcWidget button, caddr_t clientdata, caddr_t calldata)
{
char buffer[50];
buttonsave *savebutton;
short *osel = areawin->selectlist;
genericptr setel;
float flval;
for (; osel < areawin->selectlist + areawin->selects; osel++) {
setel = *(topobject->plist + (*osel));
if (IS_ARC(setel)) {
flval = ((arcptr)setel)->width;
break;
}
else if (IS_POLYGON(setel)) {
flval = ((polyptr)setel)->width;
break;
}
else if (IS_SPLINE(setel)) {
flval = ((splineptr)setel)->width;
break;
}
else if (IS_PATH(setel)) {
flval = ((pathptr)setel)->width;
break;
}
}
savebutton = getgeneric(button, getwwidth, setel);
if (osel == areawin->selectlist + areawin->selects) {
sprintf(buffer, "%4.2f", areawin->linewidth);
popupprompt(button, "Enter new default line width:", buffer, setwwidth,
savebutton, NULL);
}
else {
sprintf(buffer, "%4.2f", flval);
popupprompt(button, "Enter new line width:", buffer, setwwidth,
savebutton, NULL);
}
}
/*----------------------------------------------------------------*/
/* Generic popup prompt for getting a floating-point value */
/*----------------------------------------------------------------*/
void getfloat(xcWidget button, float *floatptr, caddr_t calldata)
{
char buffer[50];
buttonsave *savebutton;
savebutton = getgeneric(button, getfloat, floatptr);
sprintf(buffer, "%4.2f", *floatptr);
popupprompt(button, "Enter value:", buffer, setfloat, savebutton, NULL);
}
/*----------------------------------------------------------------*/
/* Set the filename for the current page */
/*----------------------------------------------------------------*/
void setfilename(xcWidget w, char **dataptr)
{
short cpage, depend = 0;
objectptr checkpage;
char *oldstr = xobjs.pagelist[areawin->page]->filename;
if ((*dataptr != NULL) && !strcmp(*dataptr, _STR2))
return; /* no change in string */
/* Make the change to the current page */
xobjs.pagelist[areawin->page]->filename = strdup(_STR2);
/* All existing filenames which match the old string should also be changed */
for (cpage = 0; cpage < xobjs.pages; cpage++) {
if ((xobjs.pagelist[cpage]->pageinst != NULL) && (cpage != areawin->page)) {
if ((oldstr != NULL) && (!strcmp(xobjs.pagelist[cpage]->filename, oldstr))) {
free(xobjs.pagelist[cpage]->filename);
xobjs.pagelist[cpage]->filename = strdup(_STR2);
}
}
}
free(oldstr);
}
/*----------------------------------------------------------------*/
/* Set the page label for the current page */
/*----------------------------------------------------------------*/
void setpagelabel(xcWidget w, char *dataptr)
{
short i;
/* Whitespace and non-printing characters not allowed */
for (i = 0; i < strlen(_STR2); i++) {
if ((!isprint(_STR2[i])) || (isspace(_STR2[i]))) {
_STR2[i] = '_';
Wprintf("Replaced illegal whitespace in name with underscore");
}
}
if (!strcmp(dataptr, _STR2)) return; /* no change in string */
if (strlen(_STR2) == 0)
sprintf(topobject->name, "Page %d", areawin->page + 1);
else
sprintf(topobject->name, "%.79s", _STR2);
/* For schematics, all pages with associations to symbols must have */
/* unique names. */
if (topobject->symschem != NULL) checkpagename(topobject);
printname(topobject);
renamepage(areawin->page);
}
/*--------------------------------------------------------------*/
/* Change the Button1 binding for a particular mode (non-Tcl) */
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
/* Change to indicated tool (key binding w/o value) */
/*--------------------------------------------------------------*/
void changetool(xcWidget w, pointertype value, caddr_t nulldata)
{
mode_rebinding((int)value, (short)-1);
highlightexcl(w, (int)value, (int)-1);
}
/*--------------------------------------------------------------*/
/* Execute function binding for the indicated tool if something */
/* is selected; otherwise, change to the indicated tool mode. */
/*--------------------------------------------------------------*/
void exec_or_changetool(xcWidget w, pointertype value, caddr_t nulldata)
{
if (areawin->selects > 0)
mode_tempbinding((int)value, -1);
else {
mode_rebinding((int)value, -1);
highlightexcl(w, (int)value, -1);
}
}
/*--------------------------------------------------------------*/
/* Special case of exec_or_changetool(), where an extra value */
/* is passed to the routine indication amount of rotation, or */
/* type of flip operation. */
/*--------------------------------------------------------------*/
void rotatetool(xcWidget w, pointertype value, caddr_t nulldata)
{
if (areawin->selects > 0)
mode_tempbinding(XCF_Rotate, (int)value);
else {
mode_rebinding(XCF_Rotate, (int)value);
highlightexcl(w, (int)XCF_Rotate, (int)value);
}
}
/*--------------------------------------------------------------*/
/* Special case of changetool() for pan mode, where a value is */
/* required to pass to the key binding routine. */
/*--------------------------------------------------------------*/
void pantool(xcWidget w, pointertype value, caddr_t nulldata)
{
mode_rebinding(XCF_Pan, (int)value);
highlightexcl(w, (int)XCF_Pan, (int)value);
}
/*--------------------------------------------------------------*/
/* Add a new font name to the list of known fonts */
/* Register the font number for the Alt-F cycling mechanism */
/* Tcl: depends on command tag mechanism for GUI menu update. */
/*--------------------------------------------------------------*/
void makenewfontbutton()
{
Arg wargs[1];
int n = 0;
xcWidget newbutton, cascade;
if (fontcount == 0) return;
cascade = XtParent(FontAddNewFontButton);
XtnSetArg(XtNfont, appdata.xcfont);
newbutton = XtCreateWidget(fonts[fontcount - 1].family, XwmenubuttonWidgetClass,
cascade, wargs, n);
XtAddCallback (newbutton, XtNselect, (XtCallbackProc)setfont,
Number(fontcount - 1));
XtManageChild(newbutton);
nfontnumbers++;
if (nfontnumbers == 1)
fontnumbers = (u_short *)malloc(sizeof(u_short));
else
fontnumbers = (u_short *)realloc(fontnumbers, nfontnumbers
* sizeof(u_short));
fontnumbers[nfontnumbers - 1] = fontcount - 1;
}
/*--------------------------------------------------------------*/
/* Make new encoding menu button */
/*--------------------------------------------------------------*/
void makenewencodingbutton(char *ename, char value)
{
Arg wargs[1];
int n = 0;
xcWidget newbutton, cascade;
cascade = XtParent(EncodingStandardButton);
/* return if button has already been made */
newbutton = XtNameToWidget(cascade, ename);
if (newbutton != NULL) return;
XtnSetArg(XtNfont, appdata.xcfont);
newbutton = XtCreateWidget(ename, XwmenubuttonWidgetClass,
cascade, wargs, n);
XtAddCallback (newbutton, XtNselect, (XtCallbackProc)setfontencoding,
Number(value));
XtManageChild(newbutton);
}
/*--------------------------------------------------------------*/
/* Set the menu checkmarks on the font menu */
/*--------------------------------------------------------------*/
void togglefontmark(int fontval)
{
Arg args[1];
xcWidget widget, cascade, sibling;
short i;
cascade = XtParent(FontAddNewFontButton);
widget = XtNameToWidget(cascade, fonts[fontval].family);
/* Remove checkmark from all widgets in the list */
XtSetArg(args[0], XtNsetMark, False);
for (i = 0; i < fontcount; i++) {
if (i != fontval) {
sibling = XtNameToWidget(cascade, fonts[i].family);
XtSetValues(sibling, args, 1);
}
}
/* Add checkmark to designated font */
XtSetArg(args[0], XtNsetMark, True);
XtSetValues(widget, args, 1);
}
/*--------------------------------------------------------------------*/
/* Toggle one of a set of menu items, only one of which can be active */
/*--------------------------------------------------------------------*/
void toggleexcl(xcWidget widget, menuptr menu, int menulength)
{
Arg args[1];
xcWidget parent = xcParent(widget);
xcWidget sibling;
menuptr mitem, mtest;
short i;
/* find the menu item which corresponds to the widget which was pushed */
for (mtest = menu; mtest < menu + menulength; mtest++) {
sibling = XtNameToWidget(parent, mtest->name);
if (sibling == widget) break;
}
/* remove checkmark from other widgets in the list */
XtSetArg(args[0], XtNsetMark, False);
if (menu == Fonts) { /* special action for font list */
for (i = 0; i < fontcount; i++) {
sibling = XtNameToWidget(parent, fonts[i].family);
if (sibling != widget)
XtSetValues(sibling, args, 1);
}
mtest = &Fonts[3]; /* so that mtest->func has correct value below */
}
else if (mtest == menu + menulength) return; /* something went wrong? */
for (mitem = menu; mitem < menu + menulength; mitem++) {
sibling = XtNameToWidget(parent, mitem->name);
if (mitem->func == mtest->func)
XtSetValues(sibling, args, 1);
}
/* Now set the currently pushed widget */
XtSetArg(args[0], XtNsetMark, True);
XtSetValues(widget, args, 1);
}
/*----------------------------------------------------------------------*/
/* Cursor changes based on toolbar mode */
/*----------------------------------------------------------------------*/
void toolcursor(int mode)
{
/* Some cursor types for different modes */
switch(mode) {
case XCF_Spline:
case XCF_Move:
case XCF_Join:
case XCF_Unjoin:
XDefineCursor (dpy, areawin->window, ARROW);
areawin->defaultcursor = &ARROW;
break;
case XCF_Pan:
XDefineCursor (dpy, areawin->window, HAND);
areawin->defaultcursor = &HAND;
break;
case XCF_Delete:
XDefineCursor (dpy, areawin->window, SCISSORS);
areawin->defaultcursor = &SCISSORS;
break;
case XCF_Copy:
XDefineCursor (dpy, areawin->window, COPYCURSOR);
areawin->defaultcursor = ©CURSOR;
break;
case XCF_Push:
case XCF_Select_Save:
XDefineCursor (dpy, areawin->window, QUESTION);
areawin->defaultcursor = &QUESTION;
break;
case XCF_Rotate:
case XCF_Flip_X:
case XCF_Flip_Y:
XDefineCursor (dpy, areawin->window, ROTATECURSOR);
areawin->defaultcursor = &ROTATECURSOR;
break;
case XCF_Edit:
XDefineCursor (dpy, areawin->window, EDCURSOR);
areawin->defaultcursor = &EDCURSOR;
break;
case XCF_Arc:
XDefineCursor (dpy, areawin->window, CIRCLE);
areawin->defaultcursor = &CIRCLE;
break;
case XCF_Text:
case XCF_Pin_Label:
case XCF_Pin_Global:
case XCF_Info_Label:
XDefineCursor (dpy, areawin->window, TEXTPTR);
areawin->defaultcursor = &TEXTPTR;
break;
default:
XDefineCursor (dpy, areawin->window, CROSS);
areawin->defaultcursor = &CROSS;
break;
}
}
/*--------------------------------------------------------------------------*/
/* Highlight one of a set of toolbar items, only one of which can be active */
/*--------------------------------------------------------------------------*/
void highlightexcl(xcWidget widget, int func, int value)
{
Arg args[2];
xcWidget parent = xcParent(PanToolButton);
xcWidget sibling, self = (xcWidget)NULL;
toolbarptr titem, ttest;
/* remove highlight from all widgets in the toolbar */
XtSetArg(args[0], XtNbackground, BACKGROUND);
XtSetArg(args[1], XtNborderColor, SNAPCOLOR);
for (titem = ToolBar; titem < ToolBar + toolbuttons; titem++) {
sibling = XtNameToWidget(parent, titem->name);
if (sibling == widget)
self = sibling;
else
XtSetValues(sibling, args, 2);
}
if (self == (xcWidget)NULL) {
/* We invoked a toolbar button from somewhere else. Highlight */
/* the toolbar associated with the function value. */
switch (func) {
case XCF_Pan:
self = PanToolButton;
break;
case XCF_Rotate:
if (value > 0)
self = RotPToolButton;
else
self = RotNToolButton;
break;
default:
for (titem = ToolBar; titem < ToolBar + toolbuttons; titem++) {
if (func == (pointertype)(titem->passeddata)) {
self = XtNameToWidget(parent, titem->name);
break;
}
}
break;
}
}
/* Now highlight the currently pushed widget */
if (self != (xcWidget)NULL) {
XtSetArg(args[0], XtNbackground, RATSNESTCOLOR);
XtSetArg(args[1], XtNborderColor, RATSNESTCOLOR);
XtSetValues(self, args, 2);
}
}
/*--------------------*/
/* Toggle a menu item */
/*--------------------*/
void toggle(xcWidget w, pointertype soffset, Boolean *setdata)
{
Arg wargs[1];
Boolean *boolvalue;
if (soffset == -1)
boolvalue = setdata;
else
boolvalue = (Boolean *)(areawin + soffset);
*boolvalue = !(*boolvalue);
XtSetArg(wargs[0], XtNsetMark, *boolvalue);
XtSetValues(w, wargs, 1);
drawarea(w, NULL, NULL);
}
/*----------------------------------------------------------------*/
/* Invert the color scheme used for the background/foreground */
/*----------------------------------------------------------------*/
void inversecolor(xcWidget w, pointertype soffset, caddr_t calldata)
{
Boolean *boolvalue = (Boolean *)(areawin + soffset);
/* change color scheme */
setcolorscheme(*boolvalue);
/* toggle checkmark in menu on "Alt colors" */
if (w == NULL) w = OptionsAltColorsButton;
if (w != NULL) toggle(w, soffset, calldata);
if (eventmode == NORMAL_MODE)
XDefineCursor (dpy, areawin->window, DEFAULTCURSOR);
}
/*----------------------------------------------------------------*/
/* Change menu selection for reported measurement units */
/*----------------------------------------------------------------*/
void togglegrid(u_short type)
{
xcWidget button, bparent = XtParent(GridtypedisplayDecimalInchesButton);
if (type == CM) button = XtNameToWidget(bparent, "Centimeters");
else if (type == FRAC_INCH) button = XtNameToWidget(bparent, "Fractional Inches");
else if (type == DEC_INCH) button = XtNameToWidget(bparent, "Decimal Inches");
else if (type == INTERNAL) button = XtNameToWidget(bparent, "Internal Units");
else button = XtNameToWidget(bparent, "Coordinates");
if (button) {
toggleexcl(button, GridStyles, XtNumber(GridStyles));
W1printf(" ");
}
}
/*----------------------------------------------------------------*/
/* Set the default reported grid units to inches or centimeters */
/*----------------------------------------------------------------*/
void setgridtype(char *string)
{
xcWidget button, bparent = XtParent(GridtypedisplayDecimalInchesButton);
if (!strcmp(string, "inchscale")) {
button = XtNameToWidget(bparent, "Fractional Inches");
getgridtype(button, FRAC_INCH, NULL);
}
else if (!strcmp(string, "cmscale")) {
button = XtNameToWidget(bparent, "Centimeters");
getgridtype(button, CM, NULL);
}
}
/*----------------------------------------------*/
/* Make new library and add a new button to the */
/* "Libraries" cascaded menu. */
/*----------------------------------------------*/
int createlibrary(Boolean force)
{
xcWidget libmenu, newbutton, oldbutton;
Arg wargs[2];
char libstring[20];
int libnum;
objectptr newlibobj;
/* If there's an empty library, return its number */
if ((!force) && (libnum = findemptylib()) >= 0) return (libnum + LIBRARY);
libnum = (xobjs.numlibs++) + LIBRARY;
xobjs.libtop = (objinstptr *)realloc(xobjs.libtop,
(libnum + 1) * sizeof(objinstptr));
xobjs.libtop[libnum] = xobjs.libtop[libnum - 1];
libnum--;
newlibobj = (objectptr) malloc(sizeof(object));
initmem(newlibobj);
xobjs.libtop[libnum] = newpageinst(newlibobj);
sprintf(newlibobj->name, "Library %d", libnum - LIBRARY + 1);
/* Create the library */
xobjs.userlibs = (Library *) realloc(xobjs.userlibs, xobjs.numlibs
* sizeof(Library));
xobjs.userlibs[libnum + 1 - LIBRARY] = xobjs.userlibs[libnum - LIBRARY];
xobjs.userlibs[libnum - LIBRARY].library = (objectptr *) malloc(sizeof(objectptr));
xobjs.userlibs[libnum - LIBRARY].number = 0;
xobjs.userlibs[libnum - LIBRARY].instlist = NULL;
/* To-do: initialize technology list */
/*
xobjs.userlibs[libnum - LIBRARY].filename = NULL;
xobjs.userlibs[libnum - LIBRARY].flags = (char)0;
*/
/* Previously last button becomes new library pointer */
oldbutton = GotoLibraryLibrary2Button;
XtRemoveAllCallbacks (oldbutton, XtNselect);
XtAddCallback (oldbutton, XtNselect, (XtCallbackProc)startcatalog,
Number(libnum));
XtSetArg(wargs[0], XtNlabel, xobjs.libtop[libnum]->thisobject->name);
XtSetValues(oldbutton, wargs, 1);
/* Make new entry in the menu to replace the User Library button */
/* xcWidget name is unique so button can be found later. Label is */
/* always set to "User Library" */
sprintf(libstring, "Library %d", libnum - LIBRARY + 2);
libmenu = XtParent(GotoLibraryAddNewLibraryButton);
XtSetArg(wargs[0], XtNfont, appdata.xcfont);
XtSetArg(wargs[1], XtNlabel, "User Library");
newbutton = XtCreateWidget(libstring, XwmenubuttonWidgetClass,
libmenu, wargs, 2);
XtAddCallback (newbutton, XtNselect, (XtCallbackProc)startcatalog,
Number(libnum + 1));
XtManageChild(newbutton);
GotoLibraryLibrary2Button = newbutton;
/* Update the library directory to include the new page */
composelib(LIBLIB);
return libnum;
}
/*--------------------------------------------------------------*/
/* Routine called by newpage() if new button needs to be made */
/* to add to the "Pages" cascaded menu. */
/*--------------------------------------------------------------*/
void makepagebutton()
{
xcWidget pagemenu, newbutton;
Arg wargs[1];
char pagestring[10];
/* make new entry in the menu */
pagemenu = XtParent(GotoPageAddNewPageButton);
XtSetArg(wargs[0], XtNfont, appdata.xcfont);
sprintf(pagestring, "Page %d", xobjs.pages);
newbutton = XtCreateWidget(pagestring, XwmenubuttonWidgetClass,
pagemenu, wargs, 1);
XtAddCallback (newbutton, XtNselect, (XtCallbackProc)newpagemenu,
Number(xobjs.pages - 1));
XtManageChild(newbutton);
/* Update the page directory */
composelib(PAGELIB);
}
/*----------------------------------------------------------------*/
/* Find the Page menu button associated with the page number */
/* (passed parameter) and set the label of that button to the */
/* object name (= page label) */
/*----------------------------------------------------------------*/
void renamepage(short pagenumber)
{
int page;
objinstptr thisinst = xobjs.pagelist[pagenumber]->pageinst;
Arg wargs[1];
xcWidget parent = XtParent(GotoPageAddNewPageButton);
xcWidget button;
char bname[10];
sprintf(bname, "Page %d", pagenumber + 1);
button = XtNameToWidget(parent, bname);
if ((button != NULL) && (thisinst != NULL)) {
if (thisinst->thisobject->name != NULL)
XtSetArg(wargs[0], XtNlabel,
thisinst->thisobject->name);
else
XtSetArg(wargs[0], XtNlabel, bname);
XtSetValues(button, wargs, 1);
}
else if (button == NULL)
Fprintf(stderr, "Error: No Button Widget named \"%9s\"\n", bname);
}
/*--------------------------------------------------------------*/
/* Same routine as above, for Library page menu buttons */
/*--------------------------------------------------------------*/
void renamelib(short libnumber)
{
Arg wargs[1];
xcWidget parent = XtParent(GotoLibraryAddNewLibraryButton);
xcWidget button;
char bname[13];
sprintf(bname, "Library %d", libnumber - LIBRARY + 1);
button = XtNameToWidget(parent, bname);
if (button != NULL) {
if (xobjs.libtop[libnumber]->thisobject->name != NULL)
XtSetArg(wargs[0], XtNlabel, xobjs.libtop[libnumber]->thisobject->name);
else
XtSetArg(wargs[0], XtNlabel, bname);
XtSetValues(button, wargs, 1);
}
else
Fprintf(stderr, "Error: No Button Widget named \"%12s\"\n", bname);
}
/*--------------------------------------------------------------*/
/* Set the menu checkmarks on the color menu */
/*--------------------------------------------------------------*/
void setcolormark(int colorval)
{
Arg args[1];
xcWidget w = NULL;
short i;
if (colorval == DEFAULTCOLOR)
w = ColorInheritColorButton;
else {
for (i = 0; i < number_colors; i++)
if (colorlist[i].color.pixel == colorval) {
w = colorlist[i].cbutton;
break;
}
}
/* Remove mark from all menu items */
XtSetArg(args[0], XtNsetMark, False);
for (i = 0; i < number_colors; i++)
XtSetValues(colorlist[i].cbutton, args, 1);
XtSetValues(ColorInheritColorButton, args, 1);
/* Add mark to the menu button for the chosen color */
if (w != (xcWidget)NULL) {
overdrawpixmap(w);
XtSetArg(args[0], XtNsetMark, True);
XtSetValues(w, args, 1);
}
}
/*----------------------------------------------------------------*/
/* Set the checkmarks on the element styles menu */
/*----------------------------------------------------------------*/
void setallstylemarks(u_short styleval)
{
xcWidget w;
Arg wargs[1];
XtSetArg(wargs[0], XtNsetMark, (styleval & UNCLOSED) ? 0 : 1);
XtSetValues(BorderClosedButton, wargs, 1);
XtSetArg(wargs[0], XtNsetMark, (styleval & BBOX) ? 1 : 0);
XtSetValues(BorderBoundingBoxButton, wargs, 1);
if (styleval & NOBORDER)
w = BorderUnborderedButton;
else if (styleval & DASHED)
w = BorderDashedButton;
else if (styleval & DOTTED)
w = BorderDottedButton;
else
w = BorderSolidButton;
toggleexcl(w, BorderStyles, XtNumber(BorderStyles));
if (styleval & OPAQUE)
w = FillOpaqueButton;
else
w = FillTransparentButton;
toggleexcl(w, Stipples, XtNumber(Stipples));
if (!(styleval & FILLED))
w = FillWhiteButton;
else {
styleval &= FILLSOLID;
styleval /= STIP0;
switch(styleval) {
case 0: w = FillGray87Button; break;
case 1: w = FillGray75Button; break;
case 2: w = FillGray62Button; break;
case 3: w = FillGray50Button; break;
case 4: w = FillGray37Button; break;
case 5: w = FillGray25Button; break;
case 6: w = FillGray12Button; break;
case 7: w = FillBlackButton; break;
}
}
toggleexcl(w, Stipples, XtNumber(Stipples));
}
/*--------------------------------------------------------------*/
/* The following five routines are all wrappers for */
/* setelementstyle(), */
/* used in menudefs to differentiate between sections, each of */
/* which has settings independent of the others. */
/*--------------------------------------------------------------*/
void setfill(xcWidget w, pointertype value, caddr_t calldata)
{
setelementstyle(w, (u_short)value, OPAQUE | FILLED | FILLSOLID);
}
/*--------------------------------------------------------------*/
void makebbox(xcWidget w, pointertype value, caddr_t calldata)
{
setelementstyle(w, (u_short)value, BBOX);
}
/*--------------------------------------------------------------*/
void setclosure(xcWidget w, pointertype value, caddr_t calldata)
{
setelementstyle(w, (u_short)value, UNCLOSED);
}
/*----------------------------------------------------------------*/
void setopaque(xcWidget w, pointertype value, caddr_t calldata)
{
setelementstyle(w, (u_short)value, OPAQUE);
}
/*----------------------------------------------------------------*/
void setline(xcWidget w, pointertype value, caddr_t calldata)
{
setelementstyle(w, (u_short)value, BORDERS);
}
/*-----------------------------------------------*/
/* Set the color value for all selected elements */
/*-----------------------------------------------*/
void setcolor(xcWidget w, pointertype value, caddr_t calldata)
{
short *scolor;
int *ecolor, cindex, cval;
Arg wargs[1];
Boolean selected = False;
stringpart *strptr, *nextptr;
/* Get the color index value from the menu button widget itself */
if (value == 1)
cindex = cval = -1;
else {
XtSetArg(wargs[0], XtNrectColor, &cval);
XtGetValues(w, wargs, 1);
for (cindex = 0; cindex < number_colors; cindex++)
if (colorlist[cindex].color.pixel == cval)
break;
if (cindex >= number_colors) {
Wprintf("Error: No such color!");
return;
}
}
if (eventmode == TEXT_MODE || eventmode == ETEXT_MODE) {
labelptr curlabel = TOLABEL(EDITPART);
strptr = findstringpart(areawin->textpos - 1, NULL, curlabel->string,
areawin->topinstance);
nextptr = findstringpart(areawin->textpos, NULL, curlabel->string,
areawin->topinstance);
if (strptr->type == FONT_COLOR) {
undrawtext(curlabel);
strptr->data.color = cindex;
redrawtext(curlabel);
}
else if (nextptr && nextptr->type == FONT_COLOR) {
undrawtext(curlabel);
nextptr->data.color = cindex;
redrawtext(curlabel);
}
else {
sprintf(_STR2, "%d", cindex);
labeltext(FONT_COLOR, (char *)&cindex);
}
}
else if (areawin->selects > 0) {
for (scolor = areawin->selectlist; scolor < areawin->selectlist
+ areawin->selects; scolor++) {
ecolor = &(SELTOCOLOR(scolor));
*ecolor = cval;
selected = True;
}
}
setcolormark(cval);
if (!selected) {
if (eventmode != TEXT_MODE && eventmode != ETEXT_MODE)
areawin->color = cval;
overdrawpixmap(w);
}
unselect_all();
}
/*----------------------------------------------------------------*/
/* Parse a new color entry and add it to the color list. */
/*----------------------------------------------------------------*/
void setnewcolor(xcWidget w, caddr_t nullptr)
{
int ccolor, red, green, blue;
char *ppos, *cpos;
ppos = strchr(_STR2, '#');
cpos = strchr(_STR2, ',');
if (cpos != NULL || ppos != NULL) {
if (cpos != NULL || strlen(ppos + 1) == 6) {
if (cpos != NULL)
sscanf(_STR2, "%d, %d, %d", &red, &green, &blue);
else
sscanf(ppos + 1, "%2x%2x%2x", &red, &green, &blue);
red *= 256;
green *= 256;
blue *= 256;
}
else if (sscanf(ppos + 1, "%4x%4x%4x", &red, &green, &blue) != 3) {
Wprintf("Bad color entry. Use #rrggbb");
return;
}
ccolor = rgb_alloccolor(red, green, blue);
}
else
ccolor = xc_alloccolor(_STR2);
addnewcolorentry(ccolor);
}
/*----------------------------------------------------------------*/
/* Generate popup dialog for adding a new color name or RGB value */
/*----------------------------------------------------------------*/
void addnewcolor(xcWidget w, caddr_t clientdata, caddr_t calldata)
{
buttonsave *savebutton;
savebutton = getgeneric(w, addnewcolor, NULL);
popupprompt(w, "Enter color name or #rgb or r,g,b:", "\0", setnewcolor,
savebutton, NULL);
}
/*------------------------------------------------------*/
void setfontmarks(short fvalue, short jvalue)
{
xcWidget w;
Arg wargs[1];
if ((fvalue >= 0) && (fontcount > 0)) {
switch(fonts[fvalue].flags & 0x03) {
case 0: w = StyleNormalButton; break;
case 1: w = StyleBoldButton; break;
case 2: w = StyleItalicButton; break;
case 3: w = StyleBoldItalicButton; break;
}
toggleexcl(w, FontStyles, XtNumber(FontStyles));
switch((fonts[fvalue].flags & 0xf80) >> 7) {
case 0: w = EncodingStandardButton; break;
case 2: w = EncodingISOLatin1Button; break;
default: w = NULL;
}
if (w != NULL) toggleexcl(w, FontEncodings, XtNumber(FontEncodings));
togglefontmark(fvalue);
}
if (jvalue >= 0) {
switch(jvalue & (RLJUSTFIELD)) {
case NORMAL: w = JustificationLeftJustifiedButton; break;
case NOTLEFT: w = JustificationCenterJustifiedButton; break;
case RIGHT|NOTLEFT: w = JustificationRightJustifiedButton; break;
}
toggleexcl(w, Justifs, XtNumber(Justifs));
switch(jvalue & (TBJUSTFIELD)) {
case NORMAL: w = JustificationBottomJustifiedButton; break;
case NOTBOTTOM: w = JustificationMiddleJustifiedButton; break;
case TOP|NOTBOTTOM: w = JustificationTopJustifiedButton; break;
}
toggleexcl(w, Justifs, XtNumber(Justifs));
/* Flip Invariance property */
w = JustificationFlipInvariantButton;
if (jvalue & FLIPINV)
XtSetArg(wargs[0], XtNsetMark, True);
else
XtSetArg(wargs[0], XtNsetMark, False);
XtSetValues(w, wargs, 1);
/* Pin visibility property */
w = NetlistPinVisibilityButton;
if (jvalue & PINVISIBLE)
XtSetArg(wargs[0], XtNsetMark, True);
else
XtSetArg(wargs[0], XtNsetMark, False);
XtSetValues(w, wargs, 1);
}
}
/*----------------------------------------------*/
/* GUI wrapper for startparam() */
/*----------------------------------------------*/
void promptparam(xcWidget w, caddr_t clientdata, caddr_t calldata)
{
buttonsave *popdata = (buttonsave *)malloc(sizeof(buttonsave));
if (areawin->selects == 0) return; /* nothing was selected */
/* Get a name for the new object */
eventmode = NORMAL_MODE;
popdata->dataptr = NULL;
popdata->button = NULL; /* indicates that no button is assc'd w/ the popup */
popupprompt(w, "Enter name for new parameter:", "\0", stringparam, popdata, NULL);
}
/*---------------------------*/
/* Set polygon editing style */
/*---------------------------*/
void boxedit(xcWidget w, pointertype value, caddr_t nulldata)
{
if (w == NULL) {
switch (value) {
case MANHATTAN: w = PolygonEditManhattanBoxEditButton; break;
case RHOMBOIDX: w = PolygonEditRhomboidXButton; break;
case RHOMBOIDY: w = PolygonEditRhomboidYButton; break;
case RHOMBOIDA: w = PolygonEditRhomboidAButton; break;
case NORMAL: w = PolygonEditNormalButton; break;
}
}
if (areawin->boxedit == value) return;
toggleexcl(w, BoxEditStyles, XtNumber(BoxEditStyles));
areawin->boxedit = value;
}
/*----------------------------------------------------*/
/* Generate popup dialog for entering a new font name */
/*----------------------------------------------------*/
void addnewfont(xcWidget w, caddr_t clientdata, caddr_t calldata)
{
buttonsave *savebutton;
char *tempstr = malloc(2 * sizeof(char));
tempstr[0] = '\0';
savebutton = getgeneric(w, addnewfont, tempstr);
popupprompt(w, "Enter font name:", tempstr, locloadfont, savebutton, NULL);
}
/*-------------------------------------------------*/
/* Wrapper for labeltext when called from the menu */
/*-------------------------------------------------*/
void addtotext(xcWidget w, pointertype value, caddr_t nulldata)
{
if (eventmode != TEXT_MODE && eventmode != ETEXT_MODE) return;
if (value == (pointertype)SPECIAL)
dospecial();
else
labeltext((int)value, (char *)1);
}
/*----------------------------------------------------------*/
/* Position a popup menu directly beside the toolbar button */
/*----------------------------------------------------------*/
void position_popup(xcWidget toolbutton, xcWidget menubutton)
{
int n = 0;
Arg wargs[2];
Position pz, pw, ph;
int dx, dy;
xcWidget cascade = XtParent(menubutton);
xcWidget pshell = XtParent(XtParent(cascade));
XtnSetArg(XtNheight, &pz);
XtGetValues(toolbutton, wargs, n); n = 0;
XtnSetArg(XtNwidth, &pw);
XtnSetArg(XtNheight, &ph);
XtGetValues(cascade, wargs, n); n = 0;
dx = -pw - 6;
dy = (pz - ph) >> 1;
XwPostPopup(pshell, cascade, toolbutton, dx, dy);
}
/*------------------------------------------------------*/
/* Functions which pop up a menu cascade in sticky mode */
/*------------------------------------------------------*/
void border_popup(xcWidget w, caddr_t clientdata, caddr_t calldata)
{
position_popup(w, BorderLinewidthButton);
}
/*-------------------------------------------------------------------------*/
void color_popup(xcWidget w, caddr_t clientdata, caddr_t calldata)
{
position_popup(w, ColorAddNewColorButton);
}
/*-------------------------------------------------------------------------*/
void fill_popup(xcWidget w, caddr_t clientdata, caddr_t calldata)
{
position_popup(w, FillOpaqueButton);
}
/*-------------------------------------------------------------------------*/
void param_popup(xcWidget w, caddr_t clientdata, caddr_t calldata)
{
position_popup(w, ParametersSubstringButton);
}
/*-------------------------------------------------------------------------*/
#endif /* TCL_WRAPPER */
|