summaryrefslogtreecommitdiff
path: root/platform/darwin/test/MGLRuntimeStylingHelper.m
blob: 955c664f2c80e1e27e15ffa0a4d19209494dc382 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
#import "MGLRuntimeStylingHelper.h"

#if TARGET_OS_IPHONE || TARGET_OS_SIMULATOR
    #import <UIKit/UIKit.h>
    #define MGLEdgeInsets UIEdgeInsets
#else
    #import <Cocoa/Cocoa.h>
    #define MGLEdgeInsets NSEdgeInsets
#endif

@implementation MGLRuntimeStylingHelper

+ (MGLStyleConstantValue<NSValue *> *)testPadding
{
    MGLEdgeInsets insets = {
        .top = 1,
        .left = 1,
        .bottom = 1,
        .right = 1,
    };
    return [MGLStyleConstantValue<NSValue *> valueWithRawValue:[NSValue value:&insets withObjCType:@encode(MGLEdgeInsets)]];
}

+ (MGLStyleFunction<NSValue *> *)testPaddingFunction
{
    return [MGLStyleFunction<NSValue *> functionWithStops:@{@(18): self.testPadding}];
}

+ (MGLStyleConstantValue<NSValue *> *)testOffset
{
    CGVector vector = CGVectorMake(1, 1);
    return [MGLStyleConstantValue<NSValue *> valueWithRawValue:[NSValue value:&vector withObjCType:@encode(CGVector)]];
}

+ (MGLStyleFunction<NSValue *> *)testOffsetFunction
{
    return [MGLStyleFunction<NSValue *> valueWithStops:@{ @(18): self.testOffset }];
}

+ (MGLStyleConstantValue<NSArray<NSString *> *> *)testFont
{
    return [MGLStyleConstantValue<NSArray<NSString *> *> valueWithRawValue:@[@"Open Sans Regular", @"Arial Unicode MS Regular"]];
}

+ (MGLStyleFunction<NSArray<NSString *> *> *)testFontFunction
{
    return [MGLStyleFunction<NSArray<NSString *> *> valueWithStops:@{ @18: self.testFont }];
}

+ (MGLStyleConstantValue<NSArray<NSNumber *> *> *)testDashArray
{
    return [MGLStyleConstantValue<NSArray<NSNumber *> *> valueWithRawValue:@[@1, @2]];
}

+ (MGLStyleFunction<NSArray<NSNumber *> *> *)testDashArrayFunction
{
    return [MGLStyleFunction<NSArray<NSNumber *> *> valueWithStops:@{
        @18: self.testDashArray,
    }];
}

+ (MGLStyleConstantValue<NSNumber *> *)testNumber
{
    return [MGLStyleConstantValue<NSNumber *> valueWithRawValue:@1];
}

+ (MGLStyleFunction<NSNumber *> *)testNumberFunction
{
    return [MGLStyleFunction<NSNumber *> valueWithStops:@{
        @18: self.testNumber,
    }];
}

+ (MGLStyleConstantValue<NSNumber *> *)testBool
{
    return [MGLStyleConstantValue<NSNumber *> valueWithRawValue:@YES];
}

+ (MGLStyleFunction<NSNumber *> *)testBoolFunction
{
    return [MGLStyleFunction<NSNumber *> valueWithStops:@{
        @18: self.testBool,
    }];
}

+ (MGLStyleConstantValue<NSString *> *)testString
{
    return [MGLStyleConstantValue<NSString *> valueWithRawValue:@"test"];
}

+ (MGLStyleFunction<NSString *> *)testStringFunction
{
    return [MGLStyleFunction<NSString *> valueWithStops:@{
        @18: self.testString,
    }];
}

+ (MGLStyleConstantValue<MGLColor *> *)testColor
{
    return [MGLStyleConstantValue<MGLColor *> valueWithRawValue:[MGLColor redColor]];
}

+ (MGLStyleFunction<MGLColor *> *)testColorFunction
{
    return [MGLStyleFunction<MGLColor *> valueWithStops:@{
        @18: self.testColor,
    }];
}

+ (MGLStyleConstantValue<NSValue *> *)testEnum:(NSUInteger)value type:(const char *)type
{
    return [MGLStyleConstantValue<NSValue *> valueWithRawValue:[NSValue value:&value withObjCType:type]];
}

+ (MGLStyleFunction<NSValue *> *)testEnumFunction:(NSUInteger)value type:(const char *)type
{
    return [MGLStyleFunction<NSValue *> valueWithStops:@{
        @18: [self testEnum:value type:type],
    }];
}

@end