qwt_painter.cpp 18.1 KB
Newer Older
pixhawk's avatar
pixhawk committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
/* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
 * Qwt Widget Library
 * Copyright (C) 1997   Josef Wilgen
 * Copyright (C) 2002   Uwe Rathmann
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the Qwt License, Version 1.0
 *****************************************************************************/

// vim: expandtab

#include <qwindowdefs.h>
#include <qwidget.h>
#include <qrect.h>
#include <qpainter.h>
#include <qpalette.h>
#include <qpaintdevice.h>
#include <qpixmap.h>
#include <qstyle.h>
#if QT_VERSION < 0x040000
#include <qsimplerichtext.h>
#else
#include <qtextdocument.h>
#include <qabstracttextdocumentlayout.h>
#include <qstyleoption.h>
#include <qpaintengine.h>
#endif

#include "qwt_clipper.h"
#include "qwt_math.h"
#include "qwt_color_map.h"
#include "qwt_scale_map.h"
#include "qwt_painter.h"

QwtMetricsMap QwtPainter::d_metricsMap;

#if defined(Q_WS_X11)
bool QwtPainter::d_deviceClipping = true;
#else
bool QwtPainter::d_deviceClipping = false;
#endif

#if QT_VERSION < 0x040000
bool QwtPainter::d_SVGMode = false;
#endif

static inline bool needDeviceClipping(
    const QPainter *painter, bool deviceClipping)
{
50 51 52
    return deviceClipping &&
           (painter->device()->devType() == QInternal::Widget ||
            painter->device()->devType() == QInternal::Pixmap );
pixhawk's avatar
pixhawk committed
53 54 55
}

/*!
56
  \brief En/Disable device clipping.
pixhawk's avatar
pixhawk committed
57

58
  On X11 the default for device clipping is enabled,
pixhawk's avatar
pixhawk committed
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
  otherwise it is disabled.
  \sa QwtPainter::deviceClipping()
*/
void QwtPainter::setDeviceClipping(bool enable)
{
    d_deviceClipping = enable;
}

/*!
  Returns whether device clipping is enabled. On X11 the default
  is enabled, otherwise it is disabled.
  \sa QwtPainter::setDeviceClipping()
*/

bool QwtPainter::deviceClipping()
{
    return d_deviceClipping;
}

/*!
  Returns rect for device clipping
  \sa QwtPainter::setDeviceClipping()
*/
const QRect &QwtPainter::deviceClipRect()
{
    static QRect clip;

86
    if ( !clip.isValid() ) {
pixhawk's avatar
pixhawk committed
87
        clip.setCoords(QWT_COORD_MIN, QWT_COORD_MIN,
88
                       QWT_COORD_MAX, QWT_COORD_MAX);
pixhawk's avatar
pixhawk committed
89 90 91 92 93 94 95 96 97 98
    }
    return clip;
}

//! Clip a point array
QwtPolygon QwtPainter::clip(const QwtPolygon &pa)
{
    return QwtClipper::clipPolygon(deviceClipRect(), pa);
}

99
#if QT_VERSION < 0x040000
pixhawk's avatar
pixhawk committed
100 101

/*!
102
  \brief En/Disable SVG mode.
pixhawk's avatar
pixhawk committed
103 104

  When saving a QPicture to a SVG some texts are misaligned.
105
  In SVGMode QwtPainter tries to fix them.
pixhawk's avatar
pixhawk committed
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132

  \sa QwtPainter::isSVGMode()
  \note A QPicture that is created in SVG mode and saved to the
        native format, will be misaligned. Also it is not possible to
        reload and play a SVG document, that was created in SVG mode.
*/
void QwtPainter::setSVGMode(bool on)
{
    d_SVGMode = on;
}

bool QwtPainter::isSVGMode()
{
    return d_SVGMode;
}

#endif // QT_VERSION < 0x040000

/*!
  Scale all QwtPainter drawing operations using the ratio
  QwtPaintMetrics(from).logicalDpiX() / QwtPaintMetrics(to).logicalDpiX()
  and QwtPaintMetrics(from).logicalDpiY() / QwtPaintMetrics(to).logicalDpiY()

  \sa QwtPainter::resetScaleMetrics(), QwtPainter::scaleMetricsX,
        QwtPainter::scaleMetricsY()
*/
void QwtPainter::setMetricsMap(const QPaintDevice *layout,
133
                               const QPaintDevice *device)
