forked from Kentzo/F-Script
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFSDemoAssistant.h
More file actions
43 lines (33 loc) · 1.19 KB
/
FSDemoAssistant.h
File metadata and controls
43 lines (33 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/* FSDemoController.h Copyright (c) 2007-2009 Philippe Mougin. */
/* This software is open source. See the license. */
#import <Cocoa/Cocoa.h>
#import "FSInterpreterView.h"
@interface FSDemoAssistant : NSObject
{
IBOutlet FSInterpreterView *interpreterView;
NSTextView *loadImage;
NSTextView *displayImage;
NSTextView *lockFocus;
NSTextView *perspective;
NSTextView *hueAdjust;
NSTextView *bump;
NSTextView *bumpAnimate;
NSTextView *horloge;
NSTextView *connectToITunes;
NSTextView *volumeRamp;
}
@property (retain) IBOutlet NSTextView *loadImage;
@property (retain) IBOutlet NSTextView *displayImage;
@property (retain) IBOutlet NSTextView *lockFocus;
@property (retain) IBOutlet NSTextView *perspective;
@property (retain) IBOutlet NSTextView *hueAdjust;
@property (retain) IBOutlet NSTextView *bump;
@property (retain) IBOutlet NSTextView *bumpAnimate;
@property (retain) IBOutlet NSTextView *horloge;
@property (retain) IBOutlet NSTextView *connectToITunes;
@property (retain) IBOutlet NSTextView *volumeRamp;
- (void)activate;
- (id)initWithInterpreterView:(FSInterpreterView *)theInterpreterView;
- (IBAction)loadCode:sender;
- (void)putCommand:(NSString *)command;
@end