mirror of
https://github.com/textmate/textmate.git
synced 2026-01-23 05:37:55 -05:00
32 lines
843 B
Objective-C
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
|