Files
textmate/Frameworks/OakFileBrowser/src/FSOutlineViewDelegate.h
2013-02-05 20:59:54 +01:00

13 lines
437 B
Objective-C

@class FSDataSource;
@interface FSOutlineViewDelegate : NSObject
@property (nonatomic, retain) NSOutlineView* outlineView;
@property (nonatomic, retain) FSDataSource* dataSource;
@property (nonatomic, retain) NSArray* openURLs;
@property (nonatomic, retain) NSArray* modifiedURLs;
- (void)selectURLs:(NSArray*)someURLs expandChildren:(BOOL)expandAncestors;
- (void)editURL:(NSURL*)anURL;
- (void)scrollToOffset:(CGFloat)anOffset;
@end