Revert "Remove the file tree, as Sandbox does not permit"
This reverts commit 02ec735687
.
This also changes how the File Tree choosing works.
Signed-off-by: Christopher Snowhill <kode54@gmail.com>
24 lines
547 B
Objective-C
24 lines
547 B
Objective-C
//
|
|
// FileTreeDataSource.h
|
|
// Cog
|
|
//
|
|
// Created by Vincent Spader on 10/14/07.
|
|
// Copyright 2007 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@class PathNode;
|
|
@class PathWatcher;
|
|
|
|
@interface FileTreeDataSource : NSObject <NSOutlineViewDataSource>
|
|
|
|
@property(nonatomic, weak) IBOutlet NSOutlineView *outlineView;
|
|
@property(nonatomic, weak) IBOutlet NSPathControl *pathControl;
|
|
@property(nonatomic, weak) IBOutlet PathWatcher *watcher;
|
|
|
|
- (void)changeURL:(NSURL *)rootURL;
|
|
|
|
- (void)reloadPathNode:(PathNode *)item;
|
|
|
|
@end
|