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


#import "SDLEnum.h"

/**
 SoftButtonType (TEXT / IMAGE / BOTH)
 */
@interface SDLSoftButtonType : SDLEnum {
}

/**
 @abstract get SDLSoftButtonType according value string
 @param value NSString
 @return SDLSoftButtonType object
 */
+ (SDLSoftButtonType *)valueOf:(NSString *)value;
/**
 @abstract declare an array to store all possible SDLSoftButtonType values
 @return the array
 */
+ (NSArray *)values;

/**
 @abstract Text kind Softbutton
 @return SDLSoftButtonType object with string value *TEXT*
 */
+ (SDLSoftButtonType *)TEXT;
/**
 @abstract Image kind Softbutton
 @return SDLSoftButtonType object with string value *IMAGE*
 */
+ (SDLSoftButtonType *)IMAGE;
/**
 @abstract Both (Text & Image) kind Softbutton
 @return SDLSoftButtonType object with string value *BOTH*
 */
+ (SDLSoftButtonType *)BOTH;

@end