-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathC700_CocoaViewFactory.h
More file actions
46 lines (36 loc) · 852 Bytes
/
C700_CocoaViewFactory.h
File metadata and controls
46 lines (36 loc) · 852 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
45
46
//
// C700_CocoaViewFactory.h
// C700
//
// Created by osoumen on 12/10/01.
// Copyright 2012 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import <AudioUnit/AUCocoaUIView.h>
#import <AudioToolbox/AudioToolbox.h>
#if AU
#include "plugguieditor.h"
#else
#include "aeffguieditor.h"
#endif
#include "C700Edit.h"
#include "EfxAccess.h"
@interface C700_CocoaViewFactory :NSObject <AUCocoaUIBase>
{
}
- (NSString *) description; // string description of the view
@end
@interface C700_CocoaView : NSView
{
C700Edit *editor;
NSTimer *timer;
AudioUnit mAU;
AUEventListenerRef mEventListener;
EfxAccess *efxAcc;
}
- (C700_CocoaView *)initWithFrame:(NSRect)frameRect audioUnit:(AudioUnit)inAU;
- (void)setEditorFrame;
- (void)_addListeners;
- (void)_removeListeners;
- (void)_synchronizeUIWithParameterValues;
@end