forked from eczarny/spectacle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SpectaclePreferencesController.h
43 lines (34 loc) · 1.63 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> {
SpectacleHotKeyManager *hotKeyManager;
NSDictionary *hotKeyRecorders;
IBOutlet ZKHotKeyRecorder *moveToCenterHotKeyRecorder;
IBOutlet ZKHotKeyRecorder *moveToFullscreenHotKeyRecorder;
IBOutlet ZKHotKeyRecorder *moveToLeftHotKeyRecorder;
IBOutlet ZKHotKeyRecorder *moveToRightHotKeyRecorder;
IBOutlet ZKHotKeyRecorder *moveToTopHotKeyRecorder;
IBOutlet ZKHotKeyRecorder *moveToBottomHotKeyRecorder;
IBOutlet ZKHotKeyRecorder *moveToUpperLeftHotKeyRecorder;
IBOutlet ZKHotKeyRecorder *moveToLowerLeftHotKeyRecorder;
IBOutlet ZKHotKeyRecorder *moveToUpperRightHotKeyRecorder;
IBOutlet ZKHotKeyRecorder *moveToLowerRightHotKeyRecorder;
IBOutlet ZKHotKeyRecorder *moveToNextDisplayHotKeyRecorder;
IBOutlet ZKHotKeyRecorder *moveToPreviousDisplayHotKeyRecorder;
IBOutlet ZKHotKeyRecorder *moveToNextThirdHotKeyRecorder;
IBOutlet ZKHotKeyRecorder *moveToPreviousThirdHotKeyRecorder;
IBOutlet ZKHotKeyRecorder *makeLargerHotKeyRecorder;
IBOutlet ZKHotKeyRecorder *makeSmallerHotKeyRecorder;
IBOutlet ZKHotKeyRecorder *undoLastMoveHotKeyRecorder;
IBOutlet ZKHotKeyRecorder *redoLastMoveHotKeyRecorder;
IBOutlet NSButton *loginItemEnabled;
IBOutlet NSPopUpButton *statusItemEnabled;
}
- (IBAction)toggleWindow: (id)sender;
#pragma mark -
- (IBAction)hideWindow: (id)sender;
#pragma mark -
- (IBAction)toggleLoginItem: (id)sender;
- (IBAction)toggleStatusItem: (id)sender;
@end