summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLSpatialStruct.h
blob: 00886276d6534320c6555563667768edd6980b83 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//
//  SDLSpatialStruct.h
//  SmartDeviceLink-iOS
//
//  Created by Nicole on 8/3/17.
//  Copyright © 2017 smartdevicelink. All rights reserved.
//

#import <UIKit/UIKit.h>

#import "SDLRPCStruct.h"

NS_ASSUME_NONNULL_BEGIN

/**
 *  Defines spatial for each user control object for video streaming application
 */
@interface SDLSpatialStruct : SDLRPCStruct

- (instancetype)initWithId:(UInt32)id x:(float)x y:(float)y width:(float)width height:(float)height;

- (instancetype)initWithId:(NSNumber *)id CGRect:(CGRect)rect;

/**
 *  A user control spatial identifier
 *  Required, Integer, 0 - 2,000,000,000
 */
@property (strong, nonatomic) NSNumber<SDLUInt> *id;

/**
 *  The X-coordinate of the user control
 *  Required, Float
 */
@property (strong, nonatomic) NSNumber<SDLFloat> *x;

/**
 *  The Y-coordinate of the user control
 *  Required, Float
 */
@property (strong, nonatomic) NSNumber<SDLFloat> *y;

/**
 *  The width of the user control's bounding rectangle
 *  Required, Float
 */
@property (strong, nonatomic) NSNumber<SDLFloat> *width;

/**
 *  The height of the user control's bounding rectangle
 *  Required, Float
 */
@property (strong, nonatomic) NSNumber<SDLFloat> *height;

@end

NS_ASSUME_NONNULL_END