summaryrefslogtreecommitdiffstats
path: root/Liaison/InspectorController.h
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2008-04-14 21:45:08 -0400
committerBrian Cully <github.20.shmit@spamgourmet.com>2008-04-14 21:45:08 -0400
commit17349a5e426dc7acf1216a3767a22f69974cbca0 (patch)
tree20029d02f07ab6257cccec36d34fb312f796e1d1 /Liaison/InspectorController.h
downloadliaison-17349a5e426dc7acf1216a3767a22f69974cbca0.tar.gz
liaison-17349a5e426dc7acf1216a3767a22f69974cbca0.zip
Initial commit.
Diffstat (limited to 'Liaison/InspectorController.h')
-rw-r--r--Liaison/InspectorController.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/Liaison/InspectorController.h b/Liaison/InspectorController.h
new file mode 100644
index 0000000..d17c05f
--- /dev/null
+++ b/Liaison/InspectorController.h
@@ -0,0 +1,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