Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #import <Cocoa/Cocoa.h>
00029 #import "videoInternal.h"
00030
00031 @interface ARVideoSettingsController : NSObject {
00032 @private
00033 int inputIndex;
00034 SeqGrabComponent seqGrab;
00035 SGChannel sgchanVideo;
00036 int mVersion;
00037 UserData mUserData;
00038 }
00039
00040 - (id)initInput:(int)inInputIndex withSeqGrabComponent:(SeqGrabComponent)inSeqGrab withSGChannel:(SGChannel)inSgchanVideo;
00041 - (void)dealloc;
00042 - (IBAction)sgConfigurationDialog:(id)sender withStandardDialog:(int)standardDialog;
00043 - (OSErr)loadUserData:(UserData *)outUserData fromDefaults:(NSUserDefaults *)inDefaults forKey:(NSString *)inKey;
00044 - (OSErr)saveUserData:(UserData)inUserData toDefaults:(NSUserDefaults *)inDefaults withKey:(NSString *)outKey;
00045
00046 @end