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

Method getEvent

Tools/EditorFramework/CommandManager.cpp:62–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60 }
61
62 CommandManager::EventType* CommandManager::getEvent(const MyGUI::UString& _command)
63 {
64 MapEvent::iterator event = mEvents.find(_command);
65 if (event != mEvents.end())
66 return (*event).second;
67
68 EventType* type = new EventType();
69 mEvents[_command] = type;
70 return type;
71 }
72
73}

Callers 15

OnInitialiseMethod · 0.45
EditorStateMethod · 0.45
notifyChangeScopeMethod · 0.45
notifyChangeScopeMethod · 0.45
OnInitialiseMethod · 0.45
notifyChangeScopeMethod · 0.45
createSceneMethod · 0.45
notifyChangeScopeMethod · 0.45
TestStateMethod · 0.45
OnInitialiseMethod · 0.45
UndoManagerMethod · 0.45
EditorStateMethod · 0.45

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by 2

TestStateMethod · 0.36
TestStateMethod · 0.36