Changeset 8729 for code/trunk/src/libraries/core/input/InputManager.h
- Timestamp:
- Jul 4, 2011, 2:47:44 AM (14 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
-
code/trunk/src/libraries/core/input/InputManager.h
r8079 r8729 33 33 34 34 #include <map> 35 #include <set>36 35 #include <string> 37 36 #include <vector> … … 39 38 40 39 #include "util/Singleton.h" 41 #include "util/ TriBool.h"40 #include "util/tribool.h" 42 41 #include "core/WindowEventListener.h" 43 42 … … 169 168 True if the call was successful, fals if the name was not found 170 169 */ 171 bool setMouseExclusive(const std::string& name, TriBool::Valuevalue); // tolua_export170 bool setMouseExclusive(const std::string& name, tribool value); // tolua_export 172 171 173 172 //------------------------------- … … 215 214 OIS::InputManager* oisInputManager_; //!< OIS input manager 216 215 std::vector<InputDevice*> devices_; //!< List of all input devices (keyboard, mouse, joy sticks) 217 TriBool::ValueexclusiveMouse_; //!< Currently applied mouse mode216 bool exclusiveMouse_; //!< Currently applied mouse mode 218 217 219 218 // some internally handled states and handlers
Note: See TracChangeset
for help on using the changeset viewer.