[IMPROVED] Don't block when MOC is not yet ready, just return nil. [IMPROVED] Outdated tip links to info, icon links to site search. [IMPROVED] Minor improvements to error handling during import.
36 lines
1017 B
Objective-C
36 lines
1017 B
Objective-C
//
|
|
// MPAppDelegate_Key.h
|
|
// MasterPassword
|
|
//
|
|
// Created by Maarten Billemont on 24/11/11.
|
|
// Copyright (c) 2011 Lyndir. All rights reserved.
|
|
//
|
|
|
|
#import "MPAppDelegate_Shared.h"
|
|
|
|
#import "UbiquityStoreManager.h"
|
|
|
|
typedef enum {
|
|
MPImportResultSuccess,
|
|
MPImportResultCancelled,
|
|
MPImportResultInvalidPassword,
|
|
MPImportResultMalformedInput,
|
|
MPImportResultInternalError,
|
|
} MPImportResult;
|
|
|
|
@interface MPAppDelegate_Shared (Store)<UbiquityStoreManagerDelegate>
|
|
|
|
+ (NSManagedObjectContext *)managedObjectContextIfReady;
|
|
+ (NSManagedObjectModel *)managedObjectModel;
|
|
- (NSManagedObjectContext *)managedObjectContextIfReady;
|
|
- (NSManagedObjectModel *)managedObjectModel;
|
|
|
|
- (UbiquityStoreManager *)storeManager;
|
|
- (void)saveContext;
|
|
|
|
- (MPImportResult)importSites:(NSString *)importedSitesString withPassword:(NSString *)password
|
|
askConfirmation:(BOOL(^)(NSUInteger importCount, NSUInteger deleteCount))confirmation;
|
|
- (NSString *)exportSitesShowingPasswords:(BOOL)showPasswords;
|
|
|
|
@end
|