Add status item. Disable automatic termination, but still hide from the dock when...
[enjoyable.git] / Classes / EnjoyableApplicationDelegate.h
index dfb82fc..c4d8e3b 100644 (file)
 @class NJMappingsController;
 
 @interface EnjoyableApplicationDelegate : NSObject <NSApplicationDelegate> {
-    IBOutlet NSMenu *dockMenuBase;
+    IBOutlet NSMenu *dockMenu;
+    IBOutlet NSMenu *statusItemMenu;
+    IBOutlet NSMenu *mappingsMenu;
     IBOutlet NSWindow *window;
 }
 
 @property (nonatomic, strong) IBOutlet NJDeviceController *inputController;
 @property (nonatomic, strong) IBOutlet NJMappingsController *mappingsController;
 
+- (IBAction)restoreToForeground:(id)sender;
+
 @end