VTK
vtkStreamGraph.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkStreamGraph.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 -------------------------------------------------------------------------*/
41 #ifndef vtkStreamGraph_h
42 #define vtkStreamGraph_h
43 
44 #include "vtkInfovisCoreModule.h" // For export macro
45 #include "vtkGraphAlgorithm.h"
46 
47 class vtkBitArray;
48 class vtkMergeGraphs;
51 class vtkStringArray;
52 class vtkTable;
53 
55 {
56 public:
57  static vtkStreamGraph* New();
59  void PrintSelf(ostream& os, vtkIndent indent);
60 
62 
64  vtkSetMacro(UseEdgeWindow, bool);
65  vtkGetMacro(UseEdgeWindow, bool);
66  vtkBooleanMacro(UseEdgeWindow, bool);
68 
70 
71  vtkSetStringMacro(EdgeWindowArrayName);
72  vtkGetStringMacro(EdgeWindowArrayName);
74 
76 
79  vtkSetMacro(EdgeWindow, double);
80  vtkGetMacro(EdgeWindow, double);
82 
83 protected:
86 
87  virtual int RequestData(
91 
95  double EdgeWindow;
97 
98 private:
99  vtkStreamGraph(const vtkStreamGraph&); // Not implemented
100  void operator=(const vtkStreamGraph&); // Not implemented
101 };
102 
103 #endif
104 
VTKINFOVISCORE_EXPORT
#define VTKINFOVISCORE_EXPORT
Definition: vtkInfovisCoreModule.h:15
vtkStreamGraph::~vtkStreamGraph
~vtkStreamGraph()
vtkStreamGraph::RequestData
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
vtkGraphAlgorithm
Superclass for algorithms that produce only graph as output.
Definition: vtkGraphAlgorithm.h:54
vtkMutableDirectedGraph
An editable directed graph.
Definition: vtkMutableDirectedGraph.h:51
vtkStreamGraph
combines two graphs
Definition: vtkStreamGraph.h:55
vtkStreamGraph::UseEdgeWindow
bool UseEdgeWindow
Definition: vtkStreamGraph.h:94
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
vtkTable
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:68
vtkTypeMacro
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:642
vtkStreamGraph::CurrentGraph
vtkMutableGraphHelper * CurrentGraph
Definition: vtkStreamGraph.h:92
vtkMutableGraphHelper
Helper class for building a directed or directed graph.
Definition: vtkMutableGraphHelper.h:47
vtkStreamGraph::MergeGraphs
vtkMergeGraphs * MergeGraphs
Definition: vtkStreamGraph.h:93
vtkGraphAlgorithm.h
vtkStreamGraph::EdgeWindowArrayName
char * EdgeWindowArrayName
Definition: vtkStreamGraph.h:96
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkSetStringMacro
#define vtkSetStringMacro(name)
Definition: vtkSetGet.h:104
vtkGetMacro
#define vtkGetMacro(name, type)
Definition: vtkSetGet.h:93
vtkGetStringMacro
vtkGetStringMacro(ExtensionsString)
vtkInfovisCoreModule.h
vtkStreamGraph::New
static vtkStreamGraph * New()
vtkBooleanMacro
vtkBooleanMacro(IgnoreDriverBugs, bool)
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkSetMacro
vtkSetMacro(IgnoreDriverBugs, bool)
vtkMergeGraphs
combines two graphs
Definition: vtkMergeGraphs.h:64
vtkStringArray
a vtkAbstractArray subclass for strings
Definition: vtkStringArray.h:45
vtkStreamGraph::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
vtkBitArray
dynamic, self-adjusting array of bits
Definition: vtkBitArray.h:36
vtkStreamGraph::EdgeWindow
double EdgeWindow
Definition: vtkStreamGraph.h:95
vtkStreamGraph::vtkStreamGraph
vtkStreamGraph()