pixhawk's avatar
pixhawk committed
134 135 136 137
{
    d_metricsMap.setMetrics(layout, device);
}

138 139
/*!
  Change the metrics map
pixhawk's avatar
pixhawk committed
140 141 142 143 144 145 146
  \sa QwtPainter::resetMetricsMap, QwtPainter::metricsMap
*/
void QwtPainter::setMetricsMap(const QwtMetricsMap &map)
{
    d_metricsMap = map;
}

147
/*!
pixhawk's avatar
pixhawk committed
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
   Reset the metrics map to the ratio 1:1
   \sa QwtPainter::setMetricsMap, QwtPainter::resetMetricsMap
*/
void QwtPainter::resetMetricsMap()
{
    d_metricsMap = QwtMetricsMap();
}

/*!
  \return Metrics map
*/
const QwtMetricsMap &QwtPainter::metricsMap()
{
    return d_metricsMap;
}

/*!
    Wrapper for QPainter::setClipRect()
*/
void QwtPainter::setClipRect(QPainter *painter, const QRect &rect)
{
    painter->setClipRect(d_metricsMap.layoutToDevice(rect, painter));
}

/*!
    Wrapper for QPainter::drawRect()
*/
175
void QwtPainter::drawRect(QPainter *painter, int x, int y, int w, int h)
pixhawk's avatar
pixhawk committed
176 177 178 179 180 181 182
{
    drawRect(painter, QRect(x, y, w, h));
}

/*!
    Wrapper for QPainter::drawRect()
*/
183
void QwtPainter::drawRect(QPainter *painter, const QRect &rect)
pixhawk's avatar
pixhawk committed
184 185 186 187 188 189 190 191 192
{
    const QRect r = d_metricsMap.layoutToDevice(rect, painter);

    QRect clipRect;

    const bool deviceClipping = needDeviceClipping(painter, d_deviceClipping);
    if ( deviceClipping )
        clipRect = deviceClipRect();

193
    if ( clipRect.isValid() ) {
pixhawk's avatar
pixhawk committed
194 195 196
        if ( !clipRect.intersects(r) )
            return;

197
        if ( !clipRect.contains(r) ) {
pixhawk's avatar
pixhawk committed
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
            fillRect(painter, r & clipRect, painter->brush());

            int pw = painter->pen().width();
            pw = pw % 2 + pw / 2;

            QwtPolygon pa(5);
            pa.setPoint(0, r.left(), r.top());
            pa.setPoint(1, r.right() - pw, r.top());
            pa.setPoint(2, r.right() - pw, r.bottom() - pw);
            pa.setPoint(3, r.left(), r.bottom() - pw);
            pa.setPoint(4, r.left(), r.top());

            painter->save();
            painter->setBrush(Qt::NoBrush);
            drawPolyline(painter, pa);
            painter->restore();

            return;
        }
    }

    painter->drawRect(r);
}

/*!
    Wrapper for QPainter::fillRect()
*/
225 226
void QwtPainter::fillRect(QPainter *painter,
                          const QRect &rect, const QBrush &brush)
pixhawk's avatar
pixhawk committed
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
{
    if ( !rect.isValid() )
        return;

    const bool deviceClipping = needDeviceClipping(painter, d_deviceClipping);

    QRect clipRect;
#if QT_VERSION >= 0x040000

    /*
      Performance of Qt4 is horrible for non trivial brushs. Without
      clipping expect minutes or hours for repainting large rects
      (might result from zooming)
    */

    clipRect = painter->window();
    if ( painter->hasClipping() )
        clipRect &= painter->clipRegion().boundingRect();
    if ( deviceClipping )
        clipRect &= deviceClipRect();
#else
    if ( deviceClipping )
        clipRect = deviceClipRect();
#endif

    QRect r = d_metricsMap.layoutToDevice(rect, painter);
    if ( clipRect.isValid() )
        r = r.intersect(clipRect);

    if ( r.isValid() )
        painter->fillRect(r, brush);
}

