Files
MacPass/MacPass/MPAutotypeKeyPress.h
2014-02-11 20:58:27 +01:00

20 lines
423 B
Objective-C

//
// MPAutotypeSpecialKey.h
// MacPass
//
// Created by Michael Starke on 24/11/13.
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
//
#import "MPAutotypeCommand.h"
/**
* Autotype command to press a single key. Can be used with modifer keys as well
*/
@interface MPAutotypeKeyPress : MPAutotypeCommand
@property (assign) CGEventFlags modifierMask;
@property (assign) CGKeyCode keyCode;
@end