[4271] | 1 | /* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
|
---|
| 2 | * Qwt Widget Library
|
---|
| 3 | * Copyright (C) 1997 Josef Wilgen
|
---|
| 4 | * Copyright (C) 2002 Uwe Rathmann
|
---|
| 5 | *
|
---|
| 6 | * This library is free software; you can redistribute it and/or
|
---|
| 7 | * modify it under the terms of the Qwt License, Version 1.0
|
---|
| 8 | *****************************************************************************/
|
---|
| 9 |
|
---|
| 10 | #include "qwt_plot_marker.h"
|
---|
| 11 | #include "qwt_painter.h"
|
---|
| 12 | #include "qwt_scale_map.h"
|
---|
| 13 | #include "qwt_symbol.h"
|
---|
| 14 | #include "qwt_text.h"
|
---|
| 15 | #include "qwt_math.h"
|
---|
| 16 | #include <qpainter.h>
|
---|
| 17 |
|
---|
| 18 | class QwtPlotMarker::PrivateData
|
---|
| 19 | {
|
---|
| 20 | public:
|
---|
| 21 | PrivateData():
|
---|
| 22 | labelAlignment( Qt::AlignCenter ),
|
---|
| 23 | labelOrientation( Qt::Horizontal ),
|
---|
| 24 | spacing( 2 ),
|
---|
| 25 | symbol( NULL ),
|
---|
| 26 | style( QwtPlotMarker::NoLine ),
|
---|
| 27 | xValue( 0.0 ),
|
---|
| 28 | yValue( 0.0 )
|
---|
| 29 | {
|
---|
| 30 | }
|
---|
| 31 |
|
---|
| 32 | ~PrivateData()
|
---|
| 33 | {
|
---|
| 34 | delete symbol;
|
---|
| 35 | }
|
---|
| 36 |
|
---|
| 37 | QwtText label;
|
---|
| 38 | Qt::Alignment labelAlignment;
|
---|
| 39 | Qt::Orientation labelOrientation;
|
---|
| 40 | int spacing;
|
---|
| 41 |
|
---|
| 42 | QPen pen;
|
---|
| 43 | const QwtSymbol *symbol;
|
---|
| 44 | LineStyle style;
|
---|
| 45 |
|
---|
| 46 | double xValue;
|
---|
| 47 | double yValue;
|
---|
| 48 | };
|
---|
| 49 |
|
---|
| 50 | //! Sets alignment to Qt::AlignCenter, and style to QwtPlotMarker::NoLine
|
---|
[8127] | 51 | QwtPlotMarker::QwtPlotMarker( const QString &title ):
|
---|
| 52 | QwtPlotItem( QwtText( title ) )
|
---|
[4271] | 53 | {
|
---|
| 54 | d_data = new PrivateData;
|
---|
| 55 | setZ( 30.0 );
|
---|
| 56 | }
|
---|
| 57 |
|
---|
[8127] | 58 | //! Sets alignment to Qt::AlignCenter, and style to QwtPlotMarker::NoLine
|
---|
| 59 | QwtPlotMarker::QwtPlotMarker( const QwtText &title ):
|
---|
| 60 | QwtPlotItem( title )
|
---|
| 61 | {
|
---|
| 62 | d_data = new PrivateData;
|
---|
| 63 | setZ( 30.0 );
|
---|
| 64 | }
|
---|
| 65 |
|
---|
[4271] | 66 | //! Destructor
|
---|
| 67 | QwtPlotMarker::~QwtPlotMarker()
|
---|
| 68 | {
|
---|
| 69 | delete d_data;
|
---|
| 70 | }
|
---|
| 71 |
|
---|
| 72 | //! \return QwtPlotItem::Rtti_PlotMarker
|
---|
| 73 | int QwtPlotMarker::rtti() const
|
---|
| 74 | {
|
---|
| 75 | return QwtPlotItem::Rtti_PlotMarker;
|
---|
| 76 | }
|
---|
| 77 |
|
---|
| 78 | //! Return Value
|
---|
| 79 | QPointF QwtPlotMarker::value() const
|
---|
| 80 | {
|
---|
| 81 | return QPointF( d_data->xValue, d_data->yValue );
|
---|
| 82 | }
|
---|
| 83 |
|
---|
| 84 | //! Return x Value
|
---|
| 85 | double QwtPlotMarker::xValue() const
|
---|
| 86 | {
|
---|
| 87 | return d_data->xValue;
|
---|
| 88 | }
|
---|
| 89 |
|
---|
| 90 | //! Return y Value
|
---|
| 91 | double QwtPlotMarker::yValue() const
|
---|
| 92 | {
|
---|
| 93 | return d_data->yValue;
|
---|
| 94 | }
|
---|
| 95 |
|
---|
| 96 | //! Set Value
|
---|
| 97 | void QwtPlotMarker::setValue( const QPointF& pos )
|
---|
| 98 | {
|
---|
| 99 | setValue( pos.x(), pos.y() );
|
---|
| 100 | }
|
---|
| 101 |
|
---|
| 102 | //! Set Value
|
---|
| 103 | void QwtPlotMarker::setValue( double x, double y )
|
---|
| 104 | {
|
---|
| 105 | if ( x != d_data->xValue || y != d_data->yValue )
|
---|
| 106 | {
|
---|
| 107 | d_data->xValue = x;
|
---|
| 108 | d_data->yValue = y;
|
---|
| 109 | itemChanged();
|
---|
| 110 | }
|
---|
| 111 | }
|
---|
| 112 |
|
---|
| 113 | //! Set X Value
|
---|
| 114 | void QwtPlotMarker::setXValue( double x )
|
---|
| 115 | {
|
---|
| 116 | setValue( x, d_data->yValue );
|
---|
| 117 | }
|
---|
| 118 |
|
---|
| 119 | //! Set Y Value
|
---|
| 120 | void QwtPlotMarker::setYValue( double y )
|
---|
| 121 | {
|
---|
| 122 | setValue( d_data->xValue, y );
|
---|
| 123 | }
|
---|
| 124 |
|
---|
| 125 | /*!
|
---|
| 126 | Draw the marker
|
---|
| 127 |
|
---|
| 128 | \param painter Painter
|
---|
| 129 | \param xMap x Scale Map
|
---|
| 130 | \param yMap y Scale Map
|
---|
[8127] | 131 | \param canvasRect Contents rectangle of the canvas in painter coordinates
|
---|
[4271] | 132 | */
|
---|
| 133 | void QwtPlotMarker::draw( QPainter *painter,
|
---|
| 134 | const QwtScaleMap &xMap, const QwtScaleMap &yMap,
|
---|
| 135 | const QRectF &canvasRect ) const
|
---|
| 136 | {
|
---|
[9383] | 137 | const QPointF pos( xMap.transform( d_data->xValue ),
|
---|
[4271] | 138 | yMap.transform( d_data->yValue ) );
|
---|
| 139 |
|
---|
| 140 | // draw lines
|
---|
| 141 |
|
---|
| 142 | drawLines( painter, canvasRect, pos );
|
---|
| 143 |
|
---|
| 144 | // draw symbol
|
---|
| 145 | if ( d_data->symbol &&
|
---|
| 146 | ( d_data->symbol->style() != QwtSymbol::NoSymbol ) )
|
---|
| 147 | {
|
---|
[8127] | 148 | const QSizeF sz = d_data->symbol->size();
|
---|
| 149 |
|
---|
[9383] | 150 | const QRectF clipRect = canvasRect.adjusted(
|
---|
[8127] | 151 | -sz.width(), -sz.height(), sz.width(), sz.height() );
|
---|
| 152 |
|
---|
| 153 | if ( clipRect.contains( pos ) )
|
---|
| 154 | d_data->symbol->drawSymbol( painter, pos );
|
---|
[4271] | 155 | }
|
---|
| 156 |
|
---|
| 157 | drawLabel( painter, canvasRect, pos );
|
---|
| 158 | }
|
---|
| 159 |
|
---|
| 160 | /*!
|
---|
| 161 | Draw the lines marker
|
---|
| 162 |
|
---|
| 163 | \param painter Painter
|
---|
[8127] | 164 | \param canvasRect Contents rectangle of the canvas in painter coordinates
|
---|
[4271] | 165 | \param pos Position of the marker, translated into widget coordinates
|
---|
| 166 |
|
---|
| 167 | \sa drawLabel(), QwtSymbol::drawSymbol()
|
---|
| 168 | */
|
---|
| 169 | void QwtPlotMarker::drawLines( QPainter *painter,
|
---|
| 170 | const QRectF &canvasRect, const QPointF &pos ) const
|
---|
| 171 | {
|
---|
| 172 | if ( d_data->style == NoLine )
|
---|
| 173 | return;
|
---|
| 174 |
|
---|
| 175 | const bool doAlign = QwtPainter::roundingAlignment( painter );
|
---|
| 176 |
|
---|
| 177 | painter->setPen( d_data->pen );
|
---|
| 178 | if ( d_data->style == QwtPlotMarker::HLine ||
|
---|
| 179 | d_data->style == QwtPlotMarker::Cross )
|
---|
| 180 | {
|
---|
| 181 | double y = pos.y();
|
---|
| 182 | if ( doAlign )
|
---|
| 183 | y = qRound( y );
|
---|
| 184 |
|
---|
| 185 | QwtPainter::drawLine( painter, canvasRect.left(),
|
---|
| 186 | y, canvasRect.right() - 1.0, y );
|
---|
| 187 | }
|
---|
| 188 | if ( d_data->style == QwtPlotMarker::VLine ||
|
---|
| 189 | d_data->style == QwtPlotMarker::Cross )
|
---|
| 190 | {
|
---|
| 191 | double x = pos.x();
|
---|
| 192 | if ( doAlign )
|
---|
| 193 | x = qRound( x );
|
---|
| 194 |
|
---|
| 195 | QwtPainter::drawLine( painter, x,
|
---|
| 196 | canvasRect.top(), x, canvasRect.bottom() - 1.0 );
|
---|
| 197 | }
|
---|
| 198 | }
|
---|
| 199 |
|
---|
| 200 | /*!
|
---|
| 201 | Align and draw the text label of the marker
|
---|
| 202 |
|
---|
| 203 | \param painter Painter
|
---|
[8127] | 204 | \param canvasRect Contents rectangle of the canvas in painter coordinates
|
---|
[4271] | 205 | \param pos Position of the marker, translated into widget coordinates
|
---|
| 206 |
|
---|
| 207 | \sa drawLabel(), QwtSymbol::drawSymbol()
|
---|
| 208 | */
|
---|
| 209 | void QwtPlotMarker::drawLabel( QPainter *painter,
|
---|
| 210 | const QRectF &canvasRect, const QPointF &pos ) const
|
---|
| 211 | {
|
---|
| 212 | if ( d_data->label.isEmpty() )
|
---|
| 213 | return;
|
---|
| 214 |
|
---|
| 215 | Qt::Alignment align = d_data->labelAlignment;
|
---|
| 216 | QPointF alignPos = pos;
|
---|
| 217 |
|
---|
| 218 | QSizeF symbolOff( 0, 0 );
|
---|
| 219 |
|
---|
| 220 | switch ( d_data->style )
|
---|
| 221 | {
|
---|
| 222 | case QwtPlotMarker::VLine:
|
---|
| 223 | {
|
---|
| 224 | // In VLine-style the y-position is pointless and
|
---|
| 225 | // the alignment flags are relative to the canvas
|
---|
| 226 |
|
---|
| 227 | if ( d_data->labelAlignment & Qt::AlignTop )
|
---|
| 228 | {
|
---|
| 229 | alignPos.setY( canvasRect.top() );
|
---|
| 230 | align &= ~Qt::AlignTop;
|
---|
| 231 | align |= Qt::AlignBottom;
|
---|
| 232 | }
|
---|
| 233 | else if ( d_data->labelAlignment & Qt::AlignBottom )
|
---|
| 234 | {
|
---|
| 235 | // In HLine-style the x-position is pointless and
|
---|
| 236 | // the alignment flags are relative to the canvas
|
---|
| 237 |
|
---|
| 238 | alignPos.setY( canvasRect.bottom() - 1 );
|
---|
| 239 | align &= ~Qt::AlignBottom;
|
---|
| 240 | align |= Qt::AlignTop;
|
---|
| 241 | }
|
---|
| 242 | else
|
---|
| 243 | {
|
---|
| 244 | alignPos.setY( canvasRect.center().y() );
|
---|
| 245 | }
|
---|
| 246 | break;
|
---|
| 247 | }
|
---|
| 248 | case QwtPlotMarker::HLine:
|
---|
| 249 | {
|
---|
| 250 | if ( d_data->labelAlignment & Qt::AlignLeft )
|
---|
| 251 | {
|
---|
| 252 | alignPos.setX( canvasRect.left() );
|
---|
| 253 | align &= ~Qt::AlignLeft;
|
---|
| 254 | align |= Qt::AlignRight;
|
---|
| 255 | }
|
---|
| 256 | else if ( d_data->labelAlignment & Qt::AlignRight )
|
---|
| 257 | {
|
---|
| 258 | alignPos.setX( canvasRect.right() - 1 );
|
---|
| 259 | align &= ~Qt::AlignRight;
|
---|
| 260 | align |= Qt::AlignLeft;
|
---|
| 261 | }
|
---|
| 262 | else
|
---|
| 263 | {
|
---|
| 264 | alignPos.setX( canvasRect.center().x() );
|
---|
| 265 | }
|
---|
| 266 | break;
|
---|
| 267 | }
|
---|
| 268 | default:
|
---|
| 269 | {
|
---|
| 270 | if ( d_data->symbol &&
|
---|
| 271 | ( d_data->symbol->style() != QwtSymbol::NoSymbol ) )
|
---|
| 272 | {
|
---|
| 273 | symbolOff = d_data->symbol->size() + QSizeF( 1, 1 );
|
---|
| 274 | symbolOff /= 2;
|
---|
| 275 | }
|
---|
| 276 | }
|
---|
| 277 | }
|
---|
| 278 |
|
---|
| 279 | qreal pw2 = d_data->pen.widthF() / 2.0;
|
---|
| 280 | if ( pw2 == 0.0 )
|
---|
| 281 | pw2 = 0.5;
|
---|
| 282 |
|
---|
| 283 | const int spacing = d_data->spacing;
|
---|
| 284 |
|
---|
| 285 | const qreal xOff = qMax( pw2, symbolOff.width() );
|
---|
| 286 | const qreal yOff = qMax( pw2, symbolOff.height() );
|
---|
| 287 |
|
---|
| 288 | const QSizeF textSize = d_data->label.textSize( painter->font() );
|
---|
| 289 |
|
---|
| 290 | if ( align & Qt::AlignLeft )
|
---|
| 291 | {
|
---|
| 292 | alignPos.rx() -= xOff + spacing;
|
---|
| 293 | if ( d_data->labelOrientation == Qt::Vertical )
|
---|
| 294 | alignPos.rx() -= textSize.height();
|
---|
| 295 | else
|
---|
| 296 | alignPos.rx() -= textSize.width();
|
---|
| 297 | }
|
---|
| 298 | else if ( align & Qt::AlignRight )
|
---|
| 299 | {
|
---|
| 300 | alignPos.rx() += xOff + spacing;
|
---|
| 301 | }
|
---|
| 302 | else
|
---|
| 303 | {
|
---|
| 304 | if ( d_data->labelOrientation == Qt::Vertical )
|
---|
| 305 | alignPos.rx() -= textSize.height() / 2;
|
---|
| 306 | else
|
---|
| 307 | alignPos.rx() -= textSize.width() / 2;
|
---|
| 308 | }
|
---|
| 309 |
|
---|
| 310 | if ( align & Qt::AlignTop )
|
---|
| 311 | {
|
---|
| 312 | alignPos.ry() -= yOff + spacing;
|
---|
| 313 | if ( d_data->labelOrientation != Qt::Vertical )
|
---|
| 314 | alignPos.ry() -= textSize.height();
|
---|
| 315 | }
|
---|
| 316 | else if ( align & Qt::AlignBottom )
|
---|
| 317 | {
|
---|
| 318 | alignPos.ry() += yOff + spacing;
|
---|
| 319 | if ( d_data->labelOrientation == Qt::Vertical )
|
---|
| 320 | alignPos.ry() += textSize.width();
|
---|
| 321 | }
|
---|
| 322 | else
|
---|
| 323 | {
|
---|
| 324 | if ( d_data->labelOrientation == Qt::Vertical )
|
---|
| 325 | alignPos.ry() += textSize.width() / 2;
|
---|
| 326 | else
|
---|
| 327 | alignPos.ry() -= textSize.height() / 2;
|
---|
| 328 | }
|
---|
| 329 |
|
---|
| 330 | painter->translate( alignPos.x(), alignPos.y() );
|
---|
| 331 | if ( d_data->labelOrientation == Qt::Vertical )
|
---|
| 332 | painter->rotate( -90.0 );
|
---|
| 333 |
|
---|
| 334 | const QRectF textRect( 0, 0, textSize.width(), textSize.height() );
|
---|
| 335 | d_data->label.draw( painter, textRect );
|
---|
| 336 | }
|
---|
| 337 |
|
---|
| 338 | /*!
|
---|
| 339 | \brief Set the line style
|
---|
[9383] | 340 | \param style Line style.
|
---|
[4271] | 341 | \sa lineStyle()
|
---|
| 342 | */
|
---|
| 343 | void QwtPlotMarker::setLineStyle( LineStyle style )
|
---|
| 344 | {
|
---|
| 345 | if ( style != d_data->style )
|
---|
| 346 | {
|
---|
| 347 | d_data->style = style;
|
---|
[8127] | 348 |
|
---|
| 349 | legendChanged();
|
---|
[4271] | 350 | itemChanged();
|
---|
| 351 | }
|
---|
| 352 | }
|
---|
| 353 |
|
---|
| 354 | /*!
|
---|
| 355 | \return the line style
|
---|
| 356 | \sa setLineStyle()
|
---|
| 357 | */
|
---|
| 358 | QwtPlotMarker::LineStyle QwtPlotMarker::lineStyle() const
|
---|
| 359 | {
|
---|
| 360 | return d_data->style;
|
---|
| 361 | }
|
---|
| 362 |
|
---|
| 363 | /*!
|
---|
| 364 | \brief Assign a symbol
|
---|
| 365 | \param symbol New symbol
|
---|
| 366 | \sa symbol()
|
---|
| 367 | */
|
---|
| 368 | void QwtPlotMarker::setSymbol( const QwtSymbol *symbol )
|
---|
| 369 | {
|
---|
| 370 | if ( symbol != d_data->symbol )
|
---|
| 371 | {
|
---|
| 372 | delete d_data->symbol;
|
---|
| 373 | d_data->symbol = symbol;
|
---|
[8127] | 374 |
|
---|
| 375 | if ( symbol )
|
---|
| 376 | setLegendIconSize( symbol->boundingRect().size() );
|
---|
| 377 |
|
---|
| 378 | legendChanged();
|
---|
[4271] | 379 | itemChanged();
|
---|
| 380 | }
|
---|
| 381 | }
|
---|
| 382 |
|
---|
| 383 | /*!
|
---|
| 384 | \return the symbol
|
---|
| 385 | \sa setSymbol(), QwtSymbol
|
---|
| 386 | */
|
---|
| 387 | const QwtSymbol *QwtPlotMarker::symbol() const
|
---|
| 388 | {
|
---|
| 389 | return d_data->symbol;
|
---|
| 390 | }
|
---|
| 391 |
|
---|
| 392 | /*!
|
---|
| 393 | \brief Set the label
|
---|
[8127] | 394 | \param label Label text
|
---|
[4271] | 395 | \sa label()
|
---|
| 396 | */
|
---|
| 397 | void QwtPlotMarker::setLabel( const QwtText& label )
|
---|
| 398 | {
|
---|
| 399 | if ( label != d_data->label )
|
---|
| 400 | {
|
---|
| 401 | d_data->label = label;
|
---|
| 402 | itemChanged();
|
---|
| 403 | }
|
---|
| 404 | }
|
---|
| 405 |
|
---|
| 406 | /*!
|
---|
| 407 | \return the label
|
---|
| 408 | \sa setLabel()
|
---|
| 409 | */
|
---|
| 410 | QwtText QwtPlotMarker::label() const
|
---|
| 411 | {
|
---|
| 412 | return d_data->label;
|
---|
| 413 | }
|
---|
| 414 |
|
---|
| 415 | /*!
|
---|
| 416 | \brief Set the alignment of the label
|
---|
| 417 |
|
---|
| 418 | In case of QwtPlotMarker::HLine the alignment is relative to the
|
---|
| 419 | y position of the marker, but the horizontal flags correspond to the
|
---|
| 420 | canvas rectangle. In case of QwtPlotMarker::VLine the alignment is
|
---|
| 421 | relative to the x position of the marker, but the vertical flags
|
---|
| 422 | correspond to the canvas rectangle.
|
---|
| 423 |
|
---|
| 424 | In all other styles the alignment is relative to the marker's position.
|
---|
| 425 |
|
---|
[9383] | 426 | \param align Alignment.
|
---|
[4271] | 427 | \sa labelAlignment(), labelOrientation()
|
---|
| 428 | */
|
---|
| 429 | void QwtPlotMarker::setLabelAlignment( Qt::Alignment align )
|
---|
| 430 | {
|
---|
| 431 | if ( align != d_data->labelAlignment )
|
---|
| 432 | {
|
---|
| 433 | d_data->labelAlignment = align;
|
---|
| 434 | itemChanged();
|
---|
| 435 | }
|
---|
| 436 | }
|
---|
| 437 |
|
---|
| 438 | /*!
|
---|
| 439 | \return the label alignment
|
---|
| 440 | \sa setLabelAlignment(), setLabelOrientation()
|
---|
| 441 | */
|
---|
| 442 | Qt::Alignment QwtPlotMarker::labelAlignment() const
|
---|
| 443 | {
|
---|
| 444 | return d_data->labelAlignment;
|
---|
| 445 | }
|
---|
| 446 |
|
---|
| 447 | /*!
|
---|
| 448 | \brief Set the orientation of the label
|
---|
| 449 |
|
---|
| 450 | When orientation is Qt::Vertical the label is rotated by 90.0 degrees
|
---|
| 451 | ( from bottom to top ).
|
---|
| 452 |
|
---|
| 453 | \param orientation Orientation of the label
|
---|
| 454 |
|
---|
| 455 | \sa labelOrientation(), setLabelAlignment()
|
---|
| 456 | */
|
---|
| 457 | void QwtPlotMarker::setLabelOrientation( Qt::Orientation orientation )
|
---|
| 458 | {
|
---|
| 459 | if ( orientation != d_data->labelOrientation )
|
---|
| 460 | {
|
---|
| 461 | d_data->labelOrientation = orientation;
|
---|
| 462 | itemChanged();
|
---|
| 463 | }
|
---|
| 464 | }
|
---|
| 465 |
|
---|
| 466 | /*!
|
---|
| 467 | \return the label orientation
|
---|
| 468 | \sa setLabelOrientation(), labelAlignment()
|
---|
| 469 | */
|
---|
| 470 | Qt::Orientation QwtPlotMarker::labelOrientation() const
|
---|
| 471 | {
|
---|
| 472 | return d_data->labelOrientation;
|
---|
| 473 | }
|
---|
| 474 |
|
---|
| 475 | /*!
|
---|
| 476 | \brief Set the spacing
|
---|
| 477 |
|
---|
| 478 | When the label is not centered on the marker position, the spacing
|
---|
| 479 | is the distance between the position and the label.
|
---|
| 480 |
|
---|
| 481 | \param spacing Spacing
|
---|
| 482 | \sa spacing(), setLabelAlignment()
|
---|
| 483 | */
|
---|
| 484 | void QwtPlotMarker::setSpacing( int spacing )
|
---|
| 485 | {
|
---|
| 486 | if ( spacing < 0 )
|
---|
| 487 | spacing = 0;
|
---|
| 488 |
|
---|
| 489 | if ( spacing == d_data->spacing )
|
---|
| 490 | return;
|
---|
| 491 |
|
---|
| 492 | d_data->spacing = spacing;
|
---|
| 493 | itemChanged();
|
---|
| 494 | }
|
---|
| 495 |
|
---|
| 496 | /*!
|
---|
| 497 | \return the spacing
|
---|
| 498 | \sa setSpacing()
|
---|
| 499 | */
|
---|
| 500 | int QwtPlotMarker::spacing() const
|
---|
| 501 | {
|
---|
| 502 | return d_data->spacing;
|
---|
| 503 | }
|
---|
| 504 |
|
---|
[9383] | 505 | /*!
|
---|
[8127] | 506 | Build and assign a line pen
|
---|
[9383] | 507 |
|
---|
[8127] | 508 | In Qt5 the default pen width is 1.0 ( 0.0 in Qt4 ) what makes it
|
---|
| 509 | non cosmetic ( see QPen::isCosmetic() ). This method has been introduced
|
---|
| 510 | to hide this incompatibility.
|
---|
[9383] | 511 |
|
---|
[8127] | 512 | \param color Pen color
|
---|
| 513 | \param width Pen width
|
---|
| 514 | \param style Pen style
|
---|
[9383] | 515 |
|
---|
[8127] | 516 | \sa pen(), brush()
|
---|
[9383] | 517 | */
|
---|
[8127] | 518 | void QwtPlotMarker::setLinePen( const QColor &color, qreal width, Qt::PenStyle style )
|
---|
[9383] | 519 | {
|
---|
[8127] | 520 | setLinePen( QPen( color, width, style ) );
|
---|
| 521 | }
|
---|
| 522 |
|
---|
[4271] | 523 | /*!
|
---|
| 524 | Specify a pen for the line.
|
---|
| 525 |
|
---|
| 526 | \param pen New pen
|
---|
| 527 | \sa linePen()
|
---|
| 528 | */
|
---|
| 529 | void QwtPlotMarker::setLinePen( const QPen &pen )
|
---|
| 530 | {
|
---|
| 531 | if ( pen != d_data->pen )
|
---|
| 532 | {
|
---|
| 533 | d_data->pen = pen;
|
---|
[8127] | 534 |
|
---|
| 535 | legendChanged();
|
---|
[4271] | 536 | itemChanged();
|
---|
| 537 | }
|
---|
| 538 | }
|
---|
| 539 |
|
---|
| 540 | /*!
|
---|
| 541 | \return the line pen
|
---|
| 542 | \sa setLinePen()
|
---|
| 543 | */
|
---|
| 544 | const QPen &QwtPlotMarker::linePen() const
|
---|
| 545 | {
|
---|
| 546 | return d_data->pen;
|
---|
| 547 | }
|
---|
| 548 |
|
---|
| 549 | QRectF QwtPlotMarker::boundingRect() const
|
---|
| 550 | {
|
---|
[9383] | 551 | // width/height of -1 does not affect the autoscale calculation
|
---|
| 552 |
|
---|
| 553 | switch (d_data->style)
|
---|
| 554 | {
|
---|
| 555 | case QwtPlotMarker::HLine:
|
---|
| 556 | return QRectF( d_data->xValue, d_data->yValue, -1.0, 0.0 );
|
---|
| 557 |
|
---|
| 558 | case QwtPlotMarker::VLine:
|
---|
| 559 | return QRectF( d_data->xValue, d_data->yValue, 0.0, -1.0 );
|
---|
| 560 |
|
---|
| 561 | default :
|
---|
| 562 | return QRectF( d_data->xValue, d_data->yValue, 0.0, 0.0 );
|
---|
| 563 | }
|
---|
[4271] | 564 | }
|
---|
| 565 |
|
---|
| 566 | /*!
|
---|
[8127] | 567 | \return Icon representing the marker on the legend
|
---|
[4271] | 568 |
|
---|
[9383] | 569 | \param index Index of the legend entry
|
---|
[8127] | 570 | ( usually there is only one )
|
---|
| 571 | \param size Icon size
|
---|
[4271] | 572 |
|
---|
[8127] | 573 | \sa setLegendIconSize(), legendData()
|
---|
[4271] | 574 | */
|
---|
[8127] | 575 | QwtGraphic QwtPlotMarker::legendIcon( int index,
|
---|
| 576 | const QSizeF &size ) const
|
---|
[4271] | 577 | {
|
---|
[8127] | 578 | Q_UNUSED( index );
|
---|
[4271] | 579 |
|
---|
[8127] | 580 | if ( size.isEmpty() )
|
---|
| 581 | return QwtGraphic();
|
---|
[4271] | 582 |
|
---|
[8127] | 583 | QwtGraphic icon;
|
---|
| 584 | icon.setDefaultSize( size );
|
---|
| 585 | icon.setRenderHint( QwtGraphic::RenderPensUnscaled, true );
|
---|
[4271] | 586 |
|
---|
[8127] | 587 | QPainter painter( &icon );
|
---|
| 588 | painter.setRenderHint( QPainter::Antialiasing,
|
---|
| 589 | testRenderHint( QwtPlotItem::RenderAntialiased ) );
|
---|
[4271] | 590 |
|
---|
| 591 | if ( d_data->style != QwtPlotMarker::NoLine )
|
---|
| 592 | {
|
---|
[8127] | 593 | painter.setPen( d_data->pen );
|
---|
[4271] | 594 |
|
---|
| 595 | if ( d_data->style == QwtPlotMarker::HLine ||
|
---|
| 596 | d_data->style == QwtPlotMarker::Cross )
|
---|
| 597 | {
|
---|
[8127] | 598 | const double y = 0.5 * size.height();
|
---|
| 599 |
|
---|
[9383] | 600 | QwtPainter::drawLine( &painter,
|
---|
[8127] | 601 | 0.0, y, size.width(), y );
|
---|
[4271] | 602 | }
|
---|
| 603 |
|
---|
| 604 | if ( d_data->style == QwtPlotMarker::VLine ||
|
---|
| 605 | d_data->style == QwtPlotMarker::Cross )
|
---|
| 606 | {
|
---|
[8127] | 607 | const double x = 0.5 * size.width();
|
---|
| 608 |
|
---|
[9383] | 609 | QwtPainter::drawLine( &painter,
|
---|
[8127] | 610 | x, 0.0, x, size.height() );
|
---|
[4271] | 611 | }
|
---|
| 612 | }
|
---|
| 613 |
|
---|
[8127] | 614 | if ( d_data->symbol )
|
---|
[4271] | 615 | {
|
---|
[8127] | 616 | const QRect r( 0.0, 0.0, size.width(), size.height() );
|
---|
| 617 | d_data->symbol->drawSymbol( &painter, r );
|
---|
[4271] | 618 | }
|
---|
| 619 |
|
---|
[8127] | 620 | return icon;
|
---|
[4271] | 621 | }
|
---|
| 622 |
|
---|