~ubuntu-branches/ubuntu/oneiric/qwt/oneiric-proposed

« back to all changes in this revision

Viewing changes to qwt-5.1.1/examples/radio/tunerfrm.h

  • Committer: Bazaar Package Importer
  • Author(s): Fathi Boudra
  • Date: 2008-05-26 10:26:31 UTC
  • mfrom: (1.1.3 upstream) (2.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080526102631-bp95mfccnrb957nx
Tags: 5.1.1-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <qframe.h>
 
2
 
 
3
class QwtWheel;
 
4
class QwtSlider;
 
5
class TuningThermo;
 
6
 
 
7
class TunerFrame : public QFrame
 
8
{
 
9
    Q_OBJECT
 
10
public:
 
11
    TunerFrame(QWidget *p);
 
12
 
 
13
signals:
 
14
    void fieldChanged(double f);
 
15
 
 
16
public slots:
 
17
    void setFreq(double frq);
 
18
 
 
19
private slots:
 
20
    void adjustFreq(double frq);
 
21
 
 
22
private:
 
23
    QwtWheel *d_whlFreq;
 
24
    TuningThermo *d_thmTune;
 
25
    QwtSlider *d_sldFreq;
 
26
};
 
27
 
 
28
 
 
29
 
 
30