Go to the documentation of this file.00001
00039 #ifndef MAINWINDOW_H
00040 #define MAINWINDOW_H
00041
00042 #include <QMainWindow>
00043
00044 #include "FlowData.h"
00045
00046 namespace Ui {
00047 class MainWindow;
00048 }
00049
00050
00051
00052 class RenderingView;
00053 class GradientView;
00054
00059 class MainWindow : public QMainWindow
00060 {
00061 Q_OBJECT
00062
00063 public:
00069 explicit MainWindow(QWidget *parent = 0);
00074 ~MainWindow();
00075
00076 public slots:
00077
00078 private slots:
00082 void on_actionBild_speichern_triggered();
00087 void on_actionBeenden_triggered();
00092 void on_actionDatensatz_laden_triggered();
00093
00094 private:
00095 Ui::MainWindow *ui;
00097 FlowData flowData;
00098
00099 RenderingView *renderingView;
00100 GradientView *gradientView;
00101 };
00102
00103 #endif // MAINWINDOW_H
00104