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
|
/* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
* Qwt Widget Library
* Copyright (C) 1997 Josef Wilgen
* Copyright (C) 2002 Uwe Rathmann
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Qwt License, Version 1.0
*****************************************************************************/
// vim: expandtab
#include "qwt_plot.h"
#include "qwt_plot_dict.h"
#include "qwt_math.h"
//! Return an iterator for the plot curves
QwtPlotMarkerIterator QwtPlot::markerIterator() const
{
return QwtPlotMarkerIterator(*d_markers);
}
/*!
\brief Find the marker which is closest to a given point.
\param xpos
\param ypos coordinates of a point in the plotting region
\retval dist Distance in points between the marker and the specified point.
\return Key of the closest marker or 0 if no marker was found
*/
long QwtPlot::closestMarker(int xpos, int ypos, int &dist) const
{
QwtDiMap map[axisCnt];
for ( int axis = 0; axis < axisCnt; axis++ )
map[axis] = canvasMap(axis);
long rv = 0;
double dmin = 1.0e10;
QwtPlotMarkerIterator itm = markerIterator();
for (QwtPlotMarker *m = itm.toFirst(); m != 0; m = ++itm )
{
double cx = map[m->xAxis()].xTransform(m->xValue());
double cy = map[m->yAxis()].xTransform(m->yValue());
if (m->lineStyle() == QwtMarker::HLine)
{
if (m->symbol().style() == QwtSymbol::None)
cx = double(xpos);
}
else if (m->lineStyle() == QwtMarker::VLine)
{
if (m->symbol().style() == QwtSymbol::None)
cy = double(ypos);
}
double f = qwtSqr(cx - double(xpos)) + qwtSqr(cy - double(ypos));
if (f < dmin)
{
dmin = f;
rv = itm.currentKey();
}
}
dist = int(sqrt(dmin));
return rv;
}
//! Generate a key for a new marker
long QwtPlot::newMarkerKey()
{
long newkey = d_markers->count() + 1;
if (newkey > 1) // count > 0
{
if (d_markers->find(newkey)) // key count+1 exists => there must be a
// free key <= count
{
// find the first available key <= count
newkey = 1;
while (newkey <= long(d_markers->count()))
{
if (d_markers->find(newkey))
newkey++;
else
break;
}
// This can't happen. Just paranoia.
if (newkey > long(d_markers->count()))
{
while (!d_markers->find(newkey))
{
newkey++;
if (newkey > 10000) // prevent infinite loop
{
newkey = 0;
break;
}
}
}
}
}
return newkey;
}
/*!
This function is a shortcut to insert a horizontal or vertical
line marker, dependent on the specified axis.
\param label Label
\param axis Axis to be attached
\return New key if the marker could be inserted, 0 if not.
*/
long QwtPlot::insertLineMarker(const QString &label, int axis)
{
QwtMarker::LineStyle lineStyle = QwtMarker::NoLine;
int xAxis = QwtPlot::xBottom;
int yAxis = QwtPlot::yLeft;
switch(axis)
{
case yLeft:
case yRight:
yAxis = axis;
lineStyle = QwtMarker::HLine;
break;
case xTop:
case xBottom:
xAxis = axis;
lineStyle = QwtMarker::VLine;
break;
}
QwtPlotMarker *marker = new QwtPlotMarker(this);
if ( marker == 0 )
return 0;
marker->setAxis(xAxis, yAxis);
marker->setLabel(label);
marker->setLineStyle(lineStyle);
marker->setLabelAlignment(Qt::AlignRight|Qt::AlignTop);
long key = insertMarker(marker);
if ( key == 0 )
delete marker;
return key;
}
/*!
\brief Insert a new marker
\param label Label
\param xAxis X axis to be attached
\param yAxis Y axis to be attached
\return New key if the marker could be inserted, 0 if not.
*/
long QwtPlot::insertMarker(const QString &label, int xAxis, int yAxis)
{
QwtPlotMarker *marker = new QwtPlotMarker(this);
if ( marker == 0 )
return 0;
marker->setAxis(xAxis, yAxis);
marker->setLabel(label);
long key = insertMarker(marker);
if ( key == 0 )
delete marker;
return key;
}
/*!
\brief Insert a new marker
\param marker Marker
\return New key if the marker could be inserted, 0 if not.
*/
long QwtPlot::insertMarker(QwtPlotMarker *marker)
{
if ( marker == 0 )
return 0;
long key = newMarkerKey();
if ( key == 0 )
return 0;
marker->reparent(this);
d_markers->insert(key, marker);
autoRefresh();
return key;
}
/*!
\brief Find and return an existing marker.
\param key Key of the marker
\return The marker for the given key or 0 if key is not valid.
*/
QwtPlotMarker *QwtPlot::marker(long key)
{
return d_markers->find(key);
}
/*!
\brief Find and return an existing marker.
\param key Key of the marker
\return The marker for the given key or 0 if key is not valid.
*/
const QwtPlotMarker *QwtPlot::marker(long key) const
{
return d_markers->find(key);
}
/*!
\return an array containing the keys of all markers
*/
QwtArray<long> QwtPlot::markerKeys() const
{
QwtArray<long> keys(d_markers->count());
int i = 0;
QwtPlotMarkerIterator itm = markerIterator();
for (const QwtPlotMarker *m = itm.toFirst(); m != 0; m = ++itm, i++ )
keys[i] = itm.currentKey();
return keys;
}
/*!
\return the font of a marker
*/
QFont QwtPlot::markerFont(long key) const
{
QwtPlotMarker *m = d_markers->find(key);
if (m)
return m->font();
else
return QFont();
}
/*!
\return a marker's label
\param key Marker key
*/
const QString QwtPlot::markerLabel(long key) const
{
QwtPlotMarker *m = d_markers->find(key);
if (m)
return m->label();
else
return QString::null;
}
/*!
\return a marker's label alignment
\param key Marker key
*/
int QwtPlot::markerLabelAlign(long key) const
{
QwtPlotMarker *m = d_markers->find(key);
if (m)
return m->labelAlignment();
else
return 0;
}
/*!
\return the pen of a marker's label
\param key Marker key
*/
QPen QwtPlot::markerLabelPen(long key) const
{
QwtPlotMarker *m = d_markers->find(key);
if (m)
return m->labelPen();
else
return QPen();
}
/*!
\return a marker's line pen
\param key Marker key
*/
QPen QwtPlot::markerLinePen(long key) const
{
QwtPlotMarker *m = d_markers->find(key);
if (m)
return m->linePen();
else
return QPen();
}
/*!
\return a marker's line style
\param key Marker key
*/
QwtMarker::LineStyle QwtPlot::markerLineStyle(long key) const
{
QwtPlotMarker *m = d_markers->find(key);
if (m)
return m->lineStyle();
else
return QwtMarker::NoLine;
}
/*!
\brief Get the position of a marker
\param key Marker key
\retval mx
\retval my Marker position
*/
void QwtPlot::markerPos(long key, double &mx, double &my ) const
{
QwtPlotMarker *m = d_markers->find(key);
if (m)
{
mx = m->xValue();
my = m->yValue();
}
else
{
mx = 0;
my = 0;
}
}
/*!
\return a marker's symbol
\param key Marker key
*/
QwtSymbol QwtPlot::markerSymbol(long key) const
{
QwtPlotMarker *m = d_markers->find(key);
if (m)
return m->symbol();
else
return QwtSymbol();
}
/*!
\return the x axis to which a marker is attached
\param key Marker key
*/
int QwtPlot::markerXAxis(long key) const
{
QwtPlotMarker *m = d_markers->find(key);
if (m)
return m->xAxis();
else
return -1;
}
/*!
\return the y axis to which a marker is attached
\param key Marker key
*/
int QwtPlot::markerYAxis(long key) const
{
QwtPlotMarker *m = d_markers->find(key);
if (m)
return m->yAxis();
else
return -1;
}
/*!
\brief Remove the marker indexed by key
\param key unique key
*/
bool QwtPlot::removeMarker(long key)
{
if (d_markers->remove(key))
{
autoRefresh();
return TRUE;
}
else
return FALSE;
}
/*!
\brief Attach the marker to an x axis
\return \c TRUE if the specified marker exists.
*/
bool QwtPlot::setMarkerXAxis(long key, int axis)
{
QwtPlotMarker *m;
if ((m = d_markers->find(key)))
{
m->setXAxis(axis);
return TRUE;
}
else
return FALSE;
}
/*!
\brief Attach the marker to a Y axis
\param key Marker key
\param axis Axis to be attached
\return \c TRUE if the specified marker exists
*/
bool QwtPlot::setMarkerYAxis(long key, int axis)
{
QwtPlotMarker *m;
if ((m = d_markers->find(key)))
{
m->setYAxis(axis);
return TRUE;
}
else
return FALSE;
}
/*!
\brief Specify a font for a marker's label
\param key Marker key
\param f New font
\return \c TRUE if the specified marker exists
*/
bool QwtPlot::setMarkerFont(long key, const QFont &f)
{
int rv = FALSE;
QwtPlotMarker *m;
if ((m = d_markers->find(key)))
{
m->setFont(f);
rv = TRUE;
}
return rv;
}
/*!
\brief Specify a pen for a marker's line
\param key Marker key
\param p New pen
\return \c TRUE if the specified marker exists
*/
bool QwtPlot::setMarkerLinePen(long key, const QPen &p)
{
int rv = FALSE;
QwtPlotMarker *m;
if ((m = d_markers->find(key)))
{
m->setLinePen(p);
rv = TRUE;
}
return rv;
}
/*!
\brief Specify the line style for a marker
\param key Marker key
\param st Line style: <code>QwtMarker::HLine, QwtMarker::VLine,
QwtMarker::NoLine</code> or a combination of them.
\return \c TRUE if the specified marker exists
*/
bool QwtPlot::setMarkerLineStyle(long key, QwtMarker::LineStyle st)
{
int rv = FALSE;
QwtPlotMarker *m;
if ((m = d_markers->find(key)))
{
m->setLineStyle(st);
rv = TRUE;
}
return rv;
}
/*!
\brief Specify a pen for a marker's label.
\param key Marker key
\param p New pen
\return \c TRUE if the specified marker exists
*/
bool QwtPlot::setMarkerPen(long key, const QPen &p)
{
int rv = FALSE;
QwtPlotMarker *m;
if ((m = d_markers->find(key)))
{
m->setLinePen(p);
m->setLabelPen(p);
rv = TRUE;
}
return rv;
}
/*!
\brief Change the position of a marker
\param key Marker key
\param xval
\param yval Position of the marker in axis coordinates.
\return \c TRUE if the specified marker exists
*/
bool QwtPlot::setMarkerPos(long key, double xval, double yval)
{
int rv = FALSE;
QwtPlotMarker *m;
if ((m = d_markers->find(key)))
{
m->setXValue(xval);
m->setYValue(yval);
rv = TRUE;
}
return rv;
}
/*!
\brief Specify the X position of a marker
\param key Marker key
\param val X position of the marker
\return \c TRUE if the specified marker exists
*/
bool QwtPlot::setMarkerXPos(long key, double val)
{
int rv = FALSE;
QwtPlotMarker *m;
if ((m = d_markers->find(key)))
{
m->setXValue(val);
rv = TRUE;
}
return rv;
}
/*!
\brief Specify the Y position of the marker
\param key Marker key
\param val Y position of the marker
\return \c TRUE if the specified marker exists
*/
bool QwtPlot::setMarkerYPos(long key, double val)
{
int rv = FALSE;
QwtPlotMarker *m;
if ((m = d_markers->find(key)))
{
m->setYValue(val);
rv = TRUE;
}
return rv;
}
/*!
\brief Assign a symbol to a specified marker
\param key Marker key
\param s new symbol
\return \c TRUE if the specified marker exists
*/
bool QwtPlot::setMarkerSymbol(long key, const QwtSymbol &s)
{
int rv = FALSE;
QwtPlotMarker *m;
if ((m = d_markers->find(key)))
{
m->setSymbol(s);
rv = TRUE;
}
return rv;
}
/*!
\brief Assign a text to the label of a marker
\param key Marker key
\param text Label text
\return \c TRUE if the specified marker exists
*/
bool QwtPlot::setMarkerLabelText(long key, const QString &text)
{
QwtPlotMarker *m;
if ((m = d_markers->find(key)))
{
m->setLabelText(text);
return TRUE;
}
return FALSE;
}
/*!
\brief Set the marker label
\param key Marker key
\param text the label text
\param font the font of the label text
\param color the color of the label text
\param pen the pen of the bounding box of the label text
\param brush the brush of the bounding box of the label text
\return \c TRUE if the specified marker exists
*/
bool QwtPlot::setMarkerLabel(long key, const QString &text, const QFont &font,
const QColor &color, const QPen &pen, const QBrush &brush)
{
QwtPlotMarker *m;
if ((m = d_markers->find(key)))
{
m->setLabel(text, font, color, pen, brush);
return TRUE;
}
return FALSE;
}
/*!
\brief Specify the alignment of a marker's label
The alignment determines the position of the label relative to the
marker's position. The default setting is AlignCenter.
\param key Marker key
\param align Alignment: AlignLeft, AlignRight, AlignTop, AlignBottom,
AlignHCenter, AlignVCenter, AlignCenter
or a combination of them.
\return \c TRUE if the specified marker exists
*/
bool QwtPlot::setMarkerLabelAlign(long key, int align)
{
int rv = FALSE;
QwtPlotMarker *m;
if ((m = d_markers->find(key)))
{
m->setLabelAlignment(align);
rv = TRUE;
}
return rv;
}
/*!
\brief Specify a pen for a marker's label
\param key Marker key
\param p Label pen
\return \c TRUE if the specified marker exists
*/
bool QwtPlot::setMarkerLabelPen(long key, const QPen &p)
{
int rv = FALSE;
QwtPlotMarker *m;
if ((m = d_markers->find(key)))
{
m->setLabelPen(p);
rv = TRUE;
}
return rv;
}
|