VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkTableToGraph.h 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00015 /*------------------------------------------------------------------------- 00016 Copyright 2008 Sandia Corporation. 00017 Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, 00018 the U.S. Government retains certain rights in this software. 00019 -------------------------------------------------------------------------*/ 00074 #ifndef __vtkTableToGraph_h 00075 #define __vtkTableToGraph_h 00076 00077 #include "vtkInfovisCoreModule.h" // For export macro 00078 #include "vtkGraphAlgorithm.h" 00079 00080 class vtkBitArray; 00081 class vtkMutableDirectedGraph; 00082 class vtkStringArray; 00083 class vtkTable; 00084 00085 class VTKINFOVISCORE_EXPORT vtkTableToGraph : public vtkGraphAlgorithm 00086 { 00087 public: 00088 static vtkTableToGraph* New(); 00089 vtkTypeMacro(vtkTableToGraph,vtkGraphAlgorithm); 00090 void PrintSelf(ostream& os, vtkIndent indent); 00091 00094 void AddLinkVertex(const char* column, const char* domain = 0, int hidden = 0); 00095 00097 void ClearLinkVertices(); 00098 00101 void AddLinkEdge(const char* column1, const char* column2); 00102 00104 void ClearLinkEdges(); 00105 00107 00108 vtkGetObjectMacro(LinkGraph, vtkMutableDirectedGraph); 00109 void SetLinkGraph(vtkMutableDirectedGraph* g); 00111 00114 void LinkColumnPath(vtkStringArray* column, vtkStringArray* domain = 0, vtkBitArray* hidden = 0); 00115 00117 00118 vtkSetMacro(Directed, bool); 00119 vtkGetMacro(Directed, bool); 00120 vtkBooleanMacro(Directed, bool); 00122 00124 virtual unsigned long GetMTime(); 00125 00130 void SetVertexTableConnection(vtkAlgorithmOutput* in); 00131 00132 protected: 00133 vtkTableToGraph(); 00134 ~vtkTableToGraph(); 00135 00137 int ValidateLinkGraph(); 00138 00139 virtual int FillInputPortInformation(int port, vtkInformation* info); 00140 00141 virtual int RequestData( 00142 vtkInformation*, 00143 vtkInformationVector**, 00144 vtkInformationVector*); 00145 00146 virtual int RequestDataObject( 00147 vtkInformation*, 00148 vtkInformationVector**, 00149 vtkInformationVector*); 00150 00151 bool Directed; 00152 vtkMutableDirectedGraph* LinkGraph; 00153 vtkStringArray* VertexTableDomains; 00154 00155 private: 00156 vtkTableToGraph(const vtkTableToGraph&); // Not implemented 00157 void operator=(const vtkTableToGraph&); // Not implemented 00158 }; 00159 00160 #endif 00161