00001 #ifndef SPATIAL_PLOT 00002 #define SPATIAL_PLOT 00003 00004 #include "ui_spatialplot.h" 00005 #include <qgisapp.h> 00006 00007 class spatialPlotDlg : public QDialog, private Ui::spatialPlotDialog 00008 { 00009 Q_OBJECT 00010 00011 public: 00012 spatialPlotDlg(QDialog *parent = 0); 00013 00014 void setApplicationPointer(QgisApp *); 00015 QgisApp* applicationPointer; 00016 00017 public slots: 00018 void browseEleShapeFile(); 00019 void browseRivShapeFile(); 00020 void browseModelFile(); 00021 void generate(); 00022 void help(); 00023 }; 00024 00025 #endif