summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLLayoutMode.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink-iOS/SmartDeviceLink/SDLLayoutMode.h')
-rw-r--r--SmartDeviceLink-iOS/SmartDeviceLink/SDLLayoutMode.h29
1 files changed, 28 insertions, 1 deletions
diff --git a/SmartDeviceLink-iOS/SmartDeviceLink/SDLLayoutMode.h b/SmartDeviceLink-iOS/SmartDeviceLink/SDLLayoutMode.h
index d5301fffb..1ac2ab24e 100644
--- a/SmartDeviceLink-iOS/SmartDeviceLink/SDLLayoutMode.h
+++ b/SmartDeviceLink-iOS/SmartDeviceLink/SDLLayoutMode.h
@@ -1,19 +1,46 @@
// SDLLayoutMode.h
//
-// Copyright (c) 2014 Ford Motor Company. All rights reserved.
+
#import "SDLEnum.h"
+/** For touchscreen interactions, the mode of how the choices are presented.
+ *
+ * <b>Since:</B> SmartDeviceLink 3.0
+ *
+ */
@interface SDLLayoutMode : SDLEnum {}
+(SDLLayoutMode*) valueOf:(NSString*) value;
+(NSMutableArray*) values;
+/** This mode causes the interaction to display the previous set of choices as icons.
+ *
+ */
+(SDLLayoutMode*) ICON_ONLY;
+
+/** This mode causes the interaction to display the previous set of choices as icons along with a search field in the HMI.
+ *
+ */
+(SDLLayoutMode*) ICON_WITH_SEARCH;
+
+/** This mode causes the interaction to display the previous set of choices as a list.
+ *
+ */
+
+(SDLLayoutMode*) LIST_ONLY;
+
+/** This mode causes the interaction to display the previous set of choices as a list along with a search field in the HMI.
+ *
+ */
+
+(SDLLayoutMode*) LIST_WITH_SEARCH;
+
+/** This mode causes the interaction to immediately display a keyboard entry through the HMI.
+ *
+ */
+
+(SDLLayoutMode*) KEYBOARD;
@end