API  1.0.0
CPEvent.h
Go to the documentation of this file.
1 
2 @interface CPEvent : CPObject
3 {
4  CPEventType _type;
5  CGPoint _location;
6  unsigned _modifierFlags;
7  CPTimeInterval _timestamp;
8  CPGraphicsContext _context;
9  int _eventNumber;
10  unsigned _clickCount;
11  float _pressure;
12  CPWindow _window;
13  Number _windowNumber;
14  CPString _characters;
15  CPString _charactersIgnoringModifiers;
16  BOOL _isARepeat;
17  unsigned _keyCode;
18  DOMEvent _DOMEvent;
19  int _data1;
20  int _data2;
21  short _subtype;
22 
23  float _deltaX;
24  float _deltaY;
25  float _deltaZ;
26  float _scrollingDeltaX;
27  float _scrollingDeltaY;
28  BOOL _hasPreciseScrollingDeltas;
29 
30 #if PLATFORM(DOM)
31  BOOL _suppressCappuccinoCut;
32  BOOL _suppressCappuccinoPaste;
33 #endif
34 
35  CPTrackingArea _trackingArea;
36 }
37 @end
An immutable string (collection of characters).
Definition: CPString.h:2
Definition: CPEvent.h:2