forked from eczarny/spectacle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpectaclePreferencesController.h
43 lines (32 loc) · 1.92 KB
/
SpectaclePreferencesController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#import <Cocoa/Cocoa.h>
#import <ZeroKit/ZeroKit.h>
@class SpectacleHotKeyManager, SpectacleApplicationController;
@interface SpectaclePreferencesController : NSWindowController<ZKHotKeyRecorderDelegate>
@property (nonatomic) IBOutlet ZKHotKeyRecorder *moveToCenterHotKeyRecorder;
@property (nonatomic) IBOutlet ZKHotKeyRecorder *moveToFullscreenHotKeyRecorder;
@property (nonatomic) IBOutlet ZKHotKeyRecorder *moveToLeftHotKeyRecorder;
@property (nonatomic) IBOutlet ZKHotKeyRecorder *moveToRightHotKeyRecorder;
@property (nonatomic) IBOutlet ZKHotKeyRecorder *moveToTopHotKeyRecorder;
@property (nonatomic) IBOutlet ZKHotKeyRecorder *moveToBottomHotKeyRecorder;
@property (nonatomic) IBOutlet ZKHotKeyRecorder *moveToUpperLeftHotKeyRecorder;
@property (nonatomic) IBOutlet ZKHotKeyRecorder *moveToLowerLeftHotKeyRecorder;
@property (nonatomic) IBOutlet ZKHotKeyRecorder *moveToUpperRightHotKeyRecorder;
@property (nonatomic) IBOutlet ZKHotKeyRecorder *moveToLowerRightHotKeyRecorder;
@property (nonatomic) IBOutlet ZKHotKeyRecorder *moveToNextDisplayHotKeyRecorder;
@property (nonatomic) IBOutlet ZKHotKeyRecorder *moveToPreviousDisplayHotKeyRecorder;
@property (nonatomic) IBOutlet ZKHotKeyRecorder *moveToNextThirdHotKeyRecorder;
@property (nonatomic) IBOutlet ZKHotKeyRecorder *moveToPreviousThirdHotKeyRecorder;
@property (nonatomic) IBOutlet ZKHotKeyRecorder *makeLargerHotKeyRecorder;
@property (nonatomic) IBOutlet ZKHotKeyRecorder *makeSmallerHotKeyRecorder;
@property (nonatomic) IBOutlet ZKHotKeyRecorder *undoLastMoveHotKeyRecorder;
@property (nonatomic) IBOutlet ZKHotKeyRecorder *redoLastMoveHotKeyRecorder;
@property (nonatomic) IBOutlet NSButton *loginItemEnabled;
@property (nonatomic) IBOutlet NSPopUpButton *statusItemEnabled;
#pragma mark -
- (IBAction)toggleWindow: (id)sender;
#pragma mark -
- (IBAction)hideWindow: (id)sender;
#pragma mark -
- (IBAction)toggleLoginItem: (id)sender;
- (IBAction)toggleStatusItem: (id)sender;
@end