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

« back to all changes in this revision

Viewing changes to qwt/examples/event_filter/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
 
 
3
class ColorBar;
 
4
class QwtWheel;
 
5
 
 
6
class Plot: public QwtPlot
 
7
{
 
8
    Q_OBJECT
 
9
public:
 
10
    Plot(QWidget *parent = NULL);
 
11
    virtual bool eventFilter(QObject *, QEvent *);
 
12
 
 
13
public slots:
 
14
    void setCanvasColor(const QColor &);
 
15
    void insertCurve(int axis, double base);
 
16
 
 
17
private slots:
 
18
    void scrollLeftAxis(double);
 
19
 
 
20
private:
 
21
    void insertCurve(Qt::Orientation, const QColor &, double base);
 
22
 
 
23
    ColorBar *d_colorBar;
 
24
    QwtWheel *d_wheel;
 
25
};