Changeset 1426 for code/branches/network/src/core/InputManager.h
- Timestamp:
- May 26, 2008, 12:00:20 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/network/src/core/InputManager.h
r1413 r1426 85 85 IS_GUI, //!< All OIS input events are passed to CEGUI. 86 86 IS_CONSOLE, //!< Keyboard input is redirected to the InputBuffer. 87 IS_DETECTION, //!< All the input goes to the KeyDetector 87 IS_DETECT, //!< All the input additionally goes to the KeyDetector 88 IS_NODETECT, //!< remove KeyDetector 88 89 IS_CUSTOM //!< Any possible configuration. 89 90 }; … … 115 116 116 117 static void storeKeyStroke(const std::string& name); 117 static const std::string& getLastKeyStroke();118 static void keyBind(const std::string& command); 118 119 119 120 static bool addKeyHandler (KeyHandler* handler, const std::string& name); … … 189 190 InputState stateRequest_; 190 191 unsigned int keyboardModifiers_; 191 std::string lastStroke_;192 InputState savedState_; 192 193 193 194 //! Keeps track of the joy stick POV states … … 209 210 std::vector<std::vector<int> > joyStickButtonsDown_; 210 211 212 static std::string bindingCommmandString_s; 211 213 }; 212 214
Note: See TracChangeset
for help on using the changeset viewer.