VocalEasel/Sources/VLAppController.h
2007-08-12 21:30:40 +00:00

33 lines
621 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;
IBOutlet id debugMenu;
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: