mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-05 17:01:17 -05:00
33 lines
494 B
C
33 lines
494 B
C
|
#ifndef SIGNALMETER_H
|
||
|
#define SIGNALMETER_H
|
||
|
|
||
|
#include <QtGui>
|
||
|
#include <QLabel>
|
||
|
#include <meterwidget.h>
|
||
|
|
||
|
class SignalMeter : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit SignalMeter(QWidget *parent = 0);
|
||
|
~SignalMeter();
|
||
|
|
||
|
public slots:
|
||
|
void setValue(int value);
|
||
|
|
||
|
private:
|
||
|
MeterWidget *m_meter;
|
||
|
|
||
|
QLabel *m_label;
|
||
|
|
||
|
int m_signal;
|
||
|
int m_sigPeak;
|
||
|
|
||
|
protected:
|
||
|
void paintEvent( QPaintEvent * );
|
||
|
void resizeEvent(QResizeEvent *s);
|
||
|
};
|
||
|
|
||
|
#endif // SIGNALMETER_H
|