VTK  9.5.2
vtkPlotPie.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
13
14#ifndef vtkPlotPie_h
15#define vtkPlotPie_h
16
17#include "vtkChartsCoreModule.h" // For export macro
18#include "vtkPlot.h"
19#include "vtkSmartPointer.h" // To hold ColorSeries etc.
20#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
21
22VTK_ABI_NAMESPACE_BEGIN
23class vtkContext2D;
24class vtkColorSeries;
25class vtkPoints2D;
26
27class vtkPlotPiePrivate;
28
29class VTKCHARTSCORE_EXPORT VTK_MARSHALAUTO vtkPlotPie : public vtkPlot
30{
31public:
32 vtkTypeMacro(vtkPlotPie, vtkPlot);
33 void PrintSelf(ostream& os, vtkIndent indent) override;
34
35 static vtkPlotPie* New();
36
40 bool Paint(vtkContext2D* painter) override;
41
48 bool PaintLegend(vtkContext2D* painter, const vtkRectf& rect, int legendIndex) override;
49
54 void SetDimensions(int arg1, int arg2, int arg3, int arg4);
55
60 void SetDimensions(const int arg[4]);
61
63
67 vtkGetVector4Macro(Dimensions, int);
69
73 void SetColorSeries(vtkColorSeries* colorSeries);
74
79
85 vtkIdType GetNearestPoint(const vtkVector2f& point, const vtkVector2f& tolerance,
86 vtkVector2f* location, vtkIdType* segmentId) override;
88
95 bool UpdateCache() override;
96
97protected:
99 ~vtkPlotPie() override;
100
102
107
112
113private:
114 vtkPlotPie(const vtkPlotPie&) = delete;
115 void operator=(const vtkPlotPie&) = delete;
116
117 vtkPlotPiePrivate* Private;
118};
119
120VTK_ABI_NAMESPACE_END
121#endif // vtkPlotPie_h
stores a list of colors.
Class for drawing 2D primitives to a graphical context.
a simple class to control print indentation
Definition vtkIndent.h:29
static vtkPlotPie * New()
~vtkPlotPie() override
int Dimensions[4]
Definition vtkPlotPie.h:101
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.
void SetColorSeries(vtkColorSeries *colorSeries)
Set the color series to use for the Pie.
bool PaintLegend(vtkContext2D *painter, const vtkRectf &rect, int legendIndex) override
Paint legend event for the XY plot, called whenever the legend needs the plot items symbol/mark/line ...
bool Paint(vtkContext2D *painter) override
Paint event for the item.
void SetDimensions(int arg1, int arg2, int arg3, int arg4)
Set the dimensions of the pie, arguments 1 and 2 are the x and y coordinate of the bottom corner.
vtkColorSeries * GetColorSeries()
Get the color series used.
bool UpdateCache() override
Update the internal cache.
void SetDimensions(const int arg[4])
Set the dimensions of the pie, elements 0 and 1 are the x and y coordinate of the bottom corner.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkSmartPointer< vtkColorSeries > ColorSeries
The color series to use for the pie.
Definition vtkPlotPie.h:106
vtkPoints2D * Points
Store a well packed set of angles for the wedges of the pie.
Definition vtkPlotPie.h:111
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.
represent and manipulate 2D points
Definition vtkPoints2D.h:27
Hold a reference to a vtkObjectBase instance.
int vtkIdType
Definition vtkType.h:332
#define VTK_MARSHALAUTO