VTK  9.2.6
vtkTreeMapView.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkTreeMapView.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 vtkTreeMapView_h
34#define vtkTreeMapView_h
35
36#include "vtkTreeAreaView.h"
37#include "vtkViewsInfovisModule.h" // For export macro
38
42
43class VTKVIEWSINFOVIS_EXPORT vtkTreeMapView : public vtkTreeAreaView
44{
45public:
48 void PrintSelf(ostream& os, vtkIndent indent) override;
49
51
55 virtual void SetLayoutStrategy(const char* name);
56 virtual void SetLayoutStrategyToBox();
60
62
65 virtual void SetFontSizeRange(const int maxSize, const int minSize, const int delta = 4);
66 virtual void GetFontSizeRange(int range[3]);
68
69protected:
71 ~vtkTreeMapView() override;
72
76
77private:
78 vtkTreeMapView(const vtkTreeMapView&) = delete;
79 void operator=(const vtkTreeMapView&) = delete;
80};
81
82#endif
abstract superclass for all area layout strategies
a tree map layout that puts vertices in square-ish boxes
a simple class to control print indentation
Definition vtkIndent.h:40
a horizontal and vertical slicing tree map layout
Hold a reference to a vtkObjectBase instance.
uses the squarify tree map layout algorithm
Accepts a graph and a hierarchy - currently a tree - and provides a hierarchy-aware display.
Displays a tree as a tree map.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkSmartPointer< vtkBoxLayoutStrategy > BoxLayout
virtual void SetLayoutStrategyToBox()
Sets the treemap layout strategy.
virtual void GetFontSizeRange(int range[3])
The sizes of the fonts used for labeling.
void SetLayoutStrategy(vtkAreaLayoutStrategy *s) override
Sets the treemap layout strategy.
static vtkTreeMapView * New()
virtual void SetLayoutStrategyToSquarify()
Sets the treemap layout strategy.
~vtkTreeMapView() override
vtkSmartPointer< vtkSliceAndDiceLayoutStrategy > SliceAndDiceLayout
virtual void SetFontSizeRange(const int maxSize, const int minSize, const int delta=4)
The sizes of the fonts used for labeling.
virtual void SetLayoutStrategyToSliceAndDice()
Sets the treemap layout strategy.
virtual void SetLayoutStrategy(const char *name)
Sets the treemap layout strategy.
vtkSmartPointer< vtkSquarifyLayoutStrategy > SquarifyLayout