2006-12-30 09:57:40 +00:00
|
|
|
//
|
2007-04-27 06:41:34 +00:00
|
|
|
// File: VLSheetViewSelection.h - Measure selection functionality
|
2006-12-30 09:57:40 +00:00
|
|
|
//
|
2007-04-27 06:41:34 +00:00
|
|
|
// Author(s):
|
|
|
|
//
|
|
|
|
// (MN) Matthias Neeracher
|
|
|
|
//
|
|
|
|
// Copyright © 2006-2007 Matthias Neeracher
|
2006-12-30 09:57:40 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
@interface VLSheetView (Selection)
|
|
|
|
|
|
|
|
- (void)editSelection;
|
|
|
|
- (void)adjustSelection:(NSEvent *)event;
|
2008-01-12 23:55:15 +00:00
|
|
|
- (NSRange)sectionsInSelection;
|
2006-12-30 09:57:40 +00:00
|
|
|
|
|
|
|
- (BOOL)validateUserInterfaceItem:(id)item;
|
|
|
|
- (IBAction)cut:(id)sender;
|
|
|
|
- (IBAction)copy:(id)sender;
|
|
|
|
- (IBAction)paste:(id)sender;
|
|
|
|
- (IBAction)delete:(id)sender;
|
|
|
|
|
|
|
|
- (IBAction)editRepeat:(id)sender;
|
|
|
|
- (IBAction)editRepeatEnding:(id)sender;
|
2007-12-24 00:10:23 +00:00
|
|
|
- (IBAction)insertStartCoda:(id)sender;
|
|
|
|
- (IBAction)insertJumpToCoda:(id)sender;
|
|
|
|
- (IBAction)insertBreak:(id)sender;
|
2006-12-30 09:57:40 +00:00
|
|
|
|
2008-01-16 13:04:01 +00:00
|
|
|
- (void)updateKeyMenu;
|
|
|
|
- (void)updateTimeMenu;
|
|
|
|
- (void)updateDivisionMenu;
|
|
|
|
- (void)updateMenus;
|
|
|
|
|
2006-12-30 09:57:40 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
// Local Variables:
|
|
|
|
// mode:ObjC
|
|
|
|
// End:
|