blob: e6a61308ade7516e314652582f302feb01d67a20 (
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
|
//
// SPUPluginController.h
// PeopsSPU
//
// Created by C.W. Betts on 7/2/13.
//
//
#import <Cocoa/Cocoa.h>
#import "NamedSlider.h"
@interface SPUPluginController : NSWindowController
{
IBOutlet NSControl *hiCompBox;
IBOutlet NamedSlider *interpolValue;
IBOutlet NSControl *irqWaitBox;
IBOutlet NSControl *monoSoundBox;
IBOutlet NamedSlider *reverbValue;
IBOutlet NSControl *xaEnableBox;
IBOutlet NSControl *xaSpeedBox;
IBOutlet NamedSlider *volumeValue;
NSMutableDictionary *keyValues;
}
- (IBAction)cancel:(id)sender;
- (IBAction)ok:(id)sender;
- (IBAction)reset:(id)sender;
- (void)loadValues;
@end
|