VTK
vtkObserverMediator.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkObserverMediator.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=========================================================================*/
31#ifndef vtkObserverMediator_h
32#define vtkObserverMediator_h
33
34#include "vtkRenderingCoreModule.h" // For export macro
35#include "vtkObject.h"
36
39class vtkObserverMap;
40
41
42class VTKRENDERINGCORE_EXPORT vtkObserverMediator : public vtkObject
43{
44public:
49
51
55 void PrintSelf(ostream& os, vtkIndent indent);
57
59
64 vtkGetObjectMacro(Interactor, vtkRenderWindowInteractor);
66
73
78
79protected:
82
83 // The render window whose cursor we are controlling
85
86 // A map whose key is the observer*, and whose data value is a cursor
87 // request. Note that a special compare function is used to sort the
88 // widgets based on the observer's priority.
89 vtkObserverMap *ObserverMap; //given a widget*, return its data
90
91 // The current observer and cursor shape
94
95private:
96 vtkObserverMediator(const vtkObserverMediator&) VTK_DELETE_FUNCTION;
97 void operator=(const vtkObserverMediator&) VTK_DELETE_FUNCTION;
98};
99
100#endif
a simple class to control print indentation
Definition: vtkIndent.h:40
an abstract superclass for classes observing events invoked by vtkRenderWindowInteractor
abstract base class for most VTK objects
Definition: vtkObject.h:60
manage contention for cursors and other resources
void RemoveAllCursorShapeRequests(vtkInteractorObserver *)
Remove all requests for cursor shape from a given interactor.
static vtkObserverMediator * New()
Instantiate the class.
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
void SetInteractor(vtkRenderWindowInteractor *iren)
Specify the instance of vtkRenderWindow whose cursor shape is to be managed.
vtkRenderWindowInteractor * Interactor
int RequestCursorShape(vtkInteractorObserver *, int cursorShape)
Method used to request a cursor shape.
vtkObserverMap * ObserverMap
vtkInteractorObserver * CurrentObserver
platform-independent render window interaction including picking and frame rate control.