cog/FileTree/FileTreeDataSource.h

29 lines
526 B
C
Raw Normal View History

2007-10-18 02:52:03 +00:00
//
// 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;
2007-10-18 02:52:03 +00:00
@interface FileTreeDataSource : NSObject {
PathNode *rootNode;
IBOutlet NSPathControl *pathControl;
IBOutlet PathWatcher *watcher;
2007-10-18 02:52:03 +00:00
IBOutlet NSOutlineView *outlineView;
}
- (NSURL *)rootURL;
- (void)setRootURL:(NSURL *)rootURL;
- (void)changeURL:(NSURL *)rootURL;
2007-10-18 02:52:03 +00:00
- (void)reloadPathNode:(PathNode *)item;
@end