Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > b8336ccf169767ec076cad8fc60ead6c > files > 177

lib64qwt-devel-6.0.1-6.mga4.x86_64.rpm

#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;
};