js8call/.svn/pristine/6e/6e2217787bc8c9a53d120e4d53df2c890769de20.svn-base

28 lines
404 B
Plaintext
Raw Normal View History

2018-02-08 21:28:33 -05:00
// -*- Mode: C++ -*-
#ifndef SIGNALMETER_H
#define SIGNALMETER_H
#include <QFrame>
class QLabel;
class MeterWidget;
class SignalMeter final
: public QFrame
{
Q_OBJECT
public:
explicit SignalMeter (QWidget * parent = nullptr);
public slots:
void setValue (float value, float valueMax);
private:
MeterWidget * m_meter;
QWidget * m_scale;
QLabel * m_reading;
};
#endif // SIGNALMETER_H