mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-18 09:59:32 +00:00
began work for seamless editing with history support
This commit is contained in:
@@ -6,14 +6,22 @@
|
||||
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
||||
//
|
||||
|
||||
|
||||
#import "MPViewController.h"
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@class KPKEntry;
|
||||
|
||||
@interface MPPasswordCreatorViewController : MPViewController <NSTextFieldDelegate>
|
||||
|
||||
@property (copy, readonly) NSString *generatedPassword;
|
||||
|
||||
//@property (weak) id closeTarget;
|
||||
@property (assign) BOOL allowsEntryDefaults;
|
||||
/**
|
||||
* Block gets called whenever the user opts to store the password or cancel
|
||||
*/
|
||||
@property (nonatomic, copy, nullable) void (^completionHandler)(NSModalResponse response, NSString *password);
|
||||
|
||||
/**
|
||||
* Should be called to reset the generator
|
||||
@@ -23,3 +31,5 @@
|
||||
- (void)reset;
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
|
||||
Reference in New Issue
Block a user