Selection Dialog for multiple matching entries sketched

This commit is contained in:
michael starke
2014-02-17 21:45:06 +01:00
parent c4b7dc1c64
commit e976398a5e
5 changed files with 133 additions and 3 deletions

View File

@@ -15,6 +15,16 @@
*/
@interface MPAutotypeDaemon : NSObject
@property (strong) IBOutlet NSWindow *matchSelectionWindow;
@property (weak) IBOutlet NSPopUpButton *matchSelectionButton;
@property (weak) IBOutlet NSButton *performAutotypeButton;
- (void)exectureAutotypeForEntry:(KPKEntry *)entry withWindowTitle:(NSString *)title;
/**
* Called by the selection window to start the autotype sequence
*
* @param sender sender of the action.
*/
- (IBAction)executeAutotypeWithSelectedMatch:(id)sender;
@end