Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7473 in orxonox.OLD


Ignore:
Timestamp:
May 2, 2006, 9:59:37 AM (18 years ago)
Author:
bensch
Message:

sync

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  
    2020namespace OrxGui
    2121{
     22  QtGui::QtGui()
     23  {
    2224
    2325
    2426
     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
    2546}
  • branches/qt_gui/src/lib/gui/qt_gui/qt_gui.h

    r7472 r7473  
    88
    99#include "../gui.h"
    10 #include <list>
    11 
     10#include "gui_element.h"
    1211namespace OrxGui
    1312{
     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  };
    1432}
    1533
Note: See TracChangeset for help on using the changeset viewer.