| 648 | } |
| 649 | |
| 650 | void mitk::nnInteractiveTool::Notify(InteractionEvent* event, bool isHandled) |
| 651 | { |
| 652 | // If the event is not yet handled, forward it to the currently enabled |
| 653 | // interactor, if any. |
| 654 | if (!isHandled) |
| 655 | { |
| 656 | for (auto& [interactionType, interactor] : m_Impl->Interactors) |
| 657 | { |
| 658 | if (interactor->IsEnabled()) |
| 659 | { |
| 660 | interactor->HandleEvent(event); |
| 661 | return; |
| 662 | } |
| 663 | } |
| 664 | } |
| 665 | |
| 666 | Superclass::Notify(event, isHandled); |
| 667 | } |
| 668 | |
| 669 | void mitk::nnInteractiveTool::ConfirmCleanUp() |
| 670 | { |
nothing calls this directly
no test coverage detected