mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-07 17:36:00 +00:00
24 lines
602 B
Objective-C
24 lines
602 B
Objective-C
//
|
|
// KMInputMethodEventHandler.h
|
|
// Keyman4MacIM
|
|
//
|
|
// Created by Tom Bogle on 11/22/17.
|
|
// Copyright © 2017 SIL International. All rights reserved.
|
|
//
|
|
|
|
#ifndef KMInputMethodEventHandler_h
|
|
#define KMInputMethodEventHandler_h
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "KMInputMethodAppDelegate.h"
|
|
|
|
@interface KMInputMethodEventHandler : NSObject
|
|
|
|
- (instancetype)initWithClient:(NSString *)clientAppId client:(id)sender;
|
|
- (BOOL)handleEvent:(NSEvent *)event client:(id)sender;
|
|
- (BOOL)handleDeleteBackLowLevel:(NSEvent *)event;
|
|
- (void)deactivate;
|
|
|
|
@end
|
|
|
|
#endif /* KMInputMethodEventHandler_h */
|