-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAudioUnitExampleAppDelegate.h
More file actions
44 lines (33 loc) · 1011 Bytes
/
AudioUnitExampleAppDelegate.h
File metadata and controls
44 lines (33 loc) · 1011 Bytes
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
33
34
35
36
37
38
39
40
41
42
43
44
//
// AudioUnitExampleAppDelegate.h
// AudioUnitExample
//
// Created by Lucius Kwok on 11/28/10.
// Copyright 2010 Felt Tip Inc. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import <AudioToolbox/AudioToolbox.h>
#import <AudioUnit/AudioUnit.h>
#import "ExampleAudioUnit.h"
#import "ExampleAUGraph.h"
#import "ExampleComponent.h"
@interface AudioUnitExampleAppDelegate : NSObject <NSApplicationDelegate> {
NSWindow *window;
NSView *audioUnitContainerView;
NSPopUpButton *effectsPopUp;
NSPopUpButton *presetsPopUp;
NSArray *effects;
ExampleAUGraph *auGraph;
AUNode outputNode;
AUNode effectsNode;
NSView *audioUnitView;
BOOL inLiveResize;
BOOL listenToAudioUnitFrameSizeChanges;
}
@property (assign) IBOutlet NSWindow *window;
@property (assign) IBOutlet NSView *audioUnitContainerView;
@property (assign) IBOutlet NSPopUpButton *effectsPopUp;
@property (assign) IBOutlet NSPopUpButton *presetsPopUp;
- (IBAction)selectEffect:(id)sender;
- (IBAction)selectPreset:(id)sender;
@end