Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 204 | chris | 1 | /* |
| 2 | * Copyright (c) 2005-2006 Philip Lamb (PRL) phil@eden.net.nz. All rights reserved. |
||
| 3 | * |
||
| 4 | * Rev Date Who Changes |
||
| 5 | * 1.0.0 2005-03-08 PRL Written. |
||
| 6 | * |
||
| 7 | */ |
||
| 8 | /* |
||
| 9 | * |
||
| 10 | * This file is part of ARToolKit. |
||
| 11 | * |
||
| 12 | * ARToolKit is free software; you can redistribute it and/or modify |
||
| 13 | * it under the terms of the GNU General Public License as published by |
||
| 14 | * the Free Software Foundation; either version 2 of the License, or |
||
| 15 | * (at your option) any later version. |
||
| 16 | * |
||
| 17 | * ARToolKit is distributed in the hope that it will be useful, |
||
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
| 20 | * GNU General Public License for more details. |
||
| 21 | * |
||
| 22 | * You should have received a copy of the GNU General Public License |
||
| 23 | * along with ARToolKit; if not, write to the Free Software |
||
| 24 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
||
| 25 | * |
||
| 26 | */ |
||
| 27 | |||
| 28 | #import <Cocoa/Cocoa.h> |
||
| 29 | #import "videoInternal.h" |
||
| 30 | |||
| 31 | @interface ARVideoSettingsController : NSObject { |
||
| 32 | @private |
||
| 33 | int inputIndex; |
||
| 34 | SeqGrabComponent seqGrab; |
||
| 35 | SGChannel sgchanVideo; |
||
| 36 | int mVersion; |
||
| 37 | UserData mUserData; |
||
| 38 | } |
||
| 39 | |||
| 40 | - (id)initInput:(int)inInputIndex withSeqGrabComponent:(SeqGrabComponent)inSeqGrab withSGChannel:(SGChannel)inSgchanVideo; |
||
| 41 | - (void)dealloc; |
||
| 42 | - (IBAction)sgConfigurationDialog:(id)sender withStandardDialog:(int)standardDialog; |
||
| 43 | - (OSErr)loadUserData:(UserData *)outUserData fromDefaults:(NSUserDefaults *)inDefaults forKey:(NSString *)inKey; |
||
| 44 | - (OSErr)saveUserData:(UserData)inUserData toDefaults:(NSUserDefaults *)inDefaults withKey:(NSString *)outKey; |
||
| 45 | |||
| 46 | @end |