mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-16 20:29:02 +00:00
13dc9ff76d
--HG-- extra : convert_revision : svn%3Ac306627e-7827-47d3-bdf0-9a457c9553a1/trunk%40239
60 lines
1.9 KiB
Objective-C
60 lines
1.9 KiB
Objective-C
/*
|
|
Copyright 2009 Hardcoded Software (http://www.hardcoded.net)
|
|
|
|
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
|
|
*/
|
|
|
|
#import "AppDelegate.h"
|
|
#import "ProgressController.h"
|
|
#import "RegistrationInterface.h"
|
|
#import "Utils.h"
|
|
#import "Consts.h"
|
|
|
|
@implementation AppDelegateBase
|
|
- (id)init
|
|
{
|
|
self = [super init];
|
|
_appName = @"";
|
|
return self;
|
|
}
|
|
|
|
- (IBAction)unlockApp:(id)sender
|
|
{
|
|
if ([[self py] isRegistered])
|
|
return;
|
|
RegistrationInterface *ri = [[RegistrationInterface alloc] initWithApp:[self py] name:_appName limitDescription:LIMIT_DESC];
|
|
if ([ri enterCode] == NSOKButton)
|
|
{
|
|
NSString *menuTitle = [NSString stringWithFormat:@"Thanks for buying %@!",_appName];
|
|
[unlockMenuItem setTitle:menuTitle];
|
|
}
|
|
[ri release];
|
|
}
|
|
|
|
- (PyDupeGuruBase *)py { return py; }
|
|
- (RecentDirectories *)recentDirectories { return recentDirectories; }
|
|
- (DetailsPanelBase *)detailsPanel { return nil; } // Virtual
|
|
|
|
/* Delegate */
|
|
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
|
|
{
|
|
[[ProgressController mainProgressController] setWorker:py];
|
|
NSUserDefaults *ud = [NSUserDefaults standardUserDefaults];
|
|
//Restore Columns
|
|
NSArray *columnsOrder = [ud arrayForKey:@"columnsOrder"];
|
|
NSDictionary *columnsWidth = [ud dictionaryForKey:@"columnsWidth"];
|
|
if ([columnsOrder count])
|
|
[result restoreColumnsPosition:columnsOrder widths:columnsWidth];
|
|
else
|
|
[result resetColumnsToDefault:nil];
|
|
//Reg stuff
|
|
if ([RegistrationInterface showNagWithApp:[self py] name:_appName limitDescription:LIMIT_DESC])
|
|
[unlockMenuItem setTitle:[NSString stringWithFormat:@"Thanks for buying %@!",_appName]];
|
|
//Restore results
|
|
[py loadIgnoreList];
|
|
[py loadResults];
|
|
}
|
|
@end
|