| 119 | } |
| 120 | |
| 121 | IEventPtr EventManager::findEvent(const std::string& name) |
| 122 | { |
| 123 | // Try to lookup the command |
| 124 | auto found = _events.find(name); |
| 125 | |
| 126 | // if nothing found, return the NullEvent |
| 127 | return found != _events.end() ? found->second : _emptyEvent; |
| 128 | } |
| 129 | |
| 130 | std::string EventManager::findEventForAccelerator(wxKeyEvent& ev) |
| 131 | { |