2009-08-05 08:59:46 +00:00
|
|
|
/*
|
2015-01-03 21:30:57 +00:00
|
|
|
Copyright 2015 Hardcoded Software (http://www.hardcoded.net)
|
2009-08-05 08:59:46 +00:00
|
|
|
|
2015-01-03 21:33:16 +00:00
|
|
|
This software is licensed under the "GPLv3" 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
|
2015-01-03 21:33:16 +00:00
|
|
|
http://www.gnu.org/licenses/gpl-3.0.html
|
2009-08-05 08:59:46 +00:00
|
|
|
*/
|
|
|
|
|
2009-06-01 09:55:11 +00:00
|
|
|
#import "AppDelegate.h"
|
|
|
|
#import "ProgressController.h"
|
|
|
|
#import "Utils.h"
|
|
|
|
#import "ValueTransformers.h"
|
|
|
|
#import "Consts.h"
|
2012-07-29 15:57:46 +00:00
|
|
|
#import "DetailsPanel.h"
|
2010-02-05 15:51:00 +00:00
|
|
|
#import "DirectoryPanel.h"
|
2011-01-14 12:56:50 +00:00
|
|
|
#import "ResultWindow.h"
|
2009-06-01 09:55:11 +00:00
|
|
|
|
|
|
|
@implementation AppDelegate
|
2012-07-31 14:27:36 +00:00
|
|
|
+ (NSDictionary *)defaultPreferences
|
2009-06-01 09:55:11 +00:00
|
|
|
{
|
2012-07-31 14:27:36 +00:00
|
|
|
NSMutableDictionary *d = [NSMutableDictionary dictionaryWithDictionary:[super defaultPreferences]];
|
2011-04-21 15:17:19 +00:00
|
|
|
[d setObject:i2n(0) forKey:@"scanType"];
|
|
|
|
[d setObject:i2n(95) forKey:@"minMatchPercentage"];
|
|
|
|
[d setObject:b2n(NO) forKey:@"matchScaled"];
|
2012-07-31 14:27:36 +00:00
|
|
|
return d;
|
2009-06-01 09:55:11 +00:00
|
|
|
}
|
|
|
|
|
2011-04-21 15:17:19 +00:00
|
|
|
- (id)init
|
|
|
|
{
|
|
|
|
self = [super init];
|
|
|
|
NSMutableIndexSet *i = [NSMutableIndexSet indexSetWithIndex:0];
|
|
|
|
VTIsIntIn *vtScanTypeIsFuzzy = [[[VTIsIntIn alloc] initWithValues:i reverse:NO] autorelease];
|
|
|
|
[NSValueTransformer setValueTransformer:vtScanTypeIsFuzzy forName:@"vtScanTypeIsFuzzy"];
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2011-01-14 12:56:50 +00:00
|
|
|
- (NSString *)homepageURL
|
2009-06-01 09:55:11 +00:00
|
|
|
{
|
2011-01-14 12:56:50 +00:00
|
|
|
return @"http://www.hardcoded.net/dupeguru_pe/";
|
2009-06-01 09:55:11 +00:00
|
|
|
}
|
|
|
|
|
2011-01-14 12:56:50 +00:00
|
|
|
- (ResultWindowBase *)createResultWindow
|
2009-06-01 09:55:11 +00:00
|
|
|
{
|
2011-01-14 12:56:50 +00:00
|
|
|
return [[ResultWindow alloc] initWithParentApp:self];
|
2009-06-01 09:55:11 +00:00
|
|
|
}
|
|
|
|
|
2011-01-14 12:56:50 +00:00
|
|
|
- (DirectoryPanel *)createDirectoryPanel
|
2009-06-01 09:55:11 +00:00
|
|
|
{
|
2011-01-14 12:56:50 +00:00
|
|
|
return [[DirectoryPanelPE alloc] initWithParentApp:self];
|
2009-06-01 09:55:11 +00:00
|
|
|
}
|
|
|
|
|
2011-01-14 12:56:50 +00:00
|
|
|
- (DetailsPanel *)createDetailsPanel
|
2009-06-01 09:55:11 +00:00
|
|
|
{
|
2012-07-29 15:57:46 +00:00
|
|
|
return [[DetailsPanel alloc] initWithApp:model];
|
2009-06-01 09:55:11 +00:00
|
|
|
}
|
2011-01-14 12:56:50 +00:00
|
|
|
|
2012-07-29 15:28:39 +00:00
|
|
|
- (void)clearPictureCache
|
2009-06-01 09:55:11 +00:00
|
|
|
{
|
2012-07-29 15:28:39 +00:00
|
|
|
[(ResultWindow *)[self resultWindow] clearPictureCache];
|
2009-06-01 09:55:11 +00:00
|
|
|
}
|
|
|
|
@end
|