VocalEasel/Sources/VLSheetViewLyrics.h
2011-09-11 01:15:21 +02:00

53 lines
1.2 KiB
Objective-C

//
// File: VLSheetViewLyrics.h - Lyrics editing functionality
//
// Author(s):
//
// (MN) Matthias Neeracher
//
// Copyright © 2006-2011 Matthias Neeracher
//
#import "VLSheetWindow.h"
@interface VLLyricsEditable : VLEditable {
VLSheetView * fView;
VLSong * fSong;
size_t fStanza;
size_t fMeasure;
VLFract fAt;
size_t fAnchorMeas;
VLFract fAnchorAt;
size_t fNextMeas;
VLFract fNextAt;
NSString * fText;
}
- (VLLyricsEditable *)initWithView:(VLSheetView *)view
song:(VLSong *)song
stanza:(int)stanza
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;
- (void) highlightLyricsInStanza:(size_t)stanza measure:(int)measure at:(VLFraction)at;
- (void) highlightTextInStanza:(size_t)stanza startMeasure:(int)startMeasure at:(VLFraction)startAt
endMeasure:(int)endMeasure at:(VLFraction)endAt;
@end
// Local Variables:
// mode:ObjC
// End: