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 "AppDelegate.h"
|
2011-01-18 14:35:14 +00:00
|
|
|
#import "ProgressController.h"
|
|
|
|
#import "Utils.h"
|
|
|
|
#import "ValueTransformers.h"
|
|
|
|
#import "Dialogs.h"
|
2009-11-02 15:27:54 +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 dictionaryWithCapacity:10];
|
|
|
|
[d setObject:i2n(3) forKey:@"scanType"];
|
|
|
|
[d setObject:i2n(80) forKey:@"minMatchPercentage"];
|
|
|
|
[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(NO) 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(NO) forKey:@"debug"];
|
|
|
|
[d setObject:b2n(NO) forKey:@"scanTagTrack"];
|
|
|
|
[d setObject:b2n(YES) forKey:@"scanTagArtist"];
|
|
|
|
[d setObject:b2n(YES) forKey:@"scanTagAlbum"];
|
|
|
|
[d setObject:b2n(YES) forKey:@"scanTagTitle"];
|
|
|
|
[d setObject:b2n(NO) forKey:@"scanTagGenre"];
|
|
|
|
[d setObject:b2n(NO) forKey:@"scanTagYear"];
|
|
|
|
[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];
|
|
|
|
NSMutableIndexSet *i = [NSMutableIndexSet indexSetWithIndex:4];
|
|
|
|
[i addIndex:5];
|
|
|
|
VTIsIntIn *vtScanTypeIsNotContent = [[[VTIsIntIn alloc] initWithValues:i reverse:YES] autorelease];
|
|
|
|
[NSValueTransformer setValueTransformer:vtScanTypeIsNotContent forName:@"vtScanTypeIsNotContent"];
|
|
|
|
VTIsIntIn *vtScanTypeIsTag = [[[VTIsIntIn alloc] initWithValues:[NSIndexSet indexSetWithIndex:3] reverse:NO] autorelease];
|
|
|
|
[NSValueTransformer setValueTransformer:vtScanTypeIsTag forName:@"vtScanTypeIsTag"];
|
|
|
|
_directoryPanel = nil;
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2011-01-13 15:20:03 +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_me/";
|
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
|
|
|
|
{
|
|
|
|
return [[DirectoryPanelME alloc] initWithParentApp:self];
|
|
|
|
}
|
|
|
|
|
2009-06-01 09:55:11 +00:00
|
|
|
//Delegate
|
2010-01-19 11:28:15 +00:00
|
|
|
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
|
|
|
|
{
|
|
|
|
// index 3 is just after "Export Results to XHTML"
|
2011-01-18 14:35:14 +00:00
|
|
|
NSMenuItem *mi = [actionsMenu insertItemWithTitle:TR(@"Remove Dead Tracks in iTunes")
|
2010-01-19 11:28:15 +00:00
|
|
|
action:@selector(removeDeadTracks:) keyEquivalent:@"" atIndex:3];
|
2011-01-14 12:56:50 +00:00
|
|
|
[mi setTarget:[self resultWindow]];
|
2010-01-19 11:28:15 +00:00
|
|
|
[super applicationDidFinishLaunching:aNotification];
|
|
|
|
}
|
2009-06-01 09:55:11 +00:00
|
|
|
@end
|