mirror of
https://github.com/MacPass/MacPass.git
synced 2026-01-30 18:08:17 +00:00
selection window now uses a table instead of popup menu selection window will not activate MacPass and thus will not block view selection window displays evaluated placeholders (sans password) for better identification
20 lines
413 B
Objective-C
20 lines
413 B
Objective-C
//
|
|
// MPAutotypeCandidateSelectionViewController.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 26.10.17.
|
|
// Copyright © 2017 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface MPAutotypeCandidateSelectionViewController : NSViewController
|
|
|
|
@property (copy) NSArray *candidates;
|
|
|
|
- (IBAction)selectAutotypeContext:(id)sender;
|
|
- (IBAction)cancelSelection:(id)sender;
|
|
|
|
|
|
@end
|