blob: 9e0377f4052f0336e011a367b4cd94fd4f9945f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
// SDLLayoutMode.h
//
#import "SDLEnum.h"
/**
* For touchscreen interactions, the mode of how the choices are presented.
*
* @since SDL 3.0
*/
@interface SDLLayoutMode : SDLEnum {
}
+ (SDLLayoutMode *)valueOf:(NSString *)value;
+ (NSArray *)values;
/**
* This mode causes the interaction to display the previous set of choices as icons.
*/
+ (SDLLayoutMode *)ICON_ONLY;
/**
* This mode causes the interaction to display the previous set of choices as icons along with a search field in the HMI.
*/
+ (SDLLayoutMode *)ICON_WITH_SEARCH;
/**
* This mode causes the interaction to display the previous set of choices as a list.
*/
+ (SDLLayoutMode *)LIST_ONLY;
/**
* This mode causes the interaction to display the previous set of choices as a list along with a search field in the HMI.
*/
+ (SDLLayoutMode *)LIST_WITH_SEARCH;
/**
* This mode causes the interaction to immediately display a keyboard entry through the HMI.
*/
+ (SDLLayoutMode *)KEYBOARD;
@end
|