Changeset 1151 for code/branches/console/src/core
- Timestamp:
- Apr 24, 2008, 12:47:29 AM (17 years ago)
- Location:
- code/branches/console/src/core
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/console/src/core/CMakeLists.txt
r1133 r1151 26 26 Tickable.cc 27 27 Script.cc 28 TclBind.cc 28 29 ) 29 30 … … 33 34 util 34 35 tolualib 36 cpptcl 35 37 ${Lua_LIBRARIES} 36 38 ${OIS_LIBRARIES} -
code/branches/console/src/core/InputBuffer.cc
r1066 r1151 39 39 { 40 40 //this->bActivated_ = false; 41 this->allowedChars_ = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZäöüÄÖÜ0123456789 \\\"() .:,;_-+*/=!?<>[|]";41 this->allowedChars_ = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZäöüÄÖÜ0123456789 \\\"(){}[]<>.:,;_-+*/=!?|$&%^"; 42 42 this->keyboard_ = InputManager::getSingleton().getKeyboard(); 43 43 this->buffer_ = ""; 44 44 45 45 //this->keyboard_->setEventCallback(this); 46 } 47 48 InputBuffer::InputBuffer(const std::string allowedChars) 49 { 50 //this->bActivated_ = false; 51 this->allowedChars_ = allowedChars; 52 this->keyboard_ = InputManager::getSingleton().getKeyboard(); 53 this->buffer_ = ""; 46 54 } 47 55 /* -
code/branches/console/src/core/InputBuffer.h
r1142 r1151 59 59 public: 60 60 InputBuffer(); 61 InputBuffer(const std::string allowedChars); 61 62 62 63 template <class T>
Note: See TracChangeset
for help on using the changeset viewer.