123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- /*=========================================================================
- Library: CTK
- Copyright (c) Kitware Inc.
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.commontk.org/LICENSE
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- =========================================================================*/
- // Qt includes
- #include <QTimer>
- #include <QVBoxLayout>
- #include <QDebug>
- #include <QResizeEvent>
- // CTK includes
- #include "ctkVTKSliceView.h"
- #include "ctkVTKSliceView_p.h"
- #include "ctkLogger.h"
- // VTK includes
- #include <vtkRendererCollection.h>
- #include <vtkRenderWindowInteractor.h>
- #include <vtkTextProperty.h>
- #include <vtkProperty2D.h>
- #include <vtkCamera.h>
- #include <vtkImageData.h>
- #include <vtkCellArray.h>
- #include <vtkPoints.h>
- #include <vtkPolyData.h>
- #include <vtkPolyDataMapper2D.h>
- // Convenient macro
- #define VTK_CREATE(type, name) \
- vtkSmartPointer<type> name = vtkSmartPointer<type>::New()
- //--------------------------------------------------------------------------
- static ctkLogger logger("org.commontk.visualization.vtk.widgets.ctkVTKSliceView");
- //--------------------------------------------------------------------------
- // --------------------------------------------------------------------------
- // ctkVTKSliceViewPrivate methods
- // --------------------------------------------------------------------------
- ctkVTKSliceViewPrivate::ctkVTKSliceViewPrivate()
- {
- this->RenderWindow = vtkSmartPointer<vtkRenderWindow>::New();
- this->LightBoxRendererManager = vtkSmartPointer<vtkLightBoxRendererManager>::New();
- this->RenderPending = false;
- this->RenderEnabled = false;
- }
- //---------------------------------------------------------------------------
- void ctkVTKSliceViewPrivate::setupRendering()
- {
- Q_ASSERT(this->RenderWindow);
- this->RenderWindow->SetAlphaBitPlanes(1);
- this->RenderWindow->SetMultiSamples(0);
- this->RenderWindow->StereoCapableWindowOn();
- this->LightBoxRendererManager->Initialize(this->RenderWindow);
- this->VTKWidget->SetRenderWindow(this->RenderWindow);
- }
- //---------------------------------------------------------------------------
- // ctkVTKSliceView methods
- // --------------------------------------------------------------------------
- ctkVTKSliceView::ctkVTKSliceView(QWidget* _parent) : Superclass(_parent)
- , d_ptr(new ctkVTKSliceViewPrivate)
- {
- Q_D(ctkVTKSliceView);
-
- d->VTKWidget = new QVTKWidget(this);
- this->setLayout(new QVBoxLayout);
- this->layout()->setMargin(0);
- this->layout()->setSpacing(0);
- this->layout()->addWidget(d->VTKWidget);
- d->setupRendering();
- d->LightBoxRendererManager->SetRenderWindowLayout(1, 1);
- }
- // --------------------------------------------------------------------------
- ctkVTKSliceView::~ctkVTKSliceView()
- {
- }
- //----------------------------------------------------------------------------
- void ctkVTKSliceView::scheduleRender()
- {
- Q_D(ctkVTKSliceView);
- logger.trace("scheduleRender");
- if (!d->RenderEnabled)
- {
- return;
- }
- if (!d->RenderPending)
- {
- d->RenderPending = true;
- QTimer::singleShot(0, this, SLOT(forceRender()));
- }
- }
- //----------------------------------------------------------------------------
- void ctkVTKSliceView::forceRender()
- {
- Q_D(ctkVTKSliceView);
- if (!d->RenderEnabled || !this->isVisible())
- {
- return;
- }
- logger.trace("forceRender");
- d->RenderWindow->Render();
- d->RenderPending = false;
- }
- //----------------------------------------------------------------------------
- CTK_GET_CPP(ctkVTKSliceView, vtkRenderWindow*, renderWindow, RenderWindow);
- //----------------------------------------------------------------------------
- CTK_GET_CPP(ctkVTKSliceView, vtkLightBoxRendererManager*,
- lightBoxRendererManager, LightBoxRendererManager);
- //----------------------------------------------------------------------------
- CTK_SET_CPP(ctkVTKSliceView, bool, setRenderEnabled, RenderEnabled);
- CTK_GET_CPP(ctkVTKSliceView, bool, renderEnabled, RenderEnabled);
- //----------------------------------------------------------------------------
- vtkRenderWindowInteractor* ctkVTKSliceView::interactor() const
- {
- Q_D(const ctkVTKSliceView);
- return d->RenderWindow->GetInteractor();
- }
- //----------------------------------------------------------------------------
- void ctkVTKSliceView::setInteractor(vtkRenderWindowInteractor* newInteractor)
- {
- Q_D(const ctkVTKSliceView);
- d->RenderWindow->SetInteractor(newInteractor);
- }
- //----------------------------------------------------------------------------
- vtkInteractorObserver* ctkVTKSliceView::interactorStyle()const
- {
- Q_D(const ctkVTKSliceView);
- if (!d->RenderWindow->GetInteractor())
- {
- return 0;
- }
- return d->RenderWindow->GetInteractor()->GetInteractorStyle();
- }
- //----------------------------------------------------------------------------
- void ctkVTKSliceView::resetCamera()
- {
- Q_D(ctkVTKSliceView);
- d->LightBoxRendererManager->ResetCamera();
- }
- //----------------------------------------------------------------------------
- void ctkVTKSliceView::setImageData(vtkImageData* newImageData)
- {
- Q_D(ctkVTKSliceView);
- d->LightBoxRendererManager->SetImageData(newImageData);
- }
- //----------------------------------------------------------------------------
- QString ctkVTKSliceView::cornerAnnotationText()const
- {
- Q_D(const ctkVTKSliceView);
- return QString::fromStdString(d->LightBoxRendererManager->GetCornerAnnotationText());
- }
- //----------------------------------------------------------------------------
- void ctkVTKSliceView::setCornerAnnotationText(const QString& text)
- {
- Q_D(ctkVTKSliceView);
- d->LightBoxRendererManager->SetCornerAnnotationText(text.toStdString());
- }
- //----------------------------------------------------------------------------
- QColor ctkVTKSliceView::backgroundColor()const
- {
- Q_D(const ctkVTKSliceView);
- double* color = d->LightBoxRendererManager->GetBackgroundColor();
- QColor c;
- c.setRgbF(color[0], color[1], color[2]);
- return c;
- }
- //----------------------------------------------------------------------------
- void ctkVTKSliceView::setBackgroundColor(const QColor& newBackgroundColor)
- {
- Q_D(ctkVTKSliceView);
- double color[3];
- color[0] = newBackgroundColor.redF();
- color[1] = newBackgroundColor.greenF();
- color[2] = newBackgroundColor.blueF();
- d->LightBoxRendererManager->SetBackgroundColor(color);
- }
- //----------------------------------------------------------------------------
- QColor ctkVTKSliceView::highlightedBoxColor()const
- {
- Q_D(const ctkVTKSliceView);
- double* color = d->LightBoxRendererManager->GetHighlightedBoxColor();
- QColor c;
- c.setRgbF(color[0], color[1], color[2]);
- return c;
- }
- //----------------------------------------------------------------------------
- void ctkVTKSliceView::setHighlightedBoxColor(const QColor& newHighlightedBoxColor)
- {
- Q_D(ctkVTKSliceView);
- double color[3];
- color[0] = newHighlightedBoxColor.redF();
- color[1] = newHighlightedBoxColor.greenF();
- color[2] = newHighlightedBoxColor.blueF();
- d->LightBoxRendererManager->SetHighlightedBoxColor(color);
- }
- //----------------------------------------------------------------------------
- ctkVTKSliceView::RenderWindowLayoutType ctkVTKSliceView::renderWindowLayoutType()const
- {
- Q_D(const ctkVTKSliceView);
- return static_cast<ctkVTKSliceView::RenderWindowLayoutType>(
- d->LightBoxRendererManager->GetRenderWindowLayoutType());
- }
- //----------------------------------------------------------------------------
- void ctkVTKSliceView::setRenderWindowLayoutType(RenderWindowLayoutType layoutType)
- {
- Q_D(ctkVTKSliceView);
- d->LightBoxRendererManager->SetRenderWindowLayoutType(layoutType);
- }
- //----------------------------------------------------------------------------
- double ctkVTKSliceView::colorLevel()const
- {
- Q_D(const ctkVTKSliceView);
- return d->LightBoxRendererManager->GetColorLevel();
- }
- //----------------------------------------------------------------------------
- void ctkVTKSliceView::setColorLevel(double newColorLevel)
- {
- Q_D(ctkVTKSliceView);
- d->LightBoxRendererManager->SetColorLevel(newColorLevel);
- }
- //----------------------------------------------------------------------------
- double ctkVTKSliceView::colorWindow()const
- {
- Q_D(const ctkVTKSliceView);
- return d->LightBoxRendererManager->GetColorWindow();
- }
- //----------------------------------------------------------------------------
- void ctkVTKSliceView::setColorWindow(double newColorWindow)
- {
- Q_D(ctkVTKSliceView);
- d->LightBoxRendererManager->SetColorWindow(newColorWindow);
- }
- //----------------------------------------------------------------------------
- void ctkVTKSliceView::resizeEvent(QResizeEvent * event)
- {
- this->QWidget::resizeEvent(event);
- emit this->resized(event->size(), event->oldSize());
- }
- //----------------------------------------------------------------------------
- void ctkVTKSliceView::setLightBoxRendererManagerRowCount(int newRowCount)
- {
- Q_D(ctkVTKSliceView);
- d->LightBoxRendererManager->SetRenderWindowRowCount(newRowCount);
- }
- //----------------------------------------------------------------------------
- void ctkVTKSliceView::setLightBoxRendererManagerColumnCount(int newColumnCount)
- {
- Q_D(ctkVTKSliceView);
- d->LightBoxRendererManager->SetRenderWindowColumnCount(newColumnCount);
- }
|