mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 19:23:59 +00:00
37 lines
788 B
Objective-C
37 lines
788 B
Objective-C
//
|
|
// VLGrooveController.h
|
|
// Vocalese
|
|
//
|
|
// Created by Matthias Neeracher on 2/1/07.
|
|
// Copyright 2007 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@class VLSheetView;
|
|
@class VLDocument;
|
|
|
|
@interface VLGrooveController : NSWindowController {
|
|
NSDictionary * fGrooves;
|
|
IBOutlet NSBrowser * fBrowser;
|
|
IBOutlet NSTextField * fDescription;
|
|
IBOutlet NSButton * fOKButton;
|
|
IBOutlet NSButton * fPlayButton;
|
|
NSString * fStyle;
|
|
NSDictionary * fSubStyles;
|
|
NSArray * fSubStyleList;
|
|
NSPredicate * fSubStyleFilter;
|
|
VLDocument * fDocument;
|
|
}
|
|
|
|
- (id) initWithSheetView:(VLSheetView *)view;
|
|
- (IBAction)endSheet:(id)sender;
|
|
- (IBAction)updateDescription:(id)sender;
|
|
- (IBAction) togglePlay:(id)sender;
|
|
|
|
@end
|
|
|
|
// Local Variables:
|
|
// mode:ObjC
|
|
// End:
|