cocoaTouch/overlayViewController.h
changeset 3113 2829ea0dd47c
parent 3073 c22b395b6a2e
equal deleted inserted replaced
3112:f1bbe35ddb83 3113:2829ea0dd47c
     9 #import <UIKit/UIKit.h>
     9 #import <UIKit/UIKit.h>
    10 
    10 
    11 
    11 
    12 @interface overlayViewController : UIViewController <UIActionSheetDelegate> {
    12 @interface overlayViewController : UIViewController <UIActionSheetDelegate> {
    13     NSTimer *dimTimer;
    13     NSTimer *dimTimer;
       
    14     UIPopoverController* menuPopover;
    14     
    15     
    15     CGFloat initialDistanceForPinching;
    16     CGFloat initialDistanceForPinching;
    16     CGPoint gestureStartPoint;
    17     CGPoint gestureStartPoint;
    17 }
    18 }
    18 
    19 
    19 @property (nonatomic,retain) NSTimer *dimTimer;
    20 @property (nonatomic,retain) NSTimer *dimTimer;
       
    21 @property (nonatomic,retain) UIPopoverController* menuPopover;
    20 
    22 
    21 -(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event;
    23 -(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event;
    22 -(void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event;
    24 -(void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event;
    23 -(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event;
    25 -(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event;
    24 
    26