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


#import "SDLEnum.h"

/**
 * Indicates whether choice/command was selected via VR or via a menu selection (using SEEKRIGHT/SEEKLEFT, TUNEUP, TUNEDOWN, OK buttons). Used in PerformInteractionResponse and OnCommand.
 *
 * @since SDL 1.0
 */
typedef SDLEnum SDLTriggerSource SDL_SWIFT_ENUM;

/**
 * Selection made via menu
 */
extern SDLTriggerSource const SDLTriggerSourceMenu;

/**
 * Selection made via Voice session
 */
extern SDLTriggerSource const SDLTriggerSourceVoiceRecognition;

/**
 * Selection made via Keyboard
 */
extern SDLTriggerSource const SDLTriggerSourceKeyboard;