X-Git-Url: https://git.yukkurigames.com/?p=enjoyable.git;a=blobdiff_plain;f=Classes%2FEnjoyableApplicationDelegate.h;h=dbc17eefb50d61e35474c1084b03d4079c1f4569;hp=36374d301c887102fd431d397c5deece6f81a43d;hb=4a8e67a7294e8e527e2be9d8f5f39aae60691697;hpb=1d9578185de7fb08cf1f4b1e42812e87d8e18040 diff --git a/Classes/EnjoyableApplicationDelegate.h b/Classes/EnjoyableApplicationDelegate.h index 36374d3..dbc17ee 100644 --- a/Classes/EnjoyableApplicationDelegate.h +++ b/Classes/EnjoyableApplicationDelegate.h @@ -6,18 +6,25 @@ // Copyright 2009 University of Otago. All rights reserved. // -@class NJDeviceController; @class NJMappingsController; -@interface EnjoyableApplicationDelegate : NSObject { +#import "NJMappingMenuController.h" +#import "NJMappingsViewController.h" + +@interface EnjoyableApplicationDelegate : NSObject { IBOutlet NSMenu *dockMenu; IBOutlet NSMenu *statusItemMenu; - IBOutlet NSMenu *mappingsMenu; IBOutlet NSWindow *window; } @property (nonatomic, strong) IBOutlet NJMappingsController *mappingsController; +@property (nonatomic, strong) IBOutlet NJMappingsViewController *mvc; - (IBAction)restoreToForeground:(id)sender; +- (IBAction)importMappingClicked:(id)sender; +- (IBAction)exportMappingClicked:(id)sender; @end