VTK  9.4.20250406
vtkCompositeControlPointsItem.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
21#ifndef vtkCompositeControlPointsItem_h
22#define vtkCompositeControlPointsItem_h
23
24#include "vtkChartsCoreModule.h" // For export macro
26#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
27
28VTK_ABI_NAMESPACE_BEGIN
31
34{
35public:
37 void PrintSelf(ostream& os, vtkIndent indent) override;
38
43
48
50
54 vtkGetObjectMacro(OpacityFunction, vtkPiecewiseFunction);
56
58 {
59 ColorPointsFunction = 1,
60 OpacityPointsFunction = 2,
61 ColorAndOpacityPointsFunction = 3
62 };
63
65
77 vtkSetMacro(PointsFunction, int);
78 vtkGetMacro(PointsFunction, int);
80
86 vtkIdType AddPoint(double* newPos) override;
87
88 using Superclass::RemovePoint;
94 vtkIdType RemovePoint(double* pos) override;
95
97
104 vtkSetMacro(UseOpacityPointHandles, bool);
105 vtkGetMacro(UseOpacityPointHandles, bool);
107
109
112 bool MouseMoveEvent(const vtkContextMouseEvent& mouse) override;
113 bool MouseDoubleClickEvent(const vtkContextMouseEvent& mouse) override;
114 bool MouseButtonPressEvent(const vtkContextMouseEvent& mouse) override;
116
122 vtkIdType GetNumberOfPoints() const override;
123
130 void GetControlPoint(vtkIdType index, double point[4]) const override;
131
138 void SetControlPoint(vtkIdType index, double* point) override;
139
140protected:
143
144 void emitEvent(unsigned long event, void* params) override;
145
147
148 void DrawPoint(vtkContext2D* painter, vtkIdType index) override;
149 void EditPoint(float tX, float tY) override;
150 virtual void EditPointCurve(vtkIdType idx);
151
154
156 vtkPiecewiseFunction* OpacityFunction = nullptr;
157 vtkPiecewisePointHandleItem* OpacityPointHandle = nullptr;
158 bool UseOpacityPointHandles = false;
159
160private:
162 void operator=(const vtkCompositeControlPointsItem&) = delete;
163};
164
165VTK_ABI_NAMESPACE_END
166#endif
Control points for vtkColorTransferFunction.
Defines a transfer function for mapping a property to an RGB color value.
Control points for vtkCompositeFunction.
vtkMTimeType GetControlPointsMTime() override
Must be reimplemented by subclasses to calculate the points to draw.
vtkIdType RemovePoint(double *pos) override
Remove a point of the function.
~vtkCompositeControlPointsItem() override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkIdType AddPoint(double *newPos) override
Add a point to the function.
virtual void EditPointCurve(vtkIdType idx)
static vtkCompositeControlPointsItem * New()
Creates a piecewise control points object.
virtual void SetColorTransferFunction(vtkColorTransferFunction *function)
Set the color transfer function to draw its points.
bool MouseMoveEvent(const vtkContextMouseEvent &mouse) override
Mouse move event.
void EditPoint(float tX, float tY) override
void SetOpacityFunction(vtkPiecewiseFunction *opacity)
Utility function that calls SetPiecewiseFunction()
void emitEvent(unsigned long event, void *params) override
bool MouseButtonPressEvent(const vtkContextMouseEvent &mouse) override
Mouse move event.
void SetControlPoint(vtkIdType index, double *point) override
Sets the x and y coordinates as well as the midpoint and sharpness, of the control point correspondin...
vtkIdType GetNumberOfPoints() const override
Returns the total number of points, either from using the superclass implementation or the opacity fu...
bool MouseDoubleClickEvent(const vtkContextMouseEvent &mouse) override
Mouse move event.
void DrawPoint(vtkContext2D *painter, vtkIdType index) override
Internal function that paints a collection of points and optionally excludes some.
void GetControlPoint(vtkIdType index, double point[4]) const override
Returns the x and y coordinates as well as the midpoint and sharpness of the control point correspond...
Class for drawing 2D primitives to a graphical context.
data structure to represent mouse events.
a simple class to control print indentation
Definition vtkIndent.h:108
Defines a 1D piecewise function.
a vtkContextItem that draws handles around a point of a piecewise function
int vtkIdType
Definition vtkType.h:332
vtkTypeUInt32 vtkMTimeType
Definition vtkType.h:287
#define VTK_MARSHALAUTO