Move simulation toggle out of device controller.
[enjoyable.git] / Classes / NJDeviceController.h
index 3691d59..e594f10 100644 (file)
@@ -7,16 +7,16 @@
 //
 
 #import "NJHIDManager.h"
-#import "NJDeviceViewController.h"
 
+@class NJDevice;
 @class NJInput;
+@class NJInputPathElement;
 @class NJMappingsController;
 
 @protocol NJDeviceControllerDelegate;
 
 @interface NJDeviceController : NSObject <NJHIDManagerDelegate> {
     IBOutlet NJMappingsController *mappingsController;
-    IBOutlet NSButton *simulatingEventsButton;
 }
 
 @property (nonatomic, weak) IBOutlet id <NJDeviceControllerDelegate> delegate;
@@ -24,8 +24,6 @@
 @property (nonatomic, assign) NSPoint mouseLoc;
 @property (nonatomic, assign) BOOL simulatingEvents;
 
-- (IBAction)simulatingEventsChanged:(NSButton *)sender;
-
 - (NJDevice *)objectAtIndexedSubscript:(NSUInteger)idx;
 - (NJInputPathElement *)objectForKeyedSubscript:(NSString *)uid;
 - (NSUInteger)count;