C:/Projekte/C++/FlowVIS_107/src/MainWindow.h

Go to the documentation of this file.
00001 #ifndef MAINWINDOW_H_
00002 #define MAINWINDOW_H_
00003 
00004 #include "common.h"
00005 #include "./Ui_MainWindow.h"
00006 
00007 #include <QGridLayout>
00008 #include <QWidget>
00009 
00010 #include "OpenGLWidget.h"
00011 #include "Navigation.h"
00012 #include "FlowData.h"
00013 
00014 
00015 class MainWindow : public QMainWindow, protected Ui_MainWindow
00016 {
00017         Q_OBJECT
00018 public:
00019         MainWindow(QWidget* parent = 0, Qt::WFlags flags = 0);
00020         virtual ~MainWindow();
00021 
00022 public slots:
00023   void openFile();
00024   void closeFile();
00025 
00026 private:
00027   OpenGLWidget *glWidget;
00028   QGridLayout  *gridLayout;
00029   Navigation   *navigation;
00030   FlowData     *flowData;
00031 
00032   bool isFileOpened;
00033 
00034 };
00035 #endif

Generated on Mon Jan 21 14:50:12 2008 for VisLU by  doxygen 1.5.4