VTK
vtkPointSetToLabelHierarchy.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPointSetToLabelHierarchy.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 -------------------------------------------------------------------------*/
33 #ifndef vtkPointSetToLabelHierarchy_h
34 #define vtkPointSetToLabelHierarchy_h
35 
36 #include "vtkRenderingLabelModule.h" // For export macro
38 
39 class vtkTextProperty;
40 
41 class VTKRENDERINGLABEL_EXPORT vtkPointSetToLabelHierarchy : public vtkLabelHierarchyAlgorithm
42 {
43 public:
46  void PrintSelf( ostream& os, vtkIndent indent ) override;
47 
49 
52  vtkSetMacro(TargetLabelCount,int);
53  vtkGetMacro(TargetLabelCount,int);
55 
57 
60  vtkSetMacro(MaximumDepth,int);
61  vtkGetMacro(MaximumDepth,int);
63 
65 
68  vtkSetMacro(UseUnicodeStrings,bool);
69  vtkGetMacro(UseUnicodeStrings,bool);
70  vtkBooleanMacro(UseUnicodeStrings,bool);
72 
74 
77  virtual void SetLabelArrayName(const char* name);
78  virtual const char* GetLabelArrayName();
80 
82 
85  virtual void SetSizeArrayName(const char* name);
86  virtual const char* GetSizeArrayName();
88 
90 
93  virtual void SetPriorityArrayName(const char* name);
94  virtual const char* GetPriorityArrayName();
96 
98 
101  virtual void SetIconIndexArrayName(const char* name);
102  virtual const char* GetIconIndexArrayName();
104 
106 
109  virtual void SetOrientationArrayName(const char* name);
110  virtual const char* GetOrientationArrayName();
112 
114 
117  virtual void SetBoundedSizeArrayName(const char* name);
118  virtual const char* GetBoundedSizeArrayName();
120 
122 
125  virtual void SetTextProperty(vtkTextProperty* tprop);
126  vtkGetObjectMacro(TextProperty, vtkTextProperty);
128 
129 protected:
131  ~vtkPointSetToLabelHierarchy() override;
132 
133  int FillInputPortInformation( int port, vtkInformation* info ) override;
134 
135  int RequestData(
136  vtkInformation* request,
137  vtkInformationVector** inputVector,
138  vtkInformationVector* outputVector ) override;
139 
144 
145 private:
147  void operator = ( const vtkPointSetToLabelHierarchy& ) = delete;
148 };
149 
150 #endif // vtkPointSetToLabelHierarchy_h
Store vtkAlgorithm input/output information.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
a simple class to control print indentation
Definition: vtkIndent.h:33
represent text properties.
build a label hierarchy for a graph or point set.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkLabelHierarchyAlgorithm * New()
Superclass for algorithms that produce only label hierarchies as output.
Store zero or more vtkInformation instances.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.