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
|
/*
* bltGrLegd.c --
*
* This module implements the legend for the BLT graph widget.
*
* Copyright 1993-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 "bltGraph.h"
#include "bltGrElem.h"
/*
* -------------------------------------------------------------------
*
* Legend --
*
* Contains information specific to how the legend will be
* displayed.
*
*
* -------------------------------------------------------------------
*/
struct LegendStruct {
unsigned int flags;
Blt_Uid classUid; /* Type: Element or Marker. */
int hidden; /* If non-zero, don't display the legend. */
int raised; /* If non-zero, draw the legend last, above
* everything else. */
int nEntries; /* Number of element entries in table. */
short int width, height; /* Dimensions of the legend */
short int nColumns, nRows; /* Number of columns and rows in legend */
int site;
Point2D anchorPos; /* Says how to position the legend. Indicates
* the site and/or x-y screen coordinates of
* the legend. Used in conjunction with the
* anchor to determine its location. */
Tk_Anchor anchor; /* Anchor of legend. Used to interpret the
* positioning point of the legend in the
* graph*/
int x, y; /* Computed origin of legend. */
Graph *graphPtr;
Tcl_Command cmdToken; /* Token for graph's widget command. */
int reqColumns, reqRows;
Blt_Pad ipadX, ipadY; /* # of pixels padding around legend entries */
Blt_Pad padX, padY; /* # of pixels padding to exterior of legend */
Tk_Window tkwin; /* Optional external window to draw legend. */
TextStyle style;
int maxSymSize; /* Size of largest symbol to be displayed.
* Used to calculate size of legend */
Tk_3DBorder activeBorder; /* Active legend entry background color. */
int activeRelief; /* 3-D effect on active entry. */
int entryBorderWidth; /* Border width around each entry in legend. */
Tk_3DBorder border; /* 3-D effect of legend. */
int borderWidth; /* Width of legend 3-D border */
int relief; /* 3-d effect of border around the legend:
* TK_RELIEF_RAISED etc. */
Blt_BindTable bindTable;
};
#define padLeft padX.side1
#define padRight padX.side2
#define padTop padY.side1
#define padBottom padY.side2
#define PADDING(x) ((x).side1 + (x).side2)
#define DEF_LEGEND_ACTIVE_BACKGROUND STD_ACTIVE_BACKGROUND
#define DEF_LEGEND_ACTIVE_BG_MONO STD_ACTIVE_BG_MONO
#define DEF_LEGEND_ACTIVE_BORDERWIDTH "2"
#define DEF_LEGEND_ACTIVE_FOREGROUND STD_ACTIVE_FOREGROUND
#define DEF_LEGEND_ACTIVE_FG_MONO STD_ACTIVE_FG_MONO
#define DEF_LEGEND_ACTIVE_RELIEF "flat"
#define DEF_LEGEND_ANCHOR "n"
#define DEF_LEGEND_BACKGROUND (char *)NULL
#define DEF_LEGEND_BG_MONO (char *)NULL
#define DEF_LEGEND_BORDERWIDTH STD_BORDERWIDTH
#define DEF_LEGEND_FOREGROUND STD_NORMAL_FOREGROUND
#define DEF_LEGEND_FG_MONO STD_NORMAL_FG_MONO
#define DEF_LEGEND_FONT STD_FONT_SMALL
#define DEF_LEGEND_HIDE "no"
#define DEF_LEGEND_IPAD_X "1"
#define DEF_LEGEND_IPAD_Y "1"
#define DEF_LEGEND_PAD_X "1"
#define DEF_LEGEND_PAD_Y "1"
#define DEF_LEGEND_POSITION "rightmargin"
#define DEF_LEGEND_RAISED "no"
#define DEF_LEGEND_RELIEF "sunken"
#define DEF_LEGEND_SHADOW_COLOR (char *)NULL
#define DEF_LEGEND_SHADOW_MONO (char *)NULL
#define DEF_LEGEND_ROWS "0"
#define DEF_LEGEND_COLUMNS "0"
static Tk_OptionParseProc StringToPosition;
static Tk_OptionPrintProc PositionToString;
static Tk_CustomOption legendPositionOption =
{
StringToPosition, PositionToString, (ClientData)0
};
extern Tk_CustomOption bltDistanceOption;
extern Tk_CustomOption bltPadOption;
extern Tk_CustomOption bltShadowOption;
extern Tk_CustomOption bltCountOption;
static Tk_ConfigSpec configSpecs[] =
{
{TK_CONFIG_BORDER, "-activebackground", "activeBackground",
"ActiveBackground", DEF_LEGEND_ACTIVE_BACKGROUND,
Tk_Offset(Legend, activeBorder), TK_CONFIG_COLOR_ONLY},
{TK_CONFIG_BORDER, "-activebackground", "activeBackground",
"ActiveBackground", DEF_LEGEND_ACTIVE_BG_MONO,
Tk_Offset(Legend, activeBorder), TK_CONFIG_MONO_ONLY},
{TK_CONFIG_CUSTOM, "-activeborderwidth", "activeBorderWidth",
"BorderWidth", DEF_LEGEND_BORDERWIDTH,
Tk_Offset(Legend, entryBorderWidth),
TK_CONFIG_DONT_SET_DEFAULT, &bltDistanceOption},
{TK_CONFIG_COLOR, "-activeforeground", "activeForeground",
"ActiveForeground", DEF_LEGEND_ACTIVE_FOREGROUND,
Tk_Offset(Legend, style.activeColor), TK_CONFIG_COLOR_ONLY},
{TK_CONFIG_COLOR, "-activeforeground", "activeForeground",
"ActiveForeground", DEF_LEGEND_ACTIVE_FG_MONO,
Tk_Offset(Legend, style.activeColor), TK_CONFIG_MONO_ONLY},
{TK_CONFIG_RELIEF, "-activerelief", "activeRelief", "Relief",
DEF_LEGEND_ACTIVE_RELIEF, Tk_Offset(Legend, activeRelief),
TK_CONFIG_DONT_SET_DEFAULT},
{TK_CONFIG_ANCHOR, "-anchor", "anchor", "Anchor",
DEF_LEGEND_ANCHOR, Tk_Offset(Legend, anchor),
TK_CONFIG_DONT_SET_DEFAULT},
{TK_CONFIG_SYNONYM, "-bg", "background", (char *)NULL, (char *)NULL, 0, 0},
{TK_CONFIG_BORDER, "-background", "background", "Background",
DEF_LEGEND_BG_MONO, Tk_Offset(Legend, border),
TK_CONFIG_NULL_OK | TK_CONFIG_MONO_ONLY},
{TK_CONFIG_BORDER, "-background", "background", "Background",
DEF_LEGEND_BACKGROUND, Tk_Offset(Legend, border),
TK_CONFIG_NULL_OK | TK_CONFIG_COLOR_ONLY},
{TK_CONFIG_CUSTOM, "-borderwidth", "borderWidth", "BorderWidth",
DEF_LEGEND_BORDERWIDTH, Tk_Offset(Legend, borderWidth),
TK_CONFIG_DONT_SET_DEFAULT, &bltDistanceOption},
{TK_CONFIG_SYNONYM, "-bd", "borderWidth", (char *)NULL, (char *)NULL, 0, 0},
{TK_CONFIG_CUSTOM, "-columns", "columns", "columns",
DEF_LEGEND_COLUMNS, Tk_Offset(Legend, reqColumns),
TK_CONFIG_DONT_SET_DEFAULT, &bltCountOption},
{TK_CONFIG_FONT, "-font", "font", "Font",
DEF_LEGEND_FONT, Tk_Offset(Legend, style.font), 0},
{TK_CONFIG_SYNONYM, "-fg", "foreground", (char *)NULL, (char *)NULL, 0, 0},
{TK_CONFIG_COLOR, "-foreground", "foreground", "Foreground",
DEF_LEGEND_FOREGROUND, Tk_Offset(Legend, style.color),
TK_CONFIG_COLOR_ONLY},
{TK_CONFIG_COLOR, "-foreground", "foreground", "Foreground",
DEF_LEGEND_FG_MONO, Tk_Offset(Legend, style.color),
TK_CONFIG_MONO_ONLY},
{TK_CONFIG_BOOLEAN, "-hide", "hide", "Hide",
DEF_LEGEND_HIDE, Tk_Offset(Legend, hidden), TK_CONFIG_DONT_SET_DEFAULT},
{TK_CONFIG_CUSTOM, "-ipadx", "iPadX", "Pad",
DEF_LEGEND_IPAD_X, Tk_Offset(Legend, ipadX),
TK_CONFIG_DONT_SET_DEFAULT, &bltPadOption},
{TK_CONFIG_CUSTOM, "-ipady", "iPadY", "Pad",
DEF_LEGEND_IPAD_Y, Tk_Offset(Legend, ipadY),
TK_CONFIG_DONT_SET_DEFAULT, &bltPadOption},
{TK_CONFIG_CUSTOM, "-padx", "padX", "Pad",
DEF_LEGEND_PAD_X, Tk_Offset(Legend, padX),
TK_CONFIG_DONT_SET_DEFAULT, &bltPadOption},
{TK_CONFIG_CUSTOM, "-pady", "padY", "Pad",
DEF_LEGEND_PAD_Y, Tk_Offset(Legend, padY),
TK_CONFIG_DONT_SET_DEFAULT, &bltPadOption},
{TK_CONFIG_CUSTOM, "-position", "position", "Position",
DEF_LEGEND_POSITION, 0,
TK_CONFIG_DONT_SET_DEFAULT, &legendPositionOption},
{TK_CONFIG_BOOLEAN, "-raised", "raised", "Raised",
DEF_LEGEND_RAISED, Tk_Offset(Legend, raised),
TK_CONFIG_DONT_SET_DEFAULT},
{TK_CONFIG_RELIEF, "-relief", "relief", "Relief",
DEF_LEGEND_RELIEF, Tk_Offset(Legend, relief),
TK_CONFIG_DONT_SET_DEFAULT},
{TK_CONFIG_CUSTOM, "-rows", "rows", "rows",
DEF_LEGEND_ROWS, Tk_Offset(Legend, reqRows),
TK_CONFIG_DONT_SET_DEFAULT, &bltCountOption},
{TK_CONFIG_CUSTOM, "-shadow", "shadow", "Shadow",
DEF_LEGEND_SHADOW_COLOR, Tk_Offset(Legend, style.shadow),
TK_CONFIG_COLOR_ONLY, &bltShadowOption},
{TK_CONFIG_CUSTOM, "-shadow", "shadow", "Shadow",
DEF_LEGEND_SHADOW_MONO, Tk_Offset(Legend, style.shadow),
TK_CONFIG_MONO_ONLY, &bltShadowOption},
{TK_CONFIG_END, NULL, NULL, NULL, NULL, 0, 0}
};
static Tcl_IdleProc DisplayLegend;
static Blt_BindPickProc PickLegendEntry;
static Tk_EventProc LegendEventProc;
extern Tcl_CmdProc Blt_GraphInstCmdProc;
/*
*--------------------------------------------------------------
*
* EventuallyRedrawLegend --
*
* Tells the Tk dispatcher to call the graph display routine at
* the next idle point. This request is made only if the window
* is displayed and no other redraw request is pending.
*
* Results: None.
*
* Side effects:
* The window is eventually redisplayed.
*
*--------------------------------------------------------------
*/
static void
EventuallyRedrawLegend(legendPtr)
Legend *legendPtr; /* Legend record */
{
if ((legendPtr->tkwin != NULL) && !(legendPtr->flags & REDRAW_PENDING)) {
Tcl_DoWhenIdle(DisplayLegend, legendPtr);
legendPtr->flags |= REDRAW_PENDING;
}
}
/*
*--------------------------------------------------------------
*
* LegendEventProc --
*
* This procedure is invoked by the Tk dispatcher for various
* events on graphs.
*
* Results:
* None.
*
* Side effects:
* When the window gets deleted, internal structures get
* cleaned up. When it gets exposed, the graph is eventually
* redisplayed.
*
*--------------------------------------------------------------
*/
static void
LegendEventProc(clientData, eventPtr)
ClientData clientData; /* Legend record */
register XEvent *eventPtr; /* Event which triggered call to routine */
{
Legend *legendPtr = clientData;
if (eventPtr->type == Expose) {
if (eventPtr->xexpose.count == 0) {
EventuallyRedrawLegend(legendPtr);
}
} else if (eventPtr->type == DestroyNotify) {
Graph *graphPtr = legendPtr->graphPtr;
if (legendPtr->tkwin != graphPtr->tkwin) {
Blt_DeleteWindowInstanceData(legendPtr->tkwin);
if (legendPtr->cmdToken != NULL) {
Tcl_DeleteCommandFromToken(graphPtr->interp,
legendPtr->cmdToken);
legendPtr->cmdToken = NULL;
}
legendPtr->tkwin = graphPtr->tkwin;
}
if (legendPtr->flags & REDRAW_PENDING) {
Tcl_CancelIdleCall(DisplayLegend, legendPtr);
legendPtr->flags &= ~REDRAW_PENDING;
}
legendPtr->site = LEGEND_RIGHT;
graphPtr->flags |= (MAP_WORLD | REDRAW_WORLD);
Blt_MoveBindingTable(legendPtr->bindTable, graphPtr->tkwin);
Blt_EventuallyRedrawGraph(graphPtr);
} else if (eventPtr->type == ConfigureNotify) {
EventuallyRedrawLegend(legendPtr);
}
}
static int
CreateLegendWindow(interp, legendPtr, pathName)
Tcl_Interp *interp;
Legend *legendPtr;
char *pathName;
{
Tk_Window tkwin;
tkwin = Tk_MainWindow(interp);
tkwin = Tk_CreateWindowFromPath(interp, tkwin, pathName, NULL);
if (tkwin == NULL) {
return TCL_ERROR;
}
Blt_SetWindowInstanceData(tkwin, legendPtr);
Tk_CreateEventHandler(tkwin, ExposureMask | StructureNotifyMask,
LegendEventProc, legendPtr);
/* Move the legend's binding table to the new window. */
Blt_MoveBindingTable(legendPtr->bindTable, tkwin);
if (legendPtr->tkwin != legendPtr->graphPtr->tkwin) {
Tk_DestroyWindow(legendPtr->tkwin);
}
legendPtr->cmdToken = Tcl_CreateCommand(interp, pathName,
Blt_GraphInstCmdProc, legendPtr->graphPtr, NULL);
legendPtr->tkwin = tkwin;
legendPtr->site = LEGEND_WINDOW;
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
* StringToPosition --
*
* Convert the string representation of a legend XY position into
* window coordinates. The form of the string must be "@x,y" or
* none.
*
* Results:
* The return value is a standard Tcl result. The symbol type is
* written into the widget record.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static int
StringToPosition(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 legend position string */
char *widgRec; /* Widget record */
int offset; /* offset to XPoint structure */
{
Legend *legendPtr = (Legend *)widgRec;
char c;
unsigned int length;
c = string[0];
length = strlen(string);
if ((string == NULL) || (*string == '\0')) {
legendPtr->site = LEGEND_RIGHT;
} else if ((c == 'l') && (strncmp(string, "leftmargin", length) == 0)) {
legendPtr->site = LEGEND_LEFT;
} else if ((c == 'r') && (strncmp(string, "rightmargin", length) == 0)) {
legendPtr->site = LEGEND_RIGHT;
} else if ((c == 't') && (strncmp(string, "topmargin", length) == 0)) {
legendPtr->site = LEGEND_TOP;
} else if ((c == 'b') && (strncmp(string, "bottommargin", length) == 0)) {
legendPtr->site = LEGEND_BOTTOM;
} else if ((c == 'p') && (strncmp(string, "plotarea", length) == 0)) {
legendPtr->site = LEGEND_PLOT;
} else if (c == '@') {
char *comma;
long x, y;
int result;
comma = strchr(string + 1, ',');
if (comma == NULL) {
Tcl_AppendResult(interp, "bad screen position \"", string,
"\": should be @x,y", (char *)NULL);
return TCL_ERROR;
}
x = y = 0;
*comma = '\0';
result = ((Tcl_ExprLong(interp, string + 1, &x) == TCL_OK) &&
(Tcl_ExprLong(interp, comma + 1, &y) == TCL_OK));
*comma = ',';
if (!result) {
return TCL_ERROR;
}
legendPtr->anchorPos.x = (int)x;
legendPtr->anchorPos.y = (int)y;
legendPtr->site = LEGEND_XY;
} else if (c == '.') {
if (legendPtr->tkwin != legendPtr->graphPtr->tkwin) {
Tk_DestroyWindow(legendPtr->tkwin);
legendPtr->tkwin = legendPtr->graphPtr->tkwin;
}
if (CreateLegendWindow(interp, legendPtr, string) != TCL_OK) {
return TCL_ERROR;
}
legendPtr->site = LEGEND_WINDOW;
} else {
Tcl_AppendResult(interp, "bad position \"", string, "\": should be \
\"leftmargin\", \"rightmargin\", \"topmargin\", \"bottommargin\", \
\"plotarea\", .window or @x,y", (char *)NULL);
return TCL_ERROR;
}
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
* PositionToString --
*
* Convert the window coordinates into a string.
*
* Results:
* The string representing the coordinate position is returned.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static char *
PositionToString(clientData, tkwin, widgRec, offset, freeProcPtr)
ClientData clientData; /* Not used. */
Tk_Window tkwin; /* Not used. */
char *widgRec; /* Widget record */
int offset; /* offset of XPoint in record */
Tcl_FreeProc **freeProcPtr; /* Memory deallocation scheme to use */
{
Legend *legendPtr = (Legend *)widgRec;
switch (legendPtr->site) {
case LEGEND_LEFT:
return "leftmargin";
case LEGEND_RIGHT:
return "rightmargin";
case LEGEND_TOP:
return "topmargin";
case LEGEND_BOTTOM:
return "bottommargin";
case LEGEND_PLOT:
return "plotarea";
case LEGEND_WINDOW:
return Tk_PathName(legendPtr->tkwin);
case LEGEND_XY:
{
char string[200];
char *result;
sprintf(string, "@%d,%d", (int)legendPtr->anchorPos.x,
(int)legendPtr->anchorPos.y);
result = Blt_Strdup(string);
*freeProcPtr = (Tcl_FreeProc *)Blt_Free;
return result;
}
default:
return "unknown legend position";
}
}
static void
SetLegendOrigin(legendPtr)
Legend *legendPtr;
{
Graph *graphPtr;
int x, y, width, height;
graphPtr = legendPtr->graphPtr;
x = y = width = height = 0; /* Suppress compiler warning. */
switch (legendPtr->site) {
case LEGEND_RIGHT:
width = graphPtr->rightMargin.width - graphPtr->rightMargin.axesOffset;
height = graphPtr->bottom - graphPtr->top;
x = graphPtr->width - (width + graphPtr->inset);
y = graphPtr->top;
break;
case LEGEND_LEFT:
width = graphPtr->leftMargin.width - graphPtr->leftMargin.axesOffset;
height = graphPtr->bottom - graphPtr->top;
x = graphPtr->inset;
y = graphPtr->top;
break;
case LEGEND_TOP:
width = graphPtr->right - graphPtr->left;
height = graphPtr->topMargin.height - graphPtr->topMargin.axesOffset;
if (graphPtr->title != NULL) {
height -= graphPtr->titleTextStyle.height;
}
x = graphPtr->left;
y = graphPtr->inset;
if (graphPtr->title != NULL) {
y += graphPtr->titleTextStyle.height;
}
break;
case LEGEND_BOTTOM:
width = graphPtr->right - graphPtr->left;
height = graphPtr->bottomMargin.height -
graphPtr->bottomMargin.axesOffset;
x = graphPtr->left;
y = graphPtr->height - (height + graphPtr->inset);
break;
case LEGEND_PLOT:
width = graphPtr->right - graphPtr->left;
height = graphPtr->bottom - graphPtr->top;
x = graphPtr->left;
y = graphPtr->top;
break;
case LEGEND_XY:
width = legendPtr->width;
height = legendPtr->height;
x = (int)legendPtr->anchorPos.x;
y = (int)legendPtr->anchorPos.y;
if (x < 0) {
x += graphPtr->width;
}
if (y < 0) {
y += graphPtr->height;
}
break;
case LEGEND_WINDOW:
legendPtr->anchor = TK_ANCHOR_NW;
legendPtr->x = legendPtr->y = 0;
return;
}
width = legendPtr->width - width;
height = legendPtr->height - height;
Blt_TranslateAnchor(x, y, width, height, legendPtr->anchor, &x, &y);
legendPtr->x = x + legendPtr->padLeft;
legendPtr->y = y + legendPtr->padTop;
}
/*ARGSUSED*/
static ClientData
PickLegendEntry(clientData, x, y, contextPtr)
ClientData clientData;
int x, y; /* Point to be tested */
ClientData *contextPtr; /* Not used. */
{
Graph *graphPtr = clientData;
Legend *legendPtr;
int width, height;
legendPtr = graphPtr->legend;
width = legendPtr->width;
height = legendPtr->height;
x -= legendPtr->x + legendPtr->borderWidth;
y -= legendPtr->y + legendPtr->borderWidth;
width -= 2 * legendPtr->borderWidth + PADDING(legendPtr->padX);
height -= 2 * legendPtr->borderWidth + PADDING(legendPtr->padY);
if ((x >= 0) && (x < width) && (y >= 0) && (y < height)) {
int row, column;
int n;
/*
* It's in the bounding box, so compute the index.
*/
row = y / legendPtr->style.height;
column = x / legendPtr->style.width;
n = (column * legendPtr->nRows) + row;
if (n < legendPtr->nEntries) {
Blt_ChainLink *linkPtr;
Element *elemPtr;
int count;
/* Legend entries are stored in reverse. */
count = 0;
for (linkPtr = Blt_ChainLastLink(graphPtr->elements.displayList);
linkPtr != NULL; linkPtr = Blt_ChainPrevLink(linkPtr)) {
elemPtr = Blt_ChainGetValue(linkPtr);
if (elemPtr->label != NULL) {
if (count == n) {
return elemPtr;
}
count++;
}
}
if (linkPtr != NULL) {
return Blt_ChainGetValue(linkPtr);
}
}
}
return NULL;
}
/*
* -----------------------------------------------------------------
*
* Blt_MapLegend --
*
* Calculates the dimensions (width and height) needed for
* the legend. Also determines the number of rows and columns
* necessary to list all the valid element labels.
*
* Results:
* None.
*
* Side effects:
* The following fields of the legend are calculated and set.
*
* nEntries - number of valid labels of elements in the
* display list.
* nRows - number of rows of entries
* nColumns - number of columns of entries
* style.height - height of each entry
* style.width - width of each entry
* height - width of legend (includes borders and padding)
* width - height of legend (includes borders and padding)
*
* -----------------------------------------------------------------
*/
void
Blt_MapLegend(legendPtr, plotWidth, plotHeight)
Legend *legendPtr;
int plotWidth; /* Maximum width available in window
* to draw the legend. Will calculate number
* of columns from this. */
int plotHeight; /* Maximum height available in window
* to draw the legend. Will calculate number
* of rows from this. */
{
Blt_ChainLink *linkPtr;
Element *elemPtr;
int nRows, nColumns, nEntries;
int legendWidth, legendHeight;
int entryWidth, entryHeight;
int symbolWidth;
Tk_FontMetrics fontMetrics;
/* Initialize legend values to default (no legend displayed) */
legendPtr->style.width = legendPtr->style.height = 0;
legendPtr->nRows = legendPtr->nColumns = 0;
legendPtr->nEntries = 0;
legendPtr->height = legendPtr->width = 0;
if (legendPtr->site == LEGEND_WINDOW) {
if (Tk_Width(legendPtr->tkwin) > 1) {
plotWidth = Tk_Width(legendPtr->tkwin);
}
if (Tk_Height(legendPtr->tkwin) > 1) {
plotHeight = Tk_Height(legendPtr->tkwin);
}
}
if ((legendPtr->hidden) || (plotWidth < 1) || (plotHeight < 1)) {
return; /* Legend is not being displayed */
}
/*
* Count the number of legend entries and determine the widest and
* tallest label. The number of entries would normally be the
* number of elements, but 1) elements can be hidden and 2)
* elements can have no legend entry (-label "").
*/
nEntries = 0;
entryWidth = entryHeight = 0;
for (linkPtr = Blt_ChainLastLink(legendPtr->graphPtr->elements.displayList);
linkPtr != NULL; linkPtr = Blt_ChainPrevLink(linkPtr)) {
int width, height;
elemPtr = Blt_ChainGetValue(linkPtr);
if (elemPtr->label == NULL) {
continue; /* Element has no legend entry. */
}
Blt_GetTextExtents(&legendPtr->style, elemPtr->label, &width, &height);
if (entryWidth < width) {
entryWidth = width;
}
if (entryHeight < height) {
entryHeight = height;
}
nEntries++;
}
if (nEntries == 0) {
return; /* No legend entries. */
}
Tk_GetFontMetrics(legendPtr->style.font, &fontMetrics);
symbolWidth = 2 * fontMetrics.ascent;
entryWidth += 2 * legendPtr->entryBorderWidth + PADDING(legendPtr->ipadX) +
5 + symbolWidth;
entryHeight += 2 * legendPtr->entryBorderWidth + PADDING(legendPtr->ipadY);
legendWidth = plotWidth - 2 * legendPtr->borderWidth -
PADDING(legendPtr->padX);
legendHeight = plotHeight - 2 * legendPtr->borderWidth -
PADDING(legendPtr->padY);
/*
* The number of rows and columns is computed as one of the following:
*
* both options set User defined.
* -rows Compute columns from rows.
* -columns Compute rows from columns.
* neither set Compute rows and columns from
* size of plot.
*/
if (legendPtr->reqRows > 0) {
nRows = legendPtr->reqRows;
if (nRows > nEntries) {
nRows = nEntries;
}
if (legendPtr->reqColumns > 0) {
nColumns = legendPtr->reqColumns;
if (nColumns > nEntries) {
nColumns = nEntries; /* Both -rows, -columns set. */
}
} else {
nColumns = ((nEntries - 1) / nRows) + 1; /* Only -rows. */
}
} else if (legendPtr->reqColumns > 0) { /* Only -columns. */
nColumns = legendPtr->reqColumns;
if (nColumns > nEntries) {
nColumns = nEntries;
}
nRows = ((nEntries - 1) / nColumns) + 1;
} else {
/* Compute # of rows and columns from the legend size. */
nRows = legendHeight / entryHeight;
nColumns = legendWidth / entryWidth;
if (nRows > nEntries) {
nRows = nEntries;
} else if (nRows < 1) {
nRows = 1;
}
if (nColumns > nEntries) {
nColumns = nEntries;
} else if (nColumns < 1) {
nColumns = 1;
}
if ((legendPtr->site == LEGEND_TOP) ||
(legendPtr->site == LEGEND_BOTTOM)) {
nRows = ((nEntries - 1) / nColumns) + 1;
} else {
nColumns = ((nEntries - 1) / nRows) + 1;
}
}
if (nRows < 1) {
nRows = 1;
}
if (nColumns < 1) {
nColumns = 1;
}
legendWidth = 2 * legendPtr->borderWidth + PADDING(legendPtr->padX);
legendHeight = 2 * legendPtr->borderWidth + PADDING(legendPtr->padY);
legendHeight += nRows * entryHeight;
legendWidth += nColumns * entryWidth;
legendPtr->height = legendHeight;
legendPtr->width = legendWidth;
legendPtr->nRows = nRows;
legendPtr->nColumns = nColumns;
legendPtr->nEntries = nEntries;
legendPtr->style.height = entryHeight;
legendPtr->style.width = entryWidth;
if ((legendPtr->tkwin != legendPtr->graphPtr->tkwin) &&
((Tk_ReqWidth(legendPtr->tkwin) != legendWidth) ||
(Tk_ReqHeight(legendPtr->tkwin) != legendHeight))) {
Tk_GeometryRequest(legendPtr->tkwin, legendWidth, legendHeight);
}
}
void
Blt_DrawLegend(legendPtr, drawable)
Legend *legendPtr;
Drawable drawable; /* Pixmap or window to draw into */
{
Graph *graphPtr;
Blt_ChainLink *linkPtr;
Pixmap pixmap;
Tk_3DBorder border;
Tk_FontMetrics fontMetrics;
Tk_Window tkwin;
int count;
int labelX, startY, symbolX, symbolY;
int symbolSize, midX, midY;
int width, height;
int x, y;
register Element *elemPtr;
graphPtr = legendPtr->graphPtr;
graphPtr->flags &= ~DRAW_LEGEND;
if ((legendPtr->hidden) || (legendPtr->nEntries == 0)) {
return;
}
SetLegendOrigin(legendPtr);
if (legendPtr->tkwin != graphPtr->tkwin) {
tkwin = legendPtr->tkwin;
width = Tk_Width(tkwin);
if (width < 1) {
width = legendPtr->width;
}
height = Tk_Height(tkwin);
if (height < 1) {
height = legendPtr->height;
}
} else {
width = legendPtr->width;
height = legendPtr->height;
}
Tk_GetFontMetrics(legendPtr->style.font, &fontMetrics);
symbolSize = fontMetrics.ascent;
midX = symbolSize + 1 + legendPtr->entryBorderWidth;
midY = (symbolSize / 2) + 1 + legendPtr->entryBorderWidth;
labelX = 2 * symbolSize + legendPtr->entryBorderWidth +
legendPtr->ipadX.side1 + 5;
symbolY = midY + legendPtr->ipadY.side1;
symbolX = midX + legendPtr->ipadX.side1;
pixmap = Tk_GetPixmap(graphPtr->display, Tk_WindowId(legendPtr->tkwin),
width, height, Tk_Depth(legendPtr->tkwin));
if (legendPtr->border != NULL) {
/* Background color and relief. */
Blt_Fill3DRectangle(legendPtr->tkwin, pixmap, legendPtr->border, 0, 0,
width, height, 0, TK_RELIEF_FLAT);
} else if (legendPtr->site & LEGEND_IN_PLOT) {
/*
* Legend background is transparent and is positioned over the
* the plot area. Either copy the part of the background from
* the backing store pixmap or (if no backing store exists)
* just fill it with the background color of the plot.
*/
if (graphPtr->backPixmap != None) {
XCopyArea(graphPtr->display, graphPtr->backPixmap, pixmap,
graphPtr->drawGC, legendPtr->x, legendPtr->y, width, height,
0, 0);
} else {
XFillRectangle(graphPtr->display, pixmap, graphPtr->plotFillGC,
0, 0, width, height);
}
} else {
/*
* The legend is positioned in one of the margins or the
* external window. Draw either the solid or tiled background
* with the the border.
*/
if (Blt_HasTile(graphPtr->tile)) {
Blt_SetTileOrigin(legendPtr->tkwin, graphPtr->tile, legendPtr->x,
legendPtr->y);
Blt_TileRectangle(legendPtr->tkwin, pixmap, graphPtr->tile, 0, 0,
width, height);
} else {
XFillRectangle(graphPtr->display, pixmap, graphPtr->fillGC, 0, 0,
width, height);
}
}
x = legendPtr->padLeft + legendPtr->borderWidth;
y = legendPtr->padTop + legendPtr->borderWidth;
count = 0;
startY = y;
for (linkPtr = Blt_ChainLastLink(graphPtr->elements.displayList);
linkPtr != NULL; linkPtr = Blt_ChainPrevLink(linkPtr)) {
elemPtr = Blt_ChainGetValue(linkPtr);
if (elemPtr->label == NULL) {
continue; /* Skip this entry */
}
if (elemPtr->flags & LABEL_ACTIVE) {
legendPtr->style.state |= STATE_ACTIVE;
Blt_Fill3DRectangle(legendPtr->tkwin, pixmap,
legendPtr->activeBorder, x, y,
legendPtr->style.width, legendPtr->style.height,
legendPtr->entryBorderWidth, legendPtr->activeRelief);
} else {
legendPtr->style.state &= ~STATE_ACTIVE;
if (elemPtr->labelRelief != TK_RELIEF_FLAT) {
Blt_Draw3DRectangle(legendPtr->tkwin, pixmap, graphPtr->border,
x, y, legendPtr->style.width, legendPtr->style.height,
legendPtr->entryBorderWidth, elemPtr->labelRelief);
}
}
(*elemPtr->procsPtr->drawSymbolProc) (graphPtr, pixmap, elemPtr,
x + symbolX, y + symbolY, symbolSize);
Blt_DrawText(legendPtr->tkwin, pixmap, elemPtr->label,
&legendPtr->style, x + labelX,
y + legendPtr->entryBorderWidth + legendPtr->ipadY.side1);
count++;
/* Check when to move to the next column */
if ((count % legendPtr->nRows) > 0) {
y += legendPtr->style.height;
} else {
x += legendPtr->style.width;
y = startY;
}
}
/*
* Draw the border and/or background of the legend.
*/
border = legendPtr->border;
if (border == NULL) {
border = graphPtr->border;
}
Blt_Draw3DRectangle(legendPtr->tkwin, pixmap, border, 0, 0, width, height,
legendPtr->borderWidth, legendPtr->relief);
XCopyArea(graphPtr->display, pixmap, drawable, graphPtr->drawGC, 0, 0,
width, height, legendPtr->x, legendPtr->y);
Tk_FreePixmap(graphPtr->display, pixmap);
}
/*
* -----------------------------------------------------------------
*
* Blt_LegendToPostScript --
*
* -----------------------------------------------------------------
*/
void
Blt_LegendToPostScript(legendPtr, psToken)
Legend *legendPtr;
PsToken psToken;
{
Graph *graphPtr;
double x, y, startY;
Element *elemPtr;
int labelX, symbolX, symbolY;
int count;
Blt_ChainLink *linkPtr;
int symbolSize, midX, midY;
int width, height;
Tk_FontMetrics fontMetrics;
if ((legendPtr->hidden) || (legendPtr->nEntries == 0)) {
return;
}
SetLegendOrigin(legendPtr);
x = legendPtr->x, y = legendPtr->y;
width = legendPtr->width - PADDING(legendPtr->padX);
height = legendPtr->height - PADDING(legendPtr->padY);
graphPtr = legendPtr->graphPtr;
if (graphPtr->postscript->decorations) {
if (legendPtr->border != NULL) {
Blt_Fill3DRectangleToPostScript(psToken, legendPtr->border, x, y,
width, height, legendPtr->borderWidth, legendPtr->relief);
} else {
Blt_Draw3DRectangleToPostScript(psToken, graphPtr->border, x, y,
width, height, legendPtr->borderWidth, legendPtr->relief);
}
} else {
Blt_ClearBackgroundToPostScript(psToken);
Blt_RectangleToPostScript(psToken, x, y, width, height);
}
x += legendPtr->borderWidth;
y += legendPtr->borderWidth;
Tk_GetFontMetrics(legendPtr->style.font, &fontMetrics);
symbolSize = fontMetrics.ascent;
midX = symbolSize + 1 + legendPtr->entryBorderWidth;
midY = (symbolSize / 2) + 1 + legendPtr->entryBorderWidth;
labelX = 2 * symbolSize + legendPtr->entryBorderWidth +
legendPtr->ipadX.side1 + 5;
symbolY = midY + legendPtr->ipadY.side1;
symbolX = midX + legendPtr->ipadX.side1;
count = 0;
startY = y;
for (linkPtr = Blt_ChainLastLink(graphPtr->elements.displayList);
linkPtr != NULL; linkPtr = Blt_ChainPrevLink(linkPtr)) {
elemPtr = Blt_ChainGetValue(linkPtr);
if (elemPtr->label == NULL) {
continue; /* Skip this label */
}
if (elemPtr->flags & LABEL_ACTIVE) {
legendPtr->style.state |= STATE_ACTIVE;
Blt_Fill3DRectangleToPostScript(psToken, legendPtr->activeBorder,
x, y, legendPtr->style.width, legendPtr->style.height,
legendPtr->entryBorderWidth, legendPtr->activeRelief);
} else {
legendPtr->style.state &= ~STATE_ACTIVE;
if (elemPtr->labelRelief != TK_RELIEF_FLAT) {
Blt_Draw3DRectangleToPostScript(psToken, graphPtr->border,
x, y, legendPtr->style.width, legendPtr->style.height,
legendPtr->entryBorderWidth, elemPtr->labelRelief);
}
}
(*elemPtr->procsPtr->printSymbolProc) (graphPtr, psToken, elemPtr,
x + symbolX, y + symbolY, symbolSize);
Blt_TextToPostScript(psToken, elemPtr->label, &(legendPtr->style),
x + labelX,
y + legendPtr->entryBorderWidth + legendPtr->ipadY.side1);
count++;
if ((count % legendPtr->nRows) > 0) {
y += legendPtr->style.height;
} else {
x += legendPtr->style.width;
y = startY;
}
}
}
/*
* -----------------------------------------------------------------
*
* DisplayLegend --
*
* -----------------------------------------------------------------
*/
static void
DisplayLegend(clientData)
ClientData clientData;
{
Legend *legendPtr = clientData;
int width, height;
legendPtr->flags &= ~REDRAW_PENDING;
if (legendPtr->tkwin == NULL) {
return; /* Window has been destroyed. */
}
if (legendPtr->site == LEGEND_WINDOW) {
width = Tk_Width(legendPtr->tkwin);
height = Tk_Height(legendPtr->tkwin);
if ((width <= 1) || (height <= 1)) {
return;
}
if ((width != legendPtr->width) || (height != legendPtr->height)) {
Blt_MapLegend(legendPtr, width, height);
}
}
if (!Tk_IsMapped(legendPtr->tkwin)) {
return;
}
Blt_DrawLegend(legendPtr, Tk_WindowId(legendPtr->tkwin));
}
/*
*----------------------------------------------------------------------
*
* ConfigureLegend --
*
* Routine to configure the legend.
*
* Results:
* A standard Tcl result.
*
* Side Effects:
* Graph will be redrawn to reflect the new legend attributes.
*
*----------------------------------------------------------------------
*/
static void
ConfigureLegend(graphPtr, legendPtr)
Graph *graphPtr;
Legend *legendPtr;
{
Blt_ResetTextStyle(graphPtr->tkwin, &(legendPtr->style));
if (legendPtr->site == LEGEND_WINDOW) {
EventuallyRedrawLegend(legendPtr);
} else {
/*
* Update the layout of the graph (and redraw the elements) if
* any of the following legend options (all of which affect the
* size of the legend) have changed.
*
* -activeborderwidth, -borderwidth
* -border
* -font
* -hide
* -ipadx, -ipady, -padx, -pady
* -rows
*
* If the position of the legend changed to/from the default
* position, also indicate that a new layout is needed.
*
*/
if (Blt_ConfigModified(configSpecs, graphPtr->interp, "-*border*", "-*pad?",
"-position", "-hide", "-font", "-rows", (char *)NULL)) {
graphPtr->flags |= MAP_WORLD;
}
graphPtr->flags |= (REDRAW_WORLD | REDRAW_BACKING_STORE);
Blt_EventuallyRedrawGraph(graphPtr);
}
}
/*
*----------------------------------------------------------------------
*
* Blt_DestroyLegend --
*
* Results:
* None.
*
* Side effects:
* Resources associated with the legend are freed.
*
*----------------------------------------------------------------------
*/
void
Blt_DestroyLegend(graphPtr)
Graph *graphPtr;
{
Legend *legendPtr = graphPtr->legend;
Tk_FreeOptions(configSpecs, (char *)legendPtr, graphPtr->display, 0);
Blt_FreeTextStyle(graphPtr->display, &(legendPtr->style));
Blt_DestroyBindingTable(legendPtr->bindTable);
if (legendPtr->tkwin != graphPtr->tkwin) {
Tk_Window tkwin;
/* The graph may be in the process of being torn down */
if (legendPtr->cmdToken != NULL) {
Tcl_DeleteCommandFromToken(graphPtr->interp, legendPtr->cmdToken);
}
if (legendPtr->flags & REDRAW_PENDING) {
Tcl_CancelIdleCall(DisplayLegend, legendPtr);
legendPtr->flags &= ~REDRAW_PENDING;
}
tkwin = legendPtr->tkwin;
legendPtr->tkwin = NULL;
if (tkwin != NULL) {
Tk_DeleteEventHandler(tkwin, ExposureMask | StructureNotifyMask,
LegendEventProc, legendPtr);
Blt_DeleteWindowInstanceData(tkwin);
Tk_DestroyWindow(tkwin);
}
}
Blt_Free(legendPtr);
}
/*
*----------------------------------------------------------------------
*
* Blt_CreateLegend --
*
* Creates and initializes a legend structure with default settings
*
* Results:
* A standard Tcl result.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
int
Blt_CreateLegend(graphPtr)
Graph *graphPtr;
{
Legend *legendPtr;
legendPtr = Blt_Calloc(1, sizeof(Legend));
assert(legendPtr);
graphPtr->legend = legendPtr;
legendPtr->graphPtr = graphPtr;
legendPtr->tkwin = graphPtr->tkwin;
legendPtr->hidden = FALSE;
legendPtr->anchorPos.x = legendPtr->anchorPos.y = -SHRT_MAX;
legendPtr->relief = TK_RELIEF_SUNKEN;
legendPtr->activeRelief = TK_RELIEF_FLAT;
legendPtr->entryBorderWidth = legendPtr->borderWidth = 2;
legendPtr->ipadX.side1 = legendPtr->ipadX.side2 = 1;
legendPtr->ipadY.side1 = legendPtr->ipadY.side2 = 1;
legendPtr->padX.side1 = legendPtr->padX.side2 = 1;
legendPtr->padY.side1 = legendPtr->padY.side2 = 1;
legendPtr->anchor = TK_ANCHOR_N;
legendPtr->site = LEGEND_RIGHT;
Blt_InitTextStyle(&(legendPtr->style));
legendPtr->style.justify = TK_JUSTIFY_LEFT;
legendPtr->style.anchor = TK_ANCHOR_NW;
legendPtr->bindTable = Blt_CreateBindingTable(graphPtr->interp,
graphPtr->tkwin, graphPtr, PickLegendEntry, Blt_GraphTags);
if (Blt_ConfigureWidgetComponent(graphPtr->interp, graphPtr->tkwin,
"legend", "Legend", configSpecs, 0, (char **)NULL,
(char *)legendPtr, 0) != TCL_OK) {
return TCL_ERROR;
}
ConfigureLegend(graphPtr, legendPtr);
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
* GetOp --
*
* Find the legend entry from the given argument. The argument
* can be either a screen position "@x,y" or the name of an
* element.
*
* I don't know how useful it is to test with the name of an
* element.
*
* Results:
* A standard Tcl result.
*
* Side Effects:
* Graph will be redrawn to reflect the new legend attributes.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static int
GetOp(graphPtr, interp, argc, argv)
Graph *graphPtr;
Tcl_Interp *interp;
int argc; /* Not used. */
char *argv[];
{
register Element *elemPtr;
Legend *legendPtr = graphPtr->legend;
int x, y;
char c;
if ((legendPtr->hidden) || (legendPtr->nEntries == 0)) {
return TCL_OK;
}
elemPtr = NULL;
c = argv[3][0];
if ((c == 'c') && (strcmp(argv[3], "current") == 0)) {
elemPtr = (Element *)Blt_GetCurrentItem(legendPtr->bindTable);
} else if ((c == '@') &&
(Blt_GetXY(interp, graphPtr->tkwin, argv[3], &x, &y) == TCL_OK)) {
elemPtr = (Element *)PickLegendEntry(graphPtr, x, y, NULL);
}
if (elemPtr != NULL) {
Tcl_SetResult(interp, elemPtr->name, TCL_VOLATILE);
}
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
* ActivateOp --
*
* Activates a particular label in the legend.
*
* Results:
* A standard Tcl result.
*
* Side Effects:
* Graph will be redrawn to reflect the new legend attributes.
*
*----------------------------------------------------------------------
*/
static int
ActivateOp(graphPtr, interp, argc, argv)
Graph *graphPtr;
Tcl_Interp *interp;
int argc;
char *argv[];
{
Legend *legendPtr = graphPtr->legend;
Element *elemPtr;
unsigned int active, redraw;
Blt_HashEntry *hPtr;
Blt_HashSearch cursor;
register int i;
active = (argv[2][0] == 'a') ? LABEL_ACTIVE : 0;
redraw = 0;
for (hPtr = Blt_FirstHashEntry(&(graphPtr->elements.table), &cursor);
hPtr != NULL; hPtr = Blt_NextHashEntry(&cursor)) {
elemPtr = Blt_GetHashValue(hPtr);
for (i = 3; i < argc; i++) {
if (Tcl_StringMatch(elemPtr->name, argv[i])) {
break;
}
}
if ((i < argc) && (active != (elemPtr->flags & LABEL_ACTIVE))) {
elemPtr->flags ^= LABEL_ACTIVE;
if (elemPtr->label != NULL) {
redraw++;
}
}
}
if ((redraw) && (!legendPtr->hidden)) {
/*
* See if how much we need to draw. If the graph is already
* schedule for a redraw, just make sure the right flags are
* set. Otherwise redraw only the legend: it's either in an
* external window or it's the only thing that need updating.
*/
if (graphPtr->flags & REDRAW_PENDING) {
if (legendPtr->site & LEGEND_IN_PLOT) {
graphPtr->flags |= REDRAW_BACKING_STORE;
}
graphPtr->flags |= REDRAW_WORLD; /* Redraw entire graph. */
} else {
EventuallyRedrawLegend(legendPtr);
}
}
/* Return the names of all the active legend entries */
for (hPtr = Blt_FirstHashEntry(&(graphPtr->elements.table), &cursor);
hPtr != NULL; hPtr = Blt_NextHashEntry(&cursor)) {
elemPtr = Blt_GetHashValue(hPtr);
if (elemPtr->flags & LABEL_ACTIVE) {
Tcl_AppendElement(interp, elemPtr->name);
}
}
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
* BindOp --
*
* .t bind index sequence command
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static int
BindOp(graphPtr, interp, argc, argv)
Graph *graphPtr;
Tcl_Interp *interp;
int argc;
char **argv;
{
if (argc == 3) {
Blt_HashEntry *hPtr;
Blt_HashSearch cursor;
char *tagName;
for (hPtr = Blt_FirstHashEntry(&(graphPtr->elements.tagTable), &cursor);
hPtr != NULL; hPtr = Blt_NextHashEntry(&cursor)) {
tagName = Blt_GetHashKey(&(graphPtr->elements.tagTable), hPtr);
Tcl_AppendElement(interp, tagName);
}
return TCL_OK;
}
return Blt_ConfigureBindings(interp, graphPtr->legend->bindTable,
Blt_MakeElementTag(graphPtr, argv[3]), argc - 4, argv + 4);
}
/*
*----------------------------------------------------------------------
*
* CgetOp --
*
* Queries or resets options for the legend.
*
* Results:
* A standard Tcl result.
*
* Side Effects:
* Graph will be redrawn to reflect the new legend attributes.
*
*----------------------------------------------------------------------
*/
/* ARGSUSED */
static int
CgetOp(graphPtr, interp, argc, argv)
Graph *graphPtr;
Tcl_Interp *interp;
int argc;
char **argv;
{
return Tk_ConfigureValue(interp, graphPtr->tkwin, configSpecs,
(char *)graphPtr->legend, argv[3], 0);
}
/*
*----------------------------------------------------------------------
*
* ConfigureOp --
*
* Queries or resets options for the legend.
*
* Results:
* A standard Tcl result.
*
* Side Effects:
* Graph will be redrawn to reflect the new legend attributes.
*
*----------------------------------------------------------------------
*/
static int
ConfigureOp(graphPtr, interp, argc, argv)
Graph *graphPtr;
Tcl_Interp *interp;
int argc;
CONST char **argv;
{
int flags = TK_CONFIG_ARGV_ONLY;
Legend *legendPtr;
legendPtr = graphPtr->legend;
if (argc == 3) {
return Tk_ConfigureInfo(interp, graphPtr->tkwin, configSpecs,
(char *)legendPtr, (char *)NULL, flags);
} else if (argc == 4) {
return Tk_ConfigureInfo(interp, graphPtr->tkwin, configSpecs,
(char *)legendPtr, argv[3], flags);
}
if (Blt_ConfigureWidget(interp, graphPtr->tkwin, configSpecs, argc - 3,
argv + 3, (char *)legendPtr, flags) != TCL_OK) {
return TCL_ERROR;
}
ConfigureLegend(graphPtr, legendPtr);
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
* Blt_LegendOp --
*
* Results:
* A standard Tcl result.
*
* Side Effects:
* Legend is possibly redrawn.
*
*----------------------------------------------------------------------
*/
static Blt_OpSpec legendOps[] =
{
{"activate", 1, (Blt_Op)ActivateOp, 3, 0, "?pattern?...",},
{"bind", 1, (Blt_Op)BindOp, 3, 6, "elemName sequence command",},
{"cget", 2, (Blt_Op)CgetOp, 4, 4, "option",},
{"configure", 2, (Blt_Op)ConfigureOp, 3, 0, "?option value?...",},
{"deactivate", 1, (Blt_Op)ActivateOp, 3, 0, "?pattern?...",},
{"get", 1, (Blt_Op)GetOp, 4, 4, "index",},
};
static int nLegendOps = sizeof(legendOps) / sizeof(Blt_OpSpec);
int
Blt_LegendOp(graphPtr, interp, argc, argv)
Graph *graphPtr;
Tcl_Interp *interp;
int argc;
char **argv;
{
Blt_Op proc;
int result;
proc = Blt_GetOp(interp, nLegendOps, legendOps, BLT_OP_ARG2, argc, argv,0);
if (proc == NULL) {
return TCL_ERROR;
}
result = (*proc) (graphPtr, interp, argc, argv);
return result;
}
int
Blt_LegendSite(legendPtr)
Legend *legendPtr;
{
return legendPtr->site;
}
int
Blt_LegendWidth(legendPtr)
Legend *legendPtr;
{
return legendPtr->width;
}
int
Blt_LegendHeight(legendPtr)
Legend *legendPtr;
{
return legendPtr->height;
}
int
Blt_LegendIsHidden(legendPtr)
Legend *legendPtr;
{
return legendPtr->hidden;
}
int
Blt_LegendIsRaised(legendPtr)
Legend *legendPtr;
{
return legendPtr->raised;
}
int
Blt_LegendX(legendPtr)
Legend *legendPtr;
{
return legendPtr->x;
}
int
Blt_LegendY(legendPtr)
Legend *legendPtr;
{
return legendPtr->y;
}
void
Blt_LegendRemoveElement(legendPtr, elemPtr)
Legend *legendPtr;
Element *elemPtr;
{
Blt_DeleteBindings(legendPtr->bindTable, elemPtr);
}
|