forked from Kentzo/F-Script
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBigBrowserView.h
More file actions
32 lines (23 loc) · 731 Bytes
/
BigBrowserView.h
File metadata and controls
32 lines (23 loc) · 731 Bytes
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
// BigBrowserView.h Copyright 2000 Philippe Mougin.
// This software is Open Source. See the license.
#import "build_config.h"
#ifdef BUILD_WITH_APPKIT
#import <Foundation/Foundation.h>
#import <AppKit/AppKit.h>
@class FSInterpreter;
@interface BigBrowserView : NSView
{
NSArray *rootObject;
BOOL isDisabled; // When the user is entering the arguments, we should
// disable the user interaction with the BigBrowserView
FSInterpreter *interpreter;
NSWindow *argumentsWindow;
NSBrowser *b1;
NSBrowser *b2;
BOOL twoLevelsEnabled;
}
-(id) initWithFrame:(NSRect)frameRect;
-(void) setInterpreter:(FSInterpreter *)theInterpreter;
-(void) setRootObject:(NSArray *)theRootObject;
@end
#endif