mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 08:12:28 +00:00
26 lines
657 B
Objective-C
26 lines
657 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 DDHotKey;
|
|
|
|
/**
|
|
* 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 (readonly, strong) DDHotKey *registredHotKey;
|
|
|
|
- (IBAction)executeAutotypeWithSelectedMatch:(id)sender;
|
|
- (IBAction)cancelAutotypeSelection:(id)sender;
|
|
|
|
@end
|