InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
CTrackerEventHandler.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Lonnie Millett
6 //
7 // $Author$
8 //
9 // $DateTime$
10 //
11 // $Revision$
12 //
13 // $Change$
14 //
15 // Copyright 1997-2010 Adobe Systems Incorporated. All rights reserved.
16 //
17 // NOTICE: Adobe permits you to use, modify, and distribute this file in accordance
18 // with the terms of the Adobe license agreement accompanying it. If you have received
19 // this file from a source other than Adobe, then your use, modification, or
20 // distribution of it requires the prior written permission of Adobe.
21 //
22 //========================================================================================
23 
24 #ifndef __CTRACKEREVENTHANDLER__
25 #define __CTRACKEREVENTHANDLER__
26 
27 #include "CEventHandler.h"
28 
29 //----------------------------------------------------------------------------------------
30 // CTrackerEventHandler: Forwards events to CTracker
31 //----------------------------------------------------------------------------------------
32 
33 
37 {
38  public:
43 
46  virtual ~CTrackerEventHandler();
47 
54  virtual bool16 LButtonDn(IEvent* theEvent);
55 
56 
60  virtual bool16 LButtonUp(IEvent* theEvent);
61 
62 
80  virtual bool16 MouseDrag(IEvent* e);
81 
87  virtual bool16 KeyCmd(IEvent* e);
88 
89 
94  virtual bool16 KeyUp(IEvent* e);
95 
100  virtual bool16 KeyDown(IEvent* e);
101 
106  virtual bool16 Suspend(IEvent* theEvent);
107 
108 
113  virtual bool16 Deactivate(IEvent* theEvent);
114 
115 
120  virtual bool16 RButtonDn(IEvent *e);
121 
126  virtual bool16 RButtonUp(IEvent *e);
127 
132  virtual bool16 MouseWheel(IEvent* e);
133 
134 };
135 
136 
137 #endif