2009-08-05 08:59:46 +00:00
|
|
|
/*
|
2012-03-15 18:28:40 +00:00
|
|
|
Copyright 2012 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"
|
|
|
|
#import "Dialogs.h"
|
|
|
|
#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
|
|
|
|
{
|
2011-11-26 15:55:14 +00:00
|
|
|
HSColumnDef defs[] = {
|
2012-03-16 19:10:33 +00:00
|
|
|
{@"marked", 26, 26, 26, YES, [NSButtonCell class]},
|
2011-11-26 15:55:14 +00:00
|
|
|
{@"name", 162, 16, 0, YES, nil},
|
|
|
|
{@"folder_path", 142, 16, 0, YES, nil},
|
|
|
|
{@"size", 63, 16, 0, YES, nil},
|
|
|
|
{@"extension", 40, 16, 0, YES, nil},
|
|
|
|
{@"dimensions", 73, 16, 0, YES, nil},
|
|
|
|
{@"mtime", 120, 16, 0, YES, nil},
|
|
|
|
{@"percentage", 58, 16, 0, YES, nil},
|
|
|
|
{@"dupe_count", 80, 16, 0, YES, nil},
|
|
|
|
nil
|
|
|
|
};
|
2011-12-08 16:06:25 +00:00
|
|
|
[[table columns] initializeColumns:defs];
|
2011-11-26 15:55:14 +00:00
|
|
|
NSTableColumn *c = [matches tableColumnWithIdentifier:@"marked"];
|
|
|
|
[[c dataCell] setButtonType:NSSwitchButton];
|
|
|
|
[[c dataCell] setControlSize:NSSmallControlSize];
|
2011-12-08 16:06:25 +00:00
|
|
|
c = [matches tableColumnWithIdentifier:@"size"];
|
2011-11-26 15:55:14 +00:00
|
|
|
[[c dataCell] setAlignment:NSRightTextAlignment];
|
|
|
|
[[table columns] restoreColumns];
|
2011-01-15 10:38:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setScanOptions
|
|
|
|
{
|
|
|
|
NSUserDefaults *ud = [NSUserDefaults standardUserDefaults];
|
2012-01-16 15:30:45 +00:00
|
|
|
[model setScanType:n2i([ud objectForKey:@"scanType"])];
|
|
|
|
[model setMinMatchPercentage:n2i([ud objectForKey:@"minMatchPercentage"])];
|
|
|
|
[model setMixFileKind:n2b([ud objectForKey:@"mixFileKind"])];
|
|
|
|
[model setIgnoreHardlinkMatches:n2b([ud objectForKey:@"ignoreHardlinkMatches"])];
|
|
|
|
[model setMatchScaled:n2b([ud objectForKey:@"matchScaled"])];
|
2011-01-15 10:38:59 +00:00
|
|
|
}
|
|
|
|
|
2009-06-01 09:55:11 +00:00
|
|
|
/* Actions */
|
|
|
|
- (IBAction)clearPictureCache:(id)sender
|
|
|
|
{
|
2011-11-04 17:10:11 +00:00
|
|
|
NSString *msg = TR(@"Do you really want to remove all your cached picture analysis?");
|
2011-01-18 14:35:14 +00:00
|
|
|
if ([Dialogs askYesNo:msg] == NSAlertSecondButtonReturn) // NO
|
2009-06-01 09:55:11 +00:00
|
|
|
return;
|
2012-01-16 15:30:45 +00:00
|
|
|
[model clearPictureCache];
|
2009-06-01 09:55:11 +00:00
|
|
|
}
|
|
|
|
@end
|