mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 19:23:59 +00:00
25 lines
486 B
Objective-C
25 lines
486 B
Objective-C
//
|
|
// File: VLSheetViewNotes.h - Melody editing functionality
|
|
//
|
|
// Author(s):
|
|
//
|
|
// (MN) Matthias Neeracher
|
|
//
|
|
// Copyright © 2005-2011 Matthias Neeracher
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface VLSheetView (Notes)
|
|
|
|
- (void) drawNotesForSystem:(int)system;
|
|
- (void) addNoteAtCursor;
|
|
- (void) startKeyboardCursor;
|
|
- (void) drawNoteCursor:(int)pitch inMeasure:(size_t)measure at:(VLFract)at accidental:(VLMusicElement)accidental;
|
|
|
|
@end
|
|
|
|
// Local Variables:
|
|
// mode:ObjC
|
|
// End:
|