Files
MacPass/MacPass/MPAutotypeDaemon.h
2014-02-17 21:45:06 +01:00

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