Skip to content

Commit c808c7d

Browse files
committed
Initial commit
0 parents  commit c808c7d

439 files changed

Lines changed: 83188 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.pbxproj -crlf -diff -merge

.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# xcode noise
2+
build/*
3+
*.pbxuser
4+
*.mode1v3
5+
6+
# old skool
7+
.svn
8+
9+
# osx noise
10+
.DS_Store
11+
profile

F-Script/DemoAssistant.xib

Lines changed: 2371 additions & 0 deletions
Large diffs are not rendered by default.

F-Script/English.lproj/fs.nib/classes.nib

Lines changed: 161 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

F-Script/English.lproj/fs.nib/info.nib

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
24.3 KB
Binary file not shown.

F-Script/English.lproj/fs~.nib/classes.nib

Lines changed: 48 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

F-Script/English.lproj/fs~.nib/info.nib

Lines changed: 24 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
20.8 KB
Binary file not shown.

F-Script/FSDemoAssistant.h

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/* FSDemoController.h Copyright (c) 2007 Philippe Mougin. */
2+
/* This software is open source. See the license. */
3+
4+
#import <Cocoa/Cocoa.h>
5+
#import "FSInterpreterView.h"
6+
7+
8+
@interface FSDemoAssistant : NSObject
9+
{
10+
IBOutlet FSInterpreterView *interpreterView;
11+
NSTextView *loadImage;
12+
NSTextView *displayImage;
13+
NSTextView *lockFocus;
14+
NSTextView *perspective;
15+
NSTextView *hueAdjust;
16+
NSTextView *bump;
17+
NSTextView *bumpAnimate;
18+
}
19+
20+
@property (retain) IBOutlet NSTextView *loadImage;
21+
@property (retain) IBOutlet NSTextView *displayImage;
22+
@property (retain) IBOutlet NSTextView *lockFocus;
23+
@property (retain) IBOutlet NSTextView *perspective;
24+
@property (retain) IBOutlet NSTextView *hueAdjust;
25+
@property (retain) IBOutlet NSTextView *bump;
26+
@property (retain) IBOutlet NSTextView *bumpAnimate;
27+
28+
- (void)activate;
29+
- (id)initWithInterpreterView:(FSInterpreterView *)theInterpreterView;
30+
- (IBAction)loadCode:sender;
31+
- (void)putCommand:(NSString *)command;
32+
33+
@end

0 commit comments

Comments
 (0)