00001
00002
00003
00004
00005
00006
00007
00008
00009 #import <Cocoa/Cocoa.h>
00010
00011 @class AUGUIController;
00012
00013 @interface AUGUIParameterBinding : NSObject
00014 {
00015 int _paramID;
00016 NSString* _property;
00017 IBOutlet NSControl *_control;
00018 IBOutlet AUGUIController *_controller;
00019 }
00020 - (IBAction)ok:(NSControl *)sender;
00021
00022 - (id)initWithCoder:(NSCoder *)coder;
00023 - (void)encodeWithCoder:(NSCoder *)coder;
00024 - (void)setParamID:(int)param;
00025 - (int)paramID;
00026 - (NSControl *)control;
00027 - (void)setControl:(NSControl *)control;
00028 - (void)setProperty:(NSString*)prop;
00029 - (NSString*)property;
00030 - (AUGUIController *)controller;
00031 @end
00032