mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 19:23:59 +00:00
28 lines
545 B
C
28 lines
545 B
C
|
//
|
||
|
// VLSheetViewSelection.h
|
||
|
// Vocalese
|
||
|
//
|
||
|
// Created by Matthias Neeracher on 12/28/06.
|
||
|
// Copyright 2006 __MyCompanyName__. All rights reserved.
|
||
|
//
|
||
|
|
||
|
@interface VLSheetView (Selection)
|
||
|
|
||
|
- (void)editSelection;
|
||
|
- (void)adjustSelection:(NSEvent *)event;
|
||
|
|
||
|
- (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;
|
||
|
|
||
|
@end
|
||
|
|
||
|
// Local Variables:
|
||
|
// mode:ObjC
|
||
|
// End:
|