Changeset 3290 for code/branches/core4/src/core
- Timestamp:
- Jul 14, 2009, 11:30:05 AM (15 years ago)
- Location:
- code/branches/core4/src/core
- Files:
-
- 1 added
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core4/src/core/CMakeLists.txt
r3245 r3290 31 31 ObjectListBase.cc 32 32 OrxonoxClass.cc 33 WindowEventListener.cc 33 34 34 35 # command -
code/branches/core4/src/core/WindowEventListener.h
r3282 r3290 30 30 #define _WindowEventListener_H__ 31 31 32 #include " OrxonoxPrereqs.h"33 #include " core/OrxonoxClass.h"32 #include "CorePrereqs.h" 33 #include "OrxonoxClass.h" 34 34 35 35 namespace orxonox 36 36 { 37 /** 38 @brief Interface for receiving window events. 39 */ 40 class _OrxonoxExport WindowEventListener : virtual public OrxonoxClass 37 //! Interface for receiving window events like resize, moved and focusChanged 38 class _CoreExport WindowEventListener : virtual public OrxonoxClass 41 39 { 42 40 public: … … 44 42 virtual ~WindowEventListener() { } 45 43 46 / ** Window has moved position */44 //! Window has been moved 47 45 virtual void windowMoved() { } 48 46 49 / ** Window has resized */47 //! Window has resized 50 48 virtual void windowResized(unsigned int newWidth, unsigned int newHeight) { } 51 49 52 / ** Window has lost/gained focus */50 //! Window has lost/gained focus 53 51 virtual void windowFocusChanged() { } 54 52 };
Note: See TracChangeset
for help on using the changeset viewer.