mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 19:23:59 +00:00
47 lines
919 B
Objective-C
47 lines
919 B
Objective-C
//
|
|
// VLSheetWindow.h
|
|
// Lilypond
|
|
//
|
|
// Created by Matthias Neeracher on 5/29/05.
|
|
// Copyright 2005 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface VLEditable : NSObject
|
|
{
|
|
}
|
|
|
|
- (NSString *) stringValue;
|
|
- (void) setStringValue:(NSString*)val;
|
|
- (BOOL) validValue:(NSString*)val;
|
|
- (void) moveToNext;
|
|
- (void) moveToPrev;
|
|
- (void) highlightCursor;
|
|
|
|
@end
|
|
|
|
@interface VLSheetWindow : NSWindowController {
|
|
VLEditable * editTarget;
|
|
|
|
IBOutlet id outputToolItem;
|
|
IBOutlet id logToolItem;
|
|
IBOutlet id playToolItem;
|
|
IBOutlet id stopToolItem;
|
|
IBOutlet id zoomInToolItem;
|
|
IBOutlet id zoomOutToolItem;
|
|
IBOutlet id progressToolItem;
|
|
IBOutlet id displayToolItem;
|
|
|
|
int editNumTopLedgers;
|
|
int editNumBotLedgers;
|
|
int editNumStanzas;
|
|
}
|
|
|
|
- (VLEditable *) editTarget;
|
|
- (void) setEditTarget:(VLEditable *)editable;
|
|
- (void) startAnimation;
|
|
- (void) stopAnimation;
|
|
|
|
@end
|