mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 22:42:18 +00:00
26 lines
549 B
Objective-C
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
|