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
|
/*
* bltConfig.c --
*
* This module implements custom configuration options for the BLT
* toolkit.
*
* 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.
*/
#include "bltInt.h"
#if defined(__STDC__)
#include <stdarg.h>
#else
#include <varargs.h>
#endif
#include "bltTile.h"
static int StringToFill _ANSI_ARGS_((ClientData clientData,
Tcl_Interp *interp, Tk_Window tkwin, char *string, char *widgRec,
int flags));
static char *FillToString _ANSI_ARGS_((ClientData, Tk_Window, char *, int,
Tcl_FreeProc **));
Tk_CustomOption bltFillOption =
{
StringToFill, FillToString, (ClientData)0
};
static int StringToPad _ANSI_ARGS_((ClientData clientData,
Tcl_Interp *interp, Tk_Window tkwin, char *string, char *widgRec,
int offset));
static char *PadToString _ANSI_ARGS_((ClientData clientData, Tk_Window tkwin,
char *widgRec, int offset, Tcl_FreeProc **freeProcPtr));
Tk_CustomOption bltPadOption =
{
StringToPad, PadToString, (ClientData)0
};
static int StringToDistance _ANSI_ARGS_((ClientData clientData,
Tcl_Interp *interp, Tk_Window tkwin, char *string, char *widgRec,
int flags));
static char *DistanceToString _ANSI_ARGS_((ClientData, Tk_Window, char *, int,
Tcl_FreeProc **));
Tk_CustomOption bltDistanceOption =
{
StringToDistance, DistanceToString, (ClientData)PIXELS_NONNEGATIVE
};
Tk_CustomOption bltPositiveDistanceOption =
{
StringToDistance, DistanceToString, (ClientData)PIXELS_POSITIVE
};
Tk_CustomOption bltAnyDistanceOption =
{
StringToDistance, DistanceToString, (ClientData)PIXELS_ANY
};
static int StringToCount _ANSI_ARGS_((ClientData clientData,
Tcl_Interp *interp, Tk_Window tkwin, char *string, char *widgRec,
int flags));
static char *CountToString _ANSI_ARGS_((ClientData, Tk_Window, char *, int,
Tcl_FreeProc **));
Tk_CustomOption bltCountOption =
{
StringToCount, CountToString, (ClientData)COUNT_NONNEGATIVE
};
Tk_CustomOption bltPositiveCountOption =
{
StringToCount, CountToString, (ClientData)COUNT_POSITIVE
};
static int StringToDashes _ANSI_ARGS_((ClientData, Tcl_Interp *, Tk_Window,
char *, char *, int));
static char *DashesToString _ANSI_ARGS_((ClientData, Tk_Window, char *, int,
Tcl_FreeProc **));
Tk_CustomOption bltDashesOption =
{
StringToDashes, DashesToString, (ClientData)0
};
static int StringToShadow _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp,
Tk_Window tkwin, char *string, char *widgRec, int offset));
static char *ShadowToString _ANSI_ARGS_((ClientData clientData, Tk_Window tkwin,
char *widgRec, int offset, Tcl_FreeProc **freeProcPtr));
Tk_CustomOption bltShadowOption =
{
StringToShadow, ShadowToString, (ClientData)0
};
static int StringToGradient _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp,
Tk_Window tkwin, char *string, char *widgRec, int offset));
static char *GradientToString _ANSI_ARGS_((ClientData clientData, Tk_Window tkwin,
char *widgRec, int offset, Tcl_FreeProc **freeProcPtr));
Tk_CustomOption bltGradientOption =
{
StringToGradient, GradientToString, (ClientData)0
};
static int StringToUid _ANSI_ARGS_((ClientData clientData,
Tcl_Interp *interp, Tk_Window tkwin, char *string, char *widgRec,
int flags));
static char *UidToString _ANSI_ARGS_((ClientData, Tk_Window, char *, int,
Tcl_FreeProc **));
Tk_CustomOption bltUidOption =
{
StringToUid, UidToString, (ClientData)0
};
static int StringToState _ANSI_ARGS_((ClientData clientData,
Tcl_Interp *interp, Tk_Window tkwin, char *string, char *widgRec,
int flags));
static char *StateToString _ANSI_ARGS_((ClientData, Tk_Window, char *, int,
Tcl_FreeProc **));
Tk_CustomOption bltStateOption =
{
StringToState, StateToString, (ClientData)0
};
static int StringToList _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp,
Tk_Window tkwin, char *string, char *widgRec, int flags));
static char *ListToString _ANSI_ARGS_((ClientData, Tk_Window, char *, int,
Tcl_FreeProc **));
Tk_CustomOption bltListOption =
{
StringToList, ListToString, (ClientData)0
};
static int StringToTile _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp,
Tk_Window tkwin, char *value, char *widgRec, int flags));
static char *TileToString _ANSI_ARGS_((ClientData clientData, Tk_Window tkwin,
char *widgRec, int offset, Tcl_FreeProc **freeProcPtr));
Tk_CustomOption bltTileOption =
{
StringToTile, TileToString, (ClientData)0
};
static int SetObjTile _ANSI_ARGS_((ClientData clientData,
Tcl_Interp *interp, Tk_Window tkwin,
Tcl_Obj **value, char *recordPtr, int internalOffset,
char *oldInternalPtr, int flags));
static Tcl_Obj *GetObjTile _ANSI_ARGS_((ClientData clientData, Tk_Window tkwin,
char *recordPtr, int internalOffset));
static void RestoreObjTile _ANSI_ARGS_((ClientData clientData,
Tk_Window tkwin, char *internalPtr,
char *oldInternalPtr));
static void FreeObjTile _ANSI_ARGS_((ClientData clientData, Tk_Window tkwin,
char *internalPtr));
Tk_ObjCustomOption bltCustomTileOption = {
"tile", /* name */
SetObjTile, /* setProc */
GetObjTile, /* getProc */
RestoreObjTile, /* restoreProc */
FreeObjTile, /* freeProc */
0
};
static void
FreeObjTile(clientData, tkwin, internalPtr)
ClientData clientData;
Tk_Window tkwin;
char *internalPtr;
{
Blt_Tile tilePtr = (Blt_Tile)internalPtr;
if (tilePtr != NULL) Blt_FreeTile(tilePtr);
}
/*
*----------------------------------------------------------------------
*
* GetObjTile -
*
* Converts an internal boolean combination of "tile"into a
* a Tcl string obj.
*
* Results:
* Tcl_Obj containing the string representation of the tile value.
*
* Side effects:
* Creates a new Tcl_Obj.
*
*----------------------------------------------------------------------
*/
static Tcl_Obj *
GetObjTile(clientData, tkwin, recordPtr, internalOffset)
ClientData clientData;
Tk_Window tkwin;
char *recordPtr; /* Pointer to widget record. */
int internalOffset; /* Offset within *recordPtr containing the
* tile value. */
{
Blt_Tile tile = *(Blt_Tile *)(recordPtr + internalOffset);
char * name;
name = Blt_NameOfTile(tile);
return Tcl_NewStringObj(name?name:"", -1);
}
/*
*----------------------------------------------------------------------
*
* SetObjTile --
*
* Converts a Tcl_Obj representing a widgets tile.
*
* Results:
* Standard Tcl result.
*
* Side effects:
* May store the integer value into the internal representation
* pointer. May change the pointer to the Tcl_Obj to NULL to indicate
* that the specified string was empty and that is acceptable.
*
*----------------------------------------------------------------------
*/
static int
SetObjTile(clientData, interp, tkwin, value, recordPtr, internalOffset,
oldInternalPtr, flags)
ClientData clientData;
Tcl_Interp *interp; /* Current interp; may be used for errors. */
Tk_Window tkwin; /* Window for which option is being set. */
Tcl_Obj **value; /* Pointer to the pointer to the value object.
* We use a pointer to the pointer because
* we may need to return a value (NULL). */
char *recordPtr; /* Pointer to storage for the widget record. */
int internalOffset; /* Offset within *recordPtr at which the
internal value is to be stored. */
char *oldInternalPtr; /* Pointer to storage for the old value. */
int flags; /* Flags for the option, set Tk_SetOptions. */
{
int length = 0;
char *string, *internalPtr;
Blt_Tile *tilePtr;
Blt_Tile tile, oldTile;
if (internalOffset<0 || *value == NULL) { return TCL_ERROR; }
string = Tcl_GetStringFromObj(*value, &length);
internalPtr = recordPtr+internalOffset;
if (length<=0 && (!(flags & TK_OPTION_NULL_OK))) {
return TCL_ERROR;
}
tilePtr = (Blt_Tile*)internalPtr;
oldTile = *tilePtr;
tile = NULL;
if ((string != NULL) && (*string != '\0')) {
if (Blt_GetTile(interp, tkwin, string, &tile) != TCL_OK) {
return TCL_ERROR;
}
}
if (oldTile != NULL && oldTile != *((Blt_Tile*)oldInternalPtr)) {
/* multiple -tile options. */
Blt_FreeTile(oldTile);
}
*tilePtr = tile;
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
* RestoreObjTile --
*
* Restore a tile option value from a saved value.
*
* Results:
* None.
*
* Side effects:
* Restores the old value.
*
*----------------------------------------------------------------------
*/
static void
RestoreObjTile(clientData, tkwin, internalPtr, oldInternalPtr)
ClientData clientData;
Tk_Window tkwin;
char *internalPtr; /* Pointer to storage for value. */
char *oldInternalPtr; /* Pointer to old value. */
{
Blt_Tile *tilePtr = (Blt_Tile *)internalPtr;
Blt_Tile *oldTilePtr = (Blt_Tile *)oldInternalPtr;
if (*tilePtr != NULL && *oldTilePtr != *tilePtr) {
Blt_FreeTile(*tilePtr);
}
*tilePtr = *oldTilePtr;
}
/*
*----------------------------------------------------------------------
*
* Blt_NameOfFill --
*
* Converts the integer representing the fill direction into a string.
*
*----------------------------------------------------------------------
*/
char *
Blt_NameOfFill(fill)
int fill;
{
switch (fill) {
case FILL_X:
return "x";
case FILL_Y:
return "y";
case FILL_NONE:
return "none";
case FILL_BOTH:
return "both";
default:
return "unknown value";
}
}
/*
*----------------------------------------------------------------------
*
* StringToFill --
*
* Converts the fill style string into its numeric representation.
*
* Valid style strings are:
*
* "none" Use neither plane.
* "x" X-coordinate plane.
* "y" Y-coordinate plane.
* "both" Use both coordinate planes.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static int
StringToFill(clientData, interp, tkwin, string, widgRec, offset)
ClientData clientData; /* Not used. */
Tcl_Interp *interp; /* Interpreter to send results back to */
Tk_Window tkwin; /* Not used. */
char *string; /* Fill style string */
char *widgRec; /* Cubicle structure record */
int offset; /* Offset of style in record */
{
int *fillPtr = (int *)(widgRec + offset);
unsigned int length;
char c;
c = string[0];
length = strlen(string);
if ((c == 'n') && (strncmp(string, "none", length) == 0)) {
*fillPtr = FILL_NONE;
} else if ((c == 'x') && (strncmp(string, "x", length) == 0)) {
*fillPtr = FILL_X;
} else if ((c == 'y') && (strncmp(string, "y", length) == 0)) {
*fillPtr = FILL_Y;
} else if ((c == 'b') && (strncmp(string, "both", length) == 0)) {
*fillPtr = FILL_BOTH;
} else {
Tcl_AppendResult(interp, "bad argument \"", string,
"\": should be \"none\", \"x\", \"y\", or \"both\"", (char *)NULL);
return TCL_ERROR;
}
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
* FillToString --
*
* Returns the fill style string based upon the fill flags.
*
* Results:
* The fill style string is returned.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static char *
FillToString(clientData, tkwin, widgRec, offset, freeProcPtr)
ClientData clientData; /* Not used. */
Tk_Window tkwin; /* Not used. */
char *widgRec; /* Widget structure record */
int offset; /* Offset of fill in widget record */
Tcl_FreeProc **freeProcPtr; /* Not used. */
{
int fill = *(int *)(widgRec + offset);
return Blt_NameOfFill(fill);
}
/*
*----------------------------------------------------------------------
*
* Blt_StringToFlag --
*
* Converts the fill style string into its numeric representation.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
int
Blt_StringToFlag(clientData, interp, tkwin, string, widgRec, offset)
ClientData clientData; /* Bit mask to be tested in status word */
Tcl_Interp *interp; /* Interpreter to send results back to */
Tk_Window tkwin; /* Not used. */
char *string; /* Fill style string */
char *widgRec; /* Cubicle structure record */
int offset; /* Offset of style in record */
{
unsigned int mask = (uintptr_t)clientData; /* Bit to be tested */
int *flagPtr = (int *)(widgRec + offset);
int bool;
if (Tcl_GetBoolean(interp, string, &bool) != TCL_OK) {
return TCL_ERROR;
}
if (bool) {
*flagPtr |= mask;
} else {
*flagPtr &= ~mask;
}
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
* Blt_FlagToString --
*
* Returns the fill style string based upon the fill flags.
*
* Results:
* The fill style string is returned.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
char *
Blt_FlagToString(clientData, tkwin, widgRec, offset, freeProcPtr)
ClientData clientData; /* Bit mask to be test in status word */
Tk_Window tkwin; /* Not used. */
char *widgRec; /* Widget structure record */
int offset; /* Offset of fill in widget record */
Tcl_FreeProc **freeProcPtr; /* Not Used. */
{
unsigned int mask = (uintptr_t)clientData; /* Bit to be tested */
unsigned int bool = *(unsigned int *)(widgRec + offset);
return (bool & mask) ? "1" : "0";
}
/*
*----------------------------------------------------------------------
*
* Blt_GetPixels --
*
* Like Tk_GetPixels, but checks for negative, zero.
*
* Results:
* A standard Tcl result.
*
*----------------------------------------------------------------------
*/
int
Blt_GetPixels(interp, tkwin, string, check, valuePtr)
Tcl_Interp *interp;
Tk_Window tkwin;
char *string;
int check; /* Can be PIXELS_POSITIVE, PIXELS_NONNEGATIVE,
* or PIXELS_ANY, */
int *valuePtr;
{
int length;
if (Tk_GetPixels(interp, tkwin, string, &length) != TCL_OK) {
return TCL_ERROR;
}
if (length >= SHRT_MAX) {
Tcl_AppendResult(interp, "bad distance \"", string, "\": ",
"too big to represent", (char *)NULL);
return TCL_ERROR;
}
switch (check) {
case PIXELS_NONNEGATIVE:
if (length < 0) {
Tcl_AppendResult(interp, "bad distance \"", string, "\": ",
"can't be negative", (char *)NULL);
return TCL_ERROR;
}
break;
case PIXELS_POSITIVE:
if (length <= 0) {
Tcl_AppendResult(interp, "bad distance \"", string, "\": ",
"must be positive", (char *)NULL);
return TCL_ERROR;
}
break;
case PIXELS_ANY:
break;
}
*valuePtr = length;
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
* StringToDistance --
*
* Like TK_CONFIG_PIXELS, but adds an extra check for negative
* values.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static int
StringToDistance(clientData, interp, tkwin, string, widgRec, offset)
ClientData clientData; /* Indicated how to check distance */
Tcl_Interp *interp; /* Interpreter to send results back to */
Tk_Window tkwin; /* Window */
char *string; /* Pixel value string */
char *widgRec; /* Widget record */
int offset; /* Offset of pixel size in record */
{
int *valuePtr = (int *)(widgRec + offset);
return Blt_GetPixels(interp, tkwin, string, (intptr_t)clientData, valuePtr);
}
/*
*----------------------------------------------------------------------
*
* DistanceToString --
*
* Returns the string representing the positive pixel size.
*
* Results:
* The pixel size string is returned.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static char *
DistanceToString(clientData, tkwin, widgRec, offset, freeProcPtr)
ClientData clientData; /* Not used. */
Tk_Window tkwin; /* Not used. */
char *widgRec; /* Widget structure record */
int offset; /* Offset in widget record */
Tcl_FreeProc **freeProcPtr; /* Not used. */
{
int value = *(int *)(widgRec + offset);
char *result;
result = Blt_Strdup(Blt_Itoa(value));
assert(result);
*freeProcPtr = (Tcl_FreeProc *)Blt_Free;
return result;
}
int
Blt_GetInt(interp, string, check, valuePtr)
Tcl_Interp *interp;
char *string;
int check; /* Can be COUNT_POSITIVE, COUNT_NONNEGATIVE,
* or COUNT_ANY, */
int *valuePtr;
{
int count;
if (Tcl_GetInt(interp, string, &count) != TCL_OK) {
return TCL_ERROR;
}
switch (check) {
case COUNT_NONNEGATIVE:
if (count < 0) {
Tcl_AppendResult(interp, "bad value \"", string, "\": ",
"can't be negative", (char *)NULL);
return TCL_ERROR;
}
break;
case COUNT_POSITIVE:
if (count <= 0) {
Tcl_AppendResult(interp, "bad value \"", string, "\": ",
"must be positive", (char *)NULL);
return TCL_ERROR;
}
break;
case COUNT_ANY:
break;
}
*valuePtr = count;
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
* StringToCount --
*
* Like TK_CONFIG_PIXELS, but adds an extra check for negative
* values.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static int
StringToCount(clientData, interp, tkwin, string, widgRec, offset)
ClientData clientData; /* Indicated how to check distance */
Tcl_Interp *interp; /* Interpreter to send results back to */
Tk_Window tkwin; /* Not used. */
char *string; /* Pixel value string */
char *widgRec; /* Widget record */
int offset; /* Offset of pixel size in record */
{
int *valuePtr = (int *)(widgRec + offset);
return Blt_GetInt(interp, string, (intptr_t)clientData, valuePtr);
}
/*
*----------------------------------------------------------------------
*
* CountToString --
*
* Returns the string representing the positive pixel size.
*
* Results:
* The pixel size string is returned.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static char *
CountToString(clientData, tkwin, widgRec, offset, freeProcPtr)
ClientData clientData; /* Not used. */
Tk_Window tkwin; /* Not used. */
char *widgRec; /* Widget structure record */
int offset; /* Offset in widget record */
Tcl_FreeProc **freeProcPtr; /* Not used. */
{
int value = *(int *)(widgRec + offset);
char *result;
result = Blt_Strdup(Blt_Itoa(value));
assert(result);
*freeProcPtr = (Tcl_FreeProc *)Blt_Free;
return result;
}
/*
*----------------------------------------------------------------------
*
* StringToPad --
*
* Convert a string into two pad values. The string may be in one of
* the following forms:
*
* n - n is a non-negative integer. This sets both
* pad values to n.
* {n m} - both n and m are non-negative integers. side1
* is set to n, side2 is set to m.
*
* Results:
* If the string is successfully converted, TCL_OK is returned.
* Otherwise, TCL_ERROR is returned and an error message is left in
* interp->result.
*
* Side Effects:
* The padding structure passed is updated with the new values.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static int
StringToPad(clientData, interp, tkwin, string, widgRec, offset)
ClientData clientData; /* Not used. */
Tcl_Interp *interp; /* Interpreter to send results back to */
Tk_Window tkwin; /* Window */
char *string; /* Pixel value string */
char *widgRec; /* Widget record */
int offset; /* Offset of pad in widget */
{
Blt_Pad *padPtr = (Blt_Pad *)(widgRec + offset);
int nElem;
int pad, result;
char **padArr;
if (Tcl_SplitList(interp, string, &nElem, &padArr) != TCL_OK) {
return TCL_ERROR;
}
result = TCL_ERROR;
if ((nElem < 1) || (nElem > 2)) {
Tcl_AppendResult(interp, "wrong # elements in padding list",
(char *)NULL);
goto error;
}
if (Blt_GetPixels(interp, tkwin, padArr[0], PIXELS_NONNEGATIVE, &pad)
!= TCL_OK) {
goto error;
}
padPtr->side1 = pad;
if ((nElem > 1) &&
(Blt_GetPixels(interp, tkwin, padArr[1], PIXELS_NONNEGATIVE, &pad)
!= TCL_OK)) {
goto error;
}
padPtr->side2 = pad;
result = TCL_OK;
error:
Blt_Free(padArr);
return result;
}
/*
*----------------------------------------------------------------------
*
* PadToString --
*
* Converts the two pad values into a Tcl list. Each pad has two
* pixel values. For vertical pads, they represent the top and bottom
* margins. For horizontal pads, they're the left and right margins.
* All pad values are non-negative integers.
*
* Results:
* The padding list is returned.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static char *
PadToString(clientData, tkwin, widgRec, offset, freeProcPtr)
ClientData clientData; /* Not used. */
Tk_Window tkwin; /* Not used. */
char *widgRec; /* Structure record */
int offset; /* Offset of pad in record */
Tcl_FreeProc **freeProcPtr; /* Not used. */
{
Blt_Pad *padPtr = (Blt_Pad *)(widgRec + offset);
char *result;
char string[200];
sprintf(string, "%d %d", padPtr->side1, padPtr->side2);
result = Blt_Strdup(string);
if (result == NULL) {
return "out of memory";
}
*freeProcPtr = (Tcl_FreeProc *)Blt_Free;
return result;
}
/*
*----------------------------------------------------------------------
*
* StringToShadow --
*
* Convert a string into two pad values. The string may be in one of
* the following forms:
*
* n - n is a non-negative integer. This sets both
* pad values to n.
* {n m} - both n and m are non-negative integers. side1
* is set to n, side2 is set to m.
*
* Results:
* If the string is successfully converted, TCL_OK is returned.
* Otherwise, TCL_ERROR is returned and an error message is left in
* interp->result.
*
* Side Effects:
* The padding structure passed is updated with the new values.
*
* TODO: all users of this need to free color on widget exit.
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static int
StringToShadow(clientData, interp, tkwin, string, widgRec, offset)
ClientData clientData; /* Not used. */
Tcl_Interp *interp; /* Interpreter to send results back to */
Tk_Window tkwin; /* Window */
char *string; /* Pixel value string */
char *widgRec; /* Widget record */
int offset; /* Offset of pad in widget */
{
Shadow *shadowPtr = (Shadow *) (widgRec + offset);
XColor *colorPtr;
int dropOffset;
colorPtr = NULL;
dropOffset = 0;
if ((string != NULL) && (string[0] != '\0')) {
int nElem;
char **elemArr;
if (Tcl_SplitList(interp, string, &nElem, &elemArr) != TCL_OK) {
return TCL_ERROR;
}
if ((nElem < 1) || (nElem > 2)) {
Tcl_AppendResult(interp, "wrong # elements in drop shadow value",
(char *)NULL);
Blt_Free(elemArr);
return TCL_ERROR;
}
colorPtr = Tk_GetColor(interp, tkwin, Tk_GetUid(elemArr[0]));
if (colorPtr == NULL) {
Blt_Free(elemArr);
return TCL_ERROR;
}
dropOffset = 1;
if (nElem == 2) {
if (Blt_GetPixels(interp, tkwin, elemArr[1], PIXELS_NONNEGATIVE,
&dropOffset) != TCL_OK) {
Tk_FreeColor(colorPtr);
Blt_Free(elemArr);
return TCL_ERROR;
}
}
Blt_Free(elemArr);
}
if (shadowPtr->color != NULL) {
Tk_FreeColor(shadowPtr->color);
}
shadowPtr->color = colorPtr;
shadowPtr->offset = dropOffset;
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
* ShadowToString --
*
* Converts the two pad values into a Tcl list. Each pad has two
* pixel values. For vertical pads, they represent the top and bottom
* margins. For horizontal pads, they're the left and right margins.
* All pad values are non-negative integers.
*
* Results:
* The padding list is returned.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static char *
ShadowToString(clientData, tkwin, widgRec, offset, freeProcPtr)
ClientData clientData; /* Not used. */
Tk_Window tkwin; /* Not used. */
char *widgRec; /* Structure record */
int offset; /* Offset of pad in record */
Tcl_FreeProc **freeProcPtr; /* Not used. */
{
Shadow *shadowPtr = (Shadow *) (widgRec + offset);
char *result;
result = "";
if (shadowPtr->color != NULL) {
char string[200];
sprintf(string, "%s %d", Tk_NameOfColor(shadowPtr->color),
shadowPtr->offset);
result = Blt_Strdup(string);
*freeProcPtr = (Tcl_FreeProc *)Blt_Free;
}
return result;
}
/*
*----------------------------------------------------------------------
*
* GradientToString --
*
* Converts the two pad values into a Tcl list. Each pad has two
* pixel values. For vertical pads, they represent the top and bottom
* margins. For horizontal pads, they're the left and right margins.
* All pad values are non-negative integers.
*
* Results:
* The padding list is returned.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static char *
GradientToString(clientData, tkwin, widgRec, offset, freeProcPtr)
ClientData clientData; /* Not used. */
Tk_Window tkwin; /* Not used. */
char *widgRec; /* Structure record */
int offset; /* Offset of pad in record */
Tcl_FreeProc **freeProcPtr; /* Not used. */
{
Gradient *gradientPtr = (Gradient *) (widgRec + offset);
char *result;
result = "";
if (gradientPtr->color != NULL) {
char string[200];
sprintf(string, "%s %s %d", Tk_NameOfColor(gradientPtr->color), Tk_NameOfColor(gradientPtr->color2), gradientPtr->width);
result = Blt_Strdup(string);
*freeProcPtr = (Tcl_FreeProc *)Blt_Free;
}
return result;
}
/*
*----------------------------------------------------------------------
*
* StringToGradient --
*
* Convert a string into two pad values. The string may be in one of
* the following forms:
*
* n - n is a non-negative integer. This sets both
* pad values to n.
* {n m} - both n and m are non-negative integers. side1
* is set to n, side2 is set to m.
*
* Results:
* If the string is successfully converted, TCL_OK is returned.
* Otherwise, TCL_ERROR is returned and an error message is left in
* interp->result.
*
* Side Effects:
* The padding structure passed is updated with the new values.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static int
StringToGradient(clientData, interp, tkwin, string, widgRec, offset)
ClientData clientData; /* Not used. */
Tcl_Interp *interp; /* Interpreter to send results back to */
Tk_Window tkwin; /* Window */
char *string; /* Pixel value string */
char *widgRec; /* Widget record */
int offset; /* Offset of pad in widget */
{
Gradient *gradientPtr = (Gradient *) (widgRec + offset);
XColor *colorPtr, *color2Ptr;
int dropOffset;
colorPtr = NULL;
color2Ptr = NULL;
dropOffset = 0;
if ((string != NULL) && (string[0] != '\0')) {
int nElem;
char **elemArr;
if (Tcl_SplitList(interp, string, &nElem, &elemArr) != TCL_OK) {
return TCL_ERROR;
}
if (nElem != 3) {
Tcl_AppendResult(interp, "expected \"color1 color2 length\" for gradient value",
(char *)NULL);
Blt_Free(elemArr);
return TCL_ERROR;
}
colorPtr = Tk_GetColor(interp, tkwin, Tk_GetUid(elemArr[0]));
if (colorPtr == NULL) {
Blt_Free(elemArr);
return TCL_ERROR;
}
color2Ptr = Tk_GetColor(interp, tkwin, Tk_GetUid(elemArr[1]));
if (color2Ptr == NULL) {
Blt_Free(elemArr);
return TCL_ERROR;
}
dropOffset = 1;
if (Blt_GetPixels(interp, tkwin, elemArr[2], PIXELS_NONNEGATIVE,
&dropOffset) != TCL_OK) {
Tk_FreeColor(colorPtr);
Tk_FreeColor(color2Ptr);
Blt_Free(elemArr);
return TCL_ERROR;
}
Blt_Free(elemArr);
}
if (gradientPtr->color != NULL) {
Tk_FreeColor(gradientPtr->color);
}
if (gradientPtr->color2 != NULL) {
Tk_FreeColor(gradientPtr->color2);
}
gradientPtr->color = colorPtr;
gradientPtr->color2 = color2Ptr;
gradientPtr->width = dropOffset;
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
* GetDashes --
*
* Converts a Tcl list of dash values into a dash list ready for
* use with XSetDashes.
*
* A valid list dash values can have zero through 11 elements
* (PostScript limit). Values must be between 1 and 255. Although
* a list of 0 (like the empty string) means no dashes.
*
* Results:
* A standard Tcl result. If the list represented a valid dash
* list TCL_OK is returned and *dashesPtr* will contain the
* valid dash list. Otherwise, TCL_ERROR is returned and
* interp->result will contain an error message.
*
*
*----------------------------------------------------------------------
*/
static int
GetDashes(interp, string, dashesPtr)
Tcl_Interp *interp;
char *string;
Blt_Dashes *dashesPtr;
{
if ((string == NULL) || (*string == '\0')) {
dashesPtr->values[0] = 0;
} else if (strcmp(string, "dash") == 0) { /* 5 2 */
dashesPtr->values[0] = 5;
dashesPtr->values[1] = 2;
dashesPtr->values[2] = 0;
} else if (strcmp(string, "dot") == 0) { /* 1 */
dashesPtr->values[0] = 1;
dashesPtr->values[1] = 0;
} else if (strcmp(string, "dashdot") == 0) { /* 2 4 2 */
dashesPtr->values[0] = 2;
dashesPtr->values[1] = 4;
dashesPtr->values[2] = 2;
dashesPtr->values[3] = 0;
} else if (strcmp(string, "dashdotdot") == 0) { /* 2 4 2 2 */
dashesPtr->values[0] = 2;
dashesPtr->values[1] = 4;
dashesPtr->values[2] = 2;
dashesPtr->values[3] = 2;
dashesPtr->values[4] = 0;
} else {
int nValues;
char **strArr;
long int value;
register int i;
if (Tcl_SplitList(interp, string, &nValues, &strArr) != TCL_OK) {
return TCL_ERROR;
}
if (nValues > 11) { /* This is the postscript limit */
Tcl_AppendResult(interp, "too many values in dash list \"",
string, "\"", (char *)NULL);
Blt_Free(strArr);
return TCL_ERROR;
}
for (i = 0; i < nValues; i++) {
if (Tcl_ExprLong(interp, strArr[i], &value) != TCL_OK) {
Blt_Free(strArr);
return TCL_ERROR;
}
/*
* Backward compatibility:
* Allow list of 0 to turn off dashes
*/
if ((value == 0) && (nValues == 1)) {
break;
}
if ((value < 1) || (value > 255)) {
Tcl_AppendResult(interp, "dash value \"", strArr[i],
"\" is out of range", (char *)NULL);
Blt_Free(strArr);
return TCL_ERROR;
}
dashesPtr->values[i] = (unsigned char)value;
}
/* Make sure the array ends with a NUL byte */
dashesPtr->values[i] = 0;
Blt_Free(strArr);
}
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
* StringToDashes --
*
* Convert the list of dash values into a dashes array.
*
* Results:
* The return value is a standard Tcl result.
*
* Side Effects:
* The Dashes structure is updated with the new dash list.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static int
StringToDashes(clientData, interp, tkwin, string, widgRec, offset)
ClientData clientData; /* Not used. */
Tcl_Interp *interp; /* Interpreter to send results back to */
Tk_Window tkwin; /* Not used. */
char *string; /* New dash value list */
char *widgRec; /* Widget record */
int offset; /* offset to Dashes structure */
{
Blt_Dashes *dashesPtr = (Blt_Dashes *)(widgRec + offset);
return GetDashes(interp, string, dashesPtr);
}
/*
*----------------------------------------------------------------------
*
* DashesToString --
*
* Convert the dashes array into a list of values.
*
* Results:
* The string representing the dashes returned.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static char *
DashesToString(clientData, tkwin, widgRec, offset, freeProcPtr)
ClientData clientData; /* Not used. */
Tk_Window tkwin; /* Not used. */
char *widgRec; /* Widget record */
int offset; /* offset of Dashes in record */
Tcl_FreeProc **freeProcPtr; /* Memory deallocation scheme to use */
{
Blt_Dashes *dashesPtr = (Blt_Dashes *)(widgRec + offset);
Tcl_DString dString;
unsigned char *p;
char *result;
if (dashesPtr->values[0] == 0) {
return "";
}
Tcl_DStringInit(&dString);
for (p = dashesPtr->values; *p != 0; p++) {
Tcl_DStringAppendElement(&dString, Blt_Itoa(*p));
}
result = Tcl_DStringValue(&dString);
if (result == dString.staticSpace) {
result = Blt_Strdup(result);
}
*freeProcPtr = (Tcl_FreeProc *)Blt_Free;
return result;
}
/*
*----------------------------------------------------------------------
*
* StringToUid --
*
* Converts the string to a BLT Uid. Blt Uid's are hashed, reference
* counted strings.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static int
StringToUid(clientData, interp, tkwin, string, widgRec, offset)
ClientData clientData; /* Not used. */
Tcl_Interp *interp; /* Interpreter to send results back to */
Tk_Window tkwin; /* Not used. */
char *string; /* Fill style string */
char *widgRec; /* Cubicle structure record */
int offset; /* Offset of style in record */
{
Blt_Uid *uidPtr = (Blt_Uid *)(widgRec + offset);
Blt_Uid newId;
newId = NULL;
if ((string != NULL) && (*string != '\0')) {
newId = Blt_GetUid(string);
}
if (*uidPtr != NULL) {
Blt_FreeUid(*uidPtr);
}
*uidPtr = newId;
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
* UidToString --
*
* Returns the fill style string based upon the fill flags.
*
* Results:
* The fill style string is returned.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static char *
UidToString(clientData, tkwin, widgRec, offset, freeProcPtr)
ClientData clientData; /* Not used. */
Tk_Window tkwin; /* Not used. */
char *widgRec; /* Widget structure record */
int offset; /* Offset of fill in widget record */
Tcl_FreeProc **freeProcPtr; /* Not used. */
{
Blt_Uid uid = *(Blt_Uid *)(widgRec + offset);
return (uid == NULL) ? "" : uid;
}
/*
*----------------------------------------------------------------------
*
* StringToState --
*
* Converts the string to a state value. Valid states are
* disabled, normal.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static int
StringToState(clientData, interp, tkwin, string, widgRec, offset)
ClientData clientData; /* Not used. */
Tcl_Interp *interp; /* Interpreter to send results back to */
Tk_Window tkwin; /* Not used. */
char *string; /* String representation of option value */
char *widgRec; /* Widget structure record */
int offset; /* Offset of field in record */
{
int *statePtr = (int *)(widgRec + offset);
if (strcmp(string, "normal") == 0) {
*statePtr = STATE_NORMAL;
} else if (strcmp(string, "disabled") == 0) {
*statePtr = STATE_DISABLED;
} else if (strcmp(string, "active") == 0) {
*statePtr = STATE_ACTIVE;
} else {
Tcl_AppendResult(interp, "bad state \"", string,
"\": should be normal, active, or disabled", (char *)NULL);
return TCL_ERROR;
}
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
* StateToString --
*
* Returns the string representation of the state configuration field
*
* Results:
* The string is returned.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static char *
StateToString(clientData, tkwin, widgRec, offset, freeProcPtr)
ClientData clientData; /* Not used. */
Tk_Window tkwin; /* Not used. */
char *widgRec; /* Widget structure record */
int offset; /* Offset of fill in widget record */
Tcl_FreeProc **freeProcPtr; /* Not used. */
{
int state = *(int *)(widgRec + offset);
switch (state) {
case STATE_ACTIVE:
return "active";
case STATE_DISABLED:
return "disabled";
case STATE_NORMAL:
return "normal";
default:
return "???";
}
}
/*
*----------------------------------------------------------------------
*
* StringToList --
*
* Converts the string to a list.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static int
StringToList(clientData, interp, tkwin, string, widgRec, offset)
ClientData clientData; /* Not used. */
Tcl_Interp *interp; /* Interpreter to send results back to */
Tk_Window tkwin; /* Not used. */
char *string; /* String representation of option value */
char *widgRec; /* Widget structure record */
int offset; /* Offset of field in record */
{
char ***listPtr = (char ***)(widgRec + offset);
char **elemArr;
int nElem;
if (*listPtr != NULL) {
Blt_Free(*listPtr);
*listPtr = NULL;
}
if ((string == NULL) || (*string == '\0')) {
return TCL_OK;
}
if (Tcl_SplitList(interp, string, &nElem, &elemArr) != TCL_OK) {
return TCL_ERROR;
}
if (nElem > 0) {
*listPtr = elemArr;
}
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
* ListToString --
*
* Returns the string representation of the state configuration field
*
* Results:
* The string is returned.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static char *
ListToString(clientData, tkwin, widgRec, offset, freeProcPtr)
ClientData clientData; /* Not used. */
Tk_Window tkwin; /* Not used. */
char *widgRec; /* Widget structure record. */
int offset; /* Offset of fill in widget record. */
Tcl_FreeProc **freeProcPtr; /* Not used. */
{
char **list = *(char ***)(widgRec + offset);
register char **p;
char *result;
Tcl_DString dString;
if (list == NULL) {
return "";
}
Tcl_DStringInit(&dString);
for (p = list; *p != NULL; p++) {
Tcl_DStringAppendElement(&dString, *p);
}
result = Tcl_DStringValue(&dString);
if (result == dString.staticSpace) {
result = Blt_Strdup(result);
}
Tcl_DStringFree(&dString);
*freeProcPtr = (Tcl_FreeProc *)Blt_Free;
return result;
}
/*
*----------------------------------------------------------------------
*
* StringToTile --
*
* Converts the name of an image into a tile.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static int
StringToTile(clientData, interp, tkwin, string, widgRec, offset)
ClientData clientData; /* Not used. */
Tcl_Interp *interp; /* Interpreter to send results back to */
Tk_Window tkwin; /* Window on same display as tile */
char *string; /* Name of image */
char *widgRec; /* Widget structure record */
int offset; /* Offset of tile in record */
{
Blt_Tile *tilePtr = (Blt_Tile *)(widgRec + offset);
Blt_Tile tile, oldTile;
oldTile = *tilePtr;
tile = NULL;
if ((string != NULL) && (*string != '\0')) {
if (Blt_GetTile(interp, tkwin, string, &tile) != TCL_OK) {
return TCL_ERROR;
}
}
/* Don't delete the information for the old tile, until we know
* that we successfully allocated a new one. */
if (oldTile != NULL) {
Blt_FreeTile(oldTile);
}
*tilePtr = tile;
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
* TileToString --
*
* Returns the name of the tile.
*
* Results:
* The name of the tile is returned.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static char *
TileToString(clientData, tkwin, widgRec, offset, freeProcPtr)
ClientData clientData; /* Not used. */
Tk_Window tkwin; /* Not used. */
char *widgRec; /* Widget structure record */
int offset; /* Offset of tile in record */
Tcl_FreeProc **freeProcPtr; /* Not used. */
{
Blt_Tile tile = *(Blt_Tile *)(widgRec + offset);
return Blt_NameOfTile(tile);
}
/*
*----------------------------------------------------------------------
*
* Blt_ConfigModified --
*
* Given the configuration specifications and one or more option
* patterns (terminated by a NULL), indicate if any of the matching
* configuration options has been reset.
*
* Results:
* Returns 1 if one of the options has changed, 0 otherwise.
*
*----------------------------------------------------------------------
*/
int Blt_ConfigModified
TCL_VARARGS_DEF(Tk_ConfigSpec *, arg1)
{
va_list argList;
Tk_ConfigSpec *specs;
register Tk_ConfigSpec *specPtr;
register char *option;
Tcl_Interp *interp;
specs = TCL_VARARGS_START(Tk_ConfigSpec *, arg1, argList);
interp = va_arg(argList, Tcl_Interp *);
specs = Blt_GetCachedSpecs(interp, specs);
while ((option = va_arg(argList, char *)) != NULL) {
for (specPtr = specs; specPtr->type != TK_CONFIG_END; specPtr++) {
if ((Tcl_StringMatch(specPtr->argvName, option)) &&
(specPtr->specFlags & TK_CONFIG_OPTION_SPECIFIED)) {
va_end(argList);
return 1;
}
}
}
va_end(argList);
return 0;
}
/*
*----------------------------------------------------------------------
*
* Blt_ConfigureWidgetComponent --
*
* Configures a component of a widget. This is useful for
* widgets that have multiple components which aren't uniquely
* identified by a Tk_Window. It allows us, for example, set
* resources for axes of the graph widget. The graph really has
* only one window, but its convenient to specify components in a
* hierarchy of options.
*
* *graph.x.logScale yes
* *graph.Axis.logScale yes
* *graph.temperature.scaleSymbols yes
* *graph.Element.scaleSymbols yes
*
* This is really a hack to work around the limitations of the Tk
* resource database. It creates a temporary window, needed to
* call Tk_ConfigureWidget, using the name of the component.
*
* Results:
* A standard Tcl result.
*
* Side Effects:
* A temporary window is created merely to pass to Tk_ConfigureWidget.
*
*----------------------------------------------------------------------
*/
int
Blt_ConfigureWidgetComponent(interp, parent, resName, className, specsPtr,
argc, argv, widgRec, flags)
Tcl_Interp *interp;
Tk_Window parent; /* Window to associate with component */
char resName[]; /* Name of component */
char className[];
Tk_ConfigSpec *specsPtr;
int argc;
char *argv[];
char *widgRec;
int flags;
{
Tk_Window tkwin;
int result;
char *tempName;
CONST char *oldClass;
int isTemporary = FALSE;
tempName = Blt_Strdup(resName);
/* Window name can't start with an upper case letter */
tempName[0] = tolower(resName[0]);
/*
* Create component if a child window by the component's name
* doesn't already exist.
*/
tkwin = Blt_FindChild(parent, tempName);
if (tkwin == NULL) {
tkwin = Tk_CreateWindow(interp, parent, tempName, (char *)NULL);
isTemporary = TRUE;
} else {
oldClass = Tk_Class(tkwin);
}
if (tkwin == NULL) {
Tcl_AppendResult(interp, "can't find window in \"",
Tk_PathName(parent), "\"", (char *)NULL);
return TCL_ERROR;
}
assert(Tk_Depth(tkwin) == Tk_Depth(parent));
Blt_Free(tempName);
Tk_SetClass(tkwin, className);
result = Blt_ConfigureWidget(interp, tkwin, specsPtr, argc, (CONST char **)argv, widgRec,
flags);
if (isTemporary) {
Tk_DestroyWindow(tkwin);
} else if (oldClass != NULL) {
Tk_SetClass(tkwin, oldClass);
}
return result;
}
/*
*----------------------------------------------------------------------
*
* Blt_StringToEnum --
*
* Converts the string into its enumerated type.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
int
Blt_StringToEnum(clientData, interp, tkwin, string, widgRec, offset)
ClientData clientData; /* Vectors of valid strings. */
Tcl_Interp *interp; /* Interpreter to send results back to */
Tk_Window tkwin; /* Not used. */
char *string; /* String to match. */
char *widgRec; /* Widget record. */
int offset; /* Offset of field in record */
{
int *enumPtr = (int *)(widgRec + offset);
char c;
register char **p;
register int i;
int count;
c = string[0];
count = 0;
for (p = (char **)clientData; *p != NULL; p++) {
if ((c == p[0][0]) && (strcmp(string, *p) == 0)) {
*enumPtr = count;
return TCL_OK;
}
count++;
}
*enumPtr = -1;
Tcl_AppendResult(interp, "bad value \"", string, "\": should be ",
(char *)NULL);
p = (char **)clientData;
if (count > 0) {
Tcl_AppendResult(interp, p[0], (char *)NULL);
}
for (i = 1; i < (count - 1); i++) {
Tcl_AppendResult(interp, " ", p[i], ", ", (char *)NULL);
}
if (count > 1) {
Tcl_AppendResult(interp, " or ", p[count - 1], ".", (char *)NULL);
}
return TCL_ERROR;
}
/*
*----------------------------------------------------------------------
*
* Blt_EnumToString --
*
* Returns the string associated with the enumerated type.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
char *
Blt_EnumToString(clientData, tkwin, widgRec, offset, freeProcPtr)
ClientData clientData; /* List of strings. */
Tk_Window tkwin; /* Not used. */
char *widgRec; /* Widget record */
int offset; /* Offset of field in widget record */
Tcl_FreeProc **freeProcPtr; /* Not used. */
{
int value = *(int *)(widgRec + offset);
char **p;
int count;
count = 0;
for (p = (char **)clientData; *p != NULL; p++) {
count++;
}
if ((value >= count) || (value < 0)) {
return "unknown value";
}
p = (char **)clientData;
return p[value];
}
#include "bltOldConfig.c"
|