[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_canvas.h"
|
---|
| 11 | #include "qwt_painter.h"
|
---|
| 12 | #include "qwt_null_paintdevice.h"
|
---|
| 13 | #include "qwt_math.h"
|
---|
| 14 | #include "qwt_plot.h"
|
---|
| 15 | #include <qpainter.h>
|
---|
| 16 | #include <qstyle.h>
|
---|
| 17 | #include <qstyleoption.h>
|
---|
| 18 | #include <qpaintengine.h>
|
---|
| 19 | #include <qevent.h>
|
---|
| 20 |
|
---|
| 21 | class QwtStyleSheetRecorder: public QwtNullPaintDevice
|
---|
| 22 | {
|
---|
| 23 | public:
|
---|
| 24 | QwtStyleSheetRecorder( const QSize &size ):
|
---|
[8127] | 25 | d_size( size )
|
---|
[4271] | 26 | {
|
---|
| 27 | }
|
---|
| 28 |
|
---|
| 29 | virtual void updateState( const QPaintEngineState &state )
|
---|
| 30 | {
|
---|
| 31 | if ( state.state() & QPaintEngine::DirtyPen )
|
---|
| 32 | {
|
---|
| 33 | d_pen = state.pen();
|
---|
| 34 | }
|
---|
| 35 | if ( state.state() & QPaintEngine::DirtyBrush )
|
---|
| 36 | {
|
---|
| 37 | d_brush = state.brush();
|
---|
| 38 | }
|
---|
| 39 | if ( state.state() & QPaintEngine::DirtyBrushOrigin )
|
---|
| 40 | {
|
---|
| 41 | d_origin = state.brushOrigin();
|
---|
| 42 | }
|
---|
| 43 | }
|
---|
| 44 |
|
---|
| 45 | virtual void drawRects(const QRectF *rects, int count )
|
---|
| 46 | {
|
---|
| 47 | for ( int i = 0; i < count; i++ )
|
---|
| 48 | border.rectList += rects[i];
|
---|
| 49 | }
|
---|
| 50 |
|
---|
[9383] | 51 | virtual void drawRects(const QRect *rects, int count )
|
---|
| 52 | {
|
---|
| 53 | // to silence -Woverloaded-virtual
|
---|
| 54 | QwtNullPaintDevice::drawRects( rects, count );
|
---|
| 55 | }
|
---|
| 56 |
|
---|
[4271] | 57 | virtual void drawPath( const QPainterPath &path )
|
---|
| 58 | {
|
---|
[8127] | 59 | const QRectF rect( QPointF( 0.0, 0.0 ), d_size );
|
---|
[4271] | 60 | if ( path.controlPointRect().contains( rect.center() ) )
|
---|
| 61 | {
|
---|
| 62 | setCornerRects( path );
|
---|
| 63 | alignCornerRects( rect );
|
---|
| 64 |
|
---|
| 65 | background.path = path;
|
---|
| 66 | background.brush = d_brush;
|
---|
| 67 | background.origin = d_origin;
|
---|
| 68 | }
|
---|
| 69 | else
|
---|
| 70 | {
|
---|
| 71 | border.pathList += path;
|
---|
| 72 | }
|
---|
| 73 | }
|
---|
| 74 |
|
---|
| 75 | void setCornerRects( const QPainterPath &path )
|
---|
| 76 | {
|
---|
| 77 | QPointF pos( 0.0, 0.0 );
|
---|
| 78 |
|
---|
| 79 | for ( int i = 0; i < path.elementCount(); i++ )
|
---|
| 80 | {
|
---|
[9383] | 81 | QPainterPath::Element el = path.elementAt(i);
|
---|
[4271] | 82 | switch( el.type )
|
---|
| 83 | {
|
---|
| 84 | case QPainterPath::MoveToElement:
|
---|
| 85 | case QPainterPath::LineToElement:
|
---|
| 86 | {
|
---|
| 87 | pos.setX( el.x );
|
---|
| 88 | pos.setY( el.y );
|
---|
| 89 | break;
|
---|
| 90 | }
|
---|
| 91 | case QPainterPath::CurveToElement:
|
---|
| 92 | {
|
---|
| 93 | QRectF r( pos, QPointF( el.x, el.y ) );
|
---|
| 94 | clipRects += r.normalized();
|
---|
| 95 |
|
---|
| 96 | pos.setX( el.x );
|
---|
| 97 | pos.setY( el.y );
|
---|
| 98 |
|
---|
| 99 | break;
|
---|
| 100 | }
|
---|
| 101 | case QPainterPath::CurveToDataElement:
|
---|
| 102 | {
|
---|
| 103 | if ( clipRects.size() > 0 )
|
---|
| 104 | {
|
---|
| 105 | QRectF r = clipRects.last();
|
---|
[9383] | 106 | r.setCoords(
|
---|
[4271] | 107 | qMin( r.left(), el.x ),
|
---|
| 108 | qMin( r.top(), el.y ),
|
---|
| 109 | qMax( r.right(), el.x ),
|
---|
| 110 | qMax( r.bottom(), el.y )
|
---|
| 111 | );
|
---|
| 112 | clipRects.last() = r.normalized();
|
---|
| 113 | }
|
---|
| 114 | break;
|
---|
| 115 | }
|
---|
| 116 | }
|
---|
| 117 | }
|
---|
| 118 | }
|
---|
| 119 |
|
---|
[8127] | 120 | protected:
|
---|
| 121 | virtual QSize sizeMetrics() const
|
---|
| 122 | {
|
---|
| 123 | return d_size;
|
---|
| 124 | }
|
---|
| 125 |
|
---|
[4271] | 126 | private:
|
---|
| 127 | void alignCornerRects( const QRectF &rect )
|
---|
| 128 | {
|
---|
| 129 | for ( int i = 0; i < clipRects.size(); i++ )
|
---|
| 130 | {
|
---|
| 131 | QRectF &r = clipRects[i];
|
---|
| 132 | if ( r.center().x() < rect.center().x() )
|
---|
| 133 | r.setLeft( rect.left() );
|
---|
| 134 | else
|
---|
| 135 | r.setRight( rect.right() );
|
---|
| 136 |
|
---|
| 137 | if ( r.center().y() < rect.center().y() )
|
---|
| 138 | r.setTop( rect.top() );
|
---|
| 139 | else
|
---|
| 140 | r.setBottom( rect.bottom() );
|
---|
| 141 | }
|
---|
| 142 | }
|
---|
| 143 |
|
---|
| 144 |
|
---|
| 145 | public:
|
---|
| 146 | QVector<QRectF> clipRects;
|
---|
| 147 |
|
---|
| 148 | struct Border
|
---|
| 149 | {
|
---|
| 150 | QList<QPainterPath> pathList;
|
---|
| 151 | QList<QRectF> rectList;
|
---|
| 152 | QRegion clipRegion;
|
---|
| 153 | } border;
|
---|
| 154 |
|
---|
| 155 | struct Background
|
---|
| 156 | {
|
---|
| 157 | QPainterPath path;
|
---|
| 158 | QBrush brush;
|
---|
| 159 | QPointF origin;
|
---|
| 160 | } background;
|
---|
| 161 |
|
---|
| 162 | private:
|
---|
[8127] | 163 | const QSize d_size;
|
---|
| 164 |
|
---|
[4271] | 165 | QPen d_pen;
|
---|
| 166 | QBrush d_brush;
|
---|
| 167 | QPointF d_origin;
|
---|
| 168 | };
|
---|
| 169 |
|
---|
[8127] | 170 | static void qwtDrawBackground( QPainter *painter, QwtPlotCanvas *canvas )
|
---|
[4271] | 171 | {
|
---|
[8127] | 172 | painter->save();
|
---|
| 173 |
|
---|
| 174 | const QPainterPath borderClip = canvas->borderPath( canvas->rect() );
|
---|
| 175 | if ( !borderClip.isEmpty() )
|
---|
| 176 | painter->setClipPath( borderClip, Qt::IntersectClip );
|
---|
| 177 |
|
---|
[9383] | 178 | const QBrush &brush =
|
---|
[8127] | 179 | canvas->palette().brush( canvas->backgroundRole() );
|
---|
[4271] | 180 |
|
---|
| 181 | if ( brush.style() == Qt::TexturePattern )
|
---|
| 182 | {
|
---|
[8127] | 183 | QPixmap pm( canvas->size() );
|
---|
| 184 | QwtPainter::fillPixmap( canvas, pm );
|
---|
[4271] | 185 | painter->drawPixmap( 0, 0, pm );
|
---|
| 186 | }
|
---|
| 187 | else if ( brush.gradient() )
|
---|
| 188 | {
|
---|
| 189 | QVector<QRect> rects;
|
---|
| 190 |
|
---|
| 191 | if ( brush.gradient()->coordinateMode() == QGradient::ObjectBoundingMode )
|
---|
| 192 | {
|
---|
[8127] | 193 | rects += canvas->rect();
|
---|
[9383] | 194 | }
|
---|
| 195 | else
|
---|
[4271] | 196 | {
|
---|
| 197 | rects = painter->clipRegion().rects();
|
---|
| 198 | }
|
---|
| 199 |
|
---|
| 200 | #if 1
|
---|
| 201 | bool useRaster = false;
|
---|
| 202 |
|
---|
| 203 | if ( painter->paintEngine()->type() == QPaintEngine::X11 )
|
---|
| 204 | {
|
---|
[9383] | 205 | // Qt 4.7.1: gradients on X11 are broken ( subrects +
|
---|
[4271] | 206 | // QGradient::StretchToDeviceMode ) and horrible slow.
|
---|
| 207 | // As workaround we have to use the raster paintengine.
|
---|
| 208 | // Even if the QImage -> QPixmap translation is slow
|
---|
| 209 | // it is three times faster, than using X11 directly
|
---|
| 210 |
|
---|
| 211 | useRaster = true;
|
---|
| 212 | }
|
---|
| 213 | #endif
|
---|
| 214 | if ( useRaster )
|
---|
| 215 | {
|
---|
| 216 | QImage::Format format = QImage::Format_RGB32;
|
---|
| 217 |
|
---|
| 218 | const QGradientStops stops = brush.gradient()->stops();
|
---|
| 219 | for ( int i = 0; i < stops.size(); i++ )
|
---|
| 220 | {
|
---|
| 221 | if ( stops[i].second.alpha() != 255 )
|
---|
| 222 | {
|
---|
| 223 | // don't use Format_ARGB32_Premultiplied. It's
|
---|
| 224 | // recommended by the Qt docs, but QPainter::drawImage()
|
---|
| 225 | // is horrible slow on X11.
|
---|
| 226 |
|
---|
| 227 | format = QImage::Format_ARGB32;
|
---|
| 228 | break;
|
---|
| 229 | }
|
---|
| 230 | }
|
---|
[9383] | 231 |
|
---|
[8127] | 232 | QImage image( canvas->size(), format );
|
---|
[4271] | 233 |
|
---|
| 234 | QPainter p( &image );
|
---|
| 235 | p.setPen( Qt::NoPen );
|
---|
| 236 | p.setBrush( brush );
|
---|
| 237 |
|
---|
| 238 | p.drawRects( rects );
|
---|
| 239 |
|
---|
| 240 | p.end();
|
---|
| 241 |
|
---|
| 242 | painter->drawImage( 0, 0, image );
|
---|
| 243 | }
|
---|
| 244 | else
|
---|
| 245 | {
|
---|
| 246 | painter->setPen( Qt::NoPen );
|
---|
| 247 | painter->setBrush( brush );
|
---|
| 248 |
|
---|
| 249 | painter->drawRects( rects );
|
---|
| 250 | }
|
---|
| 251 | }
|
---|
| 252 | else
|
---|
| 253 | {
|
---|
| 254 | painter->setPen( Qt::NoPen );
|
---|
| 255 | painter->setBrush( brush );
|
---|
| 256 |
|
---|
| 257 | painter->drawRects( painter->clipRegion().rects() );
|
---|
| 258 |
|
---|
| 259 | }
|
---|
[8127] | 260 |
|
---|
| 261 | painter->restore();
|
---|
[4271] | 262 | }
|
---|
| 263 |
|
---|
| 264 | static inline void qwtRevertPath( QPainterPath &path )
|
---|
| 265 | {
|
---|
| 266 | if ( path.elementCount() == 4 )
|
---|
| 267 | {
|
---|
[8127] | 268 | QPainterPath::Element el0 = path.elementAt(0);
|
---|
| 269 | QPainterPath::Element el3 = path.elementAt(3);
|
---|
[4271] | 270 |
|
---|
[8127] | 271 | path.setElementPositionAt( 0, el3.x, el3.y );
|
---|
| 272 | path.setElementPositionAt( 3, el0.x, el0.y );
|
---|
[4271] | 273 | }
|
---|
| 274 | }
|
---|
| 275 |
|
---|
[9383] | 276 | static QPainterPath qwtCombinePathList( const QRectF &rect,
|
---|
[4271] | 277 | const QList<QPainterPath> &pathList )
|
---|
| 278 | {
|
---|
| 279 | if ( pathList.isEmpty() )
|
---|
| 280 | return QPainterPath();
|
---|
| 281 |
|
---|
| 282 | QPainterPath ordered[8]; // starting top left
|
---|
| 283 |
|
---|
| 284 | for ( int i = 0; i < pathList.size(); i++ )
|
---|
| 285 | {
|
---|
| 286 | int index = -1;
|
---|
| 287 | QPainterPath subPath = pathList[i];
|
---|
| 288 |
|
---|
| 289 | const QRectF br = pathList[i].controlPointRect();
|
---|
| 290 | if ( br.center().x() < rect.center().x() )
|
---|
| 291 | {
|
---|
| 292 | if ( br.center().y() < rect.center().y() )
|
---|
| 293 | {
|
---|
[9383] | 294 | if ( qAbs( br.top() - rect.top() ) <
|
---|
[4271] | 295 | qAbs( br.left() - rect.left() ) )
|
---|
| 296 | {
|
---|
| 297 | index = 1;
|
---|
| 298 | }
|
---|
| 299 | else
|
---|
| 300 | {
|
---|
| 301 | index = 0;
|
---|
| 302 | }
|
---|
| 303 | }
|
---|
| 304 | else
|
---|
| 305 | {
|
---|
[9383] | 306 | if ( qAbs( br.bottom() - rect.bottom() ) <
|
---|
[4271] | 307 | qAbs( br.left() - rect.left() ) )
|
---|
| 308 | {
|
---|
| 309 | index = 6;
|
---|
| 310 | }
|
---|
| 311 | else
|
---|
| 312 | {
|
---|
| 313 | index = 7;
|
---|
| 314 | }
|
---|
| 315 | }
|
---|
| 316 |
|
---|
| 317 | if ( subPath.currentPosition().y() > br.center().y() )
|
---|
| 318 | qwtRevertPath( subPath );
|
---|
| 319 | }
|
---|
| 320 | else
|
---|
| 321 | {
|
---|
| 322 | if ( br.center().y() < rect.center().y() )
|
---|
| 323 | {
|
---|
[9383] | 324 | if ( qAbs( br.top() - rect.top() ) <
|
---|
[4271] | 325 | qAbs( br.right() - rect.right() ) )
|
---|
| 326 | {
|
---|
| 327 | index = 2;
|
---|
| 328 | }
|
---|
| 329 | else
|
---|
| 330 | {
|
---|
| 331 | index = 3;
|
---|
| 332 | }
|
---|
| 333 | }
|
---|
| 334 | else
|
---|
| 335 | {
|
---|
[9383] | 336 | if ( qAbs( br.bottom() - rect.bottom() ) <
|
---|
[4271] | 337 | qAbs( br.right() - rect.right() ) )
|
---|
| 338 | {
|
---|
| 339 | index = 5;
|
---|
| 340 | }
|
---|
| 341 | else
|
---|
| 342 | {
|
---|
| 343 | index = 4;
|
---|
| 344 | }
|
---|
| 345 | }
|
---|
| 346 | if ( subPath.currentPosition().y() < br.center().y() )
|
---|
| 347 | qwtRevertPath( subPath );
|
---|
[9383] | 348 | }
|
---|
[4271] | 349 | ordered[index] = subPath;
|
---|
| 350 | }
|
---|
| 351 |
|
---|
| 352 | for ( int i = 0; i < 4; i++ )
|
---|
| 353 | {
|
---|
| 354 | if ( ordered[ 2 * i].isEmpty() != ordered[2 * i + 1].isEmpty() )
|
---|
| 355 | {
|
---|
| 356 | // we don't accept incomplete rounded borders
|
---|
| 357 | return QPainterPath();
|
---|
| 358 | }
|
---|
| 359 | }
|
---|
| 360 |
|
---|
| 361 |
|
---|
| 362 | const QPolygonF corners( rect );
|
---|
| 363 |
|
---|
| 364 | QPainterPath path;
|
---|
| 365 | //path.moveTo( rect.topLeft() );
|
---|
| 366 |
|
---|
| 367 | for ( int i = 0; i < 4; i++ )
|
---|
| 368 | {
|
---|
| 369 | if ( ordered[2 * i].isEmpty() )
|
---|
| 370 | {
|
---|
| 371 | path.lineTo( corners[i] );
|
---|
| 372 | }
|
---|
| 373 | else
|
---|
| 374 | {
|
---|
| 375 | path.connectPath( ordered[2 * i] );
|
---|
| 376 | path.connectPath( ordered[2 * i + 1] );
|
---|
| 377 | }
|
---|
| 378 | }
|
---|
| 379 |
|
---|
| 380 | path.closeSubpath();
|
---|
| 381 |
|
---|
| 382 | #if 0
|
---|
| 383 | return path.simplified();
|
---|
| 384 | #else
|
---|
| 385 | return path;
|
---|
| 386 | #endif
|
---|
| 387 | }
|
---|
| 388 |
|
---|
[9383] | 389 | static inline void qwtDrawStyledBackground(
|
---|
[4271] | 390 | QWidget *w, QPainter *painter )
|
---|
| 391 | {
|
---|
| 392 | QStyleOption opt;
|
---|
| 393 | opt.initFrom(w);
|
---|
| 394 | w->style()->drawPrimitive( QStyle::PE_Widget, &opt, painter, w);
|
---|
| 395 | }
|
---|
| 396 |
|
---|
| 397 | static QWidget *qwtBackgroundWidget( QWidget *w )
|
---|
| 398 | {
|
---|
| 399 | if ( w->parentWidget() == NULL )
|
---|
| 400 | return w;
|
---|
| 401 |
|
---|
| 402 | if ( w->autoFillBackground() )
|
---|
| 403 | {
|
---|
| 404 | const QBrush brush = w->palette().brush( w->backgroundRole() );
|
---|
| 405 | if ( brush.color().alpha() > 0 )
|
---|
| 406 | return w;
|
---|
| 407 | }
|
---|
| 408 |
|
---|
| 409 | if ( w->testAttribute( Qt::WA_StyledBackground ) )
|
---|
| 410 | {
|
---|
| 411 | QImage image( 1, 1, QImage::Format_ARGB32 );
|
---|
| 412 | image.fill( Qt::transparent );
|
---|
| 413 |
|
---|
| 414 | QPainter painter( &image );
|
---|
| 415 | painter.translate( -w->rect().center() );
|
---|
| 416 | qwtDrawStyledBackground( w, &painter );
|
---|
| 417 | painter.end();
|
---|
| 418 |
|
---|
| 419 | if ( qAlpha( image.pixel( 0, 0 ) ) != 0 )
|
---|
| 420 | return w;
|
---|
| 421 | }
|
---|
| 422 |
|
---|
| 423 | return qwtBackgroundWidget( w->parentWidget() );
|
---|
| 424 | }
|
---|
| 425 |
|
---|
[9383] | 426 | static void qwtFillBackground( QPainter *painter,
|
---|
[4271] | 427 | QWidget *widget, const QVector<QRectF> &fillRects )
|
---|
| 428 | {
|
---|
| 429 | if ( fillRects.isEmpty() )
|
---|
| 430 | return;
|
---|
| 431 |
|
---|
| 432 | QRegion clipRegion;
|
---|
| 433 | if ( painter->hasClipping() )
|
---|
| 434 | clipRegion = painter->transform().map( painter->clipRegion() );
|
---|
| 435 | else
|
---|
| 436 | clipRegion = widget->contentsRect();
|
---|
| 437 |
|
---|
| 438 | // Try to find out which widget fills
|
---|
| 439 | // the unfilled areas of the styled background
|
---|
| 440 |
|
---|
| 441 | QWidget *bgWidget = qwtBackgroundWidget( widget->parentWidget() );
|
---|
| 442 |
|
---|
| 443 | for ( int i = 0; i < fillRects.size(); i++ )
|
---|
| 444 | {
|
---|
| 445 | const QRect rect = fillRects[i].toAlignedRect();
|
---|
| 446 | if ( clipRegion.intersects( rect ) )
|
---|
| 447 | {
|
---|
| 448 | QPixmap pm( rect.size() );
|
---|
[8127] | 449 | QwtPainter::fillPixmap( bgWidget, pm, widget->mapTo( bgWidget, rect.topLeft() ) );
|
---|
[4271] | 450 | painter->drawPixmap( rect, pm );
|
---|
| 451 | }
|
---|
| 452 | }
|
---|
| 453 | }
|
---|
| 454 |
|
---|
| 455 | static void qwtFillBackground( QPainter *painter, QwtPlotCanvas *canvas )
|
---|
| 456 | {
|
---|
| 457 | QVector<QRectF> rects;
|
---|
| 458 |
|
---|
| 459 | if ( canvas->testAttribute( Qt::WA_StyledBackground ) )
|
---|
| 460 | {
|
---|
| 461 | QwtStyleSheetRecorder recorder( canvas->size() );
|
---|
| 462 |
|
---|
| 463 | QPainter p( &recorder );
|
---|
| 464 | qwtDrawStyledBackground( canvas, &p );
|
---|
| 465 | p.end();
|
---|
| 466 |
|
---|
| 467 | if ( recorder.background.brush.isOpaque() )
|
---|
| 468 | rects = recorder.clipRects;
|
---|
| 469 | else
|
---|
| 470 | rects += canvas->rect();
|
---|
| 471 | }
|
---|
| 472 | else
|
---|
| 473 | {
|
---|
| 474 | const QRectF r = canvas->rect();
|
---|
| 475 | const double radius = canvas->borderRadius();
|
---|
| 476 | if ( radius > 0.0 )
|
---|
| 477 | {
|
---|
[8127] | 478 | QSizeF sz( radius, radius );
|
---|
[4271] | 479 |
|
---|
| 480 | rects += QRectF( r.topLeft(), sz );
|
---|
| 481 | rects += QRectF( r.topRight() - QPointF( radius, 0 ), sz );
|
---|
| 482 | rects += QRectF( r.bottomRight() - QPointF( radius, radius ), sz );
|
---|
| 483 | rects += QRectF( r.bottomLeft() - QPointF( 0, radius ), sz );
|
---|
| 484 | }
|
---|
| 485 | }
|
---|
| 486 |
|
---|
| 487 | qwtFillBackground( painter, canvas, rects);
|
---|
| 488 | }
|
---|
| 489 |
|
---|
| 490 |
|
---|
| 491 | class QwtPlotCanvas::PrivateData
|
---|
| 492 | {
|
---|
| 493 | public:
|
---|
| 494 | PrivateData():
|
---|
| 495 | focusIndicator( NoFocusIndicator ),
|
---|
| 496 | borderRadius( 0 ),
|
---|
| 497 | paintAttributes( 0 ),
|
---|
| 498 | backingStore( NULL )
|
---|
| 499 | {
|
---|
| 500 | styleSheet.hasBorder = false;
|
---|
| 501 | }
|
---|
| 502 |
|
---|
| 503 | ~PrivateData()
|
---|
| 504 | {
|
---|
| 505 | delete backingStore;
|
---|
| 506 | }
|
---|
| 507 |
|
---|
| 508 | FocusIndicator focusIndicator;
|
---|
| 509 | double borderRadius;
|
---|
| 510 | QwtPlotCanvas::PaintAttributes paintAttributes;
|
---|
| 511 | QPixmap *backingStore;
|
---|
| 512 |
|
---|
| 513 | struct StyleSheet
|
---|
| 514 | {
|
---|
| 515 | bool hasBorder;
|
---|
| 516 | QPainterPath borderPath;
|
---|
| 517 | QVector<QRectF> cornerRects;
|
---|
| 518 |
|
---|
| 519 | struct StyleSheetBackground
|
---|
| 520 | {
|
---|
| 521 | QBrush brush;
|
---|
| 522 | QPointF origin;
|
---|
| 523 | } background;
|
---|
| 524 |
|
---|
| 525 | } styleSheet;
|
---|
| 526 |
|
---|
| 527 | };
|
---|
| 528 |
|
---|
[9383] | 529 | /*!
|
---|
[8127] | 530 | \brief Constructor
|
---|
[4271] | 531 |
|
---|
[8127] | 532 | \param plot Parent plot widget
|
---|
| 533 | \sa QwtPlot::setCanvas()
|
---|
| 534 | */
|
---|
[4271] | 535 | QwtPlotCanvas::QwtPlotCanvas( QwtPlot *plot ):
|
---|
| 536 | QFrame( plot )
|
---|
| 537 | {
|
---|
[8127] | 538 | setFrameStyle( QFrame::Panel | QFrame::Sunken );
|
---|
| 539 | setLineWidth( 2 );
|
---|
| 540 |
|
---|
[4271] | 541 | d_data = new PrivateData;
|
---|
| 542 |
|
---|
| 543 | #ifndef QT_NO_CURSOR
|
---|
| 544 | setCursor( Qt::CrossCursor );
|
---|
| 545 | #endif
|
---|
| 546 |
|
---|
| 547 | setAutoFillBackground( true );
|
---|
| 548 | setPaintAttribute( QwtPlotCanvas::BackingStore, true );
|
---|
| 549 | setPaintAttribute( QwtPlotCanvas::Opaque, true );
|
---|
| 550 | setPaintAttribute( QwtPlotCanvas::HackStyledBackground, true );
|
---|
| 551 | }
|
---|
| 552 |
|
---|
| 553 | //! Destructor
|
---|
| 554 | QwtPlotCanvas::~QwtPlotCanvas()
|
---|
| 555 | {
|
---|
| 556 | delete d_data;
|
---|
| 557 | }
|
---|
| 558 |
|
---|
| 559 | //! Return parent plot widget
|
---|
| 560 | QwtPlot *QwtPlotCanvas::plot()
|
---|
| 561 | {
|
---|
[8127] | 562 | return qobject_cast<QwtPlot *>( parent() );
|
---|
[4271] | 563 | }
|
---|
| 564 |
|
---|
| 565 | //! Return parent plot widget
|
---|
| 566 | const QwtPlot *QwtPlotCanvas::plot() const
|
---|
| 567 | {
|
---|
[8127] | 568 | return qobject_cast<const QwtPlot *>( parent() );
|
---|
[4271] | 569 | }
|
---|
| 570 |
|
---|
| 571 | /*!
|
---|
| 572 | \brief Changing the paint attributes
|
---|
| 573 |
|
---|
| 574 | \param attribute Paint attribute
|
---|
| 575 | \param on On/Off
|
---|
| 576 |
|
---|
| 577 | \sa testPaintAttribute(), backingStore()
|
---|
| 578 | */
|
---|
| 579 | void QwtPlotCanvas::setPaintAttribute( PaintAttribute attribute, bool on )
|
---|
| 580 | {
|
---|
| 581 | if ( bool( d_data->paintAttributes & attribute ) == on )
|
---|
| 582 | return;
|
---|
| 583 |
|
---|
| 584 | if ( on )
|
---|
| 585 | d_data->paintAttributes |= attribute;
|
---|
| 586 | else
|
---|
| 587 | d_data->paintAttributes &= ~attribute;
|
---|
| 588 |
|
---|
| 589 | switch ( attribute )
|
---|
| 590 | {
|
---|
| 591 | case BackingStore:
|
---|
| 592 | {
|
---|
| 593 | if ( on )
|
---|
| 594 | {
|
---|
| 595 | if ( d_data->backingStore == NULL )
|
---|
| 596 | d_data->backingStore = new QPixmap();
|
---|
| 597 |
|
---|
| 598 | if ( isVisible() )
|
---|
| 599 | {
|
---|
[8127] | 600 | #if QT_VERSION >= 0x050000
|
---|
| 601 | *d_data->backingStore = grab( rect() );
|
---|
| 602 | #else
|
---|
[9383] | 603 | *d_data->backingStore =
|
---|
[4271] | 604 | QPixmap::grabWidget( this, rect() );
|
---|
[8127] | 605 | #endif
|
---|
[4271] | 606 | }
|
---|
| 607 | }
|
---|
| 608 | else
|
---|
| 609 | {
|
---|
| 610 | delete d_data->backingStore;
|
---|
| 611 | d_data->backingStore = NULL;
|
---|
| 612 | }
|
---|
| 613 | break;
|
---|
| 614 | }
|
---|
| 615 | case Opaque:
|
---|
| 616 | {
|
---|
| 617 | if ( on )
|
---|
| 618 | setAttribute( Qt::WA_OpaquePaintEvent, true );
|
---|
| 619 |
|
---|
| 620 | break;
|
---|
| 621 | }
|
---|
| 622 | case HackStyledBackground:
|
---|
| 623 | case ImmediatePaint:
|
---|
| 624 | {
|
---|
| 625 | break;
|
---|
| 626 | }
|
---|
| 627 | }
|
---|
| 628 | }
|
---|
| 629 |
|
---|
| 630 | /*!
|
---|
[8127] | 631 | Test whether a paint attribute is enabled
|
---|
[4271] | 632 |
|
---|
| 633 | \param attribute Paint attribute
|
---|
[8127] | 634 | \return true, when attribute is enabled
|
---|
[4271] | 635 | \sa setPaintAttribute()
|
---|
| 636 | */
|
---|
| 637 | bool QwtPlotCanvas::testPaintAttribute( PaintAttribute attribute ) const
|
---|
| 638 | {
|
---|
| 639 | return d_data->paintAttributes & attribute;
|
---|
| 640 | }
|
---|
| 641 |
|
---|
| 642 | //! \return Backing store, might be null
|
---|
| 643 | const QPixmap *QwtPlotCanvas::backingStore() const
|
---|
| 644 | {
|
---|
| 645 | return d_data->backingStore;
|
---|
| 646 | }
|
---|
| 647 |
|
---|
| 648 | //! Invalidate the internal backing store
|
---|
| 649 | void QwtPlotCanvas::invalidateBackingStore()
|
---|
| 650 | {
|
---|
| 651 | if ( d_data->backingStore )
|
---|
| 652 | *d_data->backingStore = QPixmap();
|
---|
| 653 | }
|
---|
| 654 |
|
---|
| 655 | /*!
|
---|
| 656 | Set the focus indicator
|
---|
| 657 |
|
---|
| 658 | \sa FocusIndicator, focusIndicator()
|
---|
| 659 | */
|
---|
| 660 | void QwtPlotCanvas::setFocusIndicator( FocusIndicator focusIndicator )
|
---|
| 661 | {
|
---|
| 662 | d_data->focusIndicator = focusIndicator;
|
---|
| 663 | }
|
---|
| 664 |
|
---|
| 665 | /*!
|
---|
| 666 | \return Focus indicator
|
---|
| 667 |
|
---|
| 668 | \sa FocusIndicator, setFocusIndicator()
|
---|
| 669 | */
|
---|
| 670 | QwtPlotCanvas::FocusIndicator QwtPlotCanvas::focusIndicator() const
|
---|
| 671 | {
|
---|
| 672 | return d_data->focusIndicator;
|
---|
| 673 | }
|
---|
| 674 |
|
---|
| 675 | /*!
|
---|
| 676 | Set the radius for the corners of the border frame
|
---|
| 677 |
|
---|
| 678 | \param radius Radius of a rounded corner
|
---|
| 679 | \sa borderRadius()
|
---|
| 680 | */
|
---|
| 681 | void QwtPlotCanvas::setBorderRadius( double radius )
|
---|
| 682 | {
|
---|
| 683 | d_data->borderRadius = qMax( 0.0, radius );
|
---|
| 684 | }
|
---|
| 685 |
|
---|
| 686 | /*!
|
---|
| 687 | \return Radius for the corners of the border frame
|
---|
| 688 | \sa setBorderRadius()
|
---|
| 689 | */
|
---|
| 690 | double QwtPlotCanvas::borderRadius() const
|
---|
| 691 | {
|
---|
| 692 | return d_data->borderRadius;
|
---|
| 693 | }
|
---|
| 694 |
|
---|
| 695 | /*!
|
---|
| 696 | Qt event handler for QEvent::PolishRequest and QEvent::StyleChange
|
---|
[8127] | 697 |
|
---|
[4271] | 698 | \param event Qt Event
|
---|
[8127] | 699 | \return See QFrame::event()
|
---|
[4271] | 700 | */
|
---|
| 701 | bool QwtPlotCanvas::event( QEvent *event )
|
---|
| 702 | {
|
---|
[9383] | 703 | if ( event->type() == QEvent::PolishRequest )
|
---|
[4271] | 704 | {
|
---|
| 705 | if ( testPaintAttribute( QwtPlotCanvas::Opaque ) )
|
---|
| 706 | {
|
---|
[9383] | 707 | // Setting a style sheet changes the
|
---|
[4271] | 708 | // Qt::WA_OpaquePaintEvent attribute, but we insist
|
---|
| 709 | // on painting the background.
|
---|
[9383] | 710 |
|
---|
[4271] | 711 | setAttribute( Qt::WA_OpaquePaintEvent, true );
|
---|
| 712 | }
|
---|
| 713 | }
|
---|
| 714 |
|
---|
[9383] | 715 | if ( event->type() == QEvent::PolishRequest ||
|
---|
[4271] | 716 | event->type() == QEvent::StyleChange )
|
---|
| 717 | {
|
---|
| 718 | updateStyleSheetInfo();
|
---|
| 719 | }
|
---|
| 720 |
|
---|
| 721 | return QFrame::event( event );
|
---|
| 722 | }
|
---|
| 723 |
|
---|
| 724 | /*!
|
---|
| 725 | Paint event
|
---|
| 726 | \param event Paint event
|
---|
| 727 | */
|
---|
| 728 | void QwtPlotCanvas::paintEvent( QPaintEvent *event )
|
---|
| 729 | {
|
---|
| 730 | QPainter painter( this );
|
---|
| 731 | painter.setClipRegion( event->region() );
|
---|
| 732 |
|
---|
| 733 | if ( testPaintAttribute( QwtPlotCanvas::BackingStore ) &&
|
---|
| 734 | d_data->backingStore != NULL )
|
---|
| 735 | {
|
---|
| 736 | QPixmap &bs = *d_data->backingStore;
|
---|
[9383] | 737 |
|
---|
| 738 | qreal pixelRatio = 1.0;
|
---|
| 739 |
|
---|
| 740 | #if QT_VERSION >= 0x050000
|
---|
| 741 | pixelRatio = bs.devicePixelRatio();
|
---|
| 742 | #endif
|
---|
| 743 |
|
---|
| 744 | if ( bs.size() != size() * pixelRatio )
|
---|
[4271] | 745 | {
|
---|
[8127] | 746 | bs = QwtPainter::backingStore( this, size() );
|
---|
[4271] | 747 |
|
---|
| 748 | if ( testAttribute(Qt::WA_StyledBackground) )
|
---|
| 749 | {
|
---|
| 750 | QPainter p( &bs );
|
---|
| 751 | qwtFillBackground( &p, this );
|
---|
| 752 | drawCanvas( &p, true );
|
---|
| 753 | }
|
---|
| 754 | else
|
---|
| 755 | {
|
---|
| 756 | QPainter p;
|
---|
| 757 | if ( d_data->borderRadius <= 0.0 )
|
---|
| 758 | {
|
---|
[8127] | 759 | QwtPainter::fillPixmap( this, bs );
|
---|
[4271] | 760 | p.begin( &bs );
|
---|
| 761 | drawCanvas( &p, false );
|
---|
| 762 | }
|
---|
| 763 | else
|
---|
| 764 | {
|
---|
| 765 | p.begin( &bs );
|
---|
| 766 | qwtFillBackground( &p, this );
|
---|
| 767 | drawCanvas( &p, true );
|
---|
| 768 | }
|
---|
| 769 |
|
---|
| 770 | if ( frameWidth() > 0 )
|
---|
| 771 | drawBorder( &p );
|
---|
| 772 | }
|
---|
| 773 | }
|
---|
| 774 |
|
---|
| 775 | painter.drawPixmap( 0, 0, *d_data->backingStore );
|
---|
| 776 | }
|
---|
| 777 | else
|
---|
| 778 | {
|
---|
| 779 | if ( testAttribute(Qt::WA_StyledBackground ) )
|
---|
| 780 | {
|
---|
| 781 | if ( testAttribute( Qt::WA_OpaquePaintEvent ) )
|
---|
| 782 | {
|
---|
| 783 | qwtFillBackground( &painter, this );
|
---|
| 784 | drawCanvas( &painter, true );
|
---|
| 785 | }
|
---|
| 786 | else
|
---|
| 787 | {
|
---|
| 788 | drawCanvas( &painter, false );
|
---|
| 789 | }
|
---|
| 790 | }
|
---|
| 791 | else
|
---|
| 792 | {
|
---|
| 793 | if ( testAttribute( Qt::WA_OpaquePaintEvent ) )
|
---|
| 794 | {
|
---|
| 795 | if ( autoFillBackground() )
|
---|
[8127] | 796 | {
|
---|
| 797 | qwtFillBackground( &painter, this );
|
---|
[4271] | 798 | qwtDrawBackground( &painter, this );
|
---|
[8127] | 799 | }
|
---|
[4271] | 800 | }
|
---|
[8127] | 801 | else
|
---|
| 802 | {
|
---|
| 803 | if ( borderRadius() > 0.0 )
|
---|
| 804 | {
|
---|
| 805 | QPainterPath clipPath;
|
---|
| 806 | clipPath.addRect( rect() );
|
---|
| 807 | clipPath = clipPath.subtracted( borderPath( rect() ) );
|
---|
[4271] | 808 |
|
---|
[8127] | 809 | painter.save();
|
---|
| 810 |
|
---|
| 811 | painter.setClipPath( clipPath, Qt::IntersectClip );
|
---|
| 812 | qwtFillBackground( &painter, this );
|
---|
| 813 | qwtDrawBackground( &painter, this );
|
---|
| 814 |
|
---|
| 815 | painter.restore();
|
---|
| 816 | }
|
---|
| 817 | }
|
---|
| 818 |
|
---|
[4271] | 819 | drawCanvas( &painter, false );
|
---|
| 820 |
|
---|
[9383] | 821 | if ( frameWidth() > 0 )
|
---|
[4271] | 822 | drawBorder( &painter );
|
---|
| 823 | }
|
---|
| 824 | }
|
---|
| 825 |
|
---|
| 826 | if ( hasFocus() && focusIndicator() == CanvasFocusIndicator )
|
---|
| 827 | drawFocusIndicator( &painter );
|
---|
| 828 | }
|
---|
| 829 |
|
---|
[9383] | 830 | void QwtPlotCanvas::drawCanvas( QPainter *painter, bool withBackground )
|
---|
[4271] | 831 | {
|
---|
| 832 | bool hackStyledBackground = false;
|
---|
| 833 |
|
---|
[9383] | 834 | if ( withBackground && testAttribute( Qt::WA_StyledBackground )
|
---|
[4271] | 835 | && testPaintAttribute( HackStyledBackground ) )
|
---|
| 836 | {
|
---|
| 837 | // Antialiasing rounded borders is done by
|
---|
[9383] | 838 | // inserting pixels with colors between the
|
---|
[4271] | 839 | // border color and the color on the canvas,
|
---|
| 840 | // When the border is painted before the plot items
|
---|
| 841 | // these colors are interpolated for the canvas
|
---|
| 842 | // and the plot items need to be clipped excluding
|
---|
| 843 | // the anialiased pixels. In situations, where
|
---|
| 844 | // the plot items fill the area at the rounded
|
---|
| 845 | // borders this is noticeable.
|
---|
| 846 | // The only way to avoid these annoying "artefacts"
|
---|
| 847 | // is to paint the border on top of the plot items.
|
---|
| 848 |
|
---|
| 849 | if ( d_data->styleSheet.hasBorder &&
|
---|
| 850 | !d_data->styleSheet.borderPath.isEmpty() )
|
---|
| 851 | {
|
---|
| 852 | // We have a border with at least one rounded corner
|
---|
| 853 | hackStyledBackground = true;
|
---|
| 854 | }
|
---|
| 855 | }
|
---|
| 856 |
|
---|
| 857 | if ( withBackground )
|
---|
| 858 | {
|
---|
| 859 | painter->save();
|
---|
| 860 |
|
---|
| 861 | if ( testAttribute( Qt::WA_StyledBackground ) )
|
---|
| 862 | {
|
---|
| 863 | if ( hackStyledBackground )
|
---|
| 864 | {
|
---|
| 865 | // paint background without border
|
---|
| 866 |
|
---|
| 867 | painter->setPen( Qt::NoPen );
|
---|
[9383] | 868 | painter->setBrush( d_data->styleSheet.background.brush );
|
---|
[4271] | 869 | painter->setBrushOrigin( d_data->styleSheet.background.origin );
|
---|
| 870 | painter->setClipPath( d_data->styleSheet.borderPath );
|
---|
| 871 | painter->drawRect( contentsRect() );
|
---|
| 872 | }
|
---|
| 873 | else
|
---|
| 874 | {
|
---|
| 875 | qwtDrawStyledBackground( this, painter );
|
---|
| 876 | }
|
---|
| 877 | }
|
---|
| 878 | else if ( autoFillBackground() )
|
---|
| 879 | {
|
---|
| 880 | painter->setPen( Qt::NoPen );
|
---|
| 881 | painter->setBrush( palette().brush( backgroundRole() ) );
|
---|
| 882 |
|
---|
[8127] | 883 | if ( d_data->borderRadius > 0.0 && ( rect() == frameRect() ) )
|
---|
[4271] | 884 | {
|
---|
| 885 | if ( frameWidth() > 0 )
|
---|
| 886 | {
|
---|
| 887 | painter->setClipPath( borderPath( rect() ) );
|
---|
| 888 | painter->drawRect( rect() );
|
---|
| 889 | }
|
---|
| 890 | else
|
---|
| 891 | {
|
---|
| 892 | painter->setRenderHint( QPainter::Antialiasing, true );
|
---|
| 893 | painter->drawPath( borderPath( rect() ) );
|
---|
| 894 | }
|
---|
| 895 | }
|
---|
| 896 | else
|
---|
| 897 | {
|
---|
[8127] | 898 | painter->drawRect( rect() );
|
---|
[4271] | 899 | }
|
---|
| 900 | }
|
---|
| 901 |
|
---|
| 902 | painter->restore();
|
---|
| 903 | }
|
---|
| 904 |
|
---|
| 905 | painter->save();
|
---|
| 906 |
|
---|
| 907 | if ( !d_data->styleSheet.borderPath.isEmpty() )
|
---|
| 908 | {
|
---|
[9383] | 909 | painter->setClipPath(
|
---|
[4271] | 910 | d_data->styleSheet.borderPath, Qt::IntersectClip );
|
---|
| 911 | }
|
---|
| 912 | else
|
---|
| 913 | {
|
---|
| 914 | if ( d_data->borderRadius > 0.0 )
|
---|
[8127] | 915 | painter->setClipPath( borderPath( frameRect() ), Qt::IntersectClip );
|
---|
[4271] | 916 | else
|
---|
| 917 | painter->setClipRect( contentsRect(), Qt::IntersectClip );
|
---|
| 918 | }
|
---|
| 919 |
|
---|
| 920 | plot()->drawCanvas( painter );
|
---|
| 921 |
|
---|
| 922 | painter->restore();
|
---|
| 923 |
|
---|
| 924 | if ( withBackground && hackStyledBackground )
|
---|
| 925 | {
|
---|
| 926 | // Now paint the border on top
|
---|
| 927 | QStyleOptionFrame opt;
|
---|
| 928 | opt.initFrom(this);
|
---|
| 929 | style()->drawPrimitive( QStyle::PE_Frame, &opt, painter, this);
|
---|
| 930 | }
|
---|
| 931 | }
|
---|
| 932 |
|
---|
| 933 | /*!
|
---|
| 934 | Draw the border of the plot canvas
|
---|
| 935 |
|
---|
| 936 | \param painter Painter
|
---|
[8127] | 937 | \sa setBorderRadius()
|
---|
[4271] | 938 | */
|
---|
| 939 | void QwtPlotCanvas::drawBorder( QPainter *painter )
|
---|
| 940 | {
|
---|
| 941 | if ( d_data->borderRadius > 0 )
|
---|
| 942 | {
|
---|
| 943 | if ( frameWidth() > 0 )
|
---|
| 944 | {
|
---|
[9383] | 945 | QwtPainter::drawRoundedFrame( painter, QRectF( frameRect() ),
|
---|
[4271] | 946 | d_data->borderRadius, d_data->borderRadius,
|
---|
| 947 | palette(), frameWidth(), frameStyle() );
|
---|
| 948 | }
|
---|
| 949 | }
|
---|
| 950 | else
|
---|
| 951 | {
|
---|
[8127] | 952 | #if QT_VERSION >= 0x040500
|
---|
| 953 | #if QT_VERSION < 0x050000
|
---|
| 954 | QStyleOptionFrameV3 opt;
|
---|
| 955 | #else
|
---|
| 956 | QStyleOptionFrame opt;
|
---|
| 957 | #endif
|
---|
| 958 | opt.init(this);
|
---|
| 959 |
|
---|
| 960 | int frameShape = frameStyle() & QFrame::Shape_Mask;
|
---|
| 961 | int frameShadow = frameStyle() & QFrame::Shadow_Mask;
|
---|
| 962 |
|
---|
| 963 | opt.frameShape = QFrame::Shape( int( opt.frameShape ) | frameShape );
|
---|
| 964 | #if 0
|
---|
| 965 | opt.rect = frameRect();
|
---|
| 966 | #endif
|
---|
| 967 |
|
---|
[9383] | 968 | switch (frameShape)
|
---|
[8127] | 969 | {
|
---|
| 970 | case QFrame::Box:
|
---|
| 971 | case QFrame::HLine:
|
---|
| 972 | case QFrame::VLine:
|
---|
| 973 | case QFrame::StyledPanel:
|
---|
| 974 | case QFrame::Panel:
|
---|
| 975 | {
|
---|
| 976 | opt.lineWidth = lineWidth();
|
---|
| 977 | opt.midLineWidth = midLineWidth();
|
---|
[9383] | 978 | break;
|
---|
[8127] | 979 | }
|
---|
[9383] | 980 | default:
|
---|
[8127] | 981 | {
|
---|
| 982 | opt.lineWidth = frameWidth();
|
---|
| 983 | break;
|
---|
| 984 | }
|
---|
| 985 | }
|
---|
[9383] | 986 |
|
---|
[8127] | 987 | if ( frameShadow == Sunken )
|
---|
| 988 | opt.state |= QStyle::State_Sunken;
|
---|
| 989 | else if ( frameShadow == Raised )
|
---|
| 990 | opt.state |= QStyle::State_Raised;
|
---|
| 991 |
|
---|
| 992 | style()->drawControl(QStyle::CE_ShapedFrame, &opt, painter, this);
|
---|
| 993 | #else
|
---|
[4271] | 994 | drawFrame( painter );
|
---|
[8127] | 995 | #endif
|
---|
[4271] | 996 | }
|
---|
| 997 | }
|
---|
| 998 |
|
---|
| 999 | /*!
|
---|
| 1000 | Resize event
|
---|
| 1001 | \param event Resize event
|
---|
| 1002 | */
|
---|
| 1003 | void QwtPlotCanvas::resizeEvent( QResizeEvent *event )
|
---|
| 1004 | {
|
---|
| 1005 | QFrame::resizeEvent( event );
|
---|
| 1006 | updateStyleSheetInfo();
|
---|
| 1007 | }
|
---|
| 1008 |
|
---|
| 1009 | /*!
|
---|
| 1010 | Draw the focus indication
|
---|
| 1011 | \param painter Painter
|
---|
| 1012 | */
|
---|
| 1013 | void QwtPlotCanvas::drawFocusIndicator( QPainter *painter )
|
---|
| 1014 | {
|
---|
| 1015 | const int margin = 1;
|
---|
| 1016 |
|
---|
| 1017 | QRect focusRect = contentsRect();
|
---|
| 1018 | focusRect.setRect( focusRect.x() + margin, focusRect.y() + margin,
|
---|
| 1019 | focusRect.width() - 2 * margin, focusRect.height() - 2 * margin );
|
---|
| 1020 |
|
---|
| 1021 | QwtPainter::drawFocusRect( painter, this, focusRect );
|
---|
| 1022 | }
|
---|
| 1023 |
|
---|
| 1024 | /*!
|
---|
| 1025 | Invalidate the paint cache and repaint the canvas
|
---|
| 1026 | \sa invalidatePaintCache()
|
---|
| 1027 | */
|
---|
| 1028 | void QwtPlotCanvas::replot()
|
---|
| 1029 | {
|
---|
| 1030 | invalidateBackingStore();
|
---|
| 1031 |
|
---|
| 1032 | if ( testPaintAttribute( QwtPlotCanvas::ImmediatePaint ) )
|
---|
| 1033 | repaint( contentsRect() );
|
---|
| 1034 | else
|
---|
| 1035 | update( contentsRect() );
|
---|
| 1036 | }
|
---|
| 1037 |
|
---|
[8127] | 1038 | //! Update the cached information about the current style sheet
|
---|
[4271] | 1039 | void QwtPlotCanvas::updateStyleSheetInfo()
|
---|
| 1040 | {
|
---|
| 1041 | if ( !testAttribute(Qt::WA_StyledBackground ) )
|
---|
| 1042 | return;
|
---|
| 1043 |
|
---|
| 1044 | QwtStyleSheetRecorder recorder( size() );
|
---|
[9383] | 1045 |
|
---|
[4271] | 1046 | QPainter painter( &recorder );
|
---|
[9383] | 1047 |
|
---|
[4271] | 1048 | QStyleOption opt;
|
---|
| 1049 | opt.initFrom(this);
|
---|
| 1050 | style()->drawPrimitive( QStyle::PE_Widget, &opt, &painter, this);
|
---|
[9383] | 1051 |
|
---|
[4271] | 1052 | painter.end();
|
---|
| 1053 |
|
---|
| 1054 | d_data->styleSheet.hasBorder = !recorder.border.rectList.isEmpty();
|
---|
| 1055 | d_data->styleSheet.cornerRects = recorder.clipRects;
|
---|
| 1056 |
|
---|
| 1057 | if ( recorder.background.path.isEmpty() )
|
---|
| 1058 | {
|
---|
| 1059 | if ( !recorder.border.rectList.isEmpty() )
|
---|
| 1060 | {
|
---|
[9383] | 1061 | d_data->styleSheet.borderPath =
|
---|
[4271] | 1062 | qwtCombinePathList( rect(), recorder.border.pathList );
|
---|
| 1063 | }
|
---|
| 1064 | }
|
---|
| 1065 | else
|
---|
| 1066 | {
|
---|
| 1067 | d_data->styleSheet.borderPath = recorder.background.path;
|
---|
| 1068 | d_data->styleSheet.background.brush = recorder.background.brush;
|
---|
| 1069 | d_data->styleSheet.background.origin = recorder.background.origin;
|
---|
| 1070 | }
|
---|
| 1071 | }
|
---|
| 1072 |
|
---|
| 1073 | /*!
|
---|
| 1074 | Calculate the painter path for a styled or rounded border
|
---|
| 1075 |
|
---|
| 1076 | When the canvas has no styled background or rounded borders
|
---|
| 1077 | the painter path is empty.
|
---|
| 1078 |
|
---|
| 1079 | \param rect Bounding rectangle of the canvas
|
---|
| 1080 | \return Painter path, that can be used for clipping
|
---|
| 1081 | */
|
---|
| 1082 | QPainterPath QwtPlotCanvas::borderPath( const QRect &rect ) const
|
---|
| 1083 | {
|
---|
| 1084 | if ( testAttribute(Qt::WA_StyledBackground ) )
|
---|
| 1085 | {
|
---|
| 1086 | QwtStyleSheetRecorder recorder( rect.size() );
|
---|
| 1087 |
|
---|
| 1088 | QPainter painter( &recorder );
|
---|
| 1089 |
|
---|
| 1090 | QStyleOption opt;
|
---|
| 1091 | opt.initFrom(this);
|
---|
| 1092 | opt.rect = rect;
|
---|
| 1093 | style()->drawPrimitive( QStyle::PE_Widget, &opt, &painter, this);
|
---|
| 1094 |
|
---|
| 1095 | painter.end();
|
---|
| 1096 |
|
---|
| 1097 | if ( !recorder.background.path.isEmpty() )
|
---|
| 1098 | return recorder.background.path;
|
---|
| 1099 |
|
---|
| 1100 | if ( !recorder.border.rectList.isEmpty() )
|
---|
| 1101 | return qwtCombinePathList( rect, recorder.border.pathList );
|
---|
| 1102 | }
|
---|
| 1103 | else if ( d_data->borderRadius > 0.0 )
|
---|
| 1104 | {
|
---|
| 1105 | double fw2 = frameWidth() * 0.5;
|
---|
| 1106 | QRectF r = QRectF(rect).adjusted( fw2, fw2, -fw2, -fw2 );
|
---|
| 1107 |
|
---|
| 1108 | QPainterPath path;
|
---|
| 1109 | path.addRoundedRect( r, d_data->borderRadius, d_data->borderRadius );
|
---|
| 1110 | return path;
|
---|
| 1111 | }
|
---|
[9383] | 1112 |
|
---|
[4271] | 1113 | return QPainterPath();
|
---|
| 1114 | }
|
---|