summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLScreenParams.h
blob: 1a4969b9104d02583c9f0e12c7fbeb3e18de0aaf (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
//  SDLScreenParams.h
//

#import "SDLRPCMessage.h"

@class SDLImageResolution;
@class SDLTouchEventCapabilities;

NS_ASSUME_NONNULL_BEGIN

/**
 A struct in DisplayCapabilities describing parameters related to a video / touch input area
 */
@interface SDLScreenParams : SDLRPCStruct

/**
 The resolution of the prescribed screen area

 Required
 */
@property (strong, nonatomic) SDLImageResolution *resolution;

/**
 Types of screen touch events available in screen area

 Optional
 */
@property (nullable, strong, nonatomic) SDLTouchEventCapabilities *touchEventAvailable;

@end

NS_ASSUME_NONNULL_END