X-Git-Url: https://git.yukkurigames.com/?p=enjoyable.git;a=blobdiff_plain;f=Classes%2FEnjoyableApplicationDelegate.h;h=b28269b007b89cd9c9dbf4127a2ea1f498fd70a5;hp=dfb82fc985810f4463b914a7045df8fdf86afeab;hb=b14d8429658dd6f3f7b4904301031addb502b22c;hpb=ba6488fd986229dadcf8a7c7dcc028d2c1ddecf5 diff --git a/Classes/EnjoyableApplicationDelegate.h b/Classes/EnjoyableApplicationDelegate.h index dfb82fc..b28269b 100644 --- a/Classes/EnjoyableApplicationDelegate.h +++ b/Classes/EnjoyableApplicationDelegate.h @@ -6,15 +6,22 @@ // Copyright 2009 University of Otago. All rights reserved. // -@class NJDeviceController; @class NJMappingsController; -@interface EnjoyableApplicationDelegate : NSObject { - IBOutlet NSMenu *dockMenuBase; +#import "NJMappingMenuController.h" + +@interface EnjoyableApplicationDelegate : NSObject { + IBOutlet NSMenu *dockMenu; + IBOutlet NSMenu *statusItemMenu; IBOutlet NSWindow *window; } -@property (nonatomic, strong) IBOutlet NJDeviceController *inputController; @property (nonatomic, strong) IBOutlet NJMappingsController *mappingsController; +- (IBAction)restoreToForeground:(id)sender; +- (IBAction)importMappingClicked:(id)sender; +- (IBAction)exportMappingClicked:(id)sender; + @end