blob: 38778c0e12aafa3727885f414df01d979e815eda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* WindowController */
@interface WindowController : NSObject
{
IBOutlet NSTableView *theFileList;
IBOutlet NSOutlineView *theGroupList;
IBOutlet NSWindow *theInspectorWindow;
IBOutlet NSWindow *theMainWindow;
IBOutlet id theSearchField;
}
@property (retain) id theSearchField;
@property (retain) NSTableView *theFileList;
@property (retain) NSWindow *theMainWindow;
@property (retain) NSWindow *theInspectorWindow;
@property (retain) NSOutlineView *theGroupList;
@end
|