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 "AppDelegate.h"
|
2011-09-23 13:14:16 +00:00
|
|
|
#import "ProgressController.h"
|
|
|
|
#import "Utils.h"
|
|
|
|
#import "ValueTransformers.h"
|
2009-11-02 15:16:34 +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
|
|
|
#import "Consts.h"
|
|
|
|
|
|
|
|
@implementation AppDelegate
|
|
|
|
+ (void)initialize
|
|
|
|
{
|
2011-09-23 13:14:16 +00:00
|
|
|
[super initialize];
|
2009-06-01 09:55:11 +00:00
|
|
|
NSUserDefaults *ud = [NSUserDefaults standardUserDefaults];
|
|
|
|
NSMutableDictionary *d = [NSMutableDictionary dictionary];
|
|
|
|
[d setObject:i2n(1) forKey:@"scanType"];
|
|
|
|
[d setObject:i2n(80) forKey:@"minMatchPercentage"];
|
|
|
|
[d setObject:i2n(30) forKey:@"smallFileThreshold"];
|
|
|
|
[d setObject:i2n(1) forKey:@"recreatePathType"];
|
2011-09-23 13:14:16 +00:00
|
|
|
[d setObject:i2n(11) forKey:TableFontSize];
|
2009-06-01 09:55:11 +00:00
|
|
|
[d setObject:b2n(YES) forKey:@"wordWeighting"];
|
|
|
|
[d setObject:b2n(NO) forKey:@"matchSimilarWords"];
|
|
|
|
[d setObject:b2n(YES) forKey:@"mixFileKind"];
|
|
|
|
[d setObject:b2n(NO) forKey:@"useRegexpFilter"];
|
2010-09-25 10:28:34 +00:00
|
|
|
[d setObject:b2n(NO) forKey:@"ignoreHardlinkMatches"];
|
2009-06-01 09:55:11 +00:00
|
|
|
[d setObject:b2n(NO) forKey:@"removeEmptyFolders"];
|
|
|
|
[d setObject:b2n(YES) forKey:@"ignoreSmallFiles"];
|
|
|
|
[d setObject:b2n(NO) forKey:@"debug"];
|
|
|
|
[d setObject:[NSArray array] forKey:@"recentDirectories"];
|
|
|
|
[d setObject:[NSArray array] forKey:@"columnsOrder"];
|
|
|
|
[d setObject:[NSDictionary dictionary] forKey:@"columnsWidth"];
|
|
|
|
[[NSUserDefaultsController sharedUserDefaultsController] setInitialValues:d];
|
|
|
|
[ud registerDefaults:d];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id)init
|
|
|
|
{
|
|
|
|
self = [super init];
|
2011-04-12 11:22:29 +00:00
|
|
|
NSMutableIndexSet *contentsIndexes = [NSMutableIndexSet indexSet];
|
|
|
|
[contentsIndexes addIndex:1];
|
|
|
|
[contentsIndexes addIndex:2];
|
|
|
|
VTIsIntIn *vt = [[[VTIsIntIn alloc] initWithValues:contentsIndexes reverse:YES] autorelease];
|
2009-06-01 09:55:11 +00:00
|
|
|
[NSValueTransformer setValueTransformer:vt forName:@"vtScanTypeIsNotContent"];
|
|
|
|
_directoryPanel = nil;
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2011-01-13 15:20:03 +00:00
|
|
|
- (NSString *)homepageURL
|
2009-06-01 09:55:11 +00:00
|
|
|
{
|
2011-01-13 15:20:03 +00:00
|
|
|
return @"http://www.hardcoded.net/dupeguru/";
|
2009-06-01 09:55:11 +00:00
|
|
|
}
|
|
|
|
|
2011-01-14 12:56:50 +00:00
|
|
|
- (ResultWindowBase *)createResultWindow
|
|
|
|
{
|
|
|
|
return [[ResultWindow alloc] initWithParentApp:self];
|
|
|
|
}
|
|
|
|
|
2009-06-01 09:55:11 +00:00
|
|
|
- (PyDupeGuru *)py { return (PyDupeGuru *)py; }
|
|
|
|
@end
|