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
|
/*
* bltGrHairs.c --
*
* This module implements crosshairs 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.
*
* Graph widget created by Sani Nassif and George Howlett.
*/
#include "bltGraph.h"
extern Tk_CustomOption bltPointOption;
extern Tk_CustomOption bltDistanceOption;
extern Tk_CustomOption bltDashesOption;
/*
* -------------------------------------------------------------------
*
* Crosshairs
*
* Contains the line segments positions and graphics context used
* to simulate crosshairs (by XORing) on the graph.
*
* -------------------------------------------------------------------
*/
struct CrosshairsStruct {
XPoint hotSpot; /* Hot spot for crosshairs */
int visible; /* Internal state of crosshairs. If non-zero,
* crosshairs are displayed. */
int hidden; /* If non-zero, crosshairs are not displayed.
* This is not necessarily consistent with the
* internal state variable. This is true when
* the hot spot is off the graph. */
Blt_Dashes dashes; /* Dashstyle of the crosshairs. This represents
* an array of alternatingly drawn pixel
* values. If NULL, the hairs are drawn as a
* solid line */
int lineWidth; /* Width of the simulated crosshair lines */
XSegment segArr[2]; /* Positions of line segments representing the
* simulated crosshairs. */
XColor *colorPtr; /* Foreground color of crosshairs */
GC gc; /* Graphics context for crosshairs. Set to
* GXxor to not require redraws of graph */
};
#define DEF_HAIRS_DASHES (char *)NULL
#define DEF_HAIRS_FOREGROUND RGB_BLACK
#define DEF_HAIRS_FG_MONO RGB_BLACK
#define DEF_HAIRS_LINE_WIDTH "0"
#define DEF_HAIRS_HIDE "yes"
#define DEF_HAIRS_POSITION (char *)NULL
static Tk_ConfigSpec configSpecs[] =
{
{TK_CONFIG_COLOR, "-color", "color", "Color",
DEF_HAIRS_FOREGROUND, Tk_Offset(Crosshairs, colorPtr), TK_CONFIG_COLOR_ONLY},
{TK_CONFIG_COLOR, "-color", "color", "Color",
DEF_HAIRS_FG_MONO, Tk_Offset(Crosshairs, colorPtr), TK_CONFIG_MONO_ONLY},
{TK_CONFIG_CUSTOM, "-dashes", "dashes", "Dashes",
DEF_HAIRS_DASHES, Tk_Offset(Crosshairs, dashes),
TK_CONFIG_NULL_OK, &bltDashesOption},
{TK_CONFIG_BOOLEAN, "-hide", "hide", "Hide",
DEF_HAIRS_HIDE, Tk_Offset(Crosshairs, hidden),
TK_CONFIG_DONT_SET_DEFAULT},
{TK_CONFIG_CUSTOM, "-linewidth", "lineWidth", "Linewidth",
DEF_HAIRS_LINE_WIDTH, Tk_Offset(Crosshairs, lineWidth),
TK_CONFIG_DONT_SET_DEFAULT, &bltDistanceOption},
{TK_CONFIG_CUSTOM, "-position", "position", "Position",
DEF_HAIRS_POSITION, Tk_Offset(Crosshairs, hotSpot),
0, &bltPointOption},
{TK_CONFIG_END, NULL, NULL, NULL, NULL, 0, 0}
};
/*
*----------------------------------------------------------------------
*
* TurnOffHairs --
*
* XOR's the existing line segments (representing the crosshairs),
* thereby erasing them. The internal state of the crosshairs is
* tracked.
*
* Results:
* None
*
* Side Effects:
* Crosshairs are erased.
*
*----------------------------------------------------------------------
*/
static void
TurnOffHairs(tkwin, chPtr)
Tk_Window tkwin;
Crosshairs *chPtr;
{
if (Tk_IsMapped(tkwin) && (chPtr->visible)) {
XDrawSegments(Tk_Display(tkwin), Tk_WindowId(tkwin), chPtr->gc,
chPtr->segArr, 2);
chPtr->visible = FALSE;
}
}
/*
*----------------------------------------------------------------------
*
* TurnOnHairs --
*
* Draws (by XORing) new line segments, creating the effect of
* crosshairs. The internal state of the crosshairs is tracked.
*
* Results:
* None
*
* Side Effects:
* Crosshairs are displayed.
*
*----------------------------------------------------------------------
*/
static void
TurnOnHairs(graphPtr, chPtr)
Graph *graphPtr;
Crosshairs *chPtr;
{
if (Tk_IsMapped(graphPtr->tkwin) && (!chPtr->visible)) {
if (!PointInGraph(graphPtr, chPtr->hotSpot.x, chPtr->hotSpot.y)) {
return; /* Coordinates are off the graph */
}
XDrawSegments(graphPtr->display, Tk_WindowId(graphPtr->tkwin),
chPtr->gc, chPtr->segArr, 2);
chPtr->visible = TRUE;
}
}
/*
*----------------------------------------------------------------------
*
* ConfigureCrosshairs --
*
* Configures attributes of the crosshairs such as line width,
* dashes, and position. The crosshairs are first turned off
* before any of the attributes changes.
*
* Results:
* None
*
* Side Effects:
* Crosshair GC is allocated.
*
*----------------------------------------------------------------------
*/
void
Blt_ConfigureCrosshairs(graphPtr)
Graph *graphPtr;
{
XGCValues gcValues;
unsigned long gcMask;
GC newGC;
long colorValue;
Crosshairs *chPtr = graphPtr->crosshairs;
/*
* Turn off the crosshairs temporarily. This is in case the new
* configuration changes the size, style, or position of the lines.
*/
TurnOffHairs(graphPtr->tkwin, chPtr);
gcValues.function = GXxor;
if (graphPtr->plotBg == NULL) {
/* The graph's color option may not have been set yet */
colorValue = WhitePixelOfScreen(Tk_Screen(graphPtr->tkwin));
} else {
colorValue = graphPtr->plotBg->pixel;
}
gcValues.background = colorValue;
gcValues.foreground = (colorValue ^ chPtr->colorPtr->pixel);
gcValues.line_width = LineWidth(chPtr->lineWidth);
gcMask = (GCForeground | GCBackground | GCFunction | GCLineWidth);
if (LineIsDashed(chPtr->dashes)) {
gcValues.line_style = LineOnOffDash;
gcMask |= GCLineStyle;
}
newGC = Blt_GetPrivateGC(graphPtr->tkwin, gcMask, &gcValues);
if (LineIsDashed(chPtr->dashes)) {
Blt_SetDashes(graphPtr->display, newGC, &(chPtr->dashes));
}
if (chPtr->gc != NULL) {
Blt_FreePrivateGC(graphPtr->display, chPtr->gc);
}
chPtr->gc = newGC;
/*
* Are the new coordinates on the graph?
*/
chPtr->segArr[0].x2 = chPtr->segArr[0].x1 = chPtr->hotSpot.x;
chPtr->segArr[0].y1 = graphPtr->bottom;
chPtr->segArr[0].y2 = graphPtr->top;
chPtr->segArr[1].y2 = chPtr->segArr[1].y1 = chPtr->hotSpot.y;
chPtr->segArr[1].x1 = graphPtr->left;
chPtr->segArr[1].x2 = graphPtr->right;
if (!chPtr->hidden) {
TurnOnHairs(graphPtr, chPtr);
}
}
void
Blt_EnableCrosshairs(graphPtr)
Graph *graphPtr;
{
if (!graphPtr->crosshairs->hidden) {
TurnOnHairs(graphPtr, graphPtr->crosshairs);
}
}
void
Blt_DisableCrosshairs(graphPtr)
Graph *graphPtr;
{
if (!graphPtr->crosshairs->hidden) {
TurnOffHairs(graphPtr->tkwin, graphPtr->crosshairs);
}
}
/*
*----------------------------------------------------------------------
*
* UpdateCrosshairs --
*
* Update the length of the hairs (not the hot spot).
*
* Results:
* None.
*
*----------------------------------------------------------------------
*/
void
Blt_UpdateCrosshairs(graphPtr)
Graph *graphPtr;
{
Crosshairs *chPtr = graphPtr->crosshairs;
chPtr->segArr[0].y1 = graphPtr->bottom;
chPtr->segArr[0].y2 = graphPtr->top;
chPtr->segArr[1].x1 = graphPtr->left;
chPtr->segArr[1].x2 = graphPtr->right;
}
/*
*----------------------------------------------------------------------
*
* Blt_DestroyCrosshairs --
*
* Results:
* None
*
* Side Effects:
* Crosshair GC is allocated.
*
*----------------------------------------------------------------------
*/
void
Blt_DestroyCrosshairs(graphPtr)
Graph *graphPtr;
{
Crosshairs *chPtr = graphPtr->crosshairs;
Tk_FreeOptions(configSpecs, (char *)chPtr, graphPtr->display, 0);
if (chPtr->gc != NULL) {
Blt_FreePrivateGC(graphPtr->display, chPtr->gc);
}
Blt_Free(chPtr);
}
/*
*----------------------------------------------------------------------
*
* Blt_CreateCrosshairs --
*
* Creates and initializes a new crosshair structure.
*
* Results:
* Returns TCL_ERROR if the crosshair structure can't be created,
* otherwise TCL_OK.
*
* Side Effects:
* Crosshair GC is allocated.
*
*----------------------------------------------------------------------
*/
int
Blt_CreateCrosshairs(graphPtr)
Graph *graphPtr;
{
Crosshairs *chPtr;
chPtr = Blt_Calloc(1, sizeof(Crosshairs));
assert(chPtr);
chPtr->hidden = TRUE;
chPtr->hotSpot.x = chPtr->hotSpot.y = -1;
graphPtr->crosshairs = chPtr;
if (Blt_ConfigureWidgetComponent(graphPtr->interp, graphPtr->tkwin,
"crosshairs", "Crosshairs", configSpecs, 0, (char **)NULL,
(char *)chPtr, 0) != TCL_OK) {
return TCL_ERROR;
}
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
* CgetOp --
*
* Queries configuration attributes of the crosshairs such as
* line width, dashes, and position.
*
* Results:
* A standard Tcl result.
*
*----------------------------------------------------------------------
*/
/* ARGSUSED */
static int
CgetOp(graphPtr, interp, argc, argv)
Graph *graphPtr;
Tcl_Interp *interp;
int argc; /* Not used. */
char **argv;
{
Crosshairs *chPtr = graphPtr->crosshairs;
return Tk_ConfigureValue(interp, graphPtr->tkwin, configSpecs,
(char *)chPtr, argv[3], 0);
}
/*
*----------------------------------------------------------------------
*
* ConfigureOp --
*
* Queries or resets configuration attributes of the crosshairs
* such as line width, dashes, and position.
*
* Results:
* A standard Tcl result.
*
* Side Effects:
* Crosshairs are reset.
*
*----------------------------------------------------------------------
*/
static int
ConfigureOp(graphPtr, interp, argc, argv)
Graph *graphPtr;
Tcl_Interp *interp;
int argc;
CONST char **argv;
{
Crosshairs *chPtr = graphPtr->crosshairs;
if (argc == 3) {
return Tk_ConfigureInfo(interp, graphPtr->tkwin, configSpecs,
(char *)chPtr, (char *)NULL, 0);
} else if (argc == 4) {
return Tk_ConfigureInfo(interp, graphPtr->tkwin, configSpecs,
(char *)chPtr, argv[3], 0);
}
if (Blt_ConfigureWidget(interp, graphPtr->tkwin, configSpecs, argc - 3,
argv + 3, (char *)chPtr, TK_CONFIG_ARGV_ONLY) != TCL_OK) {
return TCL_ERROR;
}
Blt_ConfigureCrosshairs(graphPtr);
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
* OnOp --
*
* Maps the crosshairs.
*
* Results:
* A standard Tcl result.
*
* Side Effects:
* Crosshairs are reset if necessary.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static int
OnOp(graphPtr, interp, argc, argv)
Graph *graphPtr;
Tcl_Interp *interp;
int argc;
char **argv;
{
Crosshairs *chPtr = graphPtr->crosshairs;
if (chPtr->hidden) {
TurnOnHairs(graphPtr, chPtr);
chPtr->hidden = FALSE;
}
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
* OffOp --
*
* Unmaps the crosshairs.
*
* Results:
* A standard Tcl result.
*
* Side Effects:
* Crosshairs are reset if necessary.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static int
OffOp(graphPtr, interp, argc, argv)
Graph *graphPtr;
Tcl_Interp *interp;
int argc;
char **argv;
{
Crosshairs *chPtr = graphPtr->crosshairs;
if (!chPtr->hidden) {
TurnOffHairs(graphPtr->tkwin, chPtr);
chPtr->hidden = TRUE;
}
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
* ToggleOp --
*
* Toggles the state of the crosshairs.
*
* Results:
* A standard Tcl result.
*
* Side Effects:
* Crosshairs are reset.
*
*----------------------------------------------------------------------
*/
/*ARGSUSED*/
static int
ToggleOp(graphPtr, interp, argc, argv)
Graph *graphPtr;
Tcl_Interp *interp;
int argc;
char **argv;
{
Crosshairs *chPtr = graphPtr->crosshairs;
chPtr->hidden = (chPtr->hidden == 0);
if (chPtr->hidden) {
TurnOffHairs(graphPtr->tkwin, chPtr);
} else {
TurnOnHairs(graphPtr, chPtr);
}
return TCL_OK;
}
static Blt_OpSpec xhairOps[] =
{
{"cget", 2, (Blt_Op)CgetOp, 4, 4, "option",},
{"configure", 2, (Blt_Op)ConfigureOp, 3, 0, "?options...?",},
{"off", 2, (Blt_Op)OffOp, 3, 3, "",},
{"on", 2, (Blt_Op)OnOp, 3, 3, "",},
{"toggle", 1, (Blt_Op)ToggleOp, 3, 3, "",},
};
static int nXhairOps = sizeof(xhairOps) / sizeof(Blt_OpSpec);
/*
*----------------------------------------------------------------------
*
* Blt_CrosshairsOp --
*
* User routine to configure crosshair simulation. Crosshairs
* are simulated by drawing line segments parallel to both axes
* using the XOR drawing function. The allows the lines to be
* erased (by drawing them again) without redrawing the entire
* graph. Care must be taken to erase crosshairs before redrawing
* the graph and redraw them after the graph is redraw.
*
* Results:
* The return value is a standard Tcl result.
*
* Side Effects:
* Crosshairs may be drawn in the plotting area.
*
*----------------------------------------------------------------------
*/
int
Blt_CrosshairsOp(graphPtr, interp, argc, argv)
Graph *graphPtr;
Tcl_Interp *interp;
int argc;
char **argv;
{
Blt_Op proc;
proc = Blt_GetOp(interp, nXhairOps, xhairOps, BLT_OP_ARG2, argc, argv, 0);
if (proc == NULL) {
return TCL_ERROR;
}
return (*proc) (graphPtr, interp, argc, argv);
}
|