vtkPVCAVEConfigInformation.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Kitware Inc.
2 // SPDX-License-Identifier: BSD-3-Clause
13 #ifndef vtkPVCAVEConfigInformation_h
14 #define vtkPVCAVEConfigInformation_h
15 
16 #include "vtkPVInformation.h" // for base class
17 #include "vtkTuple.h" // for vtkTuple
18 
19 #include <memory> // for std::unique_ptr
20 
22 
24 {
25 public:
28  void PrintSelf(ostream& os, vtkIndent indent) override;
29 
33  void CopyFromObject(vtkObject*) override;
34 
38  void AddInformation(vtkPVInformation*) override;
39 
41 
44  void CopyToStream(vtkClientServerStream*) override;
45  void CopyFromStream(const vtkClientServerStream*) override;
47 
49 
52  virtual bool GetIsInCAVE();
54 
56 
59  virtual double GetEyeSeparation();
61 
63 
66  virtual int GetNumberOfDisplays();
68 
70 
73  virtual bool GetShowBorders();
75 
77 
80  virtual bool GetFullScreen();
82 
84 
87  virtual vtkTuple<int, 4> GetGeometry(int index);
89 
91 
94  virtual bool GetHasCorners(int index);
96 
98 
101  virtual vtkTuple<double, 3> GetLowerLeft(int index);
103 
105 
108  virtual vtkTuple<double, 3> GetLowerRight(int index);
110 
112 
115  virtual vtkTuple<double, 3> GetUpperRight(int index);
117 
118 protected:
120  ~vtkPVCAVEConfigInformation() override;
121 
122 private:
123  class vtkInternals;
124  std::unique_ptr<vtkInternals> Internal;
125 
127  void operator=(const vtkPVCAVEConfigInformation&) = delete;
128 };
129 
130 #endif
virtual void CopyFromStream(const vtkClientServerStream *)
Manage a serialized version of the information.
void PrintSelf(ostream &os, vtkIndent indent) override
Store messages for the interpreter.
void operator=(const vtkPVInformation &)=delete
#define VTKREMOTINGCORE_EXPORT
A vtkClientServerStream serializable container intended to expose the api and information presented b...
virtual void AddInformation(vtkPVInformation *)
Merge another information object.
virtual void CopyToStream(vtkClientServerStream *)=0
Manage a serialized version of the information.
virtual void CopyFromObject(vtkObject *)
Transfer information about a single object into this object.
static vtkObject * New()
Superclass for information objects.