VTK  9.6.1
vtkPlotBox.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
3
15
16#ifndef vtkPlotBox_h
17#define vtkPlotBox_h
18
19#include "vtkChartsCoreModule.h" // For export macro
20#include "vtkPlot.h"
21#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
22
23VTK_ABI_NAMESPACE_BEGIN
24class vtkBrush;
25class vtkTextProperty;
26class vtkTable;
27class vtkStdString;
29
30class VTKCHARTSCORE_EXPORT VTK_MARSHALAUTO vtkPlotBox : public vtkPlot
31{
32public:
33 vtkTypeMacro(vtkPlotBox, vtkPlot);
34 void PrintSelf(ostream& os, vtkIndent indent) override;
35
39 static vtkPlotBox* New();
40
44 bool Paint(vtkContext2D* painter) override;
45
52 bool PaintLegend(vtkContext2D* painter, const vtkRectf& rect, int legendIndex) override;
53
55
58 void SetInputData(vtkTable* table) override;
59 void SetInputData(vtkTable* table, const vtkStdString&, const vtkStdString&) override
60 {
61 this->SetInputData(table);
62 }
63
64
70
76 vtkIdType GetNearestPoint(const vtkVector2f& point, const vtkVector2f& tolerance,
77 vtkVector2f* location, vtkIdType* segmentId) override;
79
81
87
91 void SetColumnColor(const vtkStdString& colName, double* rgb);
92
98
100
103 vtkGetMacro(BoxWidth, float);
104 vtkSetMacro(BoxWidth, float);
106
108
111 vtkGetObjectMacro(TitleProperties, vtkTextProperty);
113
120 bool UpdateCache() override;
121
122protected:
124 ~vtkPlotBox() override;
125
126 void DrawBoxPlot(int, unsigned char*, double, vtkContext2D*);
127
129
132 class Private;
133 Private* Storage;
135
139 float BoxWidth;
140
145
150
151private:
152 vtkPlotBox(const vtkPlotBox&) = delete;
153 void operator=(const vtkPlotBox&) = delete;
154};
155
156VTK_ABI_NAMESPACE_END
157#endif // vtkPlotBox_h
provides a brush that fills shapes drawn by vtkContext2D.
Definition vtkBrush.h:31
Class for drawing 2D primitives to a graphical context.
a simple class to control print indentation
Definition vtkIndent.h:29
vtkScalarsToColors * LookupTable
Lookup Table for coloring points by scalar value.
Definition vtkPlotBox.h:144
vtkStringArray * GetLabels() override
Get the plot labels.
float BoxWidth
Width of boxes.
Definition vtkPlotBox.h:139
void SetLookupTable(vtkScalarsToColors *lut)
Specify a lookup table for the mapper to use.
bool UpdateCache() override
Update the internal cache.
void DrawBoxPlot(int, unsigned char *, double, vtkContext2D *)
vtkScalarsToColors * GetLookupTable()
Specify a lookup table for the mapper to use.
void SetColumnColor(const vtkStdString &colName, double *rgb)
Helper function to set the color of a given column.
virtual void CreateDefaultLookupTable()
Create default lookup table.
vtkIdType GetNearestPoint(const vtkVector2f &point, const vtkVector2f &tolerance, vtkVector2f *location, vtkIdType *segmentId) override
Function to query a plot for the nearest point to the specified coordinate.
vtkTextProperty * TitleProperties
Text properties for the plot title.
Definition vtkPlotBox.h:149
Private * Storage
Definition vtkPlotBox.h:133
~vtkPlotBox() override
bool Paint(vtkContext2D *painter) override
Paint event for the plot, called whenever the chart needs to be drawn.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void SetInputData(vtkTable *table, const vtkStdString &, const vtkStdString &) override
This is a convenience function to set the input table.
Definition vtkPlotBox.h:59
void SetInputData(vtkTable *table) override
This is a convenience function to set the input table.
static vtkPlotBox * New()
Creates a box plot.
bool PaintLegend(vtkContext2D *painter, const vtkRectf &rect, int legendIndex) override
Paint legend event for the plot, called whenever the legend needs the plot items symbol/mark/line dra...
virtual void SetInputData(vtkTable *table)
This is a convenience function to set the input table and the x, y column for the plot.
virtual vtkIdType GetNearestPoint(const vtkVector2f &point, const vtkVector2f &tolerance, vtkVector2f *location, vtkIdType *segmentId)
Function to query a plot for the nearest point to the specified coordinate.
Superclass for mapping scalar values to colors.
Wrapper around std::string to keep symbols short.
a vtkAbstractArray subclass for strings
A table, which contains similar-typed columns of data.
Definition vtkTable.h:60
represent text properties.
int vtkIdType
Definition vtkType.h:368
#define VTK_MARSHALAUTO