2006-10-24 07:15:46 +00:00
|
|
|
//
|
|
|
|
// VLAppController.h
|
|
|
|
// Vocalese
|
|
|
|
//
|
|
|
|
// Created by Matthias Neeracher on 10/23/06.
|
|
|
|
// Copyright 2006 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
@interface VLAppController : NSObject {
|
2006-10-26 08:21:18 +00:00
|
|
|
IBOutlet id lilypondPath;
|
2006-10-24 07:15:46 +00:00
|
|
|
|
2006-10-26 08:21:18 +00:00
|
|
|
NSString * toolPath;
|
|
|
|
NSString * appPath;
|
2006-10-24 07:15:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction) playNewPitch:(id)sender;
|
2006-10-26 08:21:18 +00:00
|
|
|
- (IBAction) selectLilypondPath:(id)sender;
|
|
|
|
|
2006-10-24 07:15:46 +00:00
|
|
|
@end
|
2006-10-26 08:21:18 +00:00
|
|
|
|
|
|
|
// Local Variables:
|
|
|
|
// mode:ObjC
|
|
|
|
// End:
|