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