mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-21 07:47:40 +00:00
23 lines
421 B
Objective-C
23 lines
421 B
Objective-C
/**
|
|
* Keyman is copyright (C) SIL International. MIT License.
|
|
*
|
|
* KeySender.h
|
|
* Keyman
|
|
*
|
|
* Created by Shawn Schantz on 2023-04-17.
|
|
*
|
|
*/
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
extern const CGKeyCode kKeymanEventKeyCode;
|
|
|
|
@interface KeySender : NSObject
|
|
|
|
- (instancetype)init;
|
|
- (void)sendBackspaceforEventSource:(CGEventSourceRef)eventSource;
|
|
- (void)sendKeymanKeyCodeForEvent:(NSEvent *)event;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|