/*!
    Wrapper for QPainter::drawPie()
*/
263 264
void QwtPainter::drawPie(QPainter *painter, const QRect &rect,
                         int a, int alen)
pixhawk's avatar
pixhawk committed
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
{
    QRect r = d_metricsMap.layoutToDevice(rect, painter);

    const bool deviceClipping = needDeviceClipping(painter, d_deviceClipping);
    if ( deviceClipping && !deviceClipRect().contains(rect) )
        return;

    painter->drawPie(r, a, alen);
}

/*!
    Wrapper for QPainter::drawEllipse()
*/
void QwtPainter::drawEllipse(QPainter *painter, const QRect &rect)
{
    QRect r = d_metricsMap.layoutToDevice(rect, painter);

    const bool deviceClipping = needDeviceClipping(painter, d_deviceClipping);

    if ( deviceClipping && !deviceClipRect().contains(rect) )
        return;

#if QT_VERSION >= 0x040000
    if ( painter->pen().style() != Qt::NoPen &&
289
            painter->pen().color().isValid() ) {
pixhawk's avatar
pixhawk committed
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
        // Qt4 adds the pen to the rect, Qt3 not.
        int pw = painter->pen().width();
        if ( pw == 0 )
            pw = 1;

        r.setWidth(r.width() - pw);
        r.setHeight(r.height() - pw);
    }
#endif

    painter->drawEllipse(r);
}

/*!
    Wrapper for QPainter::drawText()
*/
306 307
void QwtPainter::drawText(QPainter *painter, int x, int y,
                          const QString &text)
pixhawk's avatar
pixhawk committed
308 309 310 311 312 313 314
{
    drawText(painter, QPoint(x, y), text);
}

/*!
    Wrapper for QPainter::drawText()
*/
315 316
void QwtPainter::drawText(QPainter *painter, const QPoint &pos,
                          const QString &text)
pixhawk's avatar
pixhawk committed
317 318 319 320 321 322 323 324 325 326 327 328 329 330
{
    const QPoint p = d_metricsMap.layoutToDevice(pos, painter);

    const bool deviceClipping = needDeviceClipping(painter, d_deviceClipping);

    if ( deviceClipping && !deviceClipRect().contains(p) )
        return;

    painter->drawText(p, text);
}

/*!
    Wrapper for QPainter::drawText()
*/
331 332
void QwtPainter::drawText(QPainter *painter, int x, int y, int w, int h,
                          int flags, const QString &text)
pixhawk's avatar
pixhawk committed
333 334 335 336 337 338 339
{
    drawText(painter, QRect(x, y, w, h), flags, text);
}

/*!
    Wrapper for QPainter::drawText()
*/
340 341
void QwtPainter::drawText(QPainter *painter, const QRect &rect,
                          int flags, const QString &text)
pixhawk's avatar
pixhawk committed
342 343 344 345
{
    QRect textRect = d_metricsMap.layoutToDevice(rect, painter);
#if QT_VERSION < 0x040000
    if ( d_SVGMode &&
346 347
            ( flags == 0 || flags & Qt::AlignVCenter )
            && painter->device()->devType() == QInternal::Picture ) {
pixhawk's avatar
pixhawk committed
348 349
        /*
            Qt3 misalignes texts, when saving a text
350
            to a SVG image.
pixhawk's avatar
pixhawk committed
351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
         */
        textRect.setY(textRect.y() - painter->fontMetrics().height() / 4);
    }
#endif
    painter->drawText(textRect, flags, text);
}

#ifndef QT_NO_RICHTEXT

/*!
  Wrapper for QSimpleRichText::draw()
*/
#if QT_VERSION < 0x040000

void QwtPainter::drawSimpleRichText(QPainter *painter, const QRect &rect,
366
                                    int flags, QSimpleRichText &text)
pixhawk's avatar
pixhawk committed
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
{
    QColorGroup cg;
    cg.setColor(QColorGroup::Text, painter->pen().color());

    const QRect scaledRect = d_metricsMap.layoutToDevice(rect, painter);

    text.setWidth(painter, scaledRect.width());

    // QSimpleRichText is Qt::AlignTop by default

    int y = scaledRect.y();
    if (flags & Qt::AlignBottom)
        y += (scaledRect.height() - text.height());
    else if (flags & Qt::AlignVCenter)
        y += (scaledRect.height() - text.height())/2;

    text.draw(painter, scaledRect.x(), y, scaledRect, cg);
}
#else
void QwtPainter::drawSimpleRichText(QPainter *painter, const QRect &rect,
387
                                    int flags, QTextDocument &text)
