blob: 6e5913c4a260aabb65acf842ed9af157b91fc1e7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#define PluginConfigController DFCdromPluginConfigController
#import <Cocoa/Cocoa.h>
@interface PluginConfigController : NSWindowController
{
IBOutlet NSControl *Cached;
IBOutlet NSSlider *CacheSize;
IBOutlet NSPopUpButton *CdSpeed;
NSMutableDictionary *keyValues;
}
@property (retain) NSMutableDictionary *keyValues;
- (IBAction)cancel:(id)sender;
- (IBAction)ok:(id)sender;
- (void)loadValues;
@end
|