Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/qt_gui/src/lib/gui/qt_gui/qt_gui.h @ 7478

Last change on this file since 7478 was 7478, checked in by bensch, 18 years ago

qt_gui: gui-element

File size: 654 bytes
Line 
1/*!
2 * @file qt_gui.h
3 * @brief Definition of ...
4*/
5
6#ifndef __QT_GUI_H
7#define __QT_GUI_H
8
9#include "../gui.h"
10#include "gui_element.h"
11#include <qapplication.h>
12
13namespace OrxGui
14{
15  class QtGui : public OrxGui::Gui, QApplication
16  {
17    public:
18      QtGui(int argc, char** argv);
19      virtual ~QtGui();
20
21    //! Start the Gui
22      virtual void startGui();
23    //! Stop the gui
24      virtual void stopGui();
25    //! Suspend the Gui.
26      virtual void suspend();
27    //! Update the Gui.
28      virtual void update();
29
30
31    private:
32      std::list<GuiElement*>    elements;   //!< A List of Elements within the QTGui
33  };
34}
35
36#endif /* __QT_GUI_H */
Note: See TracBrowser for help on using the repository browser.