Changeset 7473 in orxonox.OLD for branches/qt_gui/src/lib
- Timestamp:
- May 2, 2006, 9:59:37 AM (19 years ago)
- Location:
- branches/qt_gui/src/lib/gui/qt_gui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/qt_gui/src/lib/gui/qt_gui/qt_gui.cc
r7447 r7473 20 20 namespace OrxGui 21 21 { 22 QtGui::QtGui() 23 { 22 24 23 25 24 26 27 } 28 QtGui::~QtGui() 29 { 30 31 } 32 33 void QtGui::startGui() 34 {} 35 36 void QtGui::stopGui() 37 {} 38 39 void QtGui::suspend() 40 {} 41 42 //! Update the Gui. 43 void QtGui::update() 44 {} 45 25 46 } -
branches/qt_gui/src/lib/gui/qt_gui/qt_gui.h
r7472 r7473 8 8 9 9 #include "../gui.h" 10 #include <list> 11 10 #include "gui_element.h" 12 11 namespace OrxGui 13 12 { 13 class QtGui : public OrxGui::Gui 14 { 15 public: 16 QtGui(); 17 virtual ~QtGui(); 18 19 //! Start the Gui 20 virtual void startGui(); 21 //! Stop the gui 22 virtual void stopGui(); 23 //! Suspend the Gui. 24 virtual void suspend(); 25 //! Update the Gui. 26 virtual void update(); 27 28 29 private: 30 std::list<GuiElement*> elements; //!< A List of Elements within the QTGui 31 }; 14 32 } 15 33
Note: See TracChangeset
for help on using the changeset viewer.