2010-02-11 16:52:18 +00:00
|
|
|
/*
|
|
|
|
Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
|
|
|
|
|
|
|
|
This software is licensed under the "HS" License as described in the "LICENSE" file,
|
|
|
|
which should be included with this package. The terms are also available at
|
|
|
|
http://www.hardcoded.net/licenses/hs_license
|
|
|
|
*/
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "HSOutline.h"
|
|
|
|
#import "PyResultTree.h"
|
|
|
|
|
|
|
|
@interface ResultOutline : HSOutline
|
|
|
|
{
|
2010-02-11 18:22:31 +00:00
|
|
|
NSIndexSet *_deltaColumns;
|
2010-02-12 10:34:00 +00:00
|
|
|
NSArray *_rootChildrenCounts;
|
2010-02-11 16:52:18 +00:00
|
|
|
}
|
|
|
|
- (PyResultTree *)py;
|
2010-02-11 18:22:31 +00:00
|
|
|
- (BOOL)powerMarkerMode;
|
2010-02-11 16:52:18 +00:00
|
|
|
- (void)setPowerMarkerMode:(BOOL)aPowerMarkerMode;
|
2010-02-11 18:22:31 +00:00
|
|
|
- (BOOL)deltaValuesMode;
|
|
|
|
- (void)setDeltaValuesMode:(BOOL)aDeltaValuesMode;
|
|
|
|
- (void)setDeltaColumns:(NSIndexSet *)aDeltaColumns;
|
2010-02-12 15:30:32 +00:00
|
|
|
- (NSInteger)selectedDupeCount;
|
2010-02-12 16:15:48 +00:00
|
|
|
- (void)removeSelected;
|
2010-02-11 16:52:18 +00:00
|
|
|
@end;
|