VTK  9.0.2
vtkCompositeControlPointsItem.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkCompositeControlPointsItem.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 
30 #ifndef vtkCompositeControlPointsItem_h
31 #define vtkCompositeControlPointsItem_h
32 
33 #include "vtkChartsCoreModule.h" // For export macro
35 
38 
40 {
41 public:
43  void PrintSelf(ostream& os, vtkIndent indent) override;
44 
49 
54 
56 
60  vtkGetObjectMacro(OpacityFunction, vtkPiecewiseFunction);
62 
64  {
65  ColorPointsFunction = 1,
66  OpacityPointsFunction = 2,
67  ColorAndOpacityPointsFunction = 3
68  };
70 
82  vtkSetMacro(PointsFunction, int);
83  vtkGetMacro(PointsFunction, int);
85 
91  vtkIdType AddPoint(double* newPos) override;
92 
98  vtkIdType RemovePoint(double* pos) override;
99 
101 
108  vtkSetMacro(UseOpacityPointHandles, bool);
109  vtkGetMacro(UseOpacityPointHandles, bool);
111 
113 
116  bool MouseMoveEvent(const vtkContextMouseEvent& mouse) override;
117  bool MouseDoubleClickEvent(const vtkContextMouseEvent& mouse) override;
118  bool MouseButtonPressEvent(const vtkContextMouseEvent& mouse) override;
120 
121 protected:
124 
125  void emitEvent(unsigned long event, void* params) override;
126 
128 
129  vtkIdType GetNumberOfPoints() const override;
130  void DrawPoint(vtkContext2D* painter, vtkIdType index) override;
131  void GetControlPoint(vtkIdType index, double* pos) const override;
132  void SetControlPoint(vtkIdType index, double* point) override;
133  void EditPoint(float tX, float tY) override;
134  virtual void EditPointCurve(vtkIdType idx);
135 
138 
143 
144 private:
146  void operator=(const vtkCompositeControlPointsItem&) = delete;
147 };
148 
149 #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
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)
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
vtkPiecewisePointHandleItem * OpacityPointHandle
void SetOpacityFunction(vtkPiecewiseFunction *opacity)
Utility function that calls SetPiecewiseFunction()
void emitEvent(unsigned long event, void *params) override
bool MouseButtonPressEvent(const vtkContextMouseEvent &mouse) override
Mouse button down event Return true if the item holds the event, false if the event can be propagated...
static vtkCompositeControlPointsItem * New()
Creates a piecewise control points object.
void SetControlPoint(vtkIdType index, double *point) override
Sets the x and y coordinates as well as the midpoint and sharpness of the control point corresponding...
vtkIdType GetNumberOfPoints() const override
Return the number of points in the color transfer function.
bool MouseDoubleClickEvent(const vtkContextMouseEvent &mouse) override
Mouse button double click event.
void DrawPoint(vtkContext2D *painter, vtkIdType index) override
void GetControlPoint(vtkIdType index, double *pos) 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.
Definition: vtkContext2D.h:53
data structure to represent mouse events.
a simple class to control print indentation
Definition: vtkIndent.h:34
Defines a 1D piecewise function.
a vtkContextItem that draws handles around a point of a piecewise function
@ point
Definition: vtkX3D.h:242
@ index
Definition: vtkX3D.h:252
int vtkIdType
Definition: vtkType.h:338
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:293