VTK
vtkWidgetEvent.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkWidgetEvent.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=========================================================================*/
26#ifndef vtkWidgetEvent_h
27#define vtkWidgetEvent_h
28
29#include "vtkInteractionWidgetsModule.h" // For export macro
30#include "vtkObject.h"
31
32class VTKINTERACTIONWIDGETS_EXPORT vtkWidgetEvent : public vtkObject
33{
34public:
38 static vtkWidgetEvent *New() ;
39
41
45 void PrintSelf(ostream& os, vtkIndent indent);
47
52 NoEvent = 0,
75 Right
76 };
77
79
82 static const char *GetStringFromEventId(unsigned long event);
83 static unsigned long GetEventIdFromString(const char *event);
85
86protected:
88 virtual ~vtkWidgetEvent() {}
89
90private:
91 vtkWidgetEvent(const vtkWidgetEvent&) VTK_DELETE_FUNCTION;
92 void operator=(const vtkWidgetEvent&) VTK_DELETE_FUNCTION;
93
94};
95
96#endif
a simple class to control print indentation
Definition: vtkIndent.h:40
abstract base class for most VTK objects
Definition: vtkObject.h:60
define widget events
static unsigned long GetEventIdFromString(const char *event)
static vtkWidgetEvent * New()
The object factory constructor.
static const char * GetStringFromEventId(unsigned long event)
Convenience methods for translating between event names and event ids.
virtual ~vtkWidgetEvent()
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
WidgetEventIds
All the widget events are defined here.