mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-22 15:19:27 +00:00
31 lines
815 B
Objective-C
31 lines
815 B
Objective-C
//
|
|
// MPAutotypeDaemon.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 26.10.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class KPKEntry;
|
|
|
|
/**
|
|
* The autotype daemon is repsonsible for registering the globa hotkey and to perform any autotype actions
|
|
*/
|
|
@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
|