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

« back to all changes in this revision

Viewing changes to qwt-5.0.2/examples/event_filter/plot.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 <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
};