/* * QtMainWindow.hpp * * Created on: Jan 14, 2010 * Author: crueger */ #ifndef QTMAINWINDOW_HPP_ #define QTMAINWINDOW_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "UIElements/MainWindow.hpp" #include #include #include #include "Menu/Qt4/QtMenu.hpp" class QtMoleculeList; class QtElementList; class StringView; class GLWorldView; class QtMoleculeView; class QtStatusBar; class QtToolBar; class QtMainWindow : public QMainWindow, public MainWindow { Q_OBJECT public: QtMainWindow(QApplication *_theApp); virtual ~QtMainWindow(); virtual void display(); private: // All kinds of QTStuff used in this window QApplication *theApp; QtMoleculeList *moleculeList; QtElementList *elementList; GLWorldView *glWorldView; QtMoleculeView *moleculeDisplay; QtStatusBar *statusBar; QtMenu *MainMenu; QtToolBar *toolbar; }; #endif /* QTMAINWINDOW_HPP_ */