source: releases/ICeCoffEE/1.3.1/ICeCoffEE/ICeCoffEEController.h@ 285

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

ICeCoffEE 1.3.1

File size: 1.2 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 *_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 *errorSoundEnabled;
20 IBOutlet NSButton *errorDialogEnabled;
21}
22
23- (id)initWithAPE:(NSBundle *)apeBundle andBundle:(NSBundle *)prefPaneBundle;
24- (void)setAPEBundle:(NSBundle*)apeBundle prefPaneBundle:(NSBundle *)aBundle;
25- (NSBundle *)bundle;
26
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
35@end
Note: See TracBrowser for help on using the repository browser.