File: vtkWidgetCallbackMapper.h

package info (click to toggle)
paraview 3.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 124,600 kB
  • ctags: 133,728
  • sloc: cpp: 958,817; ansic: 509,658; tcl: 45,787; xml: 23,401; python: 19,574; perl: 3,112; yacc: 1,787; java: 1,517; sh: 665; asm: 471; lex: 400; makefile: 168; objc: 28
file content (109 lines) | stat: -rwxr-xr-x 4,196 bytes parent folder | download
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
/*=========================================================================

  Program:   Visualization Toolkit
  Module:    $RCSfile: vtkWidgetCallbackMapper.h,v $

  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 vtkWidgetCallbackMapper - map widget events into callbacks
// .SECTION Description
// vtkWidgetCallbackMapper maps widget events (defined in vtkWidgetEvent.h)
// into static class methods, and provides facilities to invoke the methods.
// This class is templated and meant to be used as an internal helper class
// by the widget classes. The class works in combination with the class
// vtkWidgetEventTranslator, which translates VTK events into widget events.
//
// .SECTION See Also
// vtkWidgetEvent vtkWidgetEventTranslator

#ifndef __vtkWidgetCallbackMapper_h
#define __vtkWidgetCallbackMapper_h

#include "vtkObject.h"

class vtkWidgetEvent;
class vtkAbstractWidget;
class vtkWidgetEventTranslator;
class vtkCallbackMap; // PIMPL encapsulation of STL map


class VTK_WIDGETS_EXPORT vtkWidgetCallbackMapper : public vtkObject
{
public:
  // Description:
  // Instantiate the class.
  static vtkWidgetCallbackMapper *New();

  // Description:
  // Standard macros.
  vtkTypeRevisionMacro(vtkWidgetCallbackMapper,vtkObject);
  void PrintSelf(ostream& os, vtkIndent indent);

  // Description:
  // Specify the vtkWidgetEventTranslator to coordinate with.
  void SetEventTranslator(vtkWidgetEventTranslator *t);
  vtkGetObjectMacro(EventTranslator,vtkWidgetEventTranslator);

//BTX
  // Description:
  // Convenient typedef for working with callbacks.
  typedef void (*CallbackType)(vtkAbstractWidget*);
//ETX

  // Description:
  // This class works with the class vtkWidgetEventTranslator to set up the
  // initial coorespondence between VTK events, widget events, and callbacks.
  // Different flavors of the SetCallbackMethod() are available depending on
  // what sort of modifiers are to be associated with a particular event.
  // Typically the widgets should use this method to set up their event
  // callbacks. If modifiers are not provided (i.e., the VTKEvent is a 
  // unsigned long eventId) then modifiers are ignored. Otherwise, a vtkEvent
  // instance is used to fully quality the events.
  void SetCallbackMethod(unsigned long VTKEvent, unsigned long widgetEvent, 
                         vtkAbstractWidget *w, CallbackType f);
  void SetCallbackMethod(unsigned long VTKEvent, int modifiers, char keyCode, 
                         int repeatCount, char* keySym,
                         unsigned long widgetEvent, 
                         vtkAbstractWidget *w, CallbackType f);
  //void SetCallbackMethod(vtkWidgetEvent *vtkEvent, unsigned long widgetEvent,
  //                       vtkAbstractWidget *w, CallbackType f);

  // Description:
  // This method invokes the callback given a widget event. A non-zero value
  // is returned if the listed event is registered.
  void InvokeCallback(unsigned long widgetEvent);
  
protected:
  vtkWidgetCallbackMapper();
  ~vtkWidgetCallbackMapper();

  // Translates VTK events into widget events
  vtkWidgetEventTranslator *EventTranslator;

  // Invoke the method associated with a particular widget event
  vtkCallbackMap *CallbackMap;
  
  // Description:
  // This method is used to assign a callback (implemented as a static class
  // method) to a particular widget event. This is an internal method used by
  // widgets to map widget events into invocations of class methods.
  void SetCallbackMethod(unsigned long widgetEvent, 
                         vtkAbstractWidget *w, CallbackType f);
  

private:
  vtkWidgetCallbackMapper(const vtkWidgetCallbackMapper&);  //Not implemented
  void operator=(const vtkWidgetCallbackMapper&);  //Not implemented

};


#endif /* __vtkWidgetCallbackMapper_h */