mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-09 18:35:32 +00:00
25 lines
532 B
Objective-C
25 lines
532 B
Objective-C
//
|
|
// NKey.h
|
|
// KeymanEngine4Mac
|
|
//
|
|
// Created by Serkan Kurt on 22/06/2015.
|
|
// Copyright (c) 2017 SIL International. All rights reserved.
|
|
//
|
|
|
|
#ifndef NKey_h
|
|
#define NKey_h
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "KMBinaryFileFormat.h"
|
|
|
|
@interface NKey : NSObject
|
|
|
|
@property (assign, nonatomic) Byte typeFlags;
|
|
@property (assign, nonatomic) WORD modifierFlags;
|
|
@property (assign, nonatomic) WORD keyCode;
|
|
@property (strong, nonatomic) NSString *text;
|
|
@property (strong, nonatomic) NSImage *bitmap;
|
|
|
|
@end
|
|
|
|
#endif /* NKey_h */
|