qwt-cmake/playground/svgmap/plot.h
2018-08-02 11:01:31 -04:00

26 lines
347 B
C++

#include <qwt_plot.h>
#include <qrect.h>
class QwtPlotSvgItem;
class Plot: public QwtPlot
{
Q_OBJECT
public:
Plot( QWidget * = NULL );
public Q_SLOTS:
#ifndef QT_NO_FILEDIALOG
void loadSVG();
#endif
void loadSVG( const QString & );
private:
void rescale();
QwtPlotSvgItem *d_mapItem;
const QRectF d_mapRect;
};