2009-08-05 08:59:46 +00:00
|
|
|
/*
|
2010-01-01 20:11:34 +00:00
|
|
|
Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
|
2009-08-05 08:59:46 +00:00
|
|
|
|
|
|
|
This software is licensed under the "HS" 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/hs_license
|
|
|
|
*/
|
|
|
|
|
2009-06-01 09:55:11 +00:00
|
|
|
#import "AppDelegate.h"
|
2009-12-30 16:34:41 +00:00
|
|
|
#import "../../cocoalib/ProgressController.h"
|
|
|
|
#import "../../cocoalib/RegistrationInterface.h"
|
|
|
|
#import "../../cocoalib/Utils.h"
|
|
|
|
#import "../../cocoalib/ValueTransformers.h"
|
2009-11-02 15:16:34 +00:00
|
|
|
#import "DetailsPanel.h"
|
2010-02-05 15:51:00 +00:00
|
|
|
#import "DirectoryPanel.h"
|
2009-06-01 09:55:11 +00:00
|
|
|
#import "Consts.h"
|
|
|
|
|
|
|
|
@implementation AppDelegate
|
|
|
|
+ (void)initialize
|
|
|
|
{
|
|
|
|
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"];
|
|
|
|
[d setObject:b2n(YES) forKey:@"wordWeighting"];
|
|
|
|
[d setObject:b2n(NO) forKey:@"matchSimilarWords"];
|
|
|
|
[d setObject:b2n(YES) forKey:@"mixFileKind"];
|
|
|
|
[d setObject:b2n(NO) forKey:@"useRegexpFilter"];
|
|
|
|
[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];
|
|
|
|
VTIsIntIn *vt = [[[VTIsIntIn alloc] initWithValues:[NSIndexSet indexSetWithIndex:1] reverse:YES] autorelease];
|
|
|
|
[NSValueTransformer setValueTransformer:vt forName:@"vtScanTypeIsNotContent"];
|
|
|
|
_directoryPanel = nil;
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)openWebsite:(id)sender
|
|
|
|
{
|
|
|
|
[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"http://www.hardcoded.net/dupeguru"]];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)toggleDirectories:(id)sender
|
|
|
|
{
|
|
|
|
[[self directoryPanel] toggleVisible:sender];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (PyDupeGuru *)py { return (PyDupeGuru *)py; }
|
|
|
|
@end
|