// // TuveAppDelegate.h // Tuve // // Created by Philippe Hausler on 9/8/08. // Copyright Philippe Hausler 2008. All rights reserved. // #import <UIKit/UIKit.h> @class TuveViewController; @class TuveConnection; @interface TuveAppDelegate : NSObject <UIApplicationDelegate> { IBOutlet UIWindow *window; IBOutlet UINavigationController *nav; IBOutlet UIViewController *flipside; IBOutlet UITextField *chatBox; TuveConnection *connection; BOOL flipped; MPMoviePlayerController *player; } @property (nonatomic, retain) UIWindow *window; - (IBAction)toggleView; - (IBAction)sendChat; @end