2009-08-05 08:59:46 +00:00
|
|
|
/*
|
2011-04-12 08:04:01 +00:00
|
|
|
Copyright 2011 Hardcoded Software (http://www.hardcoded.net)
|
2009-08-05 08:59:46 +00:00
|
|
|
|
2010-09-30 10:17:41 +00:00
|
|
|
This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
2009-08-05 08:59:46 +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
|
2009-08-05 08:59:46 +00:00
|
|
|
*/
|
|
|
|
|
2009-06-01 09:55:11 +00:00
|
|
|
#import "ResultWindow.h"
|
2011-01-15 10:38:59 +00:00
|
|
|
#import "Utils.h"
|
2011-01-18 14:35:14 +00:00
|
|
|
#import "Consts.h"
|
2011-01-15 10:38:59 +00:00
|
|
|
#import "PyDupeGuru.h"
|
2009-06-01 09:55:11 +00:00
|
|
|
|
|
|
|
@implementation ResultWindow
|
|
|
|
/* Override */
|
2011-01-15 10:38:59 +00:00
|
|
|
- (void)initResultColumns
|
2009-06-01 09:55:11 +00:00
|
|
|
{
|
2011-09-23 13:14:16 +00:00
|
|
|
[super initResultColumns];
|
2011-01-15 10:38:59 +00:00
|
|
|
NSTableColumn *refCol = [matches tableColumnWithIdentifier:@"0"];
|
|
|
|
_resultColumns = [[NSMutableArray alloc] init];
|
|
|
|
[_resultColumns addObject:[matches tableColumnWithIdentifier:@"0"]]; // File Name
|
2011-09-16 22:01:56 +00:00
|
|
|
[_resultColumns addObject:[self getColumnForIdentifier:1 title:TRCOL(@"Folder") width:120 refCol:refCol]];
|
|
|
|
NSTableColumn *sizeCol = [self getColumnForIdentifier:2 title:TRCOL(@"Size (KB)") width:63 refCol:refCol];
|
2011-01-15 10:38:59 +00:00
|
|
|
[[sizeCol dataCell] setAlignment:NSRightTextAlignment];
|
|
|
|
[_resultColumns addObject:sizeCol];
|
2011-09-16 22:01:56 +00:00
|
|
|
[_resultColumns addObject:[self getColumnForIdentifier:3 title:TRCOL(@"Kind") width:40 refCol:refCol]];
|
|
|
|
[_resultColumns addObject:[self getColumnForIdentifier:4 title:TRCOL(@"Modification") width:120 refCol:refCol]];
|
|
|
|
[_resultColumns addObject:[self getColumnForIdentifier:5 title:TRCOL(@"Match %") width:60 refCol:refCol]];
|
|
|
|
[_resultColumns addObject:[self getColumnForIdentifier:6 title:TRCOL(@"Words Used") width:120 refCol:refCol]];
|
|
|
|
[_resultColumns addObject:[self getColumnForIdentifier:7 title:TRCOL(@"Dupe Count") width:80 refCol:refCol]];
|
2009-06-01 09:55:11 +00:00
|
|
|
}
|
|
|
|
|
2011-01-15 10:38:59 +00:00
|
|
|
- (void)setScanOptions
|
2009-06-01 09:55:11 +00:00
|
|
|
{
|
|
|
|
NSUserDefaults *ud = [NSUserDefaults standardUserDefaults];
|
|
|
|
PyDupeGuru *_py = (PyDupeGuru *)py;
|
|
|
|
[_py setScanType:[ud objectForKey:@"scanType"]];
|
|
|
|
[_py setMinMatchPercentage:[ud objectForKey:@"minMatchPercentage"]];
|
|
|
|
[_py setWordWeighting:[ud objectForKey:@"wordWeighting"]];
|
2010-09-25 10:28:34 +00:00
|
|
|
[_py setMixFileKind:n2b([ud objectForKey:@"mixFileKind"])];
|
|
|
|
[_py setIgnoreHardlinkMatches:n2b([ud objectForKey:@"ignoreHardlinkMatches"])];
|
2009-06-01 09:55:11 +00:00
|
|
|
[_py setMatchSimilarWords:[ud objectForKey:@"matchSimilarWords"]];
|
|
|
|
int smallFileThreshold = [ud integerForKey:@"smallFileThreshold"]; // In KB
|
|
|
|
int sizeThreshold = [ud boolForKey:@"ignoreSmallFiles"] ? smallFileThreshold * 1024 : 0; // The py side wants bytes
|
|
|
|
[_py setSizeThreshold:sizeThreshold];
|
|
|
|
}
|
|
|
|
|
2011-01-15 10:38:59 +00:00
|
|
|
/* Actions */
|
|
|
|
- (IBAction)resetColumnsToDefault:(id)sender
|
2009-06-01 09:55:11 +00:00
|
|
|
{
|
2011-01-15 10:38:59 +00:00
|
|
|
NSMutableArray *columnsOrder = [NSMutableArray array];
|
|
|
|
[columnsOrder addObject:@"0"];
|
|
|
|
[columnsOrder addObject:@"1"];
|
|
|
|
[columnsOrder addObject:@"2"];
|
|
|
|
[columnsOrder addObject:@"5"];
|
|
|
|
NSMutableDictionary *columnsWidth = [NSMutableDictionary dictionary];
|
|
|
|
[columnsWidth setObject:i2n(195) forKey:@"0"];
|
|
|
|
[columnsWidth setObject:i2n(183) forKey:@"1"];
|
|
|
|
[columnsWidth setObject:i2n(63) forKey:@"2"];
|
|
|
|
[columnsWidth setObject:i2n(60) forKey:@"5"];
|
|
|
|
[self restoreColumnsPosition:columnsOrder widths:columnsWidth];
|
2009-06-01 09:55:11 +00:00
|
|
|
}
|
|
|
|
@end
|