Changeset 7895 in orxonox.OLD for branches/gui/src/lib/event/event_handler.h
- Timestamp:
- May 27, 2006, 5:29:48 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/src/lib/event/event_handler.h
r7868 r7895 26 26 void init(); 27 27 28 /** @param state: to which the event handler shall change */ 29 inline void setState(elState state) { this->state = state; }; 28 void setState(elState state); 30 29 /** @returns the current state */ 31 30 inline elState getState() const { return this->state; }; … … 42 41 43 42 44 void withUNICODE( bool enableUNICODE);43 void withUNICODE(elState state, bool enableUNICODE); 45 44 void grabEvents(bool grabEvents); 46 45 bool grabbedEvents() const { return this->eventsGrabbed; }; … … 62 61 KeyMapper keyMapper; //!< reference to the key mapper. 63 62 64 bool bUNICODE ;//!< If unicode should be enabled.63 bool bUNICODE[ES_NUMBER]; //!< If unicode should be enabled. 65 64 bool eventsGrabbed; //!< If the events should be grabbed 66 65 };
Note: See TracChangeset
for help on using the changeset viewer.