blob: 8215a8938ed87e122b01da8fad6e04e14039a37a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// SDLKeyboardProperties.h
//
#import "SDLRPCMessage.h"
@class SDLLanguage;
@class SDLKeyboardLayout;
@class SDLKeypressMode;
@interface SDLKeyboardProperties : SDLRPCStruct {
}
- (instancetype)init;
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
@property (strong) SDLLanguage *language;
@property (strong) SDLKeyboardLayout *keyboardLayout;
@property (strong) SDLKeypressMode *keypressMode;
@property (strong) NSMutableArray *limitedCharacterList;
@property (strong) NSString *autoCompleteText;
@end
|