mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-05 15:59:03 +00:00
54 lines
2.0 KiB
Objective-C
54 lines
2.0 KiB
Objective-C
/*
|
|
Copyright 2011 Hardcoded Software (http://www.hardcoded.net)
|
|
|
|
This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
|
which should be included with this package. The terms are also available at
|
|
http://www.hardcoded.net/licenses/bsd_license
|
|
*/
|
|
|
|
#import "ResultWindow.h"
|
|
#import "Utils.h"
|
|
#import "Consts.h"
|
|
#import "PyDupeGuru.h"
|
|
|
|
@implementation ResultWindow
|
|
/* Override */
|
|
- (void)initResultColumns
|
|
{
|
|
HSColumnDef defs[] = {
|
|
{@"marked", 26, 26, 26, NO, [NSButtonCell class]},
|
|
{@"name", 195, 16, 0, YES, nil},
|
|
{@"folder_path", 183, 16, 0, YES, nil},
|
|
{@"size", 63, 16, 0, YES, nil},
|
|
{@"extension", 40, 16, 0, YES, nil},
|
|
{@"mtime", 120, 16, 0, YES, nil},
|
|
{@"percentage", 60, 16, 0, YES, nil},
|
|
{@"words", 120, 16, 0, YES, nil},
|
|
{@"dupe_count", 80, 16, 0, YES, nil},
|
|
nil
|
|
};
|
|
[[table columns] initializeColumns:defs];
|
|
NSTableColumn *c = [matches tableColumnWithIdentifier:@"marked"];
|
|
[[c dataCell] setButtonType:NSSwitchButton];
|
|
[[c dataCell] setControlSize:NSSmallControlSize];
|
|
c = [matches tableColumnWithIdentifier:@"size"];
|
|
[[c dataCell] setAlignment:NSRightTextAlignment];
|
|
[[table columns] restoreColumns];
|
|
}
|
|
|
|
- (void)setScanOptions
|
|
{
|
|
NSUserDefaults *ud = [NSUserDefaults standardUserDefaults];
|
|
PyDupeGuru *_py = (PyDupeGuru *)py;
|
|
[_py setScanType:[ud objectForKey:@"scanType"]];
|
|
[_py setMinMatchPercentage:[ud objectForKey:@"minMatchPercentage"]];
|
|
[_py setWordWeighting:[ud objectForKey:@"wordWeighting"]];
|
|
[_py setMixFileKind:n2b([ud objectForKey:@"mixFileKind"])];
|
|
[_py setIgnoreHardlinkMatches:n2b([ud objectForKey:@"ignoreHardlinkMatches"])];
|
|
[_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];
|
|
}
|
|
@end
|