Qwt User's Guide
svn
|
00001 /* -*- mode: C++ ; c-file-style: "stroustrup" -*- ***************************** 00002 * Qwt Widget Library 00003 * Copyright (C) 1997 Josef Wilgen 00004 * Copyright (C) 2002 Uwe Rathmann 00005 * 00006 * This library is free software; you can redistribute it and/or 00007 * modify it under the terms of the Qwt License, Version 1.0 00008 *****************************************************************************/ 00009 00010 #ifndef QWT_PLOT_PANNER_H 00011 #define QWT_PLOT_PANNER_H 1 00012 00013 #include "qwt_global.h" 00014 #include "qwt_panner.h" 00015 00016 class QwtPlotCanvas; 00017 class QwtPlot; 00018 00032 class QWT_EXPORT QwtPlotPanner: public QwtPanner 00033 { 00034 Q_OBJECT 00035 00036 public: 00037 explicit QwtPlotPanner( QwtPlotCanvas * ); 00038 virtual ~QwtPlotPanner(); 00039 00040 QwtPlotCanvas *canvas(); 00041 const QwtPlotCanvas *canvas() const; 00042 00043 QwtPlot *plot(); 00044 const QwtPlot *plot() const; 00045 00046 void setAxisEnabled( int axis, bool on ); 00047 bool isAxisEnabled( int axis ) const; 00048 00049 protected Q_SLOTS: 00050 virtual void moveCanvas( int dx, int dy ); 00051 00052 protected: 00053 virtual QBitmap contentsMask() const; 00054 00055 private: 00056 class PrivateData; 00057 PrivateData *d_data; 00058 }; 00059 00060 #endif