mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 19:23:59 +00:00
96 lines
2.3 KiB
Objective-C
96 lines
2.3 KiB
Objective-C
//
|
|
// File: VLDocument.h - VocalEasel document
|
|
//
|
|
// Author(s):
|
|
//
|
|
// (MN) Matthias Neeracher
|
|
//
|
|
// Copyright © 2005-2007 Matthias Neeracher
|
|
//
|
|
|
|
#import "VLModel.h"
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "VLKeyValueUndo.h"
|
|
|
|
@class VLSheetWindow;
|
|
@class VLPDFWindow;
|
|
@class VLLogWindow;
|
|
@class PDFDocument;
|
|
|
|
enum {
|
|
kVLPlayAccompaniment = 1,
|
|
kVLPlayMelody = 2,
|
|
kVLPlayMetronome = 4,
|
|
kVLPlayCountIn = 8,
|
|
kVLPlayGroovePreview = 32768
|
|
};
|
|
|
|
@interface VLDocument : NSDocument
|
|
{
|
|
VLSong * song;
|
|
NSString * lilypondTemplate;
|
|
NSString * songTitle;
|
|
NSString * songLyricist;
|
|
NSString * songComposer;
|
|
NSString * songArranger;
|
|
NSString * songGroove;
|
|
NSNumber * songTempo;
|
|
float chordSize;
|
|
float lyricSize;
|
|
float staffSize;
|
|
int playElements;
|
|
NSString * tmpPath;
|
|
NSFileWrapper * vcsWrapper;
|
|
NSMutableArray* observers;
|
|
NSMutableDictionary*validTmpFiles;
|
|
int repeatVolta;
|
|
bool brandNew;
|
|
VLSheetWindow * sheetWin;
|
|
VLLogWindow * logWin;
|
|
VLPDFWindow * pdfWin;
|
|
VLKeyValueUndo* undo;
|
|
PDFDocument * printDoc;
|
|
NSRange previewRange;
|
|
}
|
|
|
|
- (VLSong *) song;
|
|
- (NSNumber *) songKey;
|
|
- (NSNumber *) songTime;
|
|
- (NSNumber *) songDivisions;
|
|
- (int) repeatVolta;
|
|
- (bool) brandNew;
|
|
|
|
- (void) setKey:(int)key transpose:(BOOL)transpose inSections:(NSRange)sections;
|
|
- (void) setTimeNum:(int)num denom:(int)denom inSections:(NSRange)sections;
|
|
- (void) setDivisions:(int)divisions inSections:(NSRange)sections;
|
|
- (void) setGroove:(NSString *)groove inSections:(NSRange)sections;
|
|
- (void) playWithGroove:(NSString *)groove inSections:(NSRange)sections;
|
|
|
|
- (void) setRepeatVolta:(int)repeatVolta;
|
|
|
|
- (IBAction) showOutput:(id)sender;
|
|
- (IBAction) showLog:(id)sender;
|
|
- (IBAction) play:(id)sender;
|
|
- (IBAction) stop:(id)sender;
|
|
- (IBAction) playStop:(id)sender;
|
|
- (IBAction) togglePlayElements:(id)sender;
|
|
- (IBAction) playStop:(id)sender;
|
|
|
|
- (NSString *) tmpPath;
|
|
- (NSString *) workPath;
|
|
- (NSString *) baseName;
|
|
- (NSURL *) fileURLWithExtension:(NSString*)extension;
|
|
- (void) createTmpFileWithExtension:(NSString*)ext ofType:(NSString*)type;
|
|
- (NSTask *) taskWithLaunchPath:(NSString *)path arguments:(NSArray *)args;
|
|
- (void) changedFileWrapper;
|
|
- (void) willChangeSong;
|
|
- (void) didChangeSong;
|
|
- (void) addObserver:(id)observer;
|
|
- (VLLogWindow *)logWin;
|
|
|
|
@end
|
|
|
|
// Local Variables:
|
|
// mode:ObjC
|
|
// End:
|