summaryrefslogtreecommitdiffstats
path: root/Liaison/ViewOptionsController.h
diff options
context:
space:
mode:
Diffstat (limited to 'Liaison/ViewOptionsController.h')
-rw-r--r--Liaison/ViewOptionsController.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/Liaison/ViewOptionsController.h b/Liaison/ViewOptionsController.h
new file mode 100644
index 0000000..87fee6d
--- /dev/null
+++ b/Liaison/ViewOptionsController.h
@@ -0,0 +1,24 @@
+/* ViewOptionsController */
+
+@class FileTableDelegate;
+
+@interface ViewOptionsController : NSObject
+{
+ NSMatrix *layoutMatrix;
+
+ IBOutlet FileTableDelegate *theFileDelegate;
+ IBOutlet id theHeaderField;
+ IBOutlet id theContentView;
+ IBOutlet NSWindow *theWindow;
+
+ NSMutableArray *theShownColumns;
+}
+
+- (IBAction)showWindow: (id)sender;
+@property (retain) id theHeaderField;
+@property (retain) FileTableDelegate *theFileDelegate;
+@property (retain) NSWindow *theWindow;
+@property (retain) NSMatrix *layoutMatrix;
+@property (retain) id theContentView;
+@property (retain) NSMutableArray *theShownColumns;
+@end