VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Infovis
Core
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
;
49
class
vtkMutableDirectedGraph
;
50
class
vtkMutableGraphHelper
;
51
class
vtkStringArray
;
52
class
vtkTable
;
53
54
class
VTKINFOVISCORE_EXPORT
vtkStreamGraph
:
public
vtkGraphAlgorithm
55
{
56
public
:
57
static
vtkStreamGraph
*
New
();
58
vtkTypeMacro(
vtkStreamGraph
,
vtkGraphAlgorithm
);
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
:
84
vtkStreamGraph
();
85
~
vtkStreamGraph
();
86
87
virtual
int
RequestData
(
88
vtkInformation
*,
89
vtkInformationVector
**,
90
vtkInformationVector
*);
91
92
vtkMutableGraphHelper
*
CurrentGraph
;
93
vtkMergeGraphs
*
MergeGraphs
;
94
bool
UseEdgeWindow
;
95
double
EdgeWindow
;
96
char
*
EdgeWindowArrayName
;
97
98
private
:
99
vtkStreamGraph
(
const
vtkStreamGraph
&);
// Not implemented
100
void
operator=(
const
vtkStreamGraph
&);
// Not implemented
101
};
102
103
#endif
104
Generated on Thu May 24 2012 22:22:26 for VTK by
1.8.1