equal
deleted
inserted
replaced
9 #import <UIKit/UIKit.h> |
9 #import <UIKit/UIKit.h> |
10 |
10 |
11 |
11 |
12 @interface overlayViewController : UIViewController { |
12 @interface overlayViewController : UIViewController { |
13 NSTimer *dimTimer; |
13 NSTimer *dimTimer; |
|
14 |
14 CGFloat initialDistanceForPinching; |
15 CGFloat initialDistanceForPinching; |
15 CGPoint gestureStartPoint; |
16 CGPoint gestureStartPoint; |
16 } |
17 } |
17 |
18 |
18 @property (nonatomic,retain) NSTimer *dimTimer; |
19 @property (nonatomic,retain) NSTimer *dimTimer; |
19 |
|
20 |
20 |
21 -(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event; |
21 -(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event; |
22 -(void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event; |
22 -(void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event; |
23 -(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event; |
23 -(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event; |
24 |
24 |
25 -(IBAction) buttonReleased:(id) sender; |
25 -(IBAction) buttonReleased:(id) sender; |
26 -(IBAction) buttonPressed:(id) sender; |
26 -(IBAction) buttonPressed:(id) sender; |
|
27 -(IBAction) showPopover; |
27 |
28 |
28 -(void) dimOverlay; |
29 -(void) dimOverlay; |
29 -(void) showMenuAfterwards; |
30 -(void) showMenuAfterwards; |
30 |
31 |
31 @end |
32 @end |