pixhawk's avatar
pixhawk committed
388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
{
    const QRect scaledRect = d_metricsMap.layoutToDevice(rect, painter);
    text.setPageSize(QSize(scaledRect.width(), QWIDGETSIZE_MAX));

    QAbstractTextDocumentLayout* layout = text.documentLayout();

    const int height = qRound(layout->documentSize().height());
    int y = scaledRect.y();
    if (flags & Qt::AlignBottom)
        y += (scaledRect.height() - height);
    else if (flags & Qt::AlignVCenter)
        y += (scaledRect.height() - height)/2;

    QAbstractTextDocumentLayout::PaintContext context;
    context.palette.setColor(QPalette::Text, painter->pen().color());

    painter->save();

    painter->translate(scaledRect.x(), y);
    layout->draw(painter, context);

    painter->restore();
}
#endif

#endif // !QT_NO_RICHTEXT


/*!
  Wrapper for QPainter::drawLine()
*/
void QwtPainter::drawLine(QPainter *painter, int x1, int y1, int x2, int y2)
{
    const bool deviceClipping = needDeviceClipping(painter, d_deviceClipping);

423 424
    if ( deviceClipping &&
            !(deviceClipRect().contains(x1, y1) && deviceClipRect().contains(x2, y2)) ) {
pixhawk's avatar
pixhawk committed
425 426 427 428 429 430 431
        QwtPolygon pa(2);
        pa.setPoint(0, x1, y1);
        pa.setPoint(1, x2, y2);
        drawPolyline(painter, pa);
        return;
    }

432
    if ( d_metricsMap.isIdentity() ) {
pixhawk's avatar
pixhawk committed
433 434 435 436 437 438 439 440 441 442 443 444 445
#if QT_VERSION >= 0x030200 && QT_VERSION < 0x040000
        if ( !painter->device()->isExtDev() )
#endif
        {
            painter->drawLine(x1, y1, x2, y2);
            return;
        }
    }

    const QPoint p1 = d_metricsMap.layoutToDevice(QPoint(x1, y1));
    const QPoint p2 = d_metricsMap.layoutToDevice(QPoint(x2, y2));

#if QT_VERSION >= 0x030200 && QT_VERSION < 0x040000
446 447
    if ( painter->device()->isExtDev() ) {
        // Strange: the postscript driver of QPrinter adds an offset
pixhawk's avatar
pixhawk committed
448 449 450 451 452 453 454
        // of 0.5 to the start/endpoint when using drawLine, but not
        // for lines painted with drawLineSegments.

        QwtPolygon pa(2);
        pa.setPoint(0, p1);
        pa.setPoint(1, p2);
        painter->drawLineSegments(pa);
455
    } else
pixhawk's avatar
pixhawk committed
456 457 458 459 460 461 462 463 464 465 466 467 468 469
        painter->drawLine(p1, p2);
#else
    painter->drawLine(p1, p2);
#endif
}

/*!
  Wrapper for QPainter::drawPolygon()
*/
void QwtPainter::drawPolygon(QPainter *painter, const QwtPolygon &pa)
{
    const bool deviceClipping = needDeviceClipping(painter, d_deviceClipping);

    QwtPolygon cpa = d_metricsMap.layoutToDevice(pa);
470
    if ( deviceClipping ) {
pixhawk's avatar
pixhawk committed
471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491
#ifdef __GNUC__
#endif
        cpa = clip(cpa);
    }
    painter->drawPolygon(cpa);
}

