VTK  9.4.20250114
vtkPropItem.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
17#ifndef vtkPropItem_h
18#define vtkPropItem_h
19
21#include "vtkRenderingContext2DModule.h" // For export macro
22#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
23
24VTK_ABI_NAMESPACE_BEGIN
25class vtkProp;
26
27class VTKRENDERINGCONTEXT2D_EXPORT VTK_MARSHALAUTO vtkPropItem : public vtkAbstractContextItem
28{
29public:
30 static vtkPropItem* New();
32 void PrintSelf(ostream& os, vtkIndent indent) override;
33
34 bool Paint(vtkContext2D* painter) override;
35 void ReleaseGraphicsResources() override;
36
40 virtual void SetPropObject(vtkProp* PropObject);
41 vtkGetObjectMacro(PropObject, vtkProp);
42
43protected:
45 ~vtkPropItem() override;
46
47 // Sync the active vtkCamera with the GL state set by the painter.
48 virtual void UpdateTransforms();
49
50 // Restore the vtkCamera state.
51 virtual void ResetTransforms();
52
53private:
54 vtkProp* PropObject;
55
56 vtkPropItem(const vtkPropItem&) = delete;
57 void operator=(const vtkPropItem&) = delete;
58};
59
60VTK_ABI_NAMESPACE_END
61#endif // vtkPropItem_h
base class for items that are part of a vtkContextScene.
Class for drawing 2D primitives to a graphical context.
a simple class to control print indentation
Definition vtkIndent.h:108
Embed a vtkProp in a vtkContextScene.
Definition vtkPropItem.h:28
bool Paint(vtkContext2D *painter) override
Paint event for the item, called whenever the item needs to be drawn.
static vtkPropItem * New()
virtual void UpdateTransforms()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual void SetPropObject(vtkProp *PropObject)
The actor to render.
~vtkPropItem() override
virtual void ResetTransforms()
void ReleaseGraphicsResources() override
Release graphics resources hold by the item.
abstract superclass for all actors, volumes and annotations
Definition vtkProp.h:66
#define VTK_MARSHALAUTO