mirror of
https://github.com/textmate/textmate.git
synced 2026-01-24 22:27:56 -05:00
13 lines
437 B
Objective-C
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
|