2010-02-11 17:52:18 +01:00
|
|
|
/*
|
2011-04-12 10:04:01 +02:00
|
|
|
Copyright 2011 Hardcoded Software (http://www.hardcoded.net)
|
2010-02-11 17:52:18 +01:00
|
|
|
|
2010-09-30 12:17:41 +02:00
|
|
|
This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
2010-02-11 17:52:18 +01:00
|
|
|
which should be included with this package. The terms are also available at
|
2010-09-30 12:17:41 +02:00
|
|
|
http://www.hardcoded.net/licenses/bsd_license
|
2010-02-11 17:52:18 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
2011-09-22 15:59:11 -04:00
|
|
|
#import <Quartz/Quartz.h>
|
2010-09-24 15:48:59 +02:00
|
|
|
#import "HSTable.h"
|
|
|
|
#import "PyResultTable.h"
|
2010-02-11 17:52:18 +01:00
|
|
|
|
2011-09-22 15:59:11 -04:00
|
|
|
@interface ResultTable : HSTable <QLPreviewPanelDataSource, QLPreviewPanelDelegate>
|
2010-02-11 17:52:18 +01:00
|
|
|
{
|
2011-11-27 12:54:58 -05:00
|
|
|
NSSet *_deltaColumns;
|
2010-02-11 17:52:18 +01:00
|
|
|
}
|
2011-11-27 12:47:00 -05:00
|
|
|
- (id)initWithPy:(id)aPy view:(NSTableView *)aTableView;
|
2010-09-24 15:48:59 +02:00
|
|
|
- (PyResultTable *)py;
|
2010-02-11 19:22:31 +01:00
|
|
|
- (BOOL)powerMarkerMode;
|
2010-02-11 17:52:18 +01:00
|
|
|
- (void)setPowerMarkerMode:(BOOL)aPowerMarkerMode;
|
2010-02-11 19:22:31 +01:00
|
|
|
- (BOOL)deltaValuesMode;
|
|
|
|
- (void)setDeltaValuesMode:(BOOL)aDeltaValuesMode;
|
2010-02-12 16:30:32 +01:00
|
|
|
- (NSInteger)selectedDupeCount;
|
2010-02-12 17:15:48 +01:00
|
|
|
- (void)removeSelected;
|
2010-02-11 17:52:18 +01:00
|
|
|
@end;
|