cocoaTouch/OverlayViewController.h
changeset 3463 23c50be687a9
parent 3364 e5403e2bf02c
child 3490 016b3172b645
equal deleted inserted replaced
3462:4b36933dce1d 3463:23c50be687a9
    18     id popoverController;
    18     id popoverController;
    19 #endif
    19 #endif
    20     PopoverMenuViewController *popupMenu;
    20     PopoverMenuViewController *popupMenu;
    21     BOOL isPopoverVisible;
    21     BOOL isPopoverVisible;
    22     
    22     
       
    23     UITextField *writeChatTextField;
       
    24     
    23     CGFloat initialDistanceForPinching;
    25     CGFloat initialDistanceForPinching;
    24     CGPoint gestureStartPoint;
    26     CGPoint gestureStartPoint;
    25 }
    27 }
    26 
    28 
    27 @property (nonatomic,retain) id popoverController;
    29 @property (nonatomic,retain) id popoverController;
    28 @property (nonatomic,retain) PopoverMenuViewController *popupMenu;
    30 @property (nonatomic,retain) PopoverMenuViewController *popupMenu;
       
    31 @property (nonatomic,retain) UITextField *writeChatTextField;
    29 
    32 
    30 -(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event;
    33 -(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event;
    31 -(void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event;
    34 -(void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event;
    32 -(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event;
    35 -(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event;
    33 -(void) touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event;
    36 -(void) touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event;
    36 -(IBAction) buttonPressed:(id) sender;
    39 -(IBAction) buttonPressed:(id) sender;
    37 
    40 
    38 -(void) showPopover;
    41 -(void) showPopover;
    39 -(void) dismissPopover;
    42 -(void) dismissPopover;
    40 -(void) dimOverlay;
    43 -(void) dimOverlay;
    41 -(void) showMenuAfterwards;
    44 -(void) activateOverlay;
       
    45 -(void) chatAppear;
       
    46 -(void) chatDisappear;
    42 
    47 
    43 @end
    48 @end