infovis
|
00001 #ifndef GLGEOGENERATOR_H 00002 #define GLGEOGENERATOR_H 00003 00004 #include <QtGui/QMainWindow> 00005 #include "ui_glgeogenerator.h" 00006 #include "glwidget.h" 00007 00008 class GLGeoGenerator : public QMainWindow 00009 { 00010 Q_OBJECT 00011 00012 public: 00013 GLGeoGenerator(QWidget *parent = 0, Qt::WFlags flags = 0); 00014 ~GLGeoGenerator(); 00015 00016 signals: 00017 void aValueChanged(double a); 00018 00019 public slots: 00020 void setMappingType(int mappingType); 00021 void setA(double a); 00022 00023 private: 00024 Ui::GLGeoGeneratorClass ui; 00025 GLWidget *view; 00026 00027 private Q_SLOTS: 00028 void on_doubleSpinBox_valueChanged( double value ); 00029 }; 00030 00031 #endif // GLGEOGENERATOR_H