Files
MacPass/MacPass/MPPickcharViewController.h

26 lines
549 B
Objective-C

//
// MPPickcharViewController.h
// MacPass
//
// Created by Michael Starke on 23.11.17.
// Copyright © 2017 HicknHack Software GmbH. All rights reserved.
//
#import <Cocoa/Cocoa.h>
NS_ASSUME_NONNULL_BEGIN
@interface MPPickcharViewController : NSViewController
@property (copy) NSString *sourceValue;
@property (nonatomic, copy) NSString *pickedValue;
@property NSInteger minimumCharacterCount;
@property (nonatomic) BOOL hidePickedCharacters;
- (IBAction)reset:(id)sender;
- (IBAction)submitValue:(id)sender;
@end
NS_ASSUME_NONNULL_END