2010-02-11 16:52:18 +00:00
|
|
|
/*
|
2011-04-12 08:04:01 +00:00
|
|
|
Copyright 2011 Hardcoded Software (http://www.hardcoded.net)
|
2010-02-11 16:52:18 +00:00
|
|
|
|
2010-09-30 10:17:41 +00:00
|
|
|
This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
2010-02-11 16:52:18 +00:00
|
|
|
which should be included with this package. The terms are also available at
|
2010-09-30 10:17:41 +00:00
|
|
|
http://www.hardcoded.net/licenses/bsd_license
|
2010-02-11 16:52:18 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
2011-09-22 19:59:11 +00:00
|
|
|
#import <Quartz/Quartz.h>
|
2010-09-24 13:48:59 +00:00
|
|
|
#import "HSTable.h"
|
|
|
|
#import "PyResultTable.h"
|
2010-02-11 16:52:18 +00:00
|
|
|
|
2011-09-22 19:59:11 +00:00
|
|
|
@interface ResultTable : HSTable <QLPreviewPanelDataSource, QLPreviewPanelDelegate>
|
2010-02-11 16:52:18 +00:00
|
|
|
{
|
2010-02-11 18:22:31 +00:00
|
|
|
NSIndexSet *_deltaColumns;
|
2010-02-11 16:52:18 +00:00
|
|
|
}
|
2010-09-25 10:35:51 +00:00
|
|
|
- (id)initWithPyParent:(id)aPyParent view:(NSTableView *)aTableView;
|
2010-09-24 13:48:59 +00:00
|
|
|
- (PyResultTable *)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;
|