VTK
vtkEdgeLayout.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkEdgeLayout.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 (c) Sandia Corporation
17  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
18 ----------------------------------------------------------------------------*/
31 #ifndef vtkEdgeLayout_h
32 #define vtkEdgeLayout_h
33 
34 #include "vtkInfovisLayoutModule.h" // For export macro
35 #include "vtkGraphAlgorithm.h"
36 
39 
41 {
42 public:
43  static vtkEdgeLayout *New();
45  void PrintSelf(ostream& os, vtkIndent indent);
46 
48 
52 
54  virtual unsigned long GetMTime();
55 
56 protected:
59 
61 
63 
66  unsigned long ObserverTag;
68 
73 
74 private:
75 
76  vtkGraph *InternalGraph;
77 
78  vtkEdgeLayout(const vtkEdgeLayout&); // Not implemented.
79  void operator=(const vtkEdgeLayout&); // Not implemented.
80 };
81 
82 #endif
vtkGetObjectMacro
#define vtkGetObjectMacro(name, type)
Definition: vtkSetGet.h:232
vtkGraphAlgorithm
Superclass for algorithms that produce only graph as output.
Definition: vtkGraphAlgorithm.h:54
vtkEdgeLayout::ObserverTag
unsigned long ObserverTag
Definition: vtkEdgeLayout.h:66
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
vtkTypeMacro
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:642
vtkEdgeLayout
layout graph edges
Definition: vtkEdgeLayout.h:41
vtkEdgeLayout::~vtkEdgeLayout
~vtkEdgeLayout()
vtkEdgeLayout::New
static vtkEdgeLayout * New()
vtkEdgeLayout::SetLayoutStrategy
void SetLayoutStrategy(vtkEdgeLayoutStrategy *strategy)
vtkGraphAlgorithm.h
vtkEdgeLayout::RequestData
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkEdgeLayout::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
vtkEdgeLayout::EventForwarder
vtkEventForwarderCommand * EventForwarder
Definition: vtkEdgeLayout.h:65
vtkEdgeLayout::vtkEdgeLayout
vtkEdgeLayout()
VTKINFOVISLAYOUT_EXPORT
#define VTKINFOVISLAYOUT_EXPORT
Definition: vtkInfovisLayoutModule.h:15
vtkInfovisLayoutModule.h
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkEdgeLayout::GetMTime
virtual unsigned long GetMTime()
vtkEdgeLayoutStrategy
abstract superclass for all edge layout strategies
Definition: vtkEdgeLayoutStrategy.h:36
vtkGraph
Base class for graph data types.
Definition: vtkGraph.h:289
vtkEventForwarderCommand
a simple event forwarder command
Definition: vtkEventForwarderCommand.h:34
vtkEdgeLayout::LayoutStrategy
vtkEdgeLayoutStrategy * LayoutStrategy
Definition: vtkEdgeLayout.h:60