2012-01-05 00:44:15 +00:00
|
|
|
//
|
2012-02-05 21:18:38 +00:00
|
|
|
// MPConfig.m
|
2012-02-03 07:45:09 +00:00
|
|
|
// MasterPassword
|
2012-01-05 00:44:15 +00:00
|
|
|
//
|
|
|
|
// Created by Maarten Billemont on 02/01/12.
|
|
|
|
// Copyright (c) 2012 Lyndir. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2012-03-05 21:19:05 +00:00
|
|
|
@implementation MPiOSConfig
|
2012-08-19 07:34:49 +00:00
|
|
|
@dynamic sendInfo, helpHidden, siteInfoHidden, showQuickStart, actionsTipShown, typeTipShown, loginNameTipShown;
|
2012-01-05 00:44:15 +00:00
|
|
|
|
2012-01-19 16:40:39 +00:00
|
|
|
- (id)init {
|
2012-06-08 21:46:13 +00:00
|
|
|
|
|
|
|
if (!(self = [super init]))
|
2012-01-05 00:44:15 +00:00
|
|
|
return self;
|
2012-06-08 21:46:13 +00:00
|
|
|
|
2012-08-19 18:02:23 +00:00
|
|
|
[self.defaults registerDefaults:@{NSStringFromSelector(@selector(sendInfo)): @NO,
|
|
|
|
NSStringFromSelector(@selector(helpHidden)): @NO,
|
|
|
|
NSStringFromSelector(@selector(siteInfoHidden)): @YES,
|
|
|
|
NSStringFromSelector(@selector(showQuickStart)): @YES,
|
|
|
|
NSStringFromSelector(@selector(iTunesID)): @"510296984",
|
|
|
|
NSStringFromSelector(@selector(actionsTipShown)): PearlBoolNot(self.firstRun),
|
|
|
|
NSStringFromSelector(@selector(typeTipShown)): PearlBoolNot(self.firstRun),
|
|
|
|
NSStringFromSelector(@selector(loginNameTipShown)): PearlBool(NO)}];
|
2012-06-08 21:46:13 +00:00
|
|
|
|
2012-01-05 00:44:15 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2012-03-05 21:19:05 +00:00
|
|
|
+ (MPiOSConfig *)get {
|
2012-06-08 21:46:13 +00:00
|
|
|
|
2012-03-05 21:19:05 +00:00
|
|
|
return (MPiOSConfig *)[super get];
|
2012-01-05 00:44:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|