Last change
on this file since 88 was
74,
checked in by Nicholas Riley, 19 years ago
|
ICeCoffEE 1.3b2 plus some changes for 1.3
|
File size:
1.1 KB
|
Line | |
---|
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 *_bundle; |
---|
9 | |
---|
10 | IBOutlet NSWindow *window; |
---|
11 | |
---|
12 | IBOutlet NSButton *commandClickEnabled; |
---|
13 | IBOutlet NSButton *textBlinkEnabled; |
---|
14 | IBOutlet NSPopUpButton *textBlinkCount; |
---|
15 | IBOutlet NSButton *servicesInContextualMenu; |
---|
16 | IBOutlet NSButton *servicesInMenuBar; |
---|
17 | IBOutlet NSButton *errorSoundEnabled; |
---|
18 | IBOutlet NSButton *errorDialogEnabled; |
---|
19 | } |
---|
20 | |
---|
21 | - (id)initWithAPE:(NSBundle *)apeBundle andBundle:(NSBundle *)prefPaneBundle; |
---|
22 | - (void)setBundle:(NSBundle *)aBundle; |
---|
23 | - (NSBundle *)bundle; |
---|
24 | |
---|
25 | - (IBAction)commandClickEnabled:(NSButton *)sender; |
---|
26 | - (IBAction)textBlinkEnabled:(NSButton *)sender; |
---|
27 | - (IBAction)textBlinkCount:(NSPopUpButton *)sender; |
---|
28 | - (IBAction)servicesInContextualMenu:(NSButton *)sender; |
---|
29 | - (IBAction)servicesInMenuBar:(NSButton *)sender; |
---|
30 | - (IBAction)errorSoundEnabled:(NSButton *)sender; |
---|
31 | - (IBAction)errorDialogEnabled:(NSButton *)sender; |
---|
32 | |
---|
33 | @end |
---|
Note: See
TracBrowser
for help on using the repository browser.