5
// Created by döme on 25.10.2009.
6
// Copyright 2009 __MyCompanyName__. All rights reserved.
9
#import <Foundation/Foundation.h>
10
#import "GraphicsServices.h"
12
extern NSString* TapIdKey;
13
extern NSString* TapTouchesKey;
14
extern NSString* TapGSEventKey;
15
extern NSString* TapTouchPhaseKey;
16
extern NSString* TapRecordedEventKey;
29
void _printGSEvent(UIEvent* event);
31
@interface UIEvent (TappityPrivate)
32
- (id)_initWithEvent:(GSEventRef) event touches: (id) touches;
33
- (GSEventRef)_gsEvent;
37
@interface UITouch (TappityPrivate)
38
+ (id)_createTouchesWithGSEvent:(GSEvent *)arg1 phase:(int)arg2 view:(id)arg3;
39
- (void)_setIsFirstTouchForView:(BOOL)arg1;
40
- (BOOL)_isFirstTouchForView;
41
- (void)setTimestamp:(double)arg1;
42
- (void)setPhase:(int)arg1;
43
- (void)setTapCount:(unsigned int)arg1;
44
- (void)setIsTap:(BOOL)arg1;
45
- (void)setIsWarped:(BOOL)arg1;
46
- (void)setWindow:(id)arg1;
47
- (void)setView:(id)arg1;
48
- (void)setGestureView:(id)arg1;
50
- (void)_setLocationInWindow:(struct CGPoint)arg1 resetPrevious:(BOOL)arg2;
52
- (void)_addGestureRecognizer:(id)arg1;
53
- (void)_removeGestureRecognizer:(id)arg1;
54
- (id)_gestureRecognizers;
55
- (void)_clearGestureRecognizers;
56
- (BOOL)_touchesBeganWasDelayed;
57
- (void)_pushPhase:(int)arg1;
59
- (struct CGPoint)_locationInWindow:(id)arg1;
63
@interface Tappity : NSObject {