blob: d17c05fa17955616fcf8cd83e3135bb9e3871cc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* InspectorController */
@class LiInspectorView;
@interface InspectorController : NSObject
{
IBOutlet NSTabView *theTabView;
IBOutlet NSView *theDefaultTabView;
IBOutlet NSWindow *theWindow;
NSMutableDictionary *theInspectorViews;
LiFileHandle *theFile;
}
- (LiInspectorView *)inspectorViewForIdentifier: (NSString *)anIdentifier;
- (NSRect)minWindowFrame;
- (void)resizeWindow;
- (void)setFile: (LiFileHandle *)aFile;
@property (retain) LiFileHandle *theFile;
@property (retain) NSWindow *theWindow;
@property (retain) NSMutableDictionary *theInspectorViews;
@property (retain) NSTabView *theTabView;
@property (retain) NSView *theDefaultTabView;
@end
|