[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.h"
|
---|
| 11 | #include "qwt_plot_dict.h"
|
---|
| 12 | #include "qwt_plot_layout.h"
|
---|
| 13 | #include "qwt_scale_widget.h"
|
---|
| 14 | #include "qwt_scale_engine.h"
|
---|
| 15 | #include "qwt_text_label.h"
|
---|
| 16 | #include "qwt_legend.h"
|
---|
[8127] | 17 | #include "qwt_legend_data.h"
|
---|
[4271] | 18 | #include "qwt_plot_canvas.h"
|
---|
[8127] | 19 | #include <qmath.h>
|
---|
[4271] | 20 | #include <qpainter.h>
|
---|
| 21 | #include <qpointer.h>
|
---|
| 22 | #include <qpaintengine.h>
|
---|
| 23 | #include <qapplication.h>
|
---|
| 24 | #include <qevent.h>
|
---|
| 25 |
|
---|
[8127] | 26 | static inline void qwtEnableLegendItems( QwtPlot *plot, bool on )
|
---|
| 27 | {
|
---|
| 28 | if ( on )
|
---|
| 29 | {
|
---|
[9383] | 30 | QObject::connect(
|
---|
| 31 | plot, SIGNAL(legendDataChanged(QVariant,QList<QwtLegendData>)),
|
---|
| 32 | plot, SLOT(updateLegendItems(QVariant,QList<QwtLegendData>))
|
---|
| 33 | );
|
---|
[8127] | 34 | }
|
---|
| 35 | else
|
---|
| 36 | {
|
---|
[9383] | 37 | QObject::disconnect(
|
---|
| 38 | plot, SIGNAL(legendDataChanged(QVariant,QList<QwtLegendData>) ),
|
---|
| 39 | plot, SLOT( updateLegendItems(QVariant,QList<QwtLegendData>))
|
---|
| 40 | );
|
---|
[8127] | 41 | }
|
---|
| 42 | }
|
---|
| 43 |
|
---|
[9383] | 44 | static void qwtSetTabOrder(
|
---|
[8127] | 45 | QWidget *first, QWidget *second, bool withChildren )
|
---|
| 46 | {
|
---|
| 47 | QList<QWidget *> tabChain;
|
---|
| 48 | tabChain += first;
|
---|
| 49 | tabChain += second;
|
---|
| 50 |
|
---|
| 51 | if ( withChildren )
|
---|
| 52 | {
|
---|
| 53 | QList<QWidget *> children = second->findChildren<QWidget *>();
|
---|
| 54 |
|
---|
| 55 | QWidget *w = second->nextInFocusChain();
|
---|
| 56 | while ( children.contains( w ) )
|
---|
| 57 | {
|
---|
| 58 | children.removeAll( w );
|
---|
| 59 |
|
---|
| 60 | tabChain += w;
|
---|
| 61 | w = w->nextInFocusChain();
|
---|
| 62 | }
|
---|
| 63 | }
|
---|
| 64 |
|
---|
| 65 | for ( int i = 0; i < tabChain.size() - 1; i++ )
|
---|
| 66 | {
|
---|
| 67 | QWidget *from = tabChain[i];
|
---|
| 68 | QWidget *to = tabChain[i+1];
|
---|
| 69 |
|
---|
| 70 | const Qt::FocusPolicy policy1 = from->focusPolicy();
|
---|
| 71 | const Qt::FocusPolicy policy2 = to->focusPolicy();
|
---|
| 72 |
|
---|
| 73 | QWidget *proxy1 = from->focusProxy();
|
---|
| 74 | QWidget *proxy2 = to->focusProxy();
|
---|
| 75 |
|
---|
| 76 | from->setFocusPolicy( Qt::TabFocus );
|
---|
| 77 | from->setFocusProxy( NULL);
|
---|
| 78 |
|
---|
| 79 | to->setFocusPolicy( Qt::TabFocus );
|
---|
| 80 | to->setFocusProxy( NULL);
|
---|
| 81 |
|
---|
| 82 | QWidget::setTabOrder( from, to );
|
---|
| 83 |
|
---|
| 84 | from->setFocusPolicy( policy1 );
|
---|
| 85 | from->setFocusProxy( proxy1);
|
---|
| 86 |
|
---|
| 87 | to->setFocusPolicy( policy2 );
|
---|
| 88 | to->setFocusProxy( proxy2 );
|
---|
| 89 | }
|
---|
| 90 | }
|
---|
| 91 |
|
---|
[4271] | 92 | class QwtPlot::PrivateData
|
---|
| 93 | {
|
---|
| 94 | public:
|
---|
[8127] | 95 | QPointer<QwtTextLabel> titleLabel;
|
---|
| 96 | QPointer<QwtTextLabel> footerLabel;
|
---|
| 97 | QPointer<QWidget> canvas;
|
---|
| 98 | QPointer<QwtAbstractLegend> legend;
|
---|
[4271] | 99 | QwtPlotLayout *layout;
|
---|
| 100 |
|
---|
| 101 | bool autoReplot;
|
---|
| 102 | };
|
---|
| 103 |
|
---|
| 104 | /*!
|
---|
| 105 | \brief Constructor
|
---|
| 106 | \param parent Parent widget
|
---|
| 107 | */
|
---|
| 108 | QwtPlot::QwtPlot( QWidget *parent ):
|
---|
| 109 | QFrame( parent )
|
---|
| 110 | {
|
---|
| 111 | initPlot( QwtText() );
|
---|
| 112 | }
|
---|
| 113 |
|
---|
| 114 | /*!
|
---|
| 115 | \brief Constructor
|
---|
| 116 | \param title Title text
|
---|
| 117 | \param parent Parent widget
|
---|
| 118 | */
|
---|
| 119 | QwtPlot::QwtPlot( const QwtText &title, QWidget *parent ):
|
---|
| 120 | QFrame( parent )
|
---|
| 121 | {
|
---|
| 122 | initPlot( title );
|
---|
| 123 | }
|
---|
| 124 |
|
---|
| 125 | //! Destructor
|
---|
| 126 | QwtPlot::~QwtPlot()
|
---|
| 127 | {
|
---|
[8127] | 128 | setAutoReplot( false );
|
---|
[4271] | 129 | detachItems( QwtPlotItem::Rtti_PlotItem, autoDelete() );
|
---|
| 130 |
|
---|
| 131 | delete d_data->layout;
|
---|
| 132 | deleteAxesData();
|
---|
| 133 | delete d_data;
|
---|
| 134 | }
|
---|
| 135 |
|
---|
| 136 | /*!
|
---|
| 137 | \brief Initializes a QwtPlot instance
|
---|
| 138 | \param title Title text
|
---|
| 139 | */
|
---|
| 140 | void QwtPlot::initPlot( const QwtText &title )
|
---|
| 141 | {
|
---|
| 142 | d_data = new PrivateData;
|
---|
| 143 |
|
---|
| 144 | d_data->layout = new QwtPlotLayout;
|
---|
| 145 | d_data->autoReplot = false;
|
---|
| 146 |
|
---|
[8127] | 147 | // title
|
---|
| 148 | d_data->titleLabel = new QwtTextLabel( this );
|
---|
| 149 | d_data->titleLabel->setObjectName( "QwtPlotTitle" );
|
---|
| 150 | d_data->titleLabel->setFont( QFont( fontInfo().family(), 14, QFont::Bold ) );
|
---|
[4271] | 151 |
|
---|
| 152 | QwtText text( title );
|
---|
| 153 | text.setRenderFlags( Qt::AlignCenter | Qt::TextWordWrap );
|
---|
[8127] | 154 | d_data->titleLabel->setText( text );
|
---|
[4271] | 155 |
|
---|
[8127] | 156 | // footer
|
---|
| 157 | d_data->footerLabel = new QwtTextLabel( this );
|
---|
| 158 | d_data->footerLabel->setObjectName( "QwtPlotFooter" );
|
---|
| 159 |
|
---|
| 160 | QwtText footer;
|
---|
| 161 | footer.setRenderFlags( Qt::AlignCenter | Qt::TextWordWrap );
|
---|
| 162 | d_data->footerLabel->setText( footer );
|
---|
| 163 |
|
---|
| 164 | // legend
|
---|
[4271] | 165 | d_data->legend = NULL;
|
---|
| 166 |
|
---|
[8127] | 167 | // axis
|
---|
[4271] | 168 | initAxesData();
|
---|
| 169 |
|
---|
[8127] | 170 | // canvas
|
---|
[4271] | 171 | d_data->canvas = new QwtPlotCanvas( this );
|
---|
| 172 | d_data->canvas->setObjectName( "QwtPlotCanvas" );
|
---|
[8127] | 173 | d_data->canvas->installEventFilter( this );
|
---|
[4271] | 174 |
|
---|
| 175 | setSizePolicy( QSizePolicy::MinimumExpanding,
|
---|
| 176 | QSizePolicy::MinimumExpanding );
|
---|
| 177 |
|
---|
| 178 | resize( 200, 200 );
|
---|
[8127] | 179 |
|
---|
| 180 | QList<QWidget *> focusChain;
|
---|
| 181 | focusChain << this << d_data->titleLabel << axisWidget( xTop )
|
---|
| 182 | << axisWidget( yLeft ) << d_data->canvas << axisWidget( yRight )
|
---|
| 183 | << axisWidget( xBottom ) << d_data->footerLabel;
|
---|
| 184 |
|
---|
| 185 | for ( int i = 0; i < focusChain.size() - 1; i++ )
|
---|
| 186 | qwtSetTabOrder( focusChain[i], focusChain[i+1], false );
|
---|
| 187 |
|
---|
| 188 | qwtEnableLegendItems( this, true );
|
---|
[4271] | 189 | }
|
---|
| 190 |
|
---|
| 191 | /*!
|
---|
[8127] | 192 | \brief Set the drawing canvas of the plot widget
|
---|
| 193 |
|
---|
| 194 | QwtPlot invokes methods of the canvas as meta methods ( see QMetaObject ).
|
---|
| 195 | In opposite to using conventional C++ techniques like virtual methods
|
---|
[9383] | 196 | they allow to use canvas implementations that are derived from
|
---|
[8127] | 197 | QWidget or QGLWidget.
|
---|
| 198 |
|
---|
| 199 | The following meta methods could be implemented:
|
---|
| 200 |
|
---|
| 201 | - replot()
|
---|
| 202 | When the canvas doesn't offer a replot method, QwtPlot calls
|
---|
| 203 | update() instead.
|
---|
| 204 |
|
---|
| 205 | - borderPath()
|
---|
| 206 | The border path is necessary to clip the content of the canvas
|
---|
| 207 | When the canvas doesn't have any special border ( f.e rounded corners )
|
---|
| 208 | it is o.k. not to implement this method.
|
---|
| 209 |
|
---|
[9383] | 210 | The default canvas is a QwtPlotCanvas
|
---|
[8127] | 211 |
|
---|
| 212 | \param canvas Canvas Widget
|
---|
| 213 | \sa canvas()
|
---|
| 214 | */
|
---|
| 215 | void QwtPlot::setCanvas( QWidget *canvas )
|
---|
| 216 | {
|
---|
| 217 | if ( canvas == d_data->canvas )
|
---|
| 218 | return;
|
---|
| 219 |
|
---|
| 220 | delete d_data->canvas;
|
---|
| 221 | d_data->canvas = canvas;
|
---|
| 222 |
|
---|
| 223 | if ( canvas )
|
---|
| 224 | {
|
---|
| 225 | canvas->setParent( this );
|
---|
| 226 | canvas->installEventFilter( this );
|
---|
| 227 |
|
---|
| 228 | if ( isVisible() )
|
---|
| 229 | canvas->show();
|
---|
| 230 | }
|
---|
| 231 | }
|
---|
| 232 |
|
---|
| 233 | /*!
|
---|
[4271] | 234 | \brief Adds handling of layout requests
|
---|
| 235 | \param event Event
|
---|
[8127] | 236 |
|
---|
| 237 | \return See QFrame::event()
|
---|
[4271] | 238 | */
|
---|
| 239 | bool QwtPlot::event( QEvent *event )
|
---|
| 240 | {
|
---|
| 241 | bool ok = QFrame::event( event );
|
---|
| 242 | switch ( event->type() )
|
---|
| 243 | {
|
---|
| 244 | case QEvent::LayoutRequest:
|
---|
| 245 | updateLayout();
|
---|
| 246 | break;
|
---|
| 247 | case QEvent::PolishRequest:
|
---|
| 248 | replot();
|
---|
| 249 | break;
|
---|
| 250 | default:;
|
---|
| 251 | }
|
---|
| 252 | return ok;
|
---|
| 253 | }
|
---|
| 254 |
|
---|
[8127] | 255 | /*!
|
---|
| 256 | \brief Event filter
|
---|
| 257 |
|
---|
| 258 | The plot handles the following events for the canvas:
|
---|
| 259 |
|
---|
| 260 | - QEvent::Resize
|
---|
| 261 | The canvas margins might depend on its size
|
---|
| 262 |
|
---|
| 263 | - QEvent::ContentsRectChange
|
---|
| 264 | The layout needs to be recalculated
|
---|
| 265 |
|
---|
| 266 | \param object Object to be filtered
|
---|
| 267 | \param event Event
|
---|
| 268 |
|
---|
| 269 | \return See QFrame::eventFilter()
|
---|
| 270 |
|
---|
| 271 | \sa updateCanvasMargins(), updateLayout()
|
---|
| 272 | */
|
---|
| 273 | bool QwtPlot::eventFilter( QObject *object, QEvent *event )
|
---|
| 274 | {
|
---|
| 275 | if ( object == d_data->canvas )
|
---|
| 276 | {
|
---|
| 277 | if ( event->type() == QEvent::Resize )
|
---|
| 278 | {
|
---|
| 279 | updateCanvasMargins();
|
---|
| 280 | }
|
---|
| 281 | else if ( event->type() == QEvent::ContentsRectChange )
|
---|
| 282 | {
|
---|
| 283 | updateLayout();
|
---|
| 284 | }
|
---|
| 285 | }
|
---|
| 286 |
|
---|
| 287 | return QFrame::eventFilter( object, event );
|
---|
| 288 | }
|
---|
| 289 |
|
---|
[4271] | 290 | //! Replots the plot if autoReplot() is \c true.
|
---|
| 291 | void QwtPlot::autoRefresh()
|
---|
| 292 | {
|
---|
| 293 | if ( d_data->autoReplot )
|
---|
| 294 | replot();
|
---|
| 295 | }
|
---|
| 296 |
|
---|
| 297 | /*!
|
---|
| 298 | \brief Set or reset the autoReplot option
|
---|
| 299 |
|
---|
| 300 | If the autoReplot option is set, the plot will be
|
---|
| 301 | updated implicitly by manipulating member functions.
|
---|
| 302 | Since this may be time-consuming, it is recommended
|
---|
| 303 | to leave this option switched off and call replot()
|
---|
| 304 | explicitly if necessary.
|
---|
| 305 |
|
---|
| 306 | The autoReplot option is set to false by default, which
|
---|
| 307 | means that the user has to call replot() in order to make
|
---|
| 308 | changes visible.
|
---|
| 309 | \param tf \c true or \c false. Defaults to \c true.
|
---|
| 310 | \sa replot()
|
---|
| 311 | */
|
---|
| 312 | void QwtPlot::setAutoReplot( bool tf )
|
---|
| 313 | {
|
---|
| 314 | d_data->autoReplot = tf;
|
---|
| 315 | }
|
---|
| 316 |
|
---|
[9383] | 317 | /*!
|
---|
[4271] | 318 | \return true if the autoReplot option is set.
|
---|
| 319 | \sa setAutoReplot()
|
---|
| 320 | */
|
---|
| 321 | bool QwtPlot::autoReplot() const
|
---|
| 322 | {
|
---|
| 323 | return d_data->autoReplot;
|
---|
| 324 | }
|
---|
| 325 |
|
---|
| 326 | /*!
|
---|
| 327 | Change the plot's title
|
---|
| 328 | \param title New title
|
---|
| 329 | */
|
---|
| 330 | void QwtPlot::setTitle( const QString &title )
|
---|
| 331 | {
|
---|
[8127] | 332 | if ( title != d_data->titleLabel->text().text() )
|
---|
[4271] | 333 | {
|
---|
[8127] | 334 | d_data->titleLabel->setText( title );
|
---|
[4271] | 335 | updateLayout();
|
---|
| 336 | }
|
---|
| 337 | }
|
---|
| 338 |
|
---|
| 339 | /*!
|
---|
| 340 | Change the plot's title
|
---|
| 341 | \param title New title
|
---|
| 342 | */
|
---|
| 343 | void QwtPlot::setTitle( const QwtText &title )
|
---|
| 344 | {
|
---|
[8127] | 345 | if ( title != d_data->titleLabel->text() )
|
---|
[4271] | 346 | {
|
---|
[8127] | 347 | d_data->titleLabel->setText( title );
|
---|
[4271] | 348 | updateLayout();
|
---|
| 349 | }
|
---|
| 350 | }
|
---|
| 351 |
|
---|
[8127] | 352 | //! \return Title of the plot
|
---|
[4271] | 353 | QwtText QwtPlot::title() const
|
---|
| 354 | {
|
---|
[8127] | 355 | return d_data->titleLabel->text();
|
---|
[4271] | 356 | }
|
---|
| 357 |
|
---|
[8127] | 358 | //! \return Title label widget.
|
---|
| 359 | QwtTextLabel *QwtPlot::titleLabel()
|
---|
[4271] | 360 | {
|
---|
[8127] | 361 | return d_data->titleLabel;
|
---|
[4271] | 362 | }
|
---|
| 363 |
|
---|
[8127] | 364 | //! \return Title label widget.
|
---|
| 365 | const QwtTextLabel *QwtPlot::titleLabel() const
|
---|
[4271] | 366 | {
|
---|
[8127] | 367 | return d_data->titleLabel;
|
---|
[4271] | 368 | }
|
---|
| 369 |
|
---|
[8127] | 370 | /*!
|
---|
[9383] | 371 | Change the text the footer
|
---|
[8127] | 372 | \param text New text of the footer
|
---|
| 373 | */
|
---|
| 374 | void QwtPlot::setFooter( const QString &text )
|
---|
[4271] | 375 | {
|
---|
[8127] | 376 | if ( text != d_data->footerLabel->text().text() )
|
---|
| 377 | {
|
---|
| 378 | d_data->footerLabel->setText( text );
|
---|
| 379 | updateLayout();
|
---|
| 380 | }
|
---|
[4271] | 381 | }
|
---|
| 382 |
|
---|
| 383 | /*!
|
---|
[9383] | 384 | Change the text the footer
|
---|
[8127] | 385 | \param text New text of the footer
|
---|
[4271] | 386 | */
|
---|
[8127] | 387 | void QwtPlot::setFooter( const QwtText &text )
|
---|
[4271] | 388 | {
|
---|
[8127] | 389 | if ( text != d_data->footerLabel->text() )
|
---|
| 390 | {
|
---|
| 391 | d_data->footerLabel->setText( text );
|
---|
| 392 | updateLayout();
|
---|
| 393 | }
|
---|
[4271] | 394 | }
|
---|
| 395 |
|
---|
[8127] | 396 | //! \return Text of the footer
|
---|
| 397 | QwtText QwtPlot::footer() const
|
---|
| 398 | {
|
---|
| 399 | return d_data->footerLabel->text();
|
---|
| 400 | }
|
---|
| 401 |
|
---|
| 402 | //! \return Footer label widget.
|
---|
| 403 | QwtTextLabel *QwtPlot::footerLabel()
|
---|
| 404 | {
|
---|
| 405 | return d_data->footerLabel;
|
---|
| 406 | }
|
---|
| 407 |
|
---|
| 408 | //! \return Footer label widget.
|
---|
| 409 | const QwtTextLabel *QwtPlot::footerLabel() const
|
---|
| 410 | {
|
---|
| 411 | return d_data->footerLabel;
|
---|
| 412 | }
|
---|
| 413 |
|
---|
[4271] | 414 | /*!
|
---|
[8127] | 415 | \brief Assign a new plot layout
|
---|
| 416 |
|
---|
| 417 | \param layout Layout()
|
---|
| 418 | \sa plotLayout()
|
---|
| 419 | */
|
---|
| 420 | void QwtPlot::setPlotLayout( QwtPlotLayout *layout )
|
---|
| 421 | {
|
---|
| 422 | if ( layout != d_data->layout )
|
---|
| 423 | {
|
---|
| 424 | delete d_data->layout;
|
---|
| 425 | d_data->layout = layout;
|
---|
| 426 |
|
---|
| 427 | updateLayout();
|
---|
| 428 | }
|
---|
| 429 | }
|
---|
| 430 |
|
---|
| 431 | //! \return the plot's layout
|
---|
| 432 | QwtPlotLayout *QwtPlot::plotLayout()
|
---|
| 433 | {
|
---|
| 434 | return d_data->layout;
|
---|
| 435 | }
|
---|
| 436 |
|
---|
| 437 | //! \return the plot's layout
|
---|
| 438 | const QwtPlotLayout *QwtPlot::plotLayout() const
|
---|
| 439 | {
|
---|
| 440 | return d_data->layout;
|
---|
| 441 | }
|
---|
| 442 |
|
---|
| 443 | /*!
|
---|
[4271] | 444 | \return the plot's legend
|
---|
| 445 | \sa insertLegend()
|
---|
| 446 | */
|
---|
[8127] | 447 | QwtAbstractLegend *QwtPlot::legend()
|
---|
[4271] | 448 | {
|
---|
| 449 | return d_data->legend;
|
---|
| 450 | }
|
---|
| 451 |
|
---|
| 452 | /*!
|
---|
| 453 | \return the plot's legend
|
---|
| 454 | \sa insertLegend()
|
---|
| 455 | */
|
---|
[8127] | 456 | const QwtAbstractLegend *QwtPlot::legend() const
|
---|
[4271] | 457 | {
|
---|
| 458 | return d_data->legend;
|
---|
| 459 | }
|
---|
| 460 |
|
---|
| 461 |
|
---|
| 462 | /*!
|
---|
| 463 | \return the plot's canvas
|
---|
| 464 | */
|
---|
[8127] | 465 | QWidget *QwtPlot::canvas()
|
---|
[4271] | 466 | {
|
---|
| 467 | return d_data->canvas;
|
---|
| 468 | }
|
---|
| 469 |
|
---|
| 470 | /*!
|
---|
| 471 | \return the plot's canvas
|
---|
| 472 | */
|
---|
[8127] | 473 | const QWidget *QwtPlot::canvas() const
|
---|
[4271] | 474 | {
|
---|
| 475 | return d_data->canvas;
|
---|
| 476 | }
|
---|
| 477 |
|
---|
| 478 | /*!
|
---|
[8127] | 479 | \return Size hint for the plot widget
|
---|
[4271] | 480 | \sa minimumSizeHint()
|
---|
| 481 | */
|
---|
| 482 | QSize QwtPlot::sizeHint() const
|
---|
| 483 | {
|
---|
| 484 | int dw = 0;
|
---|
| 485 | int dh = 0;
|
---|
| 486 | for ( int axisId = 0; axisId < axisCnt; axisId++ )
|
---|
| 487 | {
|
---|
| 488 | if ( axisEnabled( axisId ) )
|
---|
| 489 | {
|
---|
| 490 | const int niceDist = 40;
|
---|
| 491 | const QwtScaleWidget *scaleWidget = axisWidget( axisId );
|
---|
| 492 | const QwtScaleDiv &scaleDiv = scaleWidget->scaleDraw()->scaleDiv();
|
---|
| 493 | const int majCnt = scaleDiv.ticks( QwtScaleDiv::MajorTick ).count();
|
---|
| 494 |
|
---|
| 495 | if ( axisId == yLeft || axisId == yRight )
|
---|
| 496 | {
|
---|
| 497 | int hDiff = ( majCnt - 1 ) * niceDist
|
---|
| 498 | - scaleWidget->minimumSizeHint().height();
|
---|
| 499 | if ( hDiff > dh )
|
---|
| 500 | dh = hDiff;
|
---|
| 501 | }
|
---|
| 502 | else
|
---|
| 503 | {
|
---|
| 504 | int wDiff = ( majCnt - 1 ) * niceDist
|
---|
| 505 | - scaleWidget->minimumSizeHint().width();
|
---|
| 506 | if ( wDiff > dw )
|
---|
| 507 | dw = wDiff;
|
---|
| 508 | }
|
---|
| 509 | }
|
---|
| 510 | }
|
---|
| 511 | return minimumSizeHint() + QSize( dw, dh );
|
---|
| 512 | }
|
---|
| 513 |
|
---|
| 514 | /*!
|
---|
| 515 | \brief Return a minimum size hint
|
---|
| 516 | */
|
---|
| 517 | QSize QwtPlot::minimumSizeHint() const
|
---|
| 518 | {
|
---|
| 519 | QSize hint = d_data->layout->minimumSizeHint( this );
|
---|
| 520 | hint += QSize( 2 * frameWidth(), 2 * frameWidth() );
|
---|
| 521 |
|
---|
| 522 | return hint;
|
---|
| 523 | }
|
---|
| 524 |
|
---|
| 525 | /*!
|
---|
| 526 | Resize and update internal layout
|
---|
| 527 | \param e Resize event
|
---|
| 528 | */
|
---|
| 529 | void QwtPlot::resizeEvent( QResizeEvent *e )
|
---|
| 530 | {
|
---|
| 531 | QFrame::resizeEvent( e );
|
---|
| 532 | updateLayout();
|
---|
| 533 | }
|
---|
| 534 |
|
---|
| 535 | /*!
|
---|
| 536 | \brief Redraw the plot
|
---|
| 537 |
|
---|
| 538 | If the autoReplot option is not set (which is the default)
|
---|
| 539 | or if any curves are attached to raw data, the plot has to
|
---|
| 540 | be refreshed explicitly in order to make changes visible.
|
---|
| 541 |
|
---|
[8127] | 542 | \sa updateAxes(), setAutoReplot()
|
---|
[4271] | 543 | */
|
---|
| 544 | void QwtPlot::replot()
|
---|
| 545 | {
|
---|
| 546 | bool doAutoReplot = autoReplot();
|
---|
| 547 | setAutoReplot( false );
|
---|
| 548 |
|
---|
| 549 | updateAxes();
|
---|
| 550 |
|
---|
| 551 | /*
|
---|
| 552 | Maybe the layout needs to be updated, because of changed
|
---|
| 553 | axes labels. We need to process them here before painting
|
---|
| 554 | to avoid that scales and canvas get out of sync.
|
---|
| 555 | */
|
---|
| 556 | QApplication::sendPostedEvents( this, QEvent::LayoutRequest );
|
---|
| 557 |
|
---|
[8127] | 558 | if ( d_data->canvas )
|
---|
| 559 | {
|
---|
[9383] | 560 | const bool ok = QMetaObject::invokeMethod(
|
---|
[8127] | 561 | d_data->canvas, "replot", Qt::DirectConnection );
|
---|
| 562 | if ( !ok )
|
---|
| 563 | {
|
---|
| 564 | // fallback, when canvas has no a replot method
|
---|
| 565 | d_data->canvas->update( d_data->canvas->contentsRect() );
|
---|
| 566 | }
|
---|
| 567 | }
|
---|
[4271] | 568 |
|
---|
| 569 | setAutoReplot( doAutoReplot );
|
---|
| 570 | }
|
---|
| 571 |
|
---|
| 572 | /*!
|
---|
| 573 | \brief Adjust plot content to its current size.
|
---|
| 574 | \sa resizeEvent()
|
---|
| 575 | */
|
---|
| 576 | void QwtPlot::updateLayout()
|
---|
| 577 | {
|
---|
| 578 | d_data->layout->activate( this, contentsRect() );
|
---|
| 579 |
|
---|
| 580 | QRect titleRect = d_data->layout->titleRect().toRect();
|
---|
[8127] | 581 | QRect footerRect = d_data->layout->footerRect().toRect();
|
---|
[4271] | 582 | QRect scaleRect[QwtPlot::axisCnt];
|
---|
| 583 | for ( int axisId = 0; axisId < axisCnt; axisId++ )
|
---|
| 584 | scaleRect[axisId] = d_data->layout->scaleRect( axisId ).toRect();
|
---|
| 585 | QRect legendRect = d_data->layout->legendRect().toRect();
|
---|
| 586 | QRect canvasRect = d_data->layout->canvasRect().toRect();
|
---|
| 587 |
|
---|
| 588 | // resize and show the visible widgets
|
---|
[8127] | 589 |
|
---|
| 590 | if ( !d_data->titleLabel->text().isEmpty() )
|
---|
[4271] | 591 | {
|
---|
[8127] | 592 | d_data->titleLabel->setGeometry( titleRect );
|
---|
| 593 | if ( !d_data->titleLabel->isVisibleTo( this ) )
|
---|
| 594 | d_data->titleLabel->show();
|
---|
[4271] | 595 | }
|
---|
| 596 | else
|
---|
[8127] | 597 | d_data->titleLabel->hide();
|
---|
[4271] | 598 |
|
---|
[8127] | 599 | if ( !d_data->footerLabel->text().isEmpty() )
|
---|
| 600 | {
|
---|
| 601 | d_data->footerLabel->setGeometry( footerRect );
|
---|
| 602 | if ( !d_data->footerLabel->isVisibleTo( this ) )
|
---|
| 603 | d_data->footerLabel->show();
|
---|
| 604 | }
|
---|
| 605 | else
|
---|
| 606 | {
|
---|
| 607 | d_data->footerLabel->hide();
|
---|
| 608 | }
|
---|
| 609 |
|
---|
[4271] | 610 | for ( int axisId = 0; axisId < axisCnt; axisId++ )
|
---|
| 611 | {
|
---|
[8127] | 612 | QwtScaleWidget* scaleWidget = axisWidget( axisId );
|
---|
| 613 |
|
---|
[4271] | 614 | if ( axisEnabled( axisId ) )
|
---|
| 615 | {
|
---|
[8127] | 616 | if ( scaleRect[axisId] != scaleWidget->geometry() )
|
---|
| 617 | {
|
---|
| 618 | scaleWidget->setGeometry( scaleRect[axisId] );
|
---|
[4271] | 619 |
|
---|
[8127] | 620 | int startDist, endDist;
|
---|
| 621 | scaleWidget->getBorderDistHint( startDist, endDist );
|
---|
| 622 | scaleWidget->setBorderDist( startDist, endDist );
|
---|
| 623 | }
|
---|
| 624 |
|
---|
| 625 | #if 1
|
---|
[4271] | 626 | if ( axisId == xBottom || axisId == xTop )
|
---|
| 627 | {
|
---|
[8127] | 628 | // do we need this code any longer ???
|
---|
| 629 |
|
---|
[4271] | 630 | QRegion r( scaleRect[axisId] );
|
---|
| 631 | if ( axisEnabled( yLeft ) )
|
---|
[8127] | 632 | r = r.subtracted( QRegion( scaleRect[yLeft] ) );
|
---|
[4271] | 633 | if ( axisEnabled( yRight ) )
|
---|
[8127] | 634 | r = r.subtracted( QRegion( scaleRect[yRight] ) );
|
---|
| 635 | r.translate( -scaleRect[ axisId ].x(),
|
---|
[4271] | 636 | -scaleRect[axisId].y() );
|
---|
| 637 |
|
---|
[8127] | 638 | scaleWidget->setMask( r );
|
---|
[4271] | 639 | }
|
---|
[8127] | 640 | #endif
|
---|
| 641 | if ( !scaleWidget->isVisibleTo( this ) )
|
---|
| 642 | scaleWidget->show();
|
---|
[4271] | 643 | }
|
---|
| 644 | else
|
---|
[8127] | 645 | {
|
---|
| 646 | scaleWidget->hide();
|
---|
| 647 | }
|
---|
[4271] | 648 | }
|
---|
| 649 |
|
---|
[8127] | 650 | if ( d_data->legend )
|
---|
[4271] | 651 | {
|
---|
[8127] | 652 | if ( d_data->legend->isEmpty() )
|
---|
[4271] | 653 | {
|
---|
[8127] | 654 | d_data->legend->hide();
|
---|
| 655 | }
|
---|
| 656 | else
|
---|
| 657 | {
|
---|
[4271] | 658 | d_data->legend->setGeometry( legendRect );
|
---|
| 659 | d_data->legend->show();
|
---|
| 660 | }
|
---|
| 661 | }
|
---|
| 662 |
|
---|
| 663 | d_data->canvas->setGeometry( canvasRect );
|
---|
| 664 | }
|
---|
| 665 |
|
---|
| 666 | /*!
|
---|
[8127] | 667 | \brief Calculate the canvas margins
|
---|
[4271] | 668 |
|
---|
[8127] | 669 | \param maps QwtPlot::axisCnt maps, mapping between plot and paint device coordinates
|
---|
| 670 | \param canvasRect Bounding rectangle where to paint
|
---|
| 671 | \param left Return parameter for the left margin
|
---|
| 672 | \param top Return parameter for the top margin
|
---|
| 673 | \param right Return parameter for the right margin
|
---|
| 674 | \param bottom Return parameter for the bottom margin
|
---|
[4271] | 675 |
|
---|
[8127] | 676 | Plot items might indicate, that they need some extra space
|
---|
| 677 | at the borders of the canvas by the QwtPlotItem::Margins flag.
|
---|
| 678 |
|
---|
| 679 | updateCanvasMargins(), QwtPlotItem::getCanvasMarginHint()
|
---|
| 680 | */
|
---|
| 681 | void QwtPlot::getCanvasMarginsHint(
|
---|
| 682 | const QwtScaleMap maps[], const QRectF &canvasRect,
|
---|
| 683 | double &left, double &top, double &right, double &bottom) const
|
---|
[4271] | 684 | {
|
---|
[8127] | 685 | left = top = right = bottom = -1.0;
|
---|
| 686 |
|
---|
| 687 | const QwtPlotItemList& itmList = itemList();
|
---|
| 688 | for ( QwtPlotItemIterator it = itmList.begin();
|
---|
| 689 | it != itmList.end(); ++it )
|
---|
[4271] | 690 | {
|
---|
[8127] | 691 | const QwtPlotItem *item = *it;
|
---|
| 692 | if ( item->testItemAttribute( QwtPlotItem::Margins ) )
|
---|
| 693 | {
|
---|
| 694 | double m[ QwtPlot::axisCnt ];
|
---|
| 695 | item->getCanvasMarginHint(
|
---|
| 696 | maps[ item->xAxis() ], maps[ item->yAxis() ],
|
---|
| 697 | canvasRect, m[yLeft], m[xTop], m[yRight], m[xBottom] );
|
---|
| 698 |
|
---|
| 699 | left = qMax( left, m[yLeft] );
|
---|
| 700 | top = qMax( top, m[xTop] );
|
---|
| 701 | right = qMax( right, m[yRight] );
|
---|
| 702 | bottom = qMax( bottom, m[xBottom] );
|
---|
| 703 | }
|
---|
[4271] | 704 | }
|
---|
[8127] | 705 | }
|
---|
[4271] | 706 |
|
---|
[8127] | 707 | /*!
|
---|
| 708 | \brief Update the canvas margins
|
---|
[4271] | 709 |
|
---|
[8127] | 710 | Plot items might indicate, that they need some extra space
|
---|
| 711 | at the borders of the canvas by the QwtPlotItem::Margins flag.
|
---|
[4271] | 712 |
|
---|
[8127] | 713 | getCanvasMarginsHint(), QwtPlotItem::getCanvasMarginHint()
|
---|
| 714 | */
|
---|
| 715 | void QwtPlot::updateCanvasMargins()
|
---|
| 716 | {
|
---|
| 717 | QwtScaleMap maps[axisCnt];
|
---|
| 718 | for ( int axisId = 0; axisId < axisCnt; axisId++ )
|
---|
| 719 | maps[axisId] = canvasMap( axisId );
|
---|
[4271] | 720 |
|
---|
[8127] | 721 | double margins[axisCnt];
|
---|
| 722 | getCanvasMarginsHint( maps, canvas()->contentsRect(),
|
---|
| 723 | margins[yLeft], margins[xTop], margins[yRight], margins[xBottom] );
|
---|
[9383] | 724 |
|
---|
[8127] | 725 | bool doUpdate = false;
|
---|
| 726 | for ( int axisId = 0; axisId < axisCnt; axisId++ )
|
---|
[4271] | 727 | {
|
---|
[8127] | 728 | if ( margins[axisId] >= 0.0 )
|
---|
[4271] | 729 | {
|
---|
[8127] | 730 | const int m = qCeil( margins[axisId] );
|
---|
| 731 | plotLayout()->setCanvasMargin( m, axisId);
|
---|
| 732 | doUpdate = true;
|
---|
[4271] | 733 | }
|
---|
| 734 | }
|
---|
| 735 |
|
---|
[8127] | 736 | if ( doUpdate )
|
---|
| 737 | updateLayout();
|
---|
[4271] | 738 | }
|
---|
| 739 |
|
---|
| 740 | /*!
|
---|
| 741 | Redraw the canvas.
|
---|
| 742 | \param painter Painter used for drawing
|
---|
| 743 |
|
---|
| 744 | \warning drawCanvas calls drawItems what is also used
|
---|
| 745 | for printing. Applications that like to add individual
|
---|
| 746 | plot items better overload drawItems()
|
---|
| 747 | \sa drawItems()
|
---|
| 748 | */
|
---|
| 749 | void QwtPlot::drawCanvas( QPainter *painter )
|
---|
| 750 | {
|
---|
| 751 | QwtScaleMap maps[axisCnt];
|
---|
| 752 | for ( int axisId = 0; axisId < axisCnt; axisId++ )
|
---|
| 753 | maps[axisId] = canvasMap( axisId );
|
---|
| 754 |
|
---|
| 755 | drawItems( painter, d_data->canvas->contentsRect(), maps );
|
---|
| 756 | }
|
---|
| 757 |
|
---|
| 758 | /*!
|
---|
| 759 | Redraw the canvas items.
|
---|
[8127] | 760 |
|
---|
[4271] | 761 | \param painter Painter used for drawing
|
---|
| 762 | \param canvasRect Bounding rectangle where to paint
|
---|
[8127] | 763 | \param maps QwtPlot::axisCnt maps, mapping between plot and paint device coordinates
|
---|
| 764 |
|
---|
| 765 | \note Usually canvasRect is contentsRect() of the plot canvas.
|
---|
[9383] | 766 | Due to a bug in Qt this rectangle might be wrong for certain
|
---|
| 767 | frame styles ( f.e QFrame::Box ) and it might be necessary to
|
---|
[8127] | 768 | fix the margins manually using QWidget::setContentsMargins()
|
---|
[4271] | 769 | */
|
---|
| 770 |
|
---|
| 771 | void QwtPlot::drawItems( QPainter *painter, const QRectF &canvasRect,
|
---|
[8127] | 772 | const QwtScaleMap maps[axisCnt] ) const
|
---|
[4271] | 773 | {
|
---|
| 774 | const QwtPlotItemList& itmList = itemList();
|
---|
| 775 | for ( QwtPlotItemIterator it = itmList.begin();
|
---|
| 776 | it != itmList.end(); ++it )
|
---|
| 777 | {
|
---|
| 778 | QwtPlotItem *item = *it;
|
---|
| 779 | if ( item && item->isVisible() )
|
---|
| 780 | {
|
---|
| 781 | painter->save();
|
---|
| 782 |
|
---|
| 783 | painter->setRenderHint( QPainter::Antialiasing,
|
---|
| 784 | item->testRenderHint( QwtPlotItem::RenderAntialiased ) );
|
---|
[8127] | 785 | painter->setRenderHint( QPainter::HighQualityAntialiasing,
|
---|
| 786 | item->testRenderHint( QwtPlotItem::RenderAntialiased ) );
|
---|
[4271] | 787 |
|
---|
| 788 | item->draw( painter,
|
---|
[8127] | 789 | maps[item->xAxis()], maps[item->yAxis()],
|
---|
[4271] | 790 | canvasRect );
|
---|
| 791 |
|
---|
| 792 | painter->restore();
|
---|
| 793 | }
|
---|
| 794 | }
|
---|
| 795 | }
|
---|
| 796 |
|
---|
| 797 | /*!
|
---|
| 798 | \param axisId Axis
|
---|
| 799 | \return Map for the axis on the canvas. With this map pixel coordinates can
|
---|
| 800 | translated to plot coordinates and vice versa.
|
---|
| 801 | \sa QwtScaleMap, transform(), invTransform()
|
---|
| 802 |
|
---|
| 803 | */
|
---|
| 804 | QwtScaleMap QwtPlot::canvasMap( int axisId ) const
|
---|
| 805 | {
|
---|
| 806 | QwtScaleMap map;
|
---|
| 807 | if ( !d_data->canvas )
|
---|
| 808 | return map;
|
---|
| 809 |
|
---|
| 810 | map.setTransformation( axisScaleEngine( axisId )->transformation() );
|
---|
| 811 |
|
---|
[8127] | 812 | const QwtScaleDiv &sd = axisScaleDiv( axisId );
|
---|
| 813 | map.setScaleInterval( sd.lowerBound(), sd.upperBound() );
|
---|
[4271] | 814 |
|
---|
| 815 | if ( axisEnabled( axisId ) )
|
---|
| 816 | {
|
---|
| 817 | const QwtScaleWidget *s = axisWidget( axisId );
|
---|
| 818 | if ( axisId == yLeft || axisId == yRight )
|
---|
| 819 | {
|
---|
| 820 | double y = s->y() + s->startBorderDist() - d_data->canvas->y();
|
---|
| 821 | double h = s->height() - s->startBorderDist() - s->endBorderDist();
|
---|
| 822 | map.setPaintInterval( y + h, y );
|
---|
| 823 | }
|
---|
| 824 | else
|
---|
| 825 | {
|
---|
| 826 | double x = s->x() + s->startBorderDist() - d_data->canvas->x();
|
---|
| 827 | double w = s->width() - s->startBorderDist() - s->endBorderDist();
|
---|
| 828 | map.setPaintInterval( x, x + w );
|
---|
| 829 | }
|
---|
| 830 | }
|
---|
| 831 | else
|
---|
| 832 | {
|
---|
| 833 | const QRect &canvasRect = d_data->canvas->contentsRect();
|
---|
| 834 | if ( axisId == yLeft || axisId == yRight )
|
---|
| 835 | {
|
---|
[8127] | 836 | int top = 0;
|
---|
| 837 | if ( !plotLayout()->alignCanvasToScale( xTop ) )
|
---|
| 838 | top = plotLayout()->canvasMargin( xTop );
|
---|
| 839 |
|
---|
| 840 | int bottom = 0;
|
---|
| 841 | if ( !plotLayout()->alignCanvasToScale( xBottom ) )
|
---|
| 842 | bottom = plotLayout()->canvasMargin( xBottom );
|
---|
| 843 |
|
---|
| 844 | map.setPaintInterval( canvasRect.bottom() - bottom,
|
---|
| 845 | canvasRect.top() + top );
|
---|
[4271] | 846 | }
|
---|
| 847 | else
|
---|
| 848 | {
|
---|
[8127] | 849 | int left = 0;
|
---|
| 850 | if ( !plotLayout()->alignCanvasToScale( yLeft ) )
|
---|
| 851 | left = plotLayout()->canvasMargin( yLeft );
|
---|
| 852 |
|
---|
| 853 | int right = 0;
|
---|
| 854 | if ( !plotLayout()->alignCanvasToScale( yRight ) )
|
---|
| 855 | right = plotLayout()->canvasMargin( yRight );
|
---|
| 856 |
|
---|
| 857 | map.setPaintInterval( canvasRect.left() + left,
|
---|
| 858 | canvasRect.right() - right );
|
---|
[4271] | 859 | }
|
---|
| 860 | }
|
---|
[8127] | 861 |
|
---|
[4271] | 862 | return map;
|
---|
| 863 | }
|
---|
| 864 |
|
---|
| 865 | /*!
|
---|
| 866 | \brief Change the background of the plotting area
|
---|
| 867 |
|
---|
[8127] | 868 | Sets brush to QPalette::Window of all color groups of
|
---|
[4271] | 869 | the palette of the canvas. Using canvas()->setPalette()
|
---|
| 870 | is a more powerful way to set these colors.
|
---|
| 871 |
|
---|
| 872 | \param brush New background brush
|
---|
| 873 | \sa canvasBackground()
|
---|
| 874 | */
|
---|
| 875 | void QwtPlot::setCanvasBackground( const QBrush &brush )
|
---|
| 876 | {
|
---|
| 877 | QPalette pal = d_data->canvas->palette();
|
---|
[8127] | 878 | pal.setBrush( QPalette::Window, brush );
|
---|
[4271] | 879 |
|
---|
| 880 | canvas()->setPalette( pal );
|
---|
| 881 | }
|
---|
| 882 |
|
---|
| 883 | /*!
|
---|
| 884 | Nothing else than: canvas()->palette().brush(
|
---|
| 885 | QPalette::Normal, QPalette::Window);
|
---|
| 886 |
|
---|
| 887 | \return Background brush of the plotting area.
|
---|
| 888 | \sa setCanvasBackground()
|
---|
| 889 | */
|
---|
| 890 | QBrush QwtPlot::canvasBackground() const
|
---|
| 891 | {
|
---|
| 892 | return canvas()->palette().brush(
|
---|
| 893 | QPalette::Normal, QPalette::Window );
|
---|
| 894 | }
|
---|
| 895 |
|
---|
| 896 | /*!
|
---|
| 897 | \return \c true if the specified axis exists, otherwise \c false
|
---|
| 898 | \param axisId axis index
|
---|
| 899 | */
|
---|
| 900 | bool QwtPlot::axisValid( int axisId )
|
---|
| 901 | {
|
---|
| 902 | return ( ( axisId >= QwtPlot::yLeft ) && ( axisId < QwtPlot::axisCnt ) );
|
---|
| 903 | }
|
---|
| 904 |
|
---|
| 905 | /*!
|
---|
| 906 | \brief Insert a legend
|
---|
| 907 |
|
---|
| 908 | If the position legend is \c QwtPlot::LeftLegend or \c QwtPlot::RightLegend
|
---|
| 909 | the legend will be organized in one column from top to down.
|
---|
| 910 | Otherwise the legend items will be placed in a table
|
---|
| 911 | with a best fit number of columns from left to right.
|
---|
| 912 |
|
---|
[8127] | 913 | insertLegend() will set the plot widget as parent for the legend.
|
---|
[9383] | 914 | The legend will be deleted in the destructor of the plot or when
|
---|
[8127] | 915 | another legend is inserted.
|
---|
[4271] | 916 |
|
---|
[8127] | 917 | Legends, that are not inserted into the layout of the plot widget
|
---|
| 918 | need to connect to the legendDataChanged() signal. Calling updateLegend()
|
---|
| 919 | initiates this signal for an initial update. When the application code
|
---|
| 920 | wants to implement its own layout this also needs to be done for
|
---|
| 921 | rendering plots to a document ( see QwtPlotRenderer ).
|
---|
| 922 |
|
---|
[4271] | 923 | \param legend Legend
|
---|
| 924 | \param pos The legend's position. For top/left position the number
|
---|
[8127] | 925 | of columns will be limited to 1, otherwise it will be set to
|
---|
[4271] | 926 | unlimited.
|
---|
| 927 |
|
---|
[8127] | 928 | \param ratio Ratio between legend and the bounding rectangle
|
---|
| 929 | of title, canvas and axes. The legend will be shrunk
|
---|
[4271] | 930 | if it would need more space than the given ratio.
|
---|
| 931 | The ratio is limited to ]0.0 .. 1.0]. In case of <= 0.0
|
---|
| 932 | it will be reset to the default ratio.
|
---|
| 933 | The default vertical/horizontal ratio is 0.33/0.5.
|
---|
| 934 |
|
---|
| 935 | \sa legend(), QwtPlotLayout::legendPosition(),
|
---|
| 936 | QwtPlotLayout::setLegendPosition()
|
---|
| 937 | */
|
---|
[8127] | 938 | void QwtPlot::insertLegend( QwtAbstractLegend *legend,
|
---|
[4271] | 939 | QwtPlot::LegendPosition pos, double ratio )
|
---|
| 940 | {
|
---|
| 941 | d_data->layout->setLegendPosition( pos, ratio );
|
---|
| 942 |
|
---|
| 943 | if ( legend != d_data->legend )
|
---|
| 944 | {
|
---|
| 945 | if ( d_data->legend && d_data->legend->parent() == this )
|
---|
| 946 | delete d_data->legend;
|
---|
| 947 |
|
---|
| 948 | d_data->legend = legend;
|
---|
| 949 |
|
---|
| 950 | if ( d_data->legend )
|
---|
| 951 | {
|
---|
[9383] | 952 | connect(
|
---|
| 953 | this, SIGNAL(legendDataChanged(QVariant,QList<QwtLegendData>)),
|
---|
| 954 | d_data->legend, SLOT(updateLegend(QVariant,QList<QwtLegendData>) )
|
---|
[8127] | 955 | );
|
---|
[4271] | 956 |
|
---|
[8127] | 957 | if ( d_data->legend->parent() != this )
|
---|
| 958 | d_data->legend->setParent( this );
|
---|
[4271] | 959 |
|
---|
[8127] | 960 | qwtEnableLegendItems( this, false );
|
---|
| 961 | updateLegend();
|
---|
| 962 | qwtEnableLegendItems( this, true );
|
---|
| 963 |
|
---|
| 964 | QwtLegend *lgd = qobject_cast<QwtLegend *>( legend );
|
---|
| 965 | if ( lgd )
|
---|
[4271] | 966 | {
|
---|
| 967 | switch ( d_data->layout->legendPosition() )
|
---|
| 968 | {
|
---|
| 969 | case LeftLegend:
|
---|
| 970 | case RightLegend:
|
---|
[8127] | 971 | {
|
---|
| 972 | if ( lgd->maxColumns() == 0 )
|
---|
| 973 | lgd->setMaxColumns( 1 ); // 1 column: align vertical
|
---|
[4271] | 974 | break;
|
---|
[8127] | 975 | }
|
---|
[4271] | 976 | case TopLegend:
|
---|
| 977 | case BottomLegend:
|
---|
[8127] | 978 | {
|
---|
| 979 | lgd->setMaxColumns( 0 ); // unlimited
|
---|
[4271] | 980 | break;
|
---|
[8127] | 981 | }
|
---|
| 982 | default:
|
---|
[4271] | 983 | break;
|
---|
| 984 | }
|
---|
| 985 | }
|
---|
[8127] | 986 |
|
---|
| 987 | QWidget *previousInChain = NULL;
|
---|
| 988 | switch ( d_data->layout->legendPosition() )
|
---|
| 989 | {
|
---|
| 990 | case LeftLegend:
|
---|
| 991 | {
|
---|
| 992 | previousInChain = axisWidget( QwtPlot::xTop );
|
---|
| 993 | break;
|
---|
| 994 | }
|
---|
| 995 | case TopLegend:
|
---|
| 996 | {
|
---|
| 997 | previousInChain = this;
|
---|
| 998 | break;
|
---|
| 999 | }
|
---|
| 1000 | case RightLegend:
|
---|
| 1001 | {
|
---|
| 1002 | previousInChain = axisWidget( QwtPlot::yRight );
|
---|
| 1003 | break;
|
---|
| 1004 | }
|
---|
| 1005 | case BottomLegend:
|
---|
| 1006 | {
|
---|
| 1007 | previousInChain = footerLabel();
|
---|
| 1008 | break;
|
---|
| 1009 | }
|
---|
| 1010 | }
|
---|
| 1011 |
|
---|
| 1012 | if ( previousInChain )
|
---|
| 1013 | qwtSetTabOrder( previousInChain, legend, true );
|
---|
[4271] | 1014 | }
|
---|
| 1015 | }
|
---|
| 1016 |
|
---|
| 1017 | updateLayout();
|
---|
| 1018 | }
|
---|
[8127] | 1019 |
|
---|
| 1020 | /*!
|
---|
| 1021 | Emit legendDataChanged() for all plot item
|
---|
| 1022 |
|
---|
| 1023 | \sa QwtPlotItem::legendData(), legendDataChanged()
|
---|
| 1024 | */
|
---|
| 1025 | void QwtPlot::updateLegend()
|
---|
| 1026 | {
|
---|
| 1027 | const QwtPlotItemList& itmList = itemList();
|
---|
| 1028 | for ( QwtPlotItemIterator it = itmList.begin();
|
---|
| 1029 | it != itmList.end(); ++it )
|
---|
| 1030 | {
|
---|
| 1031 | updateLegend( *it );
|
---|
| 1032 | }
|
---|
| 1033 | }
|
---|
| 1034 |
|
---|
| 1035 | /*!
|
---|
| 1036 | Emit legendDataChanged() for a plot item
|
---|
| 1037 |
|
---|
| 1038 | \param plotItem Plot item
|
---|
| 1039 | \sa QwtPlotItem::legendData(), legendDataChanged()
|
---|
| 1040 | */
|
---|
| 1041 | void QwtPlot::updateLegend( const QwtPlotItem *plotItem )
|
---|
| 1042 | {
|
---|
| 1043 | if ( plotItem == NULL )
|
---|
| 1044 | return;
|
---|
| 1045 |
|
---|
| 1046 | QList<QwtLegendData> legendData;
|
---|
| 1047 |
|
---|
| 1048 | if ( plotItem->testItemAttribute( QwtPlotItem::Legend ) )
|
---|
| 1049 | legendData = plotItem->legendData();
|
---|
| 1050 |
|
---|
| 1051 | const QVariant itemInfo = itemToInfo( const_cast< QwtPlotItem *>( plotItem) );
|
---|
| 1052 | Q_EMIT legendDataChanged( itemInfo, legendData );
|
---|
| 1053 | }
|
---|
| 1054 |
|
---|
| 1055 | /*!
|
---|
| 1056 | \brief Update all plot items interested in legend attributes
|
---|
| 1057 |
|
---|
| 1058 | Call QwtPlotItem::updateLegend(), when the QwtPlotItem::LegendInterest
|
---|
| 1059 | flag is set.
|
---|
| 1060 |
|
---|
| 1061 | \param itemInfo Info about the plot item
|
---|
| 1062 | \param legendData Entries to be displayed for the plot item ( usually 1 )
|
---|
| 1063 |
|
---|
| 1064 | \sa QwtPlotItem::LegendInterest,
|
---|
| 1065 | QwtPlotLegendItem, QwtPlotItem::updateLegend()
|
---|
| 1066 | */
|
---|
| 1067 | void QwtPlot::updateLegendItems( const QVariant &itemInfo,
|
---|
| 1068 | const QList<QwtLegendData> &legendData )
|
---|
| 1069 | {
|
---|
| 1070 | QwtPlotItem *plotItem = infoToItem( itemInfo );
|
---|
| 1071 | if ( plotItem )
|
---|
| 1072 | {
|
---|
| 1073 | const QwtPlotItemList& itmList = itemList();
|
---|
| 1074 | for ( QwtPlotItemIterator it = itmList.begin();
|
---|
| 1075 | it != itmList.end(); ++it )
|
---|
| 1076 | {
|
---|
| 1077 | QwtPlotItem *item = *it;
|
---|
| 1078 | if ( item->testItemInterest( QwtPlotItem::LegendInterest ) )
|
---|
| 1079 | item->updateLegend( plotItem, legendData );
|
---|
| 1080 | }
|
---|
| 1081 | }
|
---|
| 1082 | }
|
---|
| 1083 |
|
---|
| 1084 | /*!
|
---|
[9383] | 1085 | \brief Attach/Detach a plot item
|
---|
[8127] | 1086 |
|
---|
| 1087 | \param plotItem Plot item
|
---|
| 1088 | \param on When true attach the item, otherwise detach it
|
---|
| 1089 | */
|
---|
| 1090 | void QwtPlot::attachItem( QwtPlotItem *plotItem, bool on )
|
---|
| 1091 | {
|
---|
| 1092 | if ( plotItem->testItemInterest( QwtPlotItem::LegendInterest ) )
|
---|
| 1093 | {
|
---|
| 1094 | // plotItem is some sort of legend
|
---|
| 1095 |
|
---|
| 1096 | const QwtPlotItemList& itmList = itemList();
|
---|
| 1097 | for ( QwtPlotItemIterator it = itmList.begin();
|
---|
| 1098 | it != itmList.end(); ++it )
|
---|
| 1099 | {
|
---|
| 1100 | QwtPlotItem *item = *it;
|
---|
| 1101 |
|
---|
| 1102 | QList<QwtLegendData> legendData;
|
---|
| 1103 | if ( on && item->testItemAttribute( QwtPlotItem::Legend ) )
|
---|
| 1104 | {
|
---|
| 1105 | legendData = item->legendData();
|
---|
| 1106 | plotItem->updateLegend( item, legendData );
|
---|
| 1107 | }
|
---|
| 1108 | }
|
---|
| 1109 | }
|
---|
| 1110 |
|
---|
| 1111 | if ( on )
|
---|
| 1112 | insertItem( plotItem );
|
---|
[9383] | 1113 | else
|
---|
[8127] | 1114 | removeItem( plotItem );
|
---|
| 1115 |
|
---|
| 1116 | Q_EMIT itemAttached( plotItem, on );
|
---|
| 1117 |
|
---|
| 1118 | if ( plotItem->testItemAttribute( QwtPlotItem::Legend ) )
|
---|
| 1119 | {
|
---|
| 1120 | // the item wants to be represented on the legend
|
---|
| 1121 |
|
---|
| 1122 | if ( on )
|
---|
| 1123 | {
|
---|
| 1124 | updateLegend( plotItem );
|
---|
| 1125 | }
|
---|
| 1126 | else
|
---|
| 1127 | {
|
---|
| 1128 | const QVariant itemInfo = itemToInfo( plotItem );
|
---|
| 1129 | Q_EMIT legendDataChanged( itemInfo, QList<QwtLegendData>() );
|
---|
| 1130 | }
|
---|
| 1131 | }
|
---|
| 1132 |
|
---|
| 1133 | autoRefresh();
|
---|
| 1134 | }
|
---|
| 1135 |
|
---|
| 1136 | /*!
|
---|
| 1137 | \brief Build an information, that can be used to identify
|
---|
| 1138 | a plot item on the legend.
|
---|
| 1139 |
|
---|
| 1140 | The default implementation simply wraps the plot item
|
---|
| 1141 | into a QVariant object. When overloading itemToInfo()
|
---|
| 1142 | usually infoToItem() needs to reimplemeted too.
|
---|
| 1143 |
|
---|
| 1144 | \code
|
---|
| 1145 | QVariant itemInfo;
|
---|
| 1146 | qVariantSetValue( itemInfo, plotItem );
|
---|
| 1147 | \endcode
|
---|
| 1148 |
|
---|
| 1149 | \param plotItem Plot item
|
---|
| 1150 | \return Plot item embedded in a QVariant
|
---|
| 1151 | \sa infoToItem()
|
---|
| 1152 | */
|
---|
| 1153 | QVariant QwtPlot::itemToInfo( QwtPlotItem *plotItem ) const
|
---|
| 1154 | {
|
---|
| 1155 | QVariant itemInfo;
|
---|
| 1156 | qVariantSetValue( itemInfo, plotItem );
|
---|
| 1157 |
|
---|
| 1158 | return itemInfo;
|
---|
| 1159 | }
|
---|
| 1160 |
|
---|
| 1161 | /*!
|
---|
| 1162 | \brief Identify the plot item according to an item info object,
|
---|
| 1163 | that has bee generated from itemToInfo().
|
---|
| 1164 |
|
---|
[9383] | 1165 | The default implementation simply tries to unwrap a QwtPlotItem
|
---|
[8127] | 1166 | pointer:
|
---|
| 1167 |
|
---|
| 1168 | \code
|
---|
| 1169 | if ( itemInfo.canConvert<QwtPlotItem *>() )
|
---|
| 1170 | return qvariant_cast<QwtPlotItem *>( itemInfo );
|
---|
| 1171 | \endcode
|
---|
| 1172 | \param itemInfo Plot item
|
---|
| 1173 | \return A plot item, when successful, otherwise a NULL pointer.
|
---|
| 1174 | \sa itemToInfo()
|
---|
| 1175 | */
|
---|
| 1176 | QwtPlotItem *QwtPlot::infoToItem( const QVariant &itemInfo ) const
|
---|
| 1177 | {
|
---|
| 1178 | if ( itemInfo.canConvert<QwtPlotItem *>() )
|
---|
| 1179 | return qvariant_cast<QwtPlotItem *>( itemInfo );
|
---|
| 1180 |
|
---|
| 1181 | return NULL;
|
---|
| 1182 | }
|
---|
| 1183 |
|
---|
| 1184 |
|
---|