mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-22 08:17:40 +00:00
20 lines
489 B
Objective-C
20 lines
489 B
Objective-C
/*
|
|
* Keyman is copyright (C) SIL International. MIT License.
|
|
*
|
|
* Created by Shawn Schantz on 2024-09-25.
|
|
*
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <KeymanEngine4Mac/KeymanEngine4Mac.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface KMModifierMapping : NSObject
|
|
-(instancetype)init:(CoreKeyboardInfo*)keyboardInfo;
|
|
-(BOOL)optionKeysUnused;
|
|
-(BOOL)bothOptionKeysGenerateRightAlt;
|
|
-(NSEventModifierFlags)adjustModifiers:(NSEventModifierFlags)originalModifiers;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|