/usr/include/vtk-6.3/vtkCommand.h is in libvtk6-dev 6.3.0+dfsg1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkCommand.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkCommand - superclass for callback/observer methods
// .SECTION Description
// vtkCommand is an implementation of the observer/command design
// pattern. In this design pattern, any instance of vtkObject can be
// "observed" for any events it might invoke. For example,
// vtkRenderer invokes a StartEvent as it begins to render and a
// EndEvent when it finishes rendering. Filters (subclasses of
// vtkProcessObject) invoke StartEvent, ProgressEvent, and EndEvent as
// the filter processes data. Observers of events are added with the
// AddObserver() method found in vtkObject. AddObserver(), besides
// requiring an event id or name, also takes an instance of vtkCommand
// (or a subclasses). Note that vtkCommand is meant to be subclassed,
// so that you can package the information necessary to support your
// callback.
//
// Event processing can be organized in priority lists, so it is
// possible to truncate the processing of a particular event by
// setting the AbortFlag variable. The priority is set using the
// AddObserver() method. By default the priority is 0, events of the
// same priority are processed in last-in-first-processed order. The
// ordering/aborting of events is important for things like 3D
// widgets, which handle an event if the widget is selected (and then
// aborting further processing of that event). Otherwise. the event
// is passed along for further processing.
//
// When an instance of vtkObject invokes an event, it also passes an optional
// void pointer to a callData. This callData is NULL most of the time.
// The callData is not specific to a type of event but specific to a type
// of vtkObject invoking a specific event. For instance, vtkCommand::PickEvent
// is invoked by vtkProp with a NULL callData but is invoked by
// vtkInteractorStyleImage with a pointer to the vtkInteractorStyleImage object
// itself.
//
// Here is the list of events that may be invoked with a non-NULL callData.
// - vtkCommand::ProgressEvent
// - most of the objects return a pointer to a double value ranged between
// 0.0 and 1.0
// - Infovis/vtkFixedWidthTextReader returns a pointer to a float value equal
// to the number of lines read so far.
// - vtkCommand::ErrorEvent
// - an error message as a const char * string
// - vtkCommand::WarningEvent
// - a warning message as a const char * string
// - vtkCommand::StartAnimationCueEvent
// - a pointer to a vtkAnimationCue::AnimationCueInfo object
// - vtkCommand::EndAnimationCueEvent
// - a pointer to a vtkAnimationCue::AnimationCueInfo object
// - vtkCommand::AnimationCueTickEvent
// - a pointer to a vtkAnimationCue::AnimationCueInfo object
// - vtkCommand::PickEvent
// - Common/vtkProp returns NULL
// - Rendering/vtkInteractorStyleImage returns a pointer to itself
// - vtkCommand::StartPickEvent
// - Rendering/vtkPropPicker returns NULL
// - Rendering/vtkInteractorStyleImage returns a pointer to itself
// - vtkCommand::EndPickEvent
// - Rendering/vtkPropPicker returns NULL
// - Rendering/vtkInteractorStyleImage returns a pointer to itself
// - vtkCommand::WrongTagEvent
// - Parallel/vtkSocketCommunicator returns a received tag as a char *
// - vtkCommand::SelectionChangedEvent
// - Views/vtkView returns NULL
// - Views/vtkDataRepresentation returns a pointer to a vtkSelection
// - Rendering/vtkInteractorStyleRubberBand2D returns an array of 5 unsigned
// integers (p1x, p1y, p2x, p2y, mode), where mode is
// vtkInteractorStyleRubberBand2D::SELECT_UNION or
// vtkInteractorStyleRubberBand2D::SELECT_NORMAL
// - vtkCommand::AnnotationChangedEvent
// - GUISupport/Qt/vtkQtAnnotationView returns a pointer to a
// vtkAnnotationLayers
// - vtkCommand::PlacePointEvent
// - Widgets/vtkSeedWidget returns a pointer to an int, being the current
// handle number
// - vtkCommand::ResetWindowLevelEvent
// - Widgets/vtkImagePlaneWidget returns an array of 2 double values (window
// and level)
// - Rendering/vtkInteractorStyleImage returns a pointer to itself
// - vtkCommand::StartWindowLevelEvent
// - Widgets/vtkImagePlaneWidget returns an array of 2 double values (window
// and level)
// - Rendering/vtkInteractorStyleImage returns a pointer to itself
// - vtkCommand::EndWindowLevelEvent
// - Widgets/vtkImagePlaneWidget returns an array of 2 double values (window
// and level)
// - Rendering/vtkInteractorStyleImage returns a pointer to itself
// - vtkCommand::WindowLevelEvent
// - Widgets/vtkImagePlaneWidget returns an array of 2 double values (window
// and level)
// - Rendering/vtkInteractorStyleImage returns a pointer to itself
// - vtkCommand::CharEvent
// - most of the objects return NULL
// - GUISupport/Qt/QVTKWidget returns a QKeyEvent *
// - vtkCommand::TimerEvent
// - most of the objects return a to an int representing a timer id
// - Rendering/vtkXRenderWindowTclInteractor returns NULL
// - Widgets/vtkHoverWidget returns NULL
// - vtkCommand::CreateTimerEvent
// - Rendering/vtkGenericRenderWindowInteractor returns a to an int
// representing a timer id
// - vtkCommand::DestroyTimerEvent
// - Rendering/vtkGenericRenderWindowInteractor returns a to an int
// representing a timer id
// - vtkCommand::UserEvent
// - most of the objects return NULL
// - Infovis/vtkInteractorStyleTreeMapHover returns a pointer to a vtkIdType
// representing a pedigree id
// - vtkCommand::KeyPressEvent
// - most of the objects return NULL
// - GUISupport/Qt/QVTKWidget returns a QKeyEvent*
// - vtkCommand::KeyReleaseEvent
// - most of the objects return NULL
// - GUISupport/Qt/QVTKWidget returns a QKeyEvent*
// - vtkCommand::LeftButtonPressEvent
// - most of the objects return NULL
// - GUISupport/Qt/QVTKWidget returns a QMouseEvent*
// - vtkCommand::LeftButtonReleaseEvent
// - most of the objects return NULL
// - GUISupport/Qt/QVTKWidget returns a QMouseEvent*
// - vtkCommand::MouseMoveEvent
// - most of the objects return NULL
// - GUISupport/Qt/QVTKWidget returns a QMouseEvent*
// - vtkCommand::MouseWheelForwardEvent
// - most of the objects return NULL
// - GUISupport/Qt/QVTKWidget returns a QWheelEvent*
// - vtkCommand::MouseWheelBackwardEvent
// - most of the objects return NULL
// - GUISupport/Qt/QVTKWidget returns a QWheelEvent*
// - vtkCommand::RightButtonPressEvent
// - most of the objects return NULL
// - GUISupport/Qt/QVTKWidget returns a QMouseEvent*
// - vtkCommand::RightButtonReleaseEvent
// - most of the objects return NULL
// - GUISupport/Qt/QVTKWidget returns a QMouseEvent*
// - vtkCommand::MiddleButtonPressEvent
// - most of the objects return NULL
// - GUISupport/Qt/QVTKWidget returns a QMouseEvent*
// - vtkCommand::MiddleButtonReleaseEvent
// - most of the objects return NULL
// - GUISupport/Qt/QVTKWidget returns a QMouseEvent*
// - vtkCommand::CursorChangedEvent
// - most of the objects return a pointer to an int representing a shape
// - Rendering/vtkInteractorObserver returns NULL
// - vtkCommand::ResetCameraEvent
// - Rendering/vtkRenderer returns a pointer to itself
// - vtkCommand::ResetCameraClippingRangeEvent
// - Rendering/vtkRenderer returns a pointer to itself
// - vtkCommand::ActiveCameraEvent
// - Rendering/vtkRenderer returns a pointer to the active camera
// - vtkCommand::CreateCameraEvent
// - Rendering/vtkRenderer returns a pointer to the created camera
// - vtkCommand::EnterEvent
// - most of the objects return NULL
// - GUISupport/Qt/QVTKWidget returns a QEvent*
// - vtkCommand::LeaveEvent
// - most of the objects return NULL
// - GUISupport/Qt/QVTKWidget returns a QEvent*
// - vtkCommand::RenderWindowMessageEvent
// - Rendering/vtkWin32OpenGLRenderWindow return a pointer to a UINT message
// - vtkCommand::ComputeVisiblePropBoundsEvent
// - Rendering/vtkRenderer returns a pointer to itself
// - QVTKWidget::ContextMenuEvent
// - GUISupport/Qt/QVTKWidget returns a QContextMenuEvent*
// - QVTKWidget::DragEnterEvent
// - GUISupport/Qt/QVTKWidget returns a QDragEnterEvent*
// - QVTKWidget::DragMoveEvent
// - GUISupport/Qt/QVTKWidget returns a QDragMoveEvent*
// - QVTKWidget::DragLeaveEvent
// - GUISupport/Qt/QVTKWidget returns a QDragLeaveEvent*
// - QVTKWidget::DropEvent
// - GUISupport/Qt/QVTKWidget returns a QDropEvent*
// - vtkCommand::ViewProgressEvent
// - View/vtkView returns a ViewProgressEventCallData*
// - vtkCommand::VolumeMapperRenderProgressEvent
// - A pointer to a double value between 0.0 and 1.0
// - vtkCommand::VolumeMapperComputeGradientsProgressEvent
// - A pointer to a double value between 0.0 and 1.0
// - vtkCommand::TDxMotionEvent (TDx=3DConnexion)
// - A vtkTDxMotionEventInfo*
// - vtkCommand::TDxButtonPressEvent
// - A int* being the number of the button
// - vtkCommand::TDxButtonReleaseEvent
// - A int* being the number of the button
//
// .SECTION See Also
// vtkObject vtkCallbackCommand vtkOldStyleCallbackCommand
// vtkInteractorObserver vtk3DWidget
#ifndef vtkCommand_h
#define vtkCommand_h
#include "vtkCommonCoreModule.h" // For export macro
#include "vtkObjectBase.h"
#include "vtkObject.h" // Need vtkTypeMacro
// Define all types of events here.
// Using this macro makes it possible to avoid mismatches between the event
// enums and their string counterparts.
#define vtkAllEventsMacro() \
_vtk_add_event(AnyEvent)\
_vtk_add_event(DeleteEvent)\
_vtk_add_event(StartEvent)\
_vtk_add_event(EndEvent)\
_vtk_add_event(RenderEvent)\
_vtk_add_event(ProgressEvent)\
_vtk_add_event(PickEvent)\
_vtk_add_event(StartPickEvent)\
_vtk_add_event(EndPickEvent)\
_vtk_add_event(AbortCheckEvent)\
_vtk_add_event(ExitEvent)\
_vtk_add_event(LeftButtonPressEvent)\
_vtk_add_event(LeftButtonReleaseEvent)\
_vtk_add_event(MiddleButtonPressEvent)\
_vtk_add_event(MiddleButtonReleaseEvent)\
_vtk_add_event(RightButtonPressEvent)\
_vtk_add_event(RightButtonReleaseEvent)\
_vtk_add_event(EnterEvent)\
_vtk_add_event(LeaveEvent)\
_vtk_add_event(KeyPressEvent)\
_vtk_add_event(KeyReleaseEvent)\
_vtk_add_event(CharEvent)\
_vtk_add_event(ExposeEvent)\
_vtk_add_event(ConfigureEvent)\
_vtk_add_event(TimerEvent)\
_vtk_add_event(MouseMoveEvent)\
_vtk_add_event(MouseWheelForwardEvent)\
_vtk_add_event(MouseWheelBackwardEvent)\
_vtk_add_event(ActiveCameraEvent)\
_vtk_add_event(CreateCameraEvent)\
_vtk_add_event(ResetCameraEvent)\
_vtk_add_event(ResetCameraClippingRangeEvent)\
_vtk_add_event(ModifiedEvent)\
_vtk_add_event(WindowLevelEvent)\
_vtk_add_event(StartWindowLevelEvent)\
_vtk_add_event(EndWindowLevelEvent)\
_vtk_add_event(ResetWindowLevelEvent)\
_vtk_add_event(SetOutputEvent)\
_vtk_add_event(ErrorEvent)\
_vtk_add_event(WarningEvent)\
_vtk_add_event(StartInteractionEvent)\
/*^ mainly used by vtkInteractorObservers*/\
_vtk_add_event(InteractionEvent)\
_vtk_add_event(EndInteractionEvent)\
_vtk_add_event(EnableEvent)\
_vtk_add_event(DisableEvent)\
_vtk_add_event(CreateTimerEvent)\
_vtk_add_event(DestroyTimerEvent)\
_vtk_add_event(PlacePointEvent)\
_vtk_add_event(PlaceWidgetEvent)\
_vtk_add_event(CursorChangedEvent)\
_vtk_add_event(ExecuteInformationEvent)\
_vtk_add_event(RenderWindowMessageEvent)\
_vtk_add_event(WrongTagEvent)\
_vtk_add_event(StartAnimationCueEvent)\
/*^ used by vtkAnimationCue*/ \
_vtk_add_event(AnimationCueTickEvent)\
_vtk_add_event(EndAnimationCueEvent)\
_vtk_add_event(VolumeMapperRenderEndEvent)\
_vtk_add_event(VolumeMapperRenderProgressEvent)\
_vtk_add_event(VolumeMapperRenderStartEvent)\
_vtk_add_event(VolumeMapperComputeGradientsEndEvent)\
_vtk_add_event(VolumeMapperComputeGradientsProgressEvent)\
_vtk_add_event(VolumeMapperComputeGradientsStartEvent)\
_vtk_add_event(WidgetModifiedEvent)\
_vtk_add_event(WidgetValueChangedEvent)\
_vtk_add_event(WidgetActivateEvent)\
_vtk_add_event(ConnectionCreatedEvent)\
_vtk_add_event(ConnectionClosedEvent)\
_vtk_add_event(DomainModifiedEvent)\
_vtk_add_event(PropertyModifiedEvent)\
_vtk_add_event(UpdateEvent)\
_vtk_add_event(RegisterEvent)\
_vtk_add_event(UnRegisterEvent)\
_vtk_add_event(UpdateInformationEvent)\
_vtk_add_event(AnnotationChangedEvent)\
_vtk_add_event(SelectionChangedEvent)\
_vtk_add_event(UpdatePropertyEvent)\
_vtk_add_event(ViewProgressEvent)\
_vtk_add_event(UpdateDataEvent)\
_vtk_add_event(CurrentChangedEvent)\
_vtk_add_event(ComputeVisiblePropBoundsEvent)\
_vtk_add_event(TDxMotionEvent)\
/*^ 3D Connexion device event */\
_vtk_add_event(TDxButtonPressEvent)\
/*^ 3D Connexion device event */\
_vtk_add_event(TDxButtonReleaseEvent)\
/* 3D Connexion device event */\
_vtk_add_event(HoverEvent)\
_vtk_add_event(LoadStateEvent)\
_vtk_add_event(SaveStateEvent)\
_vtk_add_event(StateChangedEvent)\
_vtk_add_event(WindowMakeCurrentEvent)\
_vtk_add_event(WindowIsCurrentEvent)\
_vtk_add_event(WindowFrameEvent)\
_vtk_add_event(HighlightEvent)\
_vtk_add_event(WindowSupportsOpenGLEvent)\
_vtk_add_event(WindowIsDirectEvent)\
_vtk_add_event(UncheckedPropertyModifiedEvent)\
_vtk_add_event(MessageEvent)
#define vtkEventDeclarationMacro(_enum_name)\
enum _enum_name{\
NoEvent = 0,\
vtkAllEventsMacro() \
UserEvent = 1000\
};
// The superclass that all commands should be subclasses of
class VTKCOMMONCORE_EXPORT vtkCommand : public vtkObjectBase
{
public:
vtkTypeMacro(vtkCommand,vtkObjectBase);
// Description:
// Decrease the reference count (release by another object). This has
// the same effect as invoking Delete() (i.e., it reduces the reference
// count by 1).
void UnRegister();
virtual void UnRegister(vtkObjectBase *)
{ this->UnRegister(); }
// Description:
// All derived classes of vtkCommand must implement this
// method. This is the method that actually does the work of the
// callback. The caller argument is the object invoking the event,
// the eventId parameter is the id of the event, and callData
// parameter is data that can be passed into the execute
// method. (Note: vtkObject::InvokeEvent() takes two parameters: the
// event id (or name) and call data. Typically call data is NULL,
// but the user can package data and pass it this
// way. Alternatively, a derived class of vtkCommand can be used to
// pass data.)
virtual void Execute(vtkObject *caller, unsigned long eventId,
void *callData) = 0;
// Description:
// Convenience methods for translating between event names and event
// ids.
static const char *GetStringFromEventId(unsigned long event);
static unsigned long GetEventIdFromString(const char *event);
// Description:
// Set/Get the abort flag. If this is set to true no further
// commands are executed.
void SetAbortFlag(int f)
{ this->AbortFlag = f; }
int GetAbortFlag()
{ return this->AbortFlag; }
void AbortFlagOn()
{ this->SetAbortFlag(1); }
void AbortFlagOff()
{ this->SetAbortFlag(0); }
// Description:
// Set/Get the passive observer flag. If this is set to true, this
// indicates that this command does not change the state of the
// system in any way. Passive observers are processed first, and
// are not called even when another command has focus.
void SetPassiveObserver(int f)
{ this->PassiveObserver = f; }
int GetPassiveObserver()
{ return this->PassiveObserver; }
void PassiveObserverOn()
{ this->SetPassiveObserver(1); }
void PassiveObserverOff()
{ this->SetPassiveObserver(0); }
//BTX
// Description:
// All the currently defined events are listed here. Developers can
// use -- vtkCommand::UserEvent + int to specify their own event
// ids.
// Add new events by updating vtkAllEventsMacro.
#define _vtk_add_event(Enum) Enum,
vtkEventDeclarationMacro(EventIds)
#undef _vtk_add_event
//ETX
protected:
int AbortFlag;
int PassiveObserver;
vtkCommand();
virtual ~vtkCommand() {}
friend class vtkSubjectHelper;
//BTX
vtkCommand(const vtkCommand& c) : vtkObjectBase(c) {}
void operator=(const vtkCommand&) {}
//ETX
};
#endif /* vtkCommand_h */
// VTK-HeaderTest-Exclude: vtkCommand.h
|