/*!
    Wrapper for QPainter::drawPolyline()
*/
void QwtPainter::drawPolyline(QPainter *painter, const QwtPolygon &pa)
{
    const bool deviceClipping = needDeviceClipping(painter, d_deviceClipping);

    QwtPolygon cpa = d_metricsMap.layoutToDevice(pa);
    if ( deviceClipping )
        cpa = clip(cpa);

#if QT_VERSION >= 0x040000 && QT_VERSION < 0x040400
    bool doSplit = false;
    if ( painter->paintEngine()->type() == QPaintEngine::Raster &&
492
            painter->pen().width() >= 2 ) {
pixhawk's avatar
pixhawk committed
493 494 495 496 497 498 499 500 501
        /*
            The raster paint engine seems to use some algo with O(n*n).
            ( Qt 4.3 is better than Qt 4.2, but remains unacceptable)
            To work around this problem, we have to split the polygon into
            smaller pieces.
         */
        doSplit = true;
    }

502
    if ( doSplit ) {
pixhawk's avatar
pixhawk committed
503 504 505 506
        const int numPoints = cpa.size();
        const QPoint *points = cpa.data();

        const int splitSize = 20;
507
        for ( int i = 0; i < numPoints; i += splitSize ) {
pixhawk's avatar
pixhawk committed
508 509 510
            const int n = qwtMin(splitSize + 1, cpa.size() - i);
            painter->drawPolyline(points + i, n);
        }
511
    } else
pixhawk's avatar
pixhawk committed
512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
#endif
        painter->drawPolyline(cpa);
}

/*!
    Wrapper for QPainter::drawPoint()
*/

void QwtPainter::drawPoint(QPainter *painter, int x, int y)
{
    const bool deviceClipping = needDeviceClipping(painter, d_deviceClipping);

    const QPoint pos = d_metricsMap.layoutToDevice(QPoint(x, y));

    if ( deviceClipping && !deviceClipRect().contains(pos) )
        return;

    painter->drawPoint(pos);
}

532 533
void QwtPainter::drawColoredArc(QPainter *painter, const QRect &rect,
                                int peak, int arc, int interval, const QColor &c1, const QColor &c2)
pixhawk's avatar
pixhawk committed
534 535 536 537 538 539 540 541 542 543 544
{
    int h1, s1, v1;
    int h2, s2, v2;

#if QT_VERSION < 0x040000
    c1.hsv(&h1, &s1, &v1);
    c2.hsv(&h2, &s2, &v2);
#else
    c1.getHsv(&h1, &s1, &v1);
    c2.getHsv(&h2, &s2, &v2);
#endif
545

pixhawk's avatar
pixhawk committed
546
    arc /= 2;
547
    for ( int angle = -arc; angle < arc; angle += interval) {
pixhawk's avatar
pixhawk committed
548 549 550 551 552
        double ratio;
        if ( angle >= 0 )
            ratio = 1.0 - angle / double(arc);
        else
            ratio = 1.0 + angle / double(arc);
553

pixhawk's avatar
pixhawk committed
554 555 556

        QColor c;
        c.setHsv( h1 + qRound(ratio * (h2 - h1)),
557 558
                  s1 + qRound(ratio * (s2 - s1)),
                  v1 + qRound(ratio * (v2 - v1)) );
pixhawk's avatar
pixhawk committed
559 560 561 562 563 564 565 566 567 568 569 570

        painter->setPen(QPen(c, painter->pen().width()));
        painter->drawArc(rect, (peak + angle) * 16, interval * 16);
    }
}

void QwtPainter::drawFocusRect(QPainter *painter, QWidget *widget)
{
    drawFocusRect(painter, widget, widget->rect());
}

void QwtPainter::drawFocusRect(QPainter *painter, QWidget *widget,
571
                               const QRect &rect)
pixhawk's avatar
pixhawk committed
572 573
{
#if QT_VERSION < 0x040000
574 575
    widget->style().drawPrimitive(QStyle::PE_FocusRect, painter,
                                  rect, widget->colorGroup());
pixhawk's avatar
pixhawk committed
576
#else
577 578 579 580
    QStyleOptionFocusRect opt;
    opt.init(widget);
    opt.rect = rect;
    opt.state |= QStyle::State_HasFocus;
pixhawk's avatar
pixhawk committed
581

582 583
    widget->style()->drawPrimitive(QStyle::PE_FrameFocusRect,
                                   &opt, painter, widget);
pixhawk's avatar
pixhawk committed
584 585 586 587 588 589 590
#endif

}

//!  Draw a round frame
#if QT_VERSION < 0x040000
void QwtPainter::drawRoundFrame(QPainter *painter, const QRect &rect,
591
                                int width, const QColorGroup &cg, bool sunken)
