VTK
vtkChartHistogram2D.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkChart2DHistogram.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 
23 #ifndef __vtkChart2DHistogram_h
24 #define __vtkChart2DHistogram_h
25 
26 #include "vtkChartXY.h"
27 #include "vtkSmartPointer.h" // For SP ivars
28 
29 class vtkColorLegend;
30 class vtkPlotHistogram2D;
31 class vtkImageData;
32 class vtkScalarsToColors;
33 
35 {
36 public:
38  virtual void PrintSelf(ostream &os, vtkIndent indent);
39 
41  static vtkChartHistogram2D* New();
42 
46  virtual void Update();
47 
48  virtual void SetInput(vtkImageData *data, vtkIdType z = 0);
49  virtual void SetTransferFunction(vtkScalarsToColors *function);
50 
52  virtual bool Hit(const vtkContextMouseEvent &mouse);
53 
54 protected:
57 
59 
62 
63  class Private;
64  Private* Storage;
65 
66  virtual bool UpdateLayout(vtkContext2D *painter);
67 
68 private:
69  vtkChartHistogram2D(const vtkChartHistogram2D &); // Not implemented.
70  void operator=(const vtkChartHistogram2D &); // Not implemented.
71 };
72 
73 #endif //__vtkChart2DHistogram_h
#define VTK_CHARTS_EXPORT
vtkSmartPointer< vtkPlotHistogram2D > Histogram
virtual void PrintSelf(ostream &os, vtkIndent indent)
static vtkChartXY * New()
virtual void Update()
record modification and/or execution time
Definition: vtkTimeStamp.h:33
Legend item to display vtkScalarsToColors.
int vtkIdType
Definition: vtkType.h:255
Superclass for mapping scalar values into colors.
Class for drawing 2D primitives to a graphical context.
Definition: vtkContext2D.h:54
virtual bool UpdateLayout(vtkContext2D *painter)
data structure to represent mouse events.
a simple class to control print indentation
Definition: vtkIndent.h:37
topologically and geometrically regular array of data
Definition: vtkImageData.h:43
Factory class for drawing XY charts.
Definition: vtkChartXY.h:46
virtual bool Hit(const vtkContextMouseEvent &mouse)