VocalEasel/Sources/VLSheetViewLyrics.h

44 lines
923 B
C
Raw Normal View History

2006-12-02 03:35:21 +00:00
//
// VLSheetViewLyrics.h
// Vocalese
//
// Created by Matthias Neeracher on 1/4/06.
// Copyright 2006 __MyCompanyName__. All rights reserved.
//
#import "VLSheetWindow.h"
@interface VLLyricsEditable : VLEditable {
2006-12-02 09:02:44 +00:00
VLSheetView * fView;
VLSong * fSong;
size_t fStanza;
size_t fMeasure;
VLFraction fAt;
2006-12-02 03:35:21 +00:00
}
- (VLLyricsEditable *)initWithView:(VLSheetView *)view
song:(VLSong *)song
2006-12-02 09:02:44 +00:00
stanza:(int)stanza
2006-12-02 03:35:21 +00:00
measure:(int)measure
at:(VLFract)at;
- (NSString *) stringValue;
- (void) setStringValue:(NSString*)val;
- (BOOL) validValue:(NSString*)val;
- (void) moveToNext;
- (void) moveToPrev;
- (void) highlightCursor;
@end
@interface VLSheetView (Lyrics)
- (void) editLyrics;
- (void) drawLyricsForSystem:(int)system stanza:(size_t)stanza;
2006-12-02 09:02:44 +00:00
- (void) highlightLyricsInStanza:(size_t)stanza measure:(int)measure at:(VLFraction)at;
2006-12-02 03:35:21 +00:00
@end
// Local Variables:
// mode:ObjC
// End: