VocalEasel/Sources/VLAppController.h
Matthias Neeracher ea49604fb0 Add mirror window
2007-05-16 06:47:08 +00:00

32 lines
595 B
Objective-C

//
// File: VLAppController.h - Application wide controller
//
// Author(s):
//
// (MN) Matthias Neeracher
//
// Copyright © 2005-2007 Matthias Neeracher
//
#import <Cocoa/Cocoa.h>
@interface VLAppController : NSObject {
IBOutlet id lilypondPath;
IBOutlet id mirrorWin;
NSString * toolPath;
NSString * appPath;
}
- (IBAction) playNewPitch:(id)sender;
- (IBAction) selectLilypondPath:(id)sender;
- (IBAction) goToHelpPage:(id)sender;
- (IBAction) goToHelpURL:(id)sender;
- (IBAction) showMirror:(id)sender;
@end
// Local Variables:
// mode:ObjC
// End: