///////////////////////////////////////////////////////////////////// PRIVATE /////////////////////////////////////////////////////////////////////
| 667 | // PRIVATE |
| 668 | ////////////////////////////////////////////////////////////////////////// |
| 669 | void QmitkStdMultiWidget::SetLayoutImpl() |
| 670 | { |
| 671 | CreateRenderWindowWidgets(); |
| 672 | GetMultiWidgetLayoutManager()->SetLayoutDesign(QmitkMultiWidgetLayoutManager::LayoutDesign::DEFAULT); |
| 673 | |
| 674 | // Initialize views as axial, sagittal, coronal to all data objects in DataStorage |
| 675 | auto geo = GetDataStorage()->ComputeBoundingGeometry3D(GetDataStorage()->GetAll()); |
| 676 | mitk::RenderingManager::GetInstance()->InitializeViews(geo); |
| 677 | } |
| 678 | |
| 679 | void QmitkStdMultiWidget::CreateRenderWindowWidgets() |
| 680 | { |
nothing calls this directly
no test coverage detected