window.hpp
Go to the documentation of this file.00001
00002 #ifndef _WINDOW_HPP_
00003 #define _WINDOW_HPP_
00004
00005 #include <QtGui/QMainWindow>
00006
00007 namespace Ui
00008 {
00009 class MainWindow;
00010 }
00011 class glwidget;
00012
00013 class Window : public QMainWindow
00014 {
00015 Q_OBJECT
00016
00017 public:
00018 Window(QWidget *parent=0);
00019 ~Window();
00020
00021 glwidget *glWidget;
00022
00023 private:
00024
00025 Ui::MainWindow *ui;
00026
00027
00028
00029 private slots:
00030 void quit_window();
00031 void set_wireframe(int is_active);
00032
00033 };
00034
00035 #endif