-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathDTPrefsWindowController.h
41 lines (31 loc) · 1.05 KB
/
DTPrefsWindowController.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
// DTPrefsWindowController.h
// Copyright (c) 2007-2010 Decimus Software, Inc. All rights reserved.
//@class DTPrefsRegController;
@class DTPrefsAXController;
@class SRRecorderControl;
@interface DTPrefsWindowController : NSWindowController {
IBOutlet SRRecorderControl* shortcutRecorder;
IBOutlet NSView* generalPrefsView;
IBOutlet NSView* accessibilityPrefsView;
#ifndef MAC_APP_STORE
IBOutlet NSView* updatesPrefsView;
#endif
IBOutlet NSView* regPrefsView;
// IBOutlet DTPrefsRegController* regPrefsViewController;
IBOutlet DTPrefsAXController* axPrefsController;
}
//@property DTPrefsRegController* regPrefsViewController;
@property DTPrefsAXController* axPrefsController;
- (IBAction)showPrefs:(id)sender;
- (IBAction)showGeneral:(id)sender;
- (IBAction)showAccessibility:(id)sender;
#ifndef MAC_APP_STORE
- (IBAction)showUpdates:(id)sender;
#endif
//- (IBAction)showRegistration:(id)sender;
- (IBAction)showFontPanel:(id)sender;
- (IBAction)resetColorAndFont:(id)sender;
#ifndef MAC_APP_STORE
- (IBAction)checkForUpdatesNow:(id)sender;
#endif
@end