mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 03:04:00 +00:00
36 lines
700 B
Objective-C
36 lines
700 B
Objective-C
//
|
|
// File: VLAppController.h - Application wide controller
|
|
//
|
|
// Author(s):
|
|
//
|
|
// (MN) Matthias Neeracher
|
|
//
|
|
// Copyright © 2005-2018 Matthias Neeracher
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface VLAppController : NSObject {
|
|
IBOutlet NSPopUpButton * lilypondPath;
|
|
IBOutlet id mirrorWin;
|
|
IBOutlet NSMenu * debugMenu;
|
|
|
|
NSString * toolPath;
|
|
NSString * appPath;
|
|
NSString * lamePath;
|
|
}
|
|
|
|
- (IBAction) playNewPitch:(id)sender;
|
|
- (IBAction) selectLilypondPath:(id)sender;
|
|
- (IBAction) goToHelpPage:(id)sender;
|
|
- (IBAction) goToHelpURL:(id)sender;
|
|
- (IBAction) showMirror:(id)sender;
|
|
|
|
- (BOOL) lameIsInstalled;
|
|
|
|
@end
|
|
|
|
// Local Variables:
|
|
// mode:ObjC
|
|
// End:
|