annotate layer/LinearColourScale.cpp @ 805:1d526ba11a24 warnfix_no_size_t

Remove size_t's and fix warnings in layer/
author Chris Cannam
date Tue, 17 Jun 2014 15:18:06 +0100
parents 1a1448f7beb2
children 3ca3b8fbbcee
rev   line source
Chris@699 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@699 2
Chris@699 3 /*
Chris@699 4 Sonic Visualiser
Chris@699 5 An audio file viewer and annotation editor.
Chris@699 6 Centre for Digital Music, Queen Mary, University of London.
Chris@699 7 This file copyright 2006-2013 Chris Cannam and QMUL.
Chris@699 8
Chris@699 9 This program is free software; you can redistribute it and/or
Chris@699 10 modify it under the terms of the GNU General Public License as
Chris@699 11 published by the Free Software Foundation; either version 2 of the
Chris@699 12 License, or (at your option) any later version. See the file
Chris@699 13 COPYING included with this distribution for more information.
Chris@699 14 */
Chris@699 15
Chris@699 16 #include "LinearColourScale.h"
Chris@699 17 #include "ColourScaleLayer.h"
Chris@699 18
Chris@699 19 #include <QPainter>
Chris@699 20
Chris@699 21 #include <cmath>
Chris@699 22
Chris@699 23 #include "view/View.h"
Chris@699 24
Chris@699 25 int
Chris@805 26 LinearColourScale::getWidth(View *,
Chris@699 27 QPainter &paint)
Chris@699 28 {
Chris@699 29 return paint.fontMetrics().width("-000.00") + 15;
Chris@699 30 }
Chris@699 31
Chris@699 32 void
Chris@699 33 LinearColourScale::paintVertical(View *v,
Chris@699 34 const ColourScaleLayer *layer,
Chris@699 35 QPainter &paint,
Chris@805 36 int /* x0 */,
Chris@699 37 float min,
Chris@699 38 float max)
Chris@699 39 {
Chris@699 40 int h = v->height();
Chris@699 41
Chris@699 42 int n = 10;
Chris@699 43
Chris@699 44 float val = min;
Chris@699 45 float inc = (max - val) / n;
Chris@699 46
Chris@699 47 char buffer[40];
Chris@699 48
Chris@699 49 int boxx = 5, boxy = 5;
Chris@699 50 if (layer->getScaleUnits() != "") {
Chris@699 51 boxy += paint.fontMetrics().height();
Chris@699 52 }
Chris@699 53 int boxw = 10, boxh = h - boxy - 5;
Chris@699 54
Chris@699 55 int tx = 5 + boxx + boxw;
Chris@699 56 paint.drawRect(boxx, boxy, boxw, boxh);
Chris@699 57
Chris@699 58 paint.save();
Chris@699 59 for (int y = 0; y < boxh; ++y) {
Chris@699 60 float val = ((boxh - y) * (max - min)) / boxh + min;
Chris@699 61 paint.setPen(layer->getColourForValue(v, val));
Chris@699 62 paint.drawLine(boxx + 1, y + boxy + 1, boxx + boxw, y + boxy + 1);
Chris@699 63 }
Chris@699 64 paint.restore();
Chris@699 65
Chris@805 66 // float round = 1.f;
Chris@699 67 int dp = 0;
Chris@699 68 if (inc > 0) {
Chris@699 69 int prec = trunc(log10f(inc));
Chris@699 70 prec -= 1;
Chris@699 71 if (prec < 0) dp = -prec;
Chris@805 72 // round = powf(10.f, prec);
Chris@805 73 //#ifdef DEBUG_TIME_VALUE_LAYER
Chris@805 74 // cerr << "inc = " << inc << ", round = " << round << ", dp = " << dp << endl;
Chris@805 75 //#endif
Chris@699 76 }
Chris@699 77
Chris@699 78 for (int i = 0; i < n; ++i) {
Chris@699 79
Chris@699 80 int y, ty;
Chris@699 81
Chris@699 82 y = boxy + int(boxh - ((val - min) * boxh) / (max - min));
Chris@699 83
Chris@699 84 ty = y - paint.fontMetrics().height() +
Chris@699 85 paint.fontMetrics().ascent() + 2;
Chris@699 86
Chris@699 87 sprintf(buffer, "%.*f", dp, val);
Chris@699 88 QString label = QString(buffer);
Chris@699 89
Chris@699 90 paint.drawLine(boxx + boxw - boxw/3, y, boxx + boxw, y);
Chris@699 91 paint.drawText(tx, ty, label);
Chris@699 92
Chris@699 93 val += inc;
Chris@699 94 }
Chris@699 95 }