2006-09-02 16:09:20 +00:00
|
|
|
//
|
|
|
|
// Node.h
|
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 8/20/2006.
|
|
|
|
// Copyright 2006 Vincent Spader. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2007-10-15 03:29:30 +00:00
|
|
|
@class FileTreeDataSource;
|
|
|
|
|
2006-09-02 16:09:20 +00:00
|
|
|
@interface PathNode : NSObject
|
|
|
|
{
|
2007-10-15 03:29:30 +00:00
|
|
|
FileTreeDataSource *dataSource;
|
|
|
|
|
2006-09-02 16:09:20 +00:00
|
|
|
NSString *path;
|
2007-10-15 03:29:30 +00:00
|
|
|
NSString *displayPath; //The pretty path to display.
|
|
|
|
|
2007-10-14 23:24:54 +00:00
|
|
|
NSImage *icon;
|
|
|
|
|
|
|
|
NSArray *subpaths;
|
2006-09-02 16:09:20 +00:00
|
|
|
}
|
|
|
|
|
2007-10-15 03:29:30 +00:00
|
|
|
- (id)initWithDataSource:(FileTreeDataSource *)ds path:(NSString *)p;
|
2006-09-02 16:09:20 +00:00
|
|
|
|
2007-10-14 23:24:54 +00:00
|
|
|
- (NSString *)path;
|
|
|
|
- (void)setPath:(NSString *)p;
|
|
|
|
|
|
|
|
- (void)processPaths: (NSArray *)contents;
|
|
|
|
|
|
|
|
- (NSArray *)subpaths;
|
|
|
|
- (void)setSubpaths:(NSArray *)s;
|
|
|
|
|
2007-10-15 03:29:30 +00:00
|
|
|
- (NSString *)displayPath;
|
2007-10-14 23:24:54 +00:00
|
|
|
- (NSImage *)icon;
|
|
|
|
|
|
|
|
- (BOOL)isLeaf;
|
2006-09-02 16:09:20 +00:00
|
|
|
|
2007-10-15 23:18:58 +00:00
|
|
|
- (void)startWatching;
|
|
|
|
- (void)stopWatching;
|
|
|
|
- (void)updatePathNotification:(NSNotification *)notification;
|
|
|
|
|
2006-09-02 16:09:20 +00:00
|
|
|
@end
|