Changeset 6367 for code/branches/presentation2/src/libraries/core/input
- Timestamp:
- Dec 16, 2009, 10:19:32 PM (15 years ago)
- Location:
- code/branches/presentation2/src/libraries/core/input
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation2/src/libraries/core/input/KeyBinderManager.cc
r6311 r6367 28 28 29 29 #include "KeyBinderManager.h" 30 31 #include <CEGUIWindow.h>32 30 33 31 #include "util/Debug.h" … … 103 101 { 104 102 this->currentBinder_->setBinding("", binding, true); 105 }106 107 void KeyBinderManager::subscribeEventHelper(CEGUI::Window* window, const std::string& event, const std::string& function)108 {109 window->subscribeScriptedEvent(event, function);110 103 } 111 104 -
code/branches/presentation2/src/libraries/core/input/KeyBinderManager.h
r6311 r6367 35 35 #include <string> 36 36 #include <boost/shared_ptr.hpp> 37 #include <CEGUIForwardRefs.h>38 37 39 38 #include "util/Singleton.h" … … 82 81 void setToDefault() 83 82 { this->setCurrent(this->defaultFilename_); } 84 85 void subscribeEventHelper(CEGUI::Window* window, const std::string& event, const std::string& function); //tolua_export86 83 87 84 //! Returns a pointer to a KeyBinder (creates it if not yet loaded)
Note: See TracChangeset
for help on using the changeset viewer.