Slicer  4.10
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
vtkMRMLChartViewNode.h
Go to the documentation of this file.
1 /*=auto=========================================================================
2 
3  Portions (c) Copyright 2005 Brigham and Women's Hospital (BWH) All Rights Reserved.
4 
5  See COPYRIGHT.txt
6  or http://www.slicer.org/copyright/copyright.txt for details.
7 
8  Program: 3D Slicer
9  Module: $RCSfile: vtkMRMLChartNode.h,v $
10  Date: $Date: 2006/03/19 17:12:29 $
11  Version: $Revision: 1.3 $
12 
13 =========================================================================auto=*/
14 
15 #ifndef __vtkMRMLChartViewNode_h
16 #define __vtkMRMLChartViewNode_h
17 
19 
23 class VTK_MRML_EXPORT vtkMRMLChartViewNode : public vtkMRMLAbstractViewNode
24 {
25 public:
26  static vtkMRMLChartViewNode *New();
28  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
29 
30  //--------------------------------------------------------------------------
32  //--------------------------------------------------------------------------
33 
34  virtual vtkMRMLNode* CreateNodeInstance() VTK_OVERRIDE;
35 
38  virtual void ReadXMLAttributes( const char** atts) VTK_OVERRIDE;
39 
42  virtual void WriteXML(ostream& of, int indent) VTK_OVERRIDE;
43 
44 
47  virtual void Copy(vtkMRMLNode *node) VTK_OVERRIDE;
48 
51  virtual const char* GetNodeTagName() VTK_OVERRIDE;
52 
55  void SetChartNodeID(const char *);
56 
59  vtkGetStringMacro(ChartNodeID);
60 
64  virtual void UpdateReferences() VTK_OVERRIDE;
65 
68  virtual void UpdateReferenceID(const char *oldID, const char *newID) VTK_OVERRIDE;
69 
72  enum
73  {
74  ChartNodeChangedEvent = 16000
75  };
76 
77 protected:
81  void operator=(const vtkMRMLChartViewNode&);
82 
83  char* ChartNodeID;
84 };
85 
86 #endif
void operator=(const vtkMRMLAbstractViewNode &)
virtual vtkMRMLNode * CreateNodeInstance()=0
Create instance of the default node. Like New only virtual.
Abstract MRML node to represent a view. The class holds the properties common to any view type (3D...
MRML node to represent chart view parameters.
Abstract Superclass for all specific types of MRML nodes.
Definition: vtkMRMLNode.h:138
void PrintSelf(ostream &os, vtkIndent indent) VTK_OVERRIDE