2006-09-11 02:49:56 +00:00
|
|
|
//
|
2007-04-27 06:41:34 +00:00
|
|
|
// File: VLSheetViewNotes.h - Melody editing functionality
|
2006-09-11 02:49:56 +00:00
|
|
|
//
|
2007-04-27 06:41:34 +00:00
|
|
|
// Author(s):
|
|
|
|
//
|
|
|
|
// (MN) Matthias Neeracher
|
|
|
|
//
|
2018-02-19 00:59:23 +00:00
|
|
|
// Copyright © 2005-2018 Matthias Neeracher
|
2006-09-11 02:49:56 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
@interface VLSheetView (Notes)
|
|
|
|
|
2006-10-02 08:32:25 +00:00
|
|
|
- (void) drawNotesForSystem:(int)system;
|
|
|
|
- (void) addNoteAtCursor;
|
2011-09-11 02:03:22 +00:00
|
|
|
- (void) drawNoteCursor:(int)vertPos at:(VLLocation)at visual:(uint16_t)visual;
|
2011-09-26 02:49:09 +00:00
|
|
|
- (void) playNoteAtCursor;
|
|
|
|
- (void) moveCursorToNextNote;
|
|
|
|
- (void) moveCursorToPrevNote;
|
2006-09-11 02:49:56 +00:00
|
|
|
|
2018-02-19 00:59:23 +00:00
|
|
|
- (IBAction) tieNoteWithPrev:(id)sender;
|
|
|
|
- (IBAction) tieNoteWithNext:(id)sender;
|
|
|
|
- (IBAction) addRest:(id)sender;
|
|
|
|
- (IBAction) deleteNote:(id)sender;
|
|
|
|
|
2006-09-11 02:49:56 +00:00
|
|
|
@end
|
2006-10-02 08:32:25 +00:00
|
|
|
|
|
|
|
// Local Variables:
|
|
|
|
// mode:ObjC
|
|
|
|
// End:
|