mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-03 16:01:18 -05:00
87ad45188f
Qt's built-in QAudio calls rather than PortAudio. Also includes some refactoring of the arrangement for these calls, and more use of C++ style. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3523 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
33 lines
526 B
C++
33 lines
526 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
|