pixhawk's avatar
pixhawk committed
592 593
#else
void QwtPainter::drawRoundFrame(QPainter *painter, const QRect &rect,
594
                                int width, const QPalette &palette, bool sunken)
pixhawk's avatar
pixhawk committed
595 596 597 598 599 600
#endif
{

#if QT_VERSION < 0x040000
    QColor c0 = cg.mid();
    QColor c1, c2;
601
    if ( sunken ) {
pixhawk's avatar
pixhawk committed
602 603
        c1 = cg.dark();
        c2 = cg.light();
604
    } else {
pixhawk's avatar
pixhawk committed
605 606 607 608 609 610
        c1 = cg.light();
        c2 = cg.dark();
    }
#else
    QColor c0 = palette.color(QPalette::Mid);
    QColor c1, c2;
611
    if ( sunken ) {
pixhawk's avatar
pixhawk committed
612 613
        c1 = palette.color(QPalette::Dark);
        c2 = palette.color(QPalette::Light);
614
    } else {
pixhawk's avatar
pixhawk committed
615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632
        c1 = palette.color(QPalette::Light);
        c2 = palette.color(QPalette::Dark);
    }
#endif

    painter->setPen(QPen(c0, width));
    painter->drawArc(rect, 0, 360 * 16); // full

    const int peak = 150;
    const int interval = 2;

    if ( c0 != c1 )
        drawColoredArc(painter, rect, peak, 160, interval, c0, c1);
    if ( c0 != c2 )
        drawColoredArc(painter, rect, peak + 180, 120, interval, c0, c2);
}

void QwtPainter::drawColorBar(QPainter *painter,
633 634 635
                              const QwtColorMap &colorMap, const QwtDoubleInterval &interval,
                              const QwtScaleMap &scaleMap, Qt::Orientation orientation,
                              const QRect &rect)
pixhawk's avatar
pixhawk committed
636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652
{
#if QT_VERSION < 0x040000
    QValueVector<QRgb> colorTable;
#else
    QVector<QRgb> colorTable;
#endif
    if ( colorMap.format() == QwtColorMap::Indexed )
        colorTable = colorMap.colorTable(interval);

    QColor c;

    const QRect devRect = d_metricsMap.layoutToDevice(rect);

    /*
      We paint to a pixmap first to have something scalable for printing
      ( f.e. in a Pdf document )
     */
653

pixhawk's avatar
pixhawk committed
654 655 656 657
    QPixmap pixmap(devRect.size());
    QPainter pmPainter(&pixmap);
    pmPainter.translate(-devRect.x(), -devRect.y());

658
    if ( orientation == Qt::Horizontal ) {
pixhawk's avatar
pixhawk committed
659 660 661
        QwtScaleMap sMap = scaleMap;
        sMap.setPaintInterval(devRect.left(), devRect.right());

662
        for ( int x = devRect.left(); x <= devRect.right(); x++ ) {
pixhawk's avatar
pixhawk committed
663 664 665 666 667 668 669 670 671 672
            const double value = sMap.invTransform(x);

            if ( colorMap.format() == QwtColorMap::RGB )
                c.setRgb(colorMap.rgb(interval, value));
            else
                c = colorTable[colorMap.colorIndex(interval, value)];

            pmPainter.setPen(c);
            pmPainter.drawLine(x, devRect.top(), x, devRect.bottom());
        }
673
    } else { // Vertical
pixhawk's avatar
pixhawk committed
674 675 676
        QwtScaleMap sMap = scaleMap;
        sMap.setPaintInterval(devRect.bottom(), devRect.top());

677
        for ( int y = devRect.top(); y <= devRect.bottom(); y++ ) {
pixhawk's avatar
pixhawk committed
678 679 680 681 682 683 684 685 686 687 688 689 690 691
            const double value = sMap.invTransform(y);

            if ( colorMap.format() == QwtColorMap::RGB )
                c.setRgb(colorMap.rgb(interval, value));
            else
                c = colorTable[colorMap.colorIndex(interval, value)];

            pmPainter.setPen(c);
            pmPainter.drawLine(devRect.left(), y, devRect.right(), y);
        }
    }
    pmPainter.end();
    painter->drawPixmap(devRect, pixmap);
}