#import <Cocoa/Cocoa.h>
#import "AppController.h"
@interface AppDelegate : NSObject
{
IBOutlet AppController* appController;
}
+ (void)initialize;
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification;
- (void)applicationWillFinishLaunching:(NSNotification *)aNotification;
- (BOOL)applicationShouldOpenUntitledFile:(NSApplication *)sender;
- (BOOL)application:(NSApplication * )theApplication openFile: (NSString * )filename;
- (void)getUrl:(NSAppleEventDescriptor *)event withReplyEvent:(NSAppleEventDescriptor *)replyEvent;
-(IBAction)openDocumentWithDialogBox:(id)sender;
@end