VocalEasel/Sources/VLDocument.h

58 lines
1.2 KiB
C
Raw Normal View History

2006-09-11 02:49:56 +00:00
//
// MyDocument.h
// Vocalese
//
// Created by Matthias Neeracher on 12/17/05.
// Copyright __MyCompanyName__ 2005 . All rights reserved.
//
#import "VLModel.h"
2006-10-03 17:52:54 +00:00
#import <Cocoa/Cocoa.h>
@class VLSheetWindow;
@class VLPDFWindow;
@class VLLogWindow;
2006-09-11 02:49:56 +00:00
@interface VLDocument : NSDocument
{
VLSong * song;
NSString * lilypondTemplate;
NSString * songTitle;
NSString * songLyricist;
NSString * songComposer;
NSString * songArranger;
2006-11-04 08:15:34 +00:00
NSString * songGroove;
NSNumber * songTempo;
2006-11-10 08:09:18 +00:00
NSString * tmpPath;
NSFileWrapper * vcsWrapper;
VLSheetWindow * sheetWin;
VLLogWindow * logWin;
VLPDFWindow * pdfWin;
2006-09-11 02:49:56 +00:00
}
- (VLSong *) song;
- (NSNumber *) songKey;
- (NSNumber *) songTime;
- (NSNumber *) songDivisions;
- (void) setKey:(int)key transpose:(BOOL)transpose;
- (void) setTimeNum:(int)num denom:(int)denom;
- (void) setDivisions:(int)divisions;
2006-10-03 17:52:54 +00:00
- (IBAction) engrave:(id)sender;
- (IBAction) showOutput:(id)sender;
- (IBAction) showLog:(id)sender;
2006-11-10 08:09:18 +00:00
- (NSString *) tmpPath;
- (NSString *) workPath;
- (NSString *) baseName;
2006-11-12 11:37:36 +00:00
- (NSURL *) fileURLWithExtension:(NSString*)extension;
- (NSTask *) taskWithLaunchPath:(NSString *)path arguments:(NSArray *)args;
2006-11-10 08:09:18 +00:00
2006-09-11 02:49:56 +00:00
@end
2006-11-10 08:09:18 +00:00
// Local Variables:
// mode:ObjC
// End: