ResInsight/ThirdParty/Qwt/playground/graphicscale/mainwindow.h

23 lines
324 B
C++

#include <qmainwindow.h>
class Canvas;
class QPainterPath;
class MainWindow: public QMainWindow
{
Q_OBJECT
public:
MainWindow();
virtual ~MainWindow();
private Q_SLOTS:
void loadSVG();
private:
void loadSVG( const QString & );
void loadPath( const QPainterPath & );
Canvas *d_canvas[2];
};