cocoaTouch/OverlayViewController.h
changeset 3463 23c50be687a9
parent 3364 e5403e2bf02c
child 3490 016b3172b645
--- a/cocoaTouch/OverlayViewController.h	Sat May 15 09:21:25 2010 +0000
+++ b/cocoaTouch/OverlayViewController.h	Sun May 16 17:23:30 2010 +0000
@@ -20,12 +20,15 @@
     PopoverMenuViewController *popupMenu;
     BOOL isPopoverVisible;
     
+    UITextField *writeChatTextField;
+    
     CGFloat initialDistanceForPinching;
     CGPoint gestureStartPoint;
 }
 
 @property (nonatomic,retain) id popoverController;
 @property (nonatomic,retain) PopoverMenuViewController *popupMenu;
+@property (nonatomic,retain) UITextField *writeChatTextField;
 
 -(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event;
 -(void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event;
@@ -38,6 +41,8 @@
 -(void) showPopover;
 -(void) dismissPopover;
 -(void) dimOverlay;
--(void) showMenuAfterwards;
+-(void) activateOverlay;
+-(void) chatAppear;
+-(void) chatDisappear;
 
 @end