summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLImageFieldName.h
diff options
context:
space:
mode:
authorJoel Fischer <joel@livioradio.com>2015-03-09 10:41:15 -0400
committerJoel Fischer <joel@livioradio.com>2015-03-09 10:50:44 -0400
commit25b881cf646de400b1a1b749dc0175a8d073e330 (patch)
treecfed62075bf052ad8c713fb1f8fd199f0b6f5901 /SmartDeviceLink-iOS/SmartDeviceLink/SDLImageFieldName.h
parentaea65586bb1817cfc9c6b47af273ac6498a27df6 (diff)
downloadsdl_ios-25b881cf646de400b1a1b749dc0175a8d073e330.tar.gz
Documentation of enums, rpcs, and more
Diffstat (limited to 'SmartDeviceLink-iOS/SmartDeviceLink/SDLImageFieldName.h')
-rw-r--r--SmartDeviceLink-iOS/SmartDeviceLink/SDLImageFieldName.h53
1 files changed, 52 insertions, 1 deletions
diff --git a/SmartDeviceLink-iOS/SmartDeviceLink/SDLImageFieldName.h b/SmartDeviceLink-iOS/SmartDeviceLink/SDLImageFieldName.h
index 782aef258..73630f323 100644
--- a/SmartDeviceLink-iOS/SmartDeviceLink/SDLImageFieldName.h
+++ b/SmartDeviceLink-iOS/SmartDeviceLink/SDLImageFieldName.h
@@ -1,25 +1,76 @@
// SDLImageFieldName.h
//
-// Copyright (c) 2014 Ford Motor Company. All rights reserved.
+
#import "SDLEnum.h"
+/** The name that identifies the filed.
+ *
+ *
+ * @since SmartDeviceLink 3.0
+ *
+ */
@interface SDLImageFieldName : SDLEnum {}
+(SDLImageFieldName*) valueOf:(NSString*) value;
+(NSMutableArray*) 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;
@end