Slicer  4.8
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
vtkMRMLModelSliceDisplayableManager.h
Go to the documentation of this file.
1 /*==============================================================================
2 
3  Program: 3D Slicer
4 
5  Copyright (c) Kitware Inc.
6 
7  See COPYRIGHT.txt
8  or http://www.slicer.org/copyright/copyright.txt for details.
9 
10  Unless required by applicable law or agreed to in writing, software
11  distributed under the License is distributed on an "AS IS" BASIS,
12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  See the License for the specific language governing permissions and
14  limitations under the License.
15 
16  This file was originally developed by Julien Finet, Kitware Inc.
17  and was partially funded by NIH grant 3P41RR013218-12S1
18 
19 ==============================================================================*/
20 
21 #ifndef __vtkMRMLModelSliceDisplayableManager_h
22 #define __vtkMRMLModelSliceDisplayableManager_h
23 
24 // MRMLDisplayableManager includes
26 #include "vtkMRMLDisplayableManagerExport.h"
27 
29 class vtkCutter;
30 class vtkProp;
31 
37 class VTK_MRML_DISPLAYABLEMANAGER_EXPORT vtkMRMLModelSliceDisplayableManager
39 {
40 
41 public:
45  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
46 
47  // DisplayableNode handling customizations
48  void AddDisplayableNode(vtkMRMLDisplayableNode* displayableNode);
49  void RemoveDisplayableNode(vtkMRMLDisplayableNode* displayableNode);
50 
51 protected:
52 
55 
56  virtual void UnobserveMRMLScene() VTK_OVERRIDE;
57  virtual void OnMRMLSceneNodeAdded(vtkMRMLNode* node) VTK_OVERRIDE;
58  virtual void OnMRMLSceneNodeRemoved(vtkMRMLNode* node) VTK_OVERRIDE;
59  virtual void ProcessMRMLNodesEvents(vtkObject* caller, unsigned long event, void* callData) VTK_OVERRIDE;
60 
61  virtual void UpdateFromMRML() VTK_OVERRIDE;
62  virtual void OnMRMLSceneStartClose() VTK_OVERRIDE;
63  virtual void OnMRMLSceneEndClose() VTK_OVERRIDE;
64  virtual void OnMRMLSceneEndBatchProcess() VTK_OVERRIDE;
65 
68  virtual void Create() VTK_OVERRIDE;
69  int AddingDisplayableNode;
70 
71 private:
72 
74  void operator=(const vtkMRMLModelSliceDisplayableManager&); // Not Implemented
75 
76  class vtkInternal;
77  vtkInternal * Internal;
78  friend class vtkInternal;
79 
80 };
81 
82 #endif
Displayable manager for slice (2D) views.
virtual void UnobserveMRMLScene()
static vtkMRMLAbstractSliceViewDisplayableManager * New()
void PrintSelf(ostream &os, vtkIndent indent) VTK_OVERRIDE
Abstract Superclass for all specific types of MRML nodes.
Definition: vtkMRMLNode.h:135