diff options
Diffstat (limited to 'SmartDeviceLink/SDLImageFieldName.h')
-rw-r--r-- | SmartDeviceLink/SDLImageFieldName.h | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLImageFieldName.h b/SmartDeviceLink/SDLImageFieldName.h new file mode 100644 index 000000000..5c63a5a71 --- /dev/null +++ b/SmartDeviceLink/SDLImageFieldName.h @@ -0,0 +1,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 |