2010-02-11 16:52:18 +00:00
|
|
|
/*
|
|
|
|
Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
|
|
|
|
|
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>
|
2010-09-24 13:48:59 +00:00
|
|
|
#import "PyTable.h"
|
2010-02-11 16:52:18 +00:00
|
|
|
|
2010-09-24 13:48:59 +00:00
|
|
|
@interface PyResultTable : PyTable
|
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;
|
2010-02-11 16:52:18 +00:00
|
|
|
|
2010-09-24 13:48:59 +00:00
|
|
|
- (NSString *)valueForRow:(NSInteger)rowIndex column:(NSInteger)aColumn;
|
2010-02-11 16:52:18 +00:00
|
|
|
- (BOOL)renameSelected:(NSString *)aNewName;
|
|
|
|
- (void)sortBy:(NSInteger)aIdentifier ascending:(BOOL)aAscending;
|
|
|
|
- (void)markSelected;
|
2010-02-12 16:15:48 +00:00
|
|
|
- (void)removeSelected;
|
2010-09-24 13:48:59 +00:00
|
|
|
- (NSInteger)selectedDupeCount;
|
2010-02-11 16:52:18 +00:00
|
|
|
@end
|