Files
GoldenCheetah/qwt/examples/radio/ampfrm.h
2009-09-20 11:07:49 -07:00

30 lines
399 B
C++

#include <qframe.h>
class Knob;
class Thermo;
class AmpFrame : public QFrame
{
Q_OBJECT
public:
AmpFrame(QWidget *);
public slots:
void setMaster(double v);
protected:
void timerEvent(QTimerEvent *);
private:
Knob *d_knbVolume;
Knob *d_knbBalance;
Knob *d_knbTreble;
Knob *d_knbBass;
Thermo *d_thmLeft;
Thermo *d_thmRight;
double d_master;
};