blob: 5c63a5a71e6f817bbe38781487e7c9435f8b71a8 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
// SDLImageFieldName.h
//
#import "SDLEnum.h"
/** The name that identifies the filed.
*
*
* @since SmartDeviceLink 3.0
*
*/
@interface SDLImageFieldName : SDLEnum {
}
+ (SDLImageFieldName *)valueOf:(NSString *)value;
+ (NSArray *)values;
/** The image field for SoftButton
*
*/
+ (SDLImageFieldName *)softButtonImage;
/** The first image field for Choice.
*
*/
+ (SDLImageFieldName *)choiceImage;
/** The scondary image field for Choice.
*
*/
+ (SDLImageFieldName *)choiceSecondaryImage;
/** The image field for vrHelpItem.
*
*/
+ (SDLImageFieldName *)vrHelpItem;
/** The image field for Turn.
*
*/
+ (SDLImageFieldName *)turnIcon;
/** The image field for the menu icon in SetGlobalProperties.
*
*/
+ (SDLImageFieldName *)menuIcon;
/** The image filed for AddCommand.
*
*/
+ (SDLImageFieldName *)cmdIcon;
/** The iamage field for the app icon ( set by setAppIcon).
*
*/
+ (SDLImageFieldName *)appIcon;
/** The image filed for Show.
*
*/
+ (SDLImageFieldName *)graphic;
/** The primary image field for ShowConstant TBT.
*
*/
+ (SDLImageFieldName *)showConstantTBTIcon;
/** The secondary image field for ShowConstant TBT.
*
*/
+ (SDLImageFieldName *)showConstantTBTNextTurnIcon;
/**
* The optional image of a destination / location
* @since SDL 4.0
*/
+ (SDLImageFieldName *)locationImage;
@end
|