~l3on/ubuntu/oneiric/qwt/fix-921430

« back to all changes in this revision

Viewing changes to qwt-5.0.1/examples/radio/ampfrm.h

  • Committer: Bazaar Package Importer
  • Author(s): Fathi Boudra
  • Date: 2007-10-05 15:20:41 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20071005152041-qmybqh4fj9jejyo2
Tags: 5.0.2-2
* Handle nostrip build option. (Closes: #437877)
* Build libqwt5-doc package in binary-indep target. (Closes: #443110)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#include <qframe.h>
2
 
 
3
 
class Knob;
4
 
class Thermo;
5
 
 
6
 
class AmpFrame : public QFrame
7
 
{
8
 
    Q_OBJECT
9
 
public:
10
 
    AmpFrame(QWidget *);
11
 
 
12
 
public slots:
13
 
    void setMaster(double v);
14
 
 
15
 
protected:
16
 
    void timerEvent(QTimerEvent *);
17
 
 
18
 
private:
19
 
    Knob *d_knbVolume; 
20
 
    Knob *d_knbBalance; 
21
 
    Knob *d_knbTreble; 
22
 
    Knob *d_knbBass; 
23
 
    Thermo *d_thmLeft;
24
 
    Thermo *d_thmRight;
25
 
    double d_master;
26
 
};
27
 
 
28
 
 
29