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;
|
2008-02-18 03:27:59 +00:00
|
|
|
@class PathWatcher;
|
2007-10-18 02:52:03 +00:00
|
|
|
|
2021-01-30 23:14:08 +00:00
|
|
|
@interface FileTreeDataSource : NSObject <NSOutlineViewDataSource>
|
|
|
|
|
|
|
|
@property(nonatomic, weak) IBOutlet NSOutlineView *outlineView;
|
|
|
|
@property(nonatomic, weak) IBOutlet NSPathControl *pathControl;
|
|
|
|
@property(nonatomic, weak) IBOutlet PathWatcher *watcher;
|
2007-10-18 02:52:03 +00:00
|
|
|
|
2009-08-16 16:49:34 +00:00
|
|
|
- (void)changeURL:(NSURL *)rootURL;
|
2007-10-18 02:52:03 +00:00
|
|
|
|
|
|
|
- (void)reloadPathNode:(PathNode *)item;
|
|
|
|
|
|
|
|
@end
|