Released version 6.1.3
This commit is contained in:
commit
a94503cb82
1885 changed files with 276310 additions and 0 deletions
29
examples/radio/ampfrm.h
Normal file
29
examples/radio/ampfrm.h
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
#include <qframe.h>
|
||||
|
||||
class Knob;
|
||||
class Thermo;
|
||||
|
||||
class AmpFrame : public QFrame
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
AmpFrame( QWidget * );
|
||||
|
||||
public Q_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;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue