VTK  9.1.0
vtkTableToGraph.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkTableToGraph.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
15/*-------------------------------------------------------------------------
16 Copyright 2008 Sandia Corporation.
17 Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
18 the U.S. Government retains certain rights in this software.
19-------------------------------------------------------------------------*/
72#ifndef vtkTableToGraph_h
73#define vtkTableToGraph_h
74
75#include "vtkGraphAlgorithm.h"
76#include "vtkInfovisCoreModule.h" // For export macro
77
78class vtkBitArray;
80class vtkStringArray;
81class vtkTable;
82
83class VTKINFOVISCORE_EXPORT vtkTableToGraph : public vtkGraphAlgorithm
84{
85public:
88 void PrintSelf(ostream& os, vtkIndent indent) override;
89
94 void AddLinkVertex(const char* column, const char* domain = nullptr, int hidden = 0);
95
100
104 void AddLinkEdge(const char* column1, const char* column2);
105
110
112
115 vtkGetObjectMacro(LinkGraph, vtkMutableDirectedGraph);
118
124 vtkStringArray* column, vtkStringArray* domain = nullptr, vtkBitArray* hidden = nullptr);
125
127
130 vtkSetMacro(Directed, bool);
131 vtkGetMacro(Directed, bool);
132 vtkBooleanMacro(Directed, bool);
134
139
148
149protected:
152
157
158 int FillInputPortInformation(int port, vtkInformation* info) override;
159
161
163
167
168private:
169 vtkTableToGraph(const vtkTableToGraph&) = delete;
170 void operator=(const vtkTableToGraph&) = delete;
171};
172
173#endif
Proxy object to connect input/output ports.
dynamic, self-adjusting array of bits
Definition: vtkBitArray.h:34
Superclass for algorithms that produce only graph as output.
a simple class to control print indentation
Definition: vtkIndent.h:113
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
An editable directed graph.
a vtkAbstractArray subclass for strings
convert a vtkTable into a vtkGraph
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
void AddLinkVertex(const char *column, const char *domain=nullptr, int hidden=0)
Add a vertex to the link graph.
void SetLinkGraph(vtkMutableDirectedGraph *g)
The graph describing how to link the columns in the table.
void ClearLinkEdges()
Clear the link graph edges.
static vtkTableToGraph * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkTableToGraph() override
void ClearLinkVertices()
Clear the link graph vertices.
int RequestDataObject(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
vtkStringArray * VertexTableDomains
void AddLinkEdge(const char *column1, const char *column2)
Add an edge to the link graph.
vtkMutableDirectedGraph * LinkGraph
vtkMTimeType GetMTime() override
Get the current modified time.
int ValidateLinkGraph()
Validate that the link graph is in the appropriate format.
void LinkColumnPath(vtkStringArray *column, vtkStringArray *domain=nullptr, vtkBitArray *hidden=nullptr)
Links the columns in a specific order.
void SetVertexTableConnection(vtkAlgorithmOutput *in)
A convenience method for setting the vertex table input.
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:172
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:287