diff examples/iAudioDB/AppController.h @ 700:54974e8a6b87

Separated out import process - now generates VAMP config for each audio file as preparation for sample rate/hop size alterations.
author mas01mj
date Thu, 29 Apr 2010 16:36:07 +0000
parents 9a7d829bc492
children e21abbac820e
line wrap: on
line diff
--- a/examples/iAudioDB/AppController.h	Wed Apr 28 15:48:59 2010 +0000
+++ b/examples/iAudioDB/AppController.h	Thu Apr 29 16:36:07 2010 +0000
@@ -52,7 +52,6 @@
 	IBOutlet id querySheet;
 	
 	IBOutlet NSMatrix* extractorOptions;
-	IBOutlet NSTextField* windowSizeField;
 	IBOutlet NSTextField* hopSizeField;
 	IBOutlet NSTextField* maxTracksField;
 	IBOutlet NSTextField* maxLengthField;
@@ -64,16 +63,6 @@
 	NSMutableArray* results;
 	NSDictionary* trackMap;
 	NSDictionary* dbState;
-	
-	// Query param fields
-	
-	/* To Come
-	 IBOutlet id queryType;	
-	 IBOutlet NSTextField* queryStartField;
-	 IBOutlet id queryTypeOptions;
-	 IBOutlet NSTextField* queryLengthField;
-	 IBOutlet NSTextField* queryRadiusField;
-	 IBOutlet NSButtonCell* exhaustiveField;*/
 }
 
 //  Menus
@@ -105,7 +94,8 @@
 
 -(void)reset;
 -(void)updateStatus;
-- (BOOL)validateUserInterfaceItem:(id <NSValidatedUserInterfaceItem>)anItem;
-- (void)sound:(NSSound *)sound didFinishPlaying:(BOOL)playbackSuccessful;
+-(BOOL)validateUserInterfaceItem:(id <NSValidatedUserInterfaceItem>)anItem;
+-(void)sound:(NSSound *)sound didFinishPlaying:(BOOL)playbackSuccessful;
+-(void)importFile:(NSString *)filename withExtractorConfig:(NSString *)extractorPath;
 
 @end