]> git.saurik.com Git - iphone-api.git/blame - UIKit/UITouch.h
Commit the Preferences folder (for WinterBoard).
[iphone-api.git] / UIKit / UITouch.h
CommitLineData
2cd8f71b
JF
1/*
2 * Generated by class-dump 3.1.2.
3 *
4 * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2007 by Steve Nygard.
5 */
6
7#import <Foundation/NSObject.h>
8
9@class UIView, UIWindow;
10
11@interface UITouch : NSObject
12{
13 double _timestamp;
14 int _phase;
15 unsigned int _tapCount;
16 UIWindow *_window;
17 UIView *_view;
18 struct CGPoint _locationInWindow;
19 struct CGPoint _previousLocationInWindow;
20 struct {
21 unsigned int _firstTouchForView:1;
22 unsigned int _isTap:1;
23 } _touchFlags;
24}
25
26- (void)dealloc;
27- (double)timestamp;
28- (int)phase;
29- (int)info;
30- (unsigned int)tapCount;
31- (BOOL)isTap;
32- (id)window;
33- (id)view;
34- (struct CGPoint)locationInView:(id)fp8;
35- (struct CGPoint)previousLocationInView:(id)fp8;
36
37@end
38