summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLLayoutMode.h
blob: d44af2aa97737c87c04a116fec4e247f989d5d0e (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
//  SDLLayoutMode.h
//


#import "SDLEnum.h"

/** 
 * For touchscreen interactions, the mode of how the choices are presented.
 *
 * @since SDL 3.0
 */
typedef SDLEnum SDLLayoutMode NS_STRING_ENUM;

/**
 * This mode causes the interaction to display the previous set of choices as icons.
 */
extern SDLLayoutMode const SDLLayoutModeIconOnly;

/** 
 * This mode causes the interaction to display the previous set of choices as icons along with a search field in the HMI.
 */
extern SDLLayoutMode const SDLLayoutModeIconWithSearch;

/** 
 * This mode causes the interaction to display the previous set of choices as a list.
 */
extern SDLLayoutMode const SDLLayoutModeListOnly;

/** 
 * This mode causes the interaction to display the previous set of choices as a list along with a search field in the HMI.
 */
extern SDLLayoutMode const SDLLayoutModeListWithSearch;

/** 
 * This mode causes the interaction to immediately display a keyboard entry through the HMI.
 */
extern SDLLayoutMode const SDLLayoutModeKeyboard;