blob: a32bd6025c7e82afff8888fd1f40c637c951ee7a (
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
|
//=========================================================
// MusE
// Linux Music Editor
// $Id: meter.h,v 1.1.1.1.2.2 2009/05/03 04:14:00 terminator356 Exp $
//
// (C) Copyright 2000 Werner Schweer (ws@seh.de)
//=========================================================
#ifndef __METER_H__
#define __METER_H__
#include <QFrame>
class QResizeEvent;
class QMouseEvent;
class QPainter;
class Meter : public QFrame {
public:
enum MeterType {DBMeter, LinMeter};
private:
MeterType mtype;
bool overflow;
double val;
double maxVal;
double minScale, maxScale;
int yellowScale, redScale;
QColor green;
QColor red;
QColor yellow;
QColor bgColor;
void drawVU(QPainter& p, int, int, int);
Q_OBJECT
void paintEvent(QPaintEvent*);
virtual void resizeEvent(QResizeEvent*);
virtual void mousePressEvent(QMouseEvent*);
public slots:
void resetPeaks();
void setVal(double, double, bool);
signals:
void mousePress();
void meterClipped();
public:
Meter(QWidget* parent, MeterType type = DBMeter);
void setRange(double min, double max);
};
#endif
|