summaryrefslogtreecommitdiff
path: root/muse2/muse/widgets/verticalmeter.cpp
blob: b8524d3388a77f8080c863bc5a2db8f4670bdea5 (plain)
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
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
89
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
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
225
226
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
//=========================================================
//  MusE
//  Linux Music Editor
//  $Id: meter.cpp,v 1.4.2.2 2009/05/03 04:14:00 terminator356 Exp $
//  redesigned by oget on 2011/08/15
//
//  (C) Copyright 2000 Werner Schweer (ws@seh.de)
//
//  This program is free software; you can redistribute it and/or
//  modify it under the terms of the GNU General Public License
//  as published by the Free Software Foundation; version 2 of
//  the License, or (at your option) any later version.
//
//  This program is distributed in the hope that it will be useful,
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//  GNU General Public License for more details.
//
//  You should have received a copy of the GNU General Public License
//  along with this program; if not, write to the Free Software
//  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
//
//=========================================================

#include <cmath>

#include <QMouseEvent>
#include <QPainter>
#include <QResizeEvent>

#include "verticalmeter.h"
#include "gconfig.h"
#include "fastlog.h"
#include "mmath.h"
#include "utils.h"

namespace MusEGui {

//---------------------------------------------------------
//   VerticalMeter
//---------------------------------------------------------

VerticalMeter::VerticalMeter(QWidget* parent, MeterType type)
   : Meter(parent, type) //Qt::WNoAutoErase
      {
      setBackgroundRole(QPalette::NoRole);
      setAttribute(Qt::WA_NoSystemBackground);
      setAttribute(Qt::WA_StaticContents);
      // This is absolutely required for speed! Otherwise painfully slow because we get 
      //  full rect paint events even on small scrolls! See help on QPainter::scroll().
      // Commented out for now. Orcan 20110911
      //setAttribute(Qt::WA_OpaquePaintEvent);
      
      mtype = type;
      overflow    = false;
      val         = 0.0;
      maxVal      = 0.0;
      minScale    = mtype == DBMeter ? MusEGlobal::config.minMeter : 0.0;      // min value in dB or int
      maxScale    = mtype == DBMeter ? 10.0 : 127.0;
      yellowScale = -10;
      redScale    = 0;
      xrad = 4;
      yrad = 4;

      setLineWidth(0);
      setMidLineWidth(0);
      }


//---------------------------------------------------------
//   setVal
//---------------------------------------------------------

void VerticalMeter::setVal(double v) //, double max, bool ovl)
      {
      //overflow = ovl;
      bool ud = false;

      if(mtype == DBMeter)
      {
        double minScaleLin = pow(10.0, minScale/20.0);
        if((v >= minScaleLin && val != v) || val >= minScaleLin)
        {
          val = v;
          ud = true;
        }
      }
      else
      {
        if(val != v)
        {
          val = v;
          ud = true;
        }
      }

//      if(maxVal != max)
//      {
//        maxVal = max;
//        ud = true;
//      }

      if(ud)
        update();
    }
//---------------------------------------------------------
//   resetPeaks
//    reset peak and overflow indicator
//---------------------------------------------------------

void VerticalMeter::resetPeaks()
      {
      maxVal   = val;
      overflow = val > 0.0;
      update();
      }

//---------------------------------------------------------
//   setRange
//---------------------------------------------------------

void VerticalMeter::setRange(double min, double max)
      {
      minScale = min;
      maxScale = max;
      update();
      }

//---------------------------------------------------------
//   paintEvent
//---------------------------------------------------------

void VerticalMeter::paintEvent(QPaintEvent* /*ev*/)
      {
      // TODO: Could make better use of event rectangle, for speed.
      
      QPainter p(this);
      p.setRenderHint(QPainter::Antialiasing);
      
      double range = maxScale - minScale;

      int fw = frameWidth();
      int w  = width() - 2*fw;
      int h  = height() - 2*fw;

      /*
      QRect rect = ev->rect();
      int w = rect.width() - 2*fw;
      int h = rect.height() - 2*fw;
      */
      int xv;


      if(mtype == DBMeter) 
        xv = int(((maxScale - (MusECore::fast_log10(val) * 20.0)) * w)/range);
      else {
        xv = int(((maxScale - val) * w)/range);
      }
      
      if(xv > w)
          xv = w;
      
      // Draw the red, green, and yellow sections.
      drawVU(p, w, h, xv);
      
      // Draw the peak white line.
      /*
      int xcenter;
      if(mtype == DBMeter) 
        xcenter = maxVal == 0 ? 0 : int(((maxScale - (MusECore::fast_log10(0) * 20.0)) * w)/range);
      else
        xcenter = maxVal == 0 ? 0 : int(((maxVal) * w)/range);
      p.setPen(peak_color);
      p.drawLine(xcenter, 0, xcenter, h);
      */

      // Draw the transparent layer on top of everything to give a 3d look
      QPainterPath round_path = roundedPath(0, 0, w, h,
                                            xrad, yrad,
                                            (MusECore::Corner) (MusECore::UpperLeft | MusECore::UpperRight | MusECore::LowerLeft | MusECore::LowerRight ) );
      maskGrad.setStart(QPointF(0, 0));
      maskGrad.setFinalStop(QPointF(0, h));
      p.fillPath(round_path, QBrush(maskGrad));
      }

//---------------------------------------------------------
//   drawVU
//---------------------------------------------------------

void VerticalMeter::drawVU(QPainter& p, int w, int h, int xv)
{
      if(mtype == DBMeter)
      {
        double range = maxScale - minScale;
        int x1 = int((maxScale - redScale) * w / range);
        int x2 = int((maxScale - yellowScale) * w / range);

        darkGradGreen.setStart(QPointF(x2, 0));
        darkGradGreen.setFinalStop(QPointF(w, 0));
        darkGradYellow.setStart(QPointF(x1, 0));
        darkGradYellow.setFinalStop(QPointF(x2, 0));
        darkGradRed.setStart(QPointF(0, 0));
        darkGradRed.setFinalStop(QPointF(x1, 0));

        lightGradGreen.setStart(QPointF(x2, 0));
        lightGradGreen.setFinalStop(QPointF(w, 0));
        lightGradYellow.setStart(QPointF(x1, 0));
        lightGradYellow.setFinalStop(QPointF(x2, 0));
        lightGradRed.setStart(QPointF(0, 0));
        lightGradRed.setFinalStop(QPointF(x1, 0));

        QPainterPath p_left = roundedPath(0, 0, x1, h,
                                           xrad, yrad,
                                           (MusECore::Corner) (MusECore::UpperLeft | MusECore::LowerLeft ) );

        QPainterPath p_right = roundedPath(x2, 0, w-x2, h,
                                            xrad, yrad,
                                            (MusECore::Corner) (MusECore::LowerRight | MusECore::UpperRight ) );
        
        if(xv < x1)
        {

	  QPainterPath p_light_green = roundedPath(0, 0, xv, h,
						   xrad, yrad,
						   (MusECore::Corner) (MusECore::UpperLeft | MusECore::LowerLeft ) );

	  p_left = p_left.subtracted(p_light_green);

          // Green section:
          p.fillPath(p_light_green,       QBrush(lightGradGreen));     // light green
          p.fillPath(p_left,              QBrush(darkGradGreen));      // dark green

          // Yellow section:
          p.fillRect(x1, 0, x2-x1, h,     QBrush(darkGradYellow));     // dark yellow
          
          // Red section:
          p.fillPath(p_right,             QBrush(darkGradRed));        // dark red
        }
        else
        if(xv < x2)
        {
          // Green section:
          p.fillPath(p_left,              QBrush(lightGradGreen));       // light green
          
          // Yellow section:
          p.fillRect(x1, 0, xv-x1, h,     QBrush(lightGradYellow));    // light yellow
          p.fillRect(xv, 0, x2-xv, h,     QBrush(darkGradYellow));     // dark yellow
          
          // Red section:
          p.fillPath(p_right,             QBrush(darkGradRed));        // dark red
        }
        else
        //if(xv <= x3)
        {
	  QPainterPath p_dark_red = roundedPath(xv, 0, w-xv, h,
                                                xrad, yrad,
                                                (MusECore::Corner) (MusECore::LowerRight | MusECore::UpperRight ) );

          p_right = p_right.subtracted(p_dark_red);

          // Green section:
          p.fillPath(p_left,              QBrush(lightGradGreen));     // light green
          
          // Yellow section:
          p.fillRect(x1, 0, x2-x1, h,     QBrush(lightGradYellow));    // light yellow
          
          // Red section:
          p.fillPath(p_right,             QBrush(lightGradRed));       // light red
          p.fillPath(p_dark_red,          QBrush(darkGradRed));        // dark red

        }

      p.fillRect(x1,0, 1, h, separator_color);
      p.fillRect(x2,0, 1, h, separator_color);

      }  
      else
      {
        darkGradGreen.setStart(QPointF(0, 0));
        darkGradGreen.setFinalStop(QPointF(w, 0));

        lightGradGreen.setStart(QPointF(0, 0));
        lightGradGreen.setFinalStop(QPointF(w, 0));

        // We need to draw the meter in two parts. The cutoff for the left rectangle can be
        // anywhere between xrad and w-xrad. Without loss of generality we pick the lower limit.
        int cut = xrad;

        QPainterPath p_left = roundedPath(0, 0, cut, h,
                                          xrad, yrad,
                                          (MusECore::Corner) (MusECore::UpperLeft | MusECore::LowerLeft ) );

        QPainterPath p_right = roundedPath(cut, 0, w-cut, h,
                                           xrad, yrad,
                                           (MusECore::Corner) (MusECore::LowerRight | MusECore::UpperRight ) );

        if(xv < cut)
	  {

	    QPainterPath p_light = roundedPath(0, 0, xv, h,
                                               xrad, yrad,
                                               (MusECore::Corner) (MusECore::UpperLeft | MusECore::LowerLeft ) );

	    p_left = p_left.subtracted(p_light);

	    // left section:
	    p.fillPath(p_left,            QBrush(darkGradGreen));       // dark green
	    p.fillPath(p_light,           QBrush(lightGradGreen));      // light green

	    // bottom section:
	    p.fillPath(p_right,           QBrush(darkGradGreen));       // dark green
	  }
        else
	  {
	    QPainterPath p_dark = roundedPath(xv, 0, w-xv, h,
                                              xrad, yrad,
                                              (MusECore::Corner) (MusECore::UpperRight | MusECore::LowerRight ) );
	    p_right = p_right.subtracted(p_dark);

	    // left section:
	    p.fillPath(p_left,            QBrush(lightGradGreen));      // light green

	    // right section:
	    p.fillPath(p_dark,            QBrush(darkGradGreen));       // dark green
	    p.fillPath(p_right,           QBrush(lightGradGreen));      // light green
	  }

      }

}

//---------------------------------------------------------
//   resizeEvent
//---------------------------------------------------------

void VerticalMeter::resizeEvent(QResizeEvent* ev)
    {
      Meter::resizeEvent(ev);
    }

} // namespace MusEGui