Files
textmate/Frameworks/OakFileBrowser/src/FSOutlineViewDelegate.h
Allan Odgaard 9894969e67 Initial commit
2012-08-09 16:25:56 +02:00

32 lines
843 B
Objective-C

@class FSDataSource;
@interface FSOutlineViewDelegate : NSObject <NSOutlineViewDelegate>
{
IBOutlet NSOutlineView* outlineView;
IBOutlet FSDataSource* dataSource;
NSArray* openURLs;
NSArray* modifiedURLs;
NSMutableSet* expandedURLs;
NSMutableSet* selectedURLs;
NSInteger itemsReloading;
NSInteger suppressCollapsing;
BOOL suppressAutoExpansion;
NSMutableSet* recursiveExpandPaths;
NSSet* pendingSelectURLs;
NSURL* pendingEditURL;
NSURL* pendingMakeVisibleURL;
CGFloat pendingScrollOffset;
}
@property (nonatomic, retain) NSOutlineView* outlineView;
@property (nonatomic, retain) FSDataSource* dataSource;
@property (nonatomic, retain) NSArray* openURLs;
@property (nonatomic, retain) NSArray* modifiedURLs;
- (void)selectURLs:(NSArray*)someURLs;
- (void)editURL:(NSURL*)anURL;
- (void)scrollToOffset:(CGFloat)anOffset;
@end