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

« back to all changes in this revision

Viewing changes to qwt-5.1.2/examples/spectrogram/plot.h

  • Committer: Bazaar Package Importer
  • Author(s): Fathi Boudra
  • Date: 2009-07-01 16:08:21 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20090701160821-gog44m4w7x2f4u6o
Tags: 5.2.0-1
* New upstream release.
* Add branch pull patch from svn r544.
* Bump Standards-Version to 3.8.2. No changes needed.
* Update installed manpages.
* Use qwt as base name for directory (drop version).
* Add missing warnings patch.
* Rewrite debian/rules: use dh.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#include <qwt_plot.h>
2
 
#include <qwt_plot_spectrogram.h>
3
 
 
4
 
class Plot: public QwtPlot
5
 
{
6
 
    Q_OBJECT
7
 
 
8
 
public:
9
 
    Plot(QWidget * = NULL);
10
 
 
11
 
public slots:
12
 
    void showContour(bool on);
13
 
    void showSpectrogram(bool on);
14
 
    void printPlot();
15
 
 
16
 
private:
17
 
    QwtPlotSpectrogram *d_spectrogram;
18
 
};