1 | #import <Cocoa/Cocoa.h> |
---|
2 | #import <ApplicationEnhancer/APEManagerPrefPane.h> |
---|
3 | #import "CFPreferencesWrapper.h" |
---|
4 | |
---|
5 | @interface ICeCoffEEController : NSObject <APEManagerPrefPane> |
---|
6 | { |
---|
7 | CFPreferencesWrapper_ICeCoffEE *prefs; |
---|
8 | NSBundle *_apeBundle; |
---|
9 | NSBundle *_bundle; |
---|
10 | |
---|
11 | IBOutlet NSWindow *window; |
---|
12 | IBOutlet NSTabView *tabView; |
---|
13 | |
---|
14 | IBOutlet NSButton *commandClickEnabled; |
---|
15 | IBOutlet NSButton *textBlinkEnabled; |
---|
16 | IBOutlet NSPopUpButton *textBlinkCount; |
---|
17 | IBOutlet NSButton *servicesInContextualMenu; |
---|
18 | IBOutlet NSButton *servicesInMenuBar; |
---|
19 | IBOutlet NSButton *editContextualServices; |
---|
20 | IBOutlet NSButton *terminalRequireOptionForSelfDrag; |
---|
21 | IBOutlet NSButton *errorSoundEnabled; |
---|
22 | IBOutlet NSButton *errorDialogEnabled; |
---|
23 | } |
---|
24 | |
---|
25 | - (id)initWithAPE:(NSBundle *)apeBundle andBundle:(NSBundle *)prefPaneBundle; |
---|
26 | - (void)setAPEBundle:(NSBundle*)apeBundle prefPaneBundle:(NSBundle *)aBundle; |
---|
27 | - (NSBundle *)bundle; |
---|
28 | |
---|
29 | - (IBAction)commandClickEnabled:(NSButton *)sender; |
---|
30 | - (IBAction)textBlinkEnabled:(NSButton *)sender; |
---|
31 | - (IBAction)textBlinkCount:(NSPopUpButton *)sender; |
---|
32 | - (IBAction)servicesInContextualMenu:(NSButton *)sender; |
---|
33 | - (IBAction)servicesInMenuBar:(NSButton *)sender; |
---|
34 | - (IBAction)editContextualServices:(NSButton *)sender; |
---|
35 | - (IBAction)terminalRequireOptionForSelfDrag:(NSButton *)sender; |
---|
36 | - (IBAction)errorSoundEnabled:(NSButton *)sender; |
---|
37 | - (IBAction)errorDialogEnabled:(NSButton *)sender; |
---|
38 | |
---|
39 | @end |
---|