VTK
vtkRendererCollection.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkRendererCollection.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 =========================================================================*/
27 #ifndef vtkRendererCollection_h
28 #define vtkRendererCollection_h
29 
30 #include "vtkRenderingCoreModule.h" // For export macro
31 #include "vtkCollection.h"
32 #include "vtkRenderer.h" // Needed for static cast
33 
34 class VTKRENDERINGCORE_EXPORT vtkRendererCollection : public vtkCollection
35 {
36 public:
39  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
40 
45  { this->vtkCollection::AddItem(a); }
46 
47 
53  { return static_cast<vtkRenderer *>(this->GetNextItemAsObject()); }
54 
58  void Render();
59 
65 
71  { return static_cast<vtkRenderer *>(this->GetNextItemAsObject(cookie)); }
72 
73 protected:
76 
77 private:
78  // hide the standard AddItem from the user and the compiler.
79  void AddItem(vtkObject *o)
80  { this->vtkCollection::AddItem(o); }
81 
82  vtkRendererCollection(const vtkRendererCollection&) VTK_DELETE_FUNCTION;
83  void operator=(const vtkRendererCollection&) VTK_DELETE_FUNCTION;
84 };
85 
86 #endif
vtkCollectionSimpleIterator
void * vtkCollectionSimpleIterator
Definition: vtkCollection.h:47
vtkCollection.h
vtkObject
abstract base class for most VTK objects
Definition: vtkObject.h:60
vtkRenderer.h
vtkRendererCollection
a list of renderers
Definition: vtkRendererCollection.h:35
vtkRendererCollection::~vtkRendererCollection
~vtkRendererCollection()
Definition: vtkRendererCollection.h:75
vtkCollection::GetNextItemAsObject
vtkObject * GetNextItemAsObject()
Get the next item in the collection.
Definition: vtkCollection.h:177
vtkRendererCollection::AddItem
void AddItem(vtkRenderer *a)
Add a Renderer to the list.
Definition: vtkRendererCollection.h:44
vtkCollection
create and manipulate unsorted lists of objects
Definition: vtkCollection.h:52
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:40
vtkRendererCollection::New
static vtkRendererCollection * New()
vtkRendererCollection::GetNextItem
vtkRenderer * GetNextItem()
Get the next Renderer in the list.
Definition: vtkRendererCollection.h:52
vtkRenderer
abstract specification for renderers
Definition: vtkRenderer.h:64
vtkRendererCollection::Render
void Render()
Forward the Render() method to each renderer in the list.
vtkRendererCollection::GetNextRenderer
vtkRenderer * GetNextRenderer(vtkCollectionSimpleIterator &cookie)
Reentrant safe way to get an object in a collection.
Definition: vtkRendererCollection.h:70
vtkCollection::AddItem
void AddItem(vtkObject *)
Add an object to the list.
vtkRendererCollection::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkRendererCollection::GetFirstRenderer
vtkRenderer * GetFirstRenderer()
Get the first Renderer in the list.
vtkRendererCollection::vtkRendererCollection
vtkRendererCollection()
Definition: vtkRendererCollection.h:74