source: trunk/ICeCoffEE/ICeCoffEE/ICeCoffEEController.h@ 89

Last change on this file since 89 was 89, checked in by Nicholas Riley, 21 years ago

ICeCoffEE 1.3.1

File size: 1.2 KB
RevLine 
[66]1#import <Cocoa/Cocoa.h>
2#import <ApplicationEnhancer/APEManagerPrefPane.h>
3#import "CFPreferencesWrapper.h"
4
5@interface ICeCoffEEController : NSObject <APEManagerPrefPane>
6{
[72]7 CFPreferencesWrapper_ICeCoffEE *prefs;
[89]8 NSBundle *_apeBundle;
[72]9 NSBundle *_bundle;
[74]10
11 IBOutlet NSWindow *window;
[89]12 IBOutlet NSTabView *tabView;
[74]13
14 IBOutlet NSButton *commandClickEnabled;
15 IBOutlet NSButton *textBlinkEnabled;
16 IBOutlet NSPopUpButton *textBlinkCount;
17 IBOutlet NSButton *servicesInContextualMenu;
18 IBOutlet NSButton *servicesInMenuBar;
19 IBOutlet NSButton *errorSoundEnabled;
20 IBOutlet NSButton *errorDialogEnabled;
[66]21}
22
[72]23- (id)initWithAPE:(NSBundle *)apeBundle andBundle:(NSBundle *)prefPaneBundle;
[89]24- (void)setAPEBundle:(NSBundle*)apeBundle prefPaneBundle:(NSBundle *)aBundle;
[72]25- (NSBundle *)bundle;
26
[74]27- (IBAction)commandClickEnabled:(NSButton *)sender;
28- (IBAction)textBlinkEnabled:(NSButton *)sender;
29- (IBAction)textBlinkCount:(NSPopUpButton *)sender;
30- (IBAction)servicesInContextualMenu:(NSButton *)sender;
31- (IBAction)servicesInMenuBar:(NSButton *)sender;
32- (IBAction)errorSoundEnabled:(NSButton *)sender;
33- (IBAction)errorDialogEnabled:(NSButton *)sender;
34
[66]35@end
Note: See TracBrowser for help on using the repository browser.