| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 | /*=========================================================================  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.=========================================================================*/#ifndef __ctkVTKSliceView_h#define __ctkVTKSliceView_h// Qt includes#include <QWidget>// CTK includes#include <ctkPimpl.h>#include "ctkVisualizationVTKWidgetsExport.h"class ctkVTKSliceViewPrivate;class vtkLightBoxRendererManager;class vtkInteractorObserver;class vtkRenderWindowInteractor;class vtkRenderWindow;class vtkRenderer;class vtkCamera; class vtkImageData;class vtkCornerAnnotation;class CTK_VISUALIZATION_VTK_WIDGETS_EXPORT ctkVTKSliceView : public QWidget{  Q_OBJECT  Q_ENUMS(RenderWindowLayoutType)  Q_PROPERTY(RenderWindowLayoutType renderWindowLayoutType             READ renderWindowLayoutType WRITE setRenderWindowLayoutType)  Q_PROPERTY(QString cornerAnnotationText READ cornerAnnotationText WRITE setCornerAnnotationText)  Q_PROPERTY(QColor backgroundColor READ backgroundColor WRITE setBackgroundColor)  Q_PROPERTY(QColor highlightedBoxColor READ highlightedBoxColor WRITE setHighlightedBoxColor)  Q_PROPERTY(bool renderEnabled READ renderEnabled WRITE setRenderEnabled)  Q_PROPERTY(double colorLevel READ colorLevel WRITE setColorLevel)  Q_PROPERTY(double colorWindow READ colorWindow WRITE setColorWindow)public:  /// Constructors  typedef QWidget   Superclass;  explicit ctkVTKSliceView(QWidget* parent = 0);  virtual ~ctkVTKSliceView();  /// The layout type determines how the image slices should be displayed  /// within the different render view items.  /// \sa setRenderWindowLayout() renderWindowLayoutType()  enum RenderWindowLayoutType{LeftRightTopBottom = 0, LeftRightBottomTop};  /// Return if rendering is enabled  bool renderEnabled() const;  /// Convenient method to get the underlying RenderWindow  vtkRenderWindow* renderWindow() const;  /// Set active camera  void setActiveCamera(vtkCamera * newActiveCamera);  /// Get lightBoxRendererManager  vtkLightBoxRendererManager* lightBoxRendererManager() const;  /// Get overlay renderer  vtkRenderer* overlayRenderer() const;  /// Set/Get window interactor  vtkRenderWindowInteractor* interactor() const;  void setInteractor(vtkRenderWindowInteractor* newInteractor);  /// Get current interactor style  vtkInteractorObserver* interactorStyle()const;  /// Get corner annotation text  /// \sa setCornerAnnotationText();  QString cornerAnnotationText()const;  /// Get corner annotation actor  /// This is the corner annotation associated with all renderers managed  /// by the lightBoxManager  /// \sa vtkLightBoxRendererManager::GetCornerAnnotation()  vtkCornerAnnotation * cornerAnnotation()const;  /// Get overlay corner annotation actor  /// This corresponds to the cornerAnnotation associated added in the single overlay renderer  vtkCornerAnnotation* overlayCornerAnnotation()const;  /// Get background color  /// \sa setBackgroundColor();  QColor backgroundColor()const;  /// Get highlightedBox color  /// \sa setHighlightedBoxColor();  QColor highlightedBoxColor()const;  /// Get renderWindow layout type  /// \sa setRenderWindowLayoutType();  RenderWindowLayoutType renderWindowLayoutType()const;  /// Get color level  /// \sa setColorLevel();  double colorLevel()const;  /// Get color window  /// \sa setColorWindow();  double colorWindow()const;public slots:  /// If a render has already been scheduled, this called is a no-op  void scheduleRender();  /// Force a render even if a render is already ocurring  void forceRender();  /// Reset cameras associated with all renderWindowItem  /// \sa vtkLightBoxRendererManager::ResetCamera  void resetCamera();  /// Set image data  /// \sa vtkLightBoxRendererManager::SetImageData  void setImageData(vtkImageData* newImageData);  /// Set corner annotation \a text  /// \sa vtkLightBoxRendererManager::SetCornerAnnotationText  void setCornerAnnotationText(const QString& text);  /// Set background color  /// \sa vtkLightBoxRendererManager::SetBackgroundColor  void setBackgroundColor(const QColor& newBackgroundColor);  /// Set highlightedBox color  /// \sa vtkLightBoxRendererManager::SetHighlightedBoxColor  void setHighlightedBoxColor(const QColor& newHighlightedBoxColor);  /// Enable/Disable rendering  void setRenderEnabled(bool value);  /// Set RenderWindow layout type  /// \sa vtkLightBoxRendererManager::SetRenderWindowLayoutType  void setRenderWindowLayoutType(RenderWindowLayoutType layoutType);  /// Set color level  /// \sa vtkLightBoxRendererManager::SetColorLevel  void setColorLevel(double newColorLevel);  /// Set color window  /// \sa vtkLightBoxRendererManager::SetColorWindow  void setColorWindow(double newColorWindow);  /// Change the number of row of the associated lightBox  /// \sa lightBoxRendererManager()  /// \sa vtkLightBoxRendererManager::SetRenderWindowRowCount  void setLightBoxRendererManagerRowCount(int newRowCount);  /// Change the number of column of the associated lightBox  /// \sa lightBoxRendererManager()  /// \sa vtkLightBoxRendererManager::SetRenderWindowColumnCount  void setLightBoxRendererManagerColumnCount(int newColumnCount);  signals:  void resized(const QSize& size, const QSize& oldSize);protected:  virtual void resizeEvent(QResizeEvent * event);protected:  QScopedPointer<ctkVTKSliceViewPrivate> d_ptr;  private:  Q_DECLARE_PRIVATE(ctkVTKSliceView);  Q_DISABLE_COPY(ctkVTKSliceView);}; #endif
 |