| 296 | } |
| 297 | |
| 298 | void QmitkRenderWindowWidget::SetGeometrySlice(const itk::EventObject& event) |
| 299 | { |
| 300 | if (!mitk::SliceNavigationController::GeometrySliceEvent(nullptr, 0).CheckEvent(&event)) |
| 301 | { |
| 302 | return; |
| 303 | } |
| 304 | |
| 305 | const auto* sliceNavigationController = this->GetSliceNavigationController(); |
| 306 | m_CrosshairManager->UpdateCrosshairPosition(sliceNavigationController); |
| 307 | } |
| 308 | |
| 309 | void QmitkRenderWindowWidget::OnResetGeometry() |
| 310 | { |
nothing calls this directly
no test coverage detected