Changeset 6388 for code/branches/presentation2/src/libraries/core/input
- Timestamp:
- Dec 21, 2009, 1:28:10 PM (15 years ago)
- Location:
- code/branches/presentation2/src/libraries/core/input
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation2/src/libraries/core/input/InputCommands.h
r5781 r6388 71 71 @brief 72 72 Executes a simple command with no additional paramters. 73 @return 73 @return 74 74 True if command execution was successful, false otherwise. 75 75 */ -
code/branches/presentation2/src/libraries/core/input/InputManager.cc
r6183 r6388 508 508 if (mouseStates.empty()) 509 509 requestedMode = MouseMode::Nonexclusive; 510 else 510 else 511 511 requestedMode = mouseStates.front()->getMouseMode(); 512 512 if (requestedMode != MouseMode::Dontcare && mouseMode_ != requestedMode) … … 554 554 } 555 555 556 //! Gets called by WindowEventListener upon focus change --> clear buffers 556 //! Gets called by WindowEventListener upon focus change --> clear buffers 557 557 void InputManager::windowFocusChanged() 558 558 { -
code/branches/presentation2/src/libraries/core/input/JoyStickQuantityListener.h
r5781 r6388 29 29 /** 30 30 @file 31 @brief 31 @brief 32 32 */ 33 33 -
code/branches/presentation2/src/libraries/core/input/KeyBinder.cc
r6387 r6388 285 285 286 286 void KeyBinder::addButtonToCommand(std::string command, Button* button) 287 { 287 { 288 288 std::ostringstream stream; 289 289 stream << button->groupName_ << "." << button->name_;
Note: See TracChangeset
for help on using the changeset viewer.