| Line |   | 
|---|
| 1 | /*! | 
|---|
| 2 |  * @file proto_singleton.h | 
|---|
| 3 |  * @brief Definition of the GLGuiHandler singleton Class | 
|---|
| 4 | */ | 
|---|
| 5 |  | 
|---|
| 6 | #ifndef _GLGUI_HANDLER_H | 
|---|
| 7 | #define _GLGUI_HANDLER_H | 
|---|
| 8 |  | 
|---|
| 9 | #include "event_listener.h" | 
|---|
| 10 | #include "glgui_widget.h" | 
|---|
| 11 |  | 
|---|
| 12 | namespace OrxGui | 
|---|
| 13 | { | 
|---|
| 14 |  | 
|---|
| 15 |   class GLGuiCursor; | 
|---|
| 16 |  | 
|---|
| 17 |   // FORWARD DECLARATION | 
|---|
| 18 |  | 
|---|
| 19 |   //! A singleton class for the GLGui-Handler | 
|---|
| 20 |   class GLGuiHandler : public EventListener | 
|---|
| 21 |   { | 
|---|
| 22 |  | 
|---|
| 23 |   public: | 
|---|
| 24 |     virtual ~GLGuiHandler(void); | 
|---|
| 25 |     /** @returns a Pointer to the only object of this Class */ | 
|---|
| 26 |     inline static GLGuiHandler* getInstance(void) { if (!GLGuiHandler::singletonRef) GLGuiHandler::singletonRef = new GLGuiHandler();  return GLGuiHandler::singletonRef; }; | 
|---|
| 27 |  | 
|---|
| 28 |     void activateCursor(); | 
|---|
| 29 |     void deactivateCursor(/** ignore param */ bool deleteCursor = true); | 
|---|
| 30 |     GLGuiCursor* getCursor() const { return this->cursor; } | 
|---|
| 31 |  | 
|---|
| 32 |     Vector2D cursorPositionOverFocusedWidget() const; | 
|---|
| 33 |     const Vector2D& cursorPositionAbs() const; | 
|---|
| 34 |     Vector2D cursorPositionRel(const GLGuiWidget* const widget) const; | 
|---|
| 35 |  | 
|---|
| 36 |     void activate(); | 
|---|
| 37 |     void deactivate(); | 
|---|
| 38 |  | 
|---|
| 39 |  | 
|---|
| 40 |     virtual void process(const Event &event); | 
|---|
| 41 |     void draw(); | 
|---|
| 42 |     void tick(float dt); | 
|---|
| 43 |  | 
|---|
| 44 |   private: | 
|---|
| 45 |     GLGuiHandler(void); | 
|---|
| 46 |     static GLGuiHandler* singletonRef; | 
|---|
| 47 |  | 
|---|
| 48 |  | 
|---|
| 49 |     bool                 isActive; | 
|---|
| 50 |     GLGuiCursor*         cursor; | 
|---|
| 51 |  | 
|---|
| 52 |   }; | 
|---|
| 53 | } | 
|---|
| 54 |  | 
|---|
| 55 | #endif /* _GLGUI_HANDLER_H */ | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.