2006-10-24 07:15:46 +00:00
|
|
|
//
|
2007-04-27 06:41:34 +00:00
|
|
|
// File: VLAppController.h - Application wide controller
|
2006-10-24 07:15:46 +00:00
|
|
|
//
|
2007-04-27 06:41:34 +00:00
|
|
|
// Author(s):
|
|
|
|
//
|
|
|
|
// (MN) Matthias Neeracher
|
|
|
|
//
|
2018-02-17 21:52:27 +00:00
|
|
|
// Copyright © 2005-2018 Matthias Neeracher
|
2006-10-24 07:15:46 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
@interface VLAppController : NSObject {
|
2017-11-24 05:00:57 +00:00
|
|
|
IBOutlet NSPopUpButton * lilypondPath;
|
2018-02-17 21:52:27 +00:00
|
|
|
IBOutlet id mirrorWin;
|
2017-11-24 05:00:57 +00:00
|
|
|
IBOutlet NSMenu * debugMenu;
|
2006-10-24 07:15:46 +00:00
|
|
|
|
2007-05-16 06:47:08 +00:00
|
|
|
NSString * toolPath;
|
|
|
|
NSString * appPath;
|
2008-05-29 18:54:30 +00:00
|
|
|
NSString * lamePath;
|
2006-10-24 07:15:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction) playNewPitch:(id)sender;
|
2006-10-26 08:21:18 +00:00
|
|
|
- (IBAction) selectLilypondPath:(id)sender;
|
2007-04-30 07:06:46 +00:00
|
|
|
- (IBAction) goToHelpPage:(id)sender;
|
2007-04-30 05:56:35 +00:00
|
|
|
- (IBAction) goToHelpURL:(id)sender;
|
2007-05-16 06:47:08 +00:00
|
|
|
- (IBAction) showMirror:(id)sender;
|
2007-04-30 05:56:35 +00:00
|
|
|
|
2008-05-29 18:54:30 +00:00
|
|
|
- (BOOL) lameIsInstalled;
|
|
|
|
|
2006-10-24 07:15:46 +00:00
|
|
|
@end
|
2006-10-26 08:21:18 +00:00
|
|
|
|
|
|
|
// Local Variables:
|
|
|
|
// mode:ObjC
|
|
|
|
// End:
|