2010-02-11 17:52:18 +01:00
|
|
|
/*
|
2013-04-28 10:35:51 -04:00
|
|
|
Copyright 2013 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>
|
2012-01-13 14:43:43 -05:00
|
|
|
#import "HSTable.h"
|
2010-09-24 15:48:59 +02:00
|
|
|
#import "PyResultTable.h"
|
2010-02-11 17:52:18 +01:00
|
|
|
|
2012-01-13 14:43:43 -05: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
|
|
|
}
|
2012-01-13 15:25:34 -05:00
|
|
|
- (id)initWithPyRef:(PyObject *)aPyRef view:(NSTableView *)aTableView;
|
2012-01-13 11:49:34 -05:00
|
|
|
- (PyResultTable *)model;
|
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-11 17:52:18 +01:00
|
|
|
@end;
|