MCPcopy Create free account
hub / github.com/MyGUI/mygui / shutdown

Method shutdown

MyGUIEngine/src/MyGUI_InputManager.cpp:61–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls 3

getClassTypeNameFunction · 0.85
newDelegateFunction · 0.85
unregisterUnlinkerMethod · 0.80

Tested by

no test coverage detected