blob: 87fee6d37752aafc0d229c21a2c840acf2523521 (
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
|
/* 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
|