blob: 53b64aec4868cc08c3214b7a89394331919e7ae7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
//
// SPUPluginController.h
// PeopsSPU
//
// Created by C.W. Betts on 7/2/13.
//
//
#import <Cocoa/Cocoa.h>
#import "NamedSlider.h"
#import "ARCBridge.h"
@interface SPUPluginController : NSWindowController
{
IBOutlet NSCell *hiCompBox;
IBOutlet NamedSlider *interpolValue;
IBOutlet NSCell *irqWaitBox;
IBOutlet NSCell *monoSoundBox;
IBOutlet NamedSlider *reverbValue;
IBOutlet NSControl *xaEnableBox;
IBOutlet NSControl *xaSpeedBox;
IBOutlet NamedSlider *volumeValue;
NSMutableDictionary *keyValues;
}
@property (readwrite, arcretain) NSMutableDictionary *keyValues;
- (IBAction)cancel:(id)sender;
- (IBAction)ok:(id)sender;
- (IBAction)reset:(id)sender;
- (void)loadValues;
@end
|