mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-03 16:01:18 -05:00
94b80c4b0d
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3489 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
31 lines
428 B
C++
31 lines
428 B
C++
#ifndef METERWIDGET_H
|
|
#define METERWIDGET_H
|
|
|
|
#include <QWidget>
|
|
#include <QtGui>
|
|
#include <QQueue>
|
|
|
|
class MeterWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit MeterWidget(QWidget *parent = 0);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
void setValue(int value);
|
|
|
|
private:
|
|
QQueue<int> signalQueue;
|
|
|
|
int m_signal;
|
|
int m_sigPeak;
|
|
|
|
protected:
|
|
void paintEvent( QPaintEvent * );
|
|
|
|
};
|
|
|
|
#endif // METERWIDGET_H
|