00001
00002
00003
00004
00005
00006
00007
00008
00009
#import <Cocoa/Cocoa.h>
00010
00011 @
class AUGUIView;
00012
00013 @interface AUGUIParameterBinding : NSObject
00014 {
00015
int _paramID;
00016 IBOutlet NSControl *_control;
00017 IBOutlet
AUGUIView *_cocoaView;
00018 }
00019 - (
void)ok:(NSControl *)sender;
00020 - (
id)initWithCoder:(NSCoder *)coder;
00021 - (
void)encodeWithCoder:(NSCoder *)coder;
00022 - (
void)setParamID:(
int)param;
00023 - (
int)paramID;
00024 - (NSControl *)control;
00025 - (AUGUIView *)view;
00026
@end
00027