Mercurial > sdl-ios-xcode
comparison src/video/uikit/SDL_uikitview.h @ 5136:b915b3181cc2
Fixed spacing, adding vim spacing hints
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 01 Feb 2011 09:02:53 -0800 |
parents | 31607094315c |
children | b530ef003506 |
comparison
equal
deleted
inserted
replaced
5135:5f09cb749d75 | 5136:b915b3181cc2 |
---|---|
36 #else | 36 #else |
37 @interface SDL_uikitview : UIView { | 37 @interface SDL_uikitview : UIView { |
38 #endif | 38 #endif |
39 | 39 |
40 #ifdef FIXED_MULTITOUCH | 40 #ifdef FIXED_MULTITOUCH |
41 long touchId; | 41 long touchId; |
42 #ifndef IPHONE_TOUCH_EFFICIENT_DANGEROUS | 42 #ifndef IPHONE_TOUCH_EFFICIENT_DANGEROUS |
43 UITouch *finger[MAX_SIMULTANEOUS_TOUCHES]; | 43 UITouch *finger[MAX_SIMULTANEOUS_TOUCHES]; |
44 #endif | 44 #endif |
45 #endif | 45 #endif |
46 | 46 |
47 #if SDL_IPHONE_KEYBOARD | 47 #if SDL_IPHONE_KEYBOARD |
48 UITextField *textField; | 48 UITextField *textField; |
49 BOOL keyboardVisible; | 49 BOOL keyboardVisible; |
50 #endif | 50 #endif |
51 | 51 |
52 } | 52 } |
53 - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event; | 53 - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event; |
54 - (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event; | 54 - (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event; |
55 - (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event; | 55 - (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event; |
56 | 56 |
61 @property (readonly) BOOL keyboardVisible; | 61 @property (readonly) BOOL keyboardVisible; |
62 #endif | 62 #endif |
63 | 63 |
64 @end | 64 @end |
65 /* *INDENT-ON* */ | 65 /* *INDENT-ON* */ |
66 | |
67 /* vi: set ts=4 sw=4 expandtab: */ |