------------------------------------------------------------------------------
| 226 | |
| 227 | //------------------------------------------------------------------------------ |
| 228 | unsigned long vtkWidgetEventTranslator::GetTranslation(unsigned long VTKEvent) |
| 229 | { |
| 230 | EventMapIterator iter = this->EventMap->find(VTKEvent); |
| 231 | if (iter != this->EventMap->end()) |
| 232 | { |
| 233 | EventList& elist = (*iter).second; |
| 234 | return elist.find(VTKEvent); |
| 235 | } |
| 236 | else |
| 237 | { |
| 238 | return vtkWidgetEvent::NoEvent; |
| 239 | } |
| 240 | } |
| 241 | |
| 242 | //------------------------------------------------------------------------------ |
| 243 | const char* vtkWidgetEventTranslator::GetTranslation(const char* VTKEvent) |
no test coverage detected