qwt_round_scale_draw.cpp 8.36 KB
Newer Older
pixhawk's avatar
pixhawk committed
1 2 3 4
/* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
 * Qwt Widget Library
 * Copyright (C) 1997   Josef Wilgen
 * Copyright (C) 2002   Uwe Rathmann
5
 *
pixhawk's avatar
pixhawk committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 * 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 <math.h>
#include <qpen.h>
#include <qpainter.h>
#include <qfontmetrics.h>
#include "qwt_painter.h"
#include "qwt_scale_div.h"
#include "qwt_scale_map.h"
#include "qwt_round_scale_draw.h"

class QwtRoundScaleDraw::PrivateData
{
public:
    PrivateData():
        center(50, 50),
        radius(50),
        startAngle(-135 * 16),
28
        endAngle(135 * 16) {
pixhawk's avatar
pixhawk committed
29 30 31
    }

    QPoint center;
32
    int radius;
pixhawk's avatar
pixhawk committed
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88

    int startAngle;
    int endAngle;
};

/*!
  \brief Constructor

  The range of the scale is initialized to [0, 100],
  The center is set to (50, 50) with a radius of 50.
  The angle range is set to [-135, 135].
*/
QwtRoundScaleDraw::QwtRoundScaleDraw()
{
    d_data = new QwtRoundScaleDraw::PrivateData;

    setRadius(50);
    scaleMap().setPaintInterval(d_data->startAngle, d_data->endAngle);
}

//! Copy constructor
QwtRoundScaleDraw::QwtRoundScaleDraw(const QwtRoundScaleDraw &other):
    QwtAbstractScaleDraw(other)
{
    d_data = new QwtRoundScaleDraw::PrivateData(*other.d_data);
}


//! Destructor
QwtRoundScaleDraw::~QwtRoundScaleDraw()
{
    delete d_data;
}

//! Assignment operator
QwtRoundScaleDraw &QwtRoundScaleDraw::operator=(const QwtRoundScaleDraw &other)
{
    *(QwtAbstractScaleDraw*)this = (const QwtAbstractScaleDraw &)other;
    *d_data = *other.d_data;
    return *this;
}

/*!
  Change of radius the scale

  Radius is the radius of the backbone without ticks and labels.

  \param radius New Radius
  \sa moveCenter
*/
void QwtRoundScaleDraw::setRadius(int radius)
{
    d_data->radius = radius;
}

/*!
89
  Get the radius
pixhawk's avatar
pixhawk committed
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125

  Radius is the radius of the backbone without ticks and labels.

  \sa setRadius(), extent()
*/
int QwtRoundScaleDraw::radius() const
{
    return d_data->radius;
}

/*!
   Move the center of the scale draw, leaving the radius unchanged

   \param center New center
   \sa setRadius
*/
void QwtRoundScaleDraw::moveCenter(const QPoint &center)
{
    d_data->center = center;
}

//! Get the center of the scale
QPoint QwtRoundScaleDraw::center() const
{
    return d_data->center;
}

/*!
  \brief Adjust the baseline circle segment for round scales.

  The baseline will be drawn from min(angle1,angle2) to max(angle1, angle2).
  The default setting is [ -135, 135 ].
  An angle of 0 degrees corresponds to the 12 o'clock position,
  and positive angles count in a clockwise direction.
  \param angle1
  \param angle2 boundaries of the angle interval in degrees.
126
  \warning <ul>
pixhawk's avatar
pixhawk committed
127 128 129 130 131 132 133 134 135 136 137 138 139
  <li>The angle range is limited to [-360, 360] degrees. Angles exceeding
      this range will be clipped.
  <li>For angles more than 359 degrees above or below min(angle1, angle2),
      scale marks will not be drawn.
  <li>If you need a counterclockwise scale, use QwtScaleDiv::setRange
  </ul>
*/
void QwtRoundScaleDraw::setAngleRange(double angle1, double angle2)
{
    angle1 = qwtLim(angle1, -360.0, 360.0);
    angle2 = qwtLim(angle2, -360.0, 360.0);

    d_data->startAngle = qRound(angle1 * 16.0);
140 141 142
    d_data->endAngle = qRound(angle2 * 16.0);

    if (d_data->startAngle == d_data->endAngle) {
pixhawk's avatar
pixhawk committed
143 144 145
        d_data->startAngle -= 1;
        d_data->endAngle += 1;
    }
146

pixhawk's avatar
pixhawk committed
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
    scaleMap().setPaintInterval(d_data->startAngle, d_data->endAngle);
}

/*!
   Draws the label for a major scale tick

   \param painter Painter
   \param value Value

   \sa drawTick(), drawBackbone()
*/
void QwtRoundScaleDraw::drawLabel(QPainter *painter, double value) const
{
    const QwtText label = tickLabel(painter->font(), value);
    if ( label.isEmpty() )
162
        return;
pixhawk's avatar
pixhawk committed
163 164 165

    const int tval = map().transform(value);
    if ((tval > d_data->startAngle + 359 * 16)
166 167
            || (tval < d_data->startAngle - 359 * 16)) {
        return;
pixhawk's avatar
pixhawk committed
168 169 170 171
    }

    double radius = d_data->radius;
    if ( hasComponent(QwtAbstractScaleDraw::Ticks) ||
172
            hasComponent(QwtAbstractScaleDraw::Backbone) ) {
pixhawk's avatar
pixhawk committed
173 174 175 176 177 178 179 180 181 182
        radius += spacing();
    }

    if ( hasComponent(QwtAbstractScaleDraw::Ticks) )
        radius += majTickLength();

    const QSize sz = label.textSize(painter->font());
    const double arc = tval / 16.0 / 360.0 * 2 * M_PI;

    const int x = d_data->center.x() +
183
                  qRound((radius + sz.width() / 2.0) * sin(arc));
pixhawk's avatar
pixhawk committed
184
    const int y = d_data->center.y() -
185
                  qRound( (radius + sz.height() / 2.0) * cos(arc));
pixhawk's avatar
pixhawk committed
186 187

    const QRect r(x - sz.width() / 2, y - sz.height() / 2,
188
                  sz.width(), sz.height() );
pixhawk's avatar
pixhawk committed
189 190 191 192 193
    label.draw(painter, r);
}

/*!
   Draw a tick
194

pixhawk's avatar
pixhawk committed
195 196 197 198
   \param painter Painter
   \param value Value of the tick
   \param len Lenght of the tick

199
   \sa drawBackbone(), drawLabel()
pixhawk's avatar
pixhawk committed
200 201 202 203 204 205 206 207 208 209 210 211 212
*/
void QwtRoundScaleDraw::drawTick(QPainter *painter, double value, int len) const
{
    if ( len <= 0 )
        return;

    const int tval = map().transform(value);

    const int cx = d_data->center.x();
    const int cy = d_data->center.y();
    const int radius = d_data->radius;

    if ((tval <= d_data->startAngle + 359 * 16)
213
            || (tval >= d_data->startAngle - 359 * 16)) {
pixhawk's avatar
pixhawk committed
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
        const double arc = double(tval) / 16.0 * M_PI / 180.0;

        const double sinArc = sin(arc);
        const double cosArc = cos(arc);

        const int x1 = qRound( cx + radius * sinArc );
        const int x2 = qRound( cx + (radius + len) * sinArc );
        const int y1 = qRound( cy - radius * cosArc );
        const int y2 = qRound( cy - (radius + len) * cosArc );

        QwtPainter::drawLine(painter, x1, y1, x2, y2);
    }
}

/*!
   Draws the baseline of the scale
   \param painter Painter

   \sa drawTick(), drawLabel()
*/
void QwtRoundScaleDraw::drawBackbone(QPainter *painter) const
{
    const int a1 = qRound(qwtMin(map().p1(), map().p2()) - 90 * 16);
    const int a2 = qRound(qwtMax(map().p1(), map().p2()) - 90 * 16);

    const int radius = d_data->radius;
    const int x = d_data->center.x() - radius;
    const int y = d_data->center.y() - radius;

    painter->drawArc(x, y, 2 * radius, 2 * radius,
244
                     -a2, a2 - a1 + 1);           // counterclockwise
pixhawk's avatar
pixhawk committed
245 246 247 248 249 250
}

/*!
   Calculate the extent of the scale

   The extent is the distcance between the baseline to the outermost
251
   pixel of the scale draw. radius() + extent() is an upper limit
pixhawk's avatar
pixhawk committed
252 253 254 255 256 257 258 259 260 261 262 263 264 265
   for the radius of the bounding circle.

   \param pen Pen that is used for painting backbone and ticks
   \param font Font used for painting the labels

   \sa setMinimumExtent(), minimumExtent()
   \warning The implemented algo is not too smart and
            calculates only an upper limit, that might be a
            few pixels too large
*/
int QwtRoundScaleDraw::extent(const QPen &pen, const QFont &font) const
{
    int d = 0;

266
    if ( hasComponent(QwtAbstractScaleDraw::Labels) ) {
pixhawk's avatar
pixhawk committed
267 268
        const QwtScaleDiv &sd = scaleDiv();
        const QwtValueList &ticks = sd.ticks(QwtScaleDiv::MajorTick);
269
        for (uint i = 0; i < (uint)ticks.count(); i++) {
pixhawk's avatar
pixhawk committed
270 271 272 273 274 275 276
            const double value = ticks[i];
            if ( !sd.contains(value) )
                continue;

            const QwtText label = tickLabel(font, value);
            if ( label.isEmpty() )
                continue;
277

pixhawk's avatar
pixhawk committed
278 279
            const int tval = map().transform(value);
            if ((tval < d_data->startAngle + 360 * 16)
280
                    && (tval > d_data->startAngle - 360 * 16)) {
pixhawk's avatar
pixhawk committed
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
                const double arc = tval / 16.0 / 360.0 * 2 * M_PI;

                const QSize sz = label.textSize(font);
                const double off = qwtMax(sz.width(), sz.height());

                double x = off * sin(arc);
                double y = off * cos(arc);

                const int dist = (int)ceil(sqrt(x * x + y * y) + 1 );
                if ( dist > d )
                    d = dist;
            }
        }
    }

296
    if ( hasComponent(QwtAbstractScaleDraw::Ticks) ) {
pixhawk's avatar
pixhawk committed
297 298 299
        d += majTickLength();
    }

300
    if ( hasComponent(QwtAbstractScaleDraw::Backbone) ) {
pixhawk's avatar
pixhawk committed
301 302 303 304 305
        const int pw = qwtMax( 1, pen.width() );  // penwidth can be zero
        d += pw;
    }

    if ( hasComponent(QwtAbstractScaleDraw::Labels) &&
306 307
            ( hasComponent(QwtAbstractScaleDraw::Ticks) ||
              hasComponent(QwtAbstractScaleDraw::Backbone) ) ) {
pixhawk's avatar
pixhawk committed
308 309 310 311 312 313 314
        d += spacing();
    }

    d = qwtMax(d, minimumExtent());

    return d;
}