mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-05 07:49:02 +00:00
e9a97afdf8
--HG-- extra : convert_revision : svn%3Ac306627e-7827-47d3-bdf0-9a457c9553a1/trunk%402
31 lines
773 B
Objective-C
31 lines
773 B
Objective-C
#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; }
|
|
@end
|