| 59 | } |
| 60 | |
| 61 | void InputManager::shutdown() |
| 62 | { |
| 63 | MYGUI_ASSERT(mIsInitialise, getClassTypeName() << " is not initialised"); |
| 64 | MYGUI_LOG(Info, "* Shutdown: " << getClassTypeName()); |
| 65 | |
| 66 | Gui::getInstance().eventFrameStart -= newDelegate(this, &InputManager::frameEntered); |
| 67 | WidgetManager::getInstance().unregisterUnlinker(this); |
| 68 | |
| 69 | MYGUI_LOG(Info, getClassTypeName() << " successfully shutdown"); |
| 70 | mIsInitialise = false; |
| 71 | } |
| 72 | |
| 73 | bool InputManager::injectMouseMove(int _absx, int _absy, int _absz) |
| 74 | { |
nothing calls this directly
no test coverage detected