VTK  9.3.20240424
vtkHardwareWindow.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
18#ifndef vtkHardwareWindow_h
19#define vtkHardwareWindow_h
20
21#include "vtkRenderingCoreModule.h" // For export macro
22#include "vtkWindow.h"
23#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
24
25VTK_ABI_NAMESPACE_BEGIN
26class VTKRENDERINGCORE_EXPORT VTK_MARSHALAUTO vtkHardwareWindow : public vtkWindow
27{
28public:
31 void PrintSelf(ostream& os, vtkIndent indent) override;
32
33 // create the window (not the instance)
34 virtual void Create() {}
35
36 // destroy the window (not the instance)
37 virtual void Destroy() {}
38
39protected:
42
43 bool Borders;
44
45private:
46 vtkHardwareWindow(const vtkHardwareWindow&) = delete;
47 void operator=(const vtkHardwareWindow&) = delete;
48};
49
50VTK_ABI_NAMESPACE_END
51#endif
create a window for renderers to draw into
~vtkHardwareWindow() override
virtual void Create()
static vtkHardwareWindow * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual void Destroy()
a simple class to control print indentation
Definition vtkIndent.h:108
window superclass for vtkRenderWindow
Definition vtkWindow.h:48
#define VTK_MARSHALAUTO