forked from WebKit/WebKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTestFontOptions.mm
230 lines (189 loc) · 6.68 KB
/
TestFontOptions.mm
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/*
* Copyright (C) 2018 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#import "config.h"
#import "TestFontOptions.h"
#if PLATFORM(MAC)
#import "AppKitSPI.h"
#import "ClassMethodSwizzler.h"
#import <objc/runtime.h>
#import <wtf/RetainPtr.h>
#import <wtf/SetForScope.h>
static TestFontOptions *sharedFontOptionsForTesting()
{
return TestFontOptions.sharedInstance;
}
@interface TestFontOptions ()
- (instancetype)initWithFontOptions:(NSFontOptions *)fontOptions;
@end
@implementation TestFontOptions {
RetainPtr<NSFontOptions> _fontOptions;
CGSize _shadowOffset;
CGFloat _shadowBlurRadius;
BOOL _hasShadow;
BOOL _hasPendingShadowChanges;
RetainPtr<NSColor> _foregroundColor;
RetainPtr<NSColor> _backgroundColor;
BOOL _hasPendingColorChanges;
std::unique_ptr<ClassMethodSwizzler> _replaceFontOptionsSwizzler;
RetainPtr<NSDictionary> _selectedAttributes;
BOOL _hasMultipleFonts;
}
@synthesize hasShadow = _hasShadow;
@synthesize shadowBlurRadius = _shadowBlurRadius;
@synthesize hasMultipleFonts = _hasMultipleFonts;
+ (instancetype)sharedInstance
{
static RetainPtr<TestFontOptions> sharedInstance;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
NSFontOptions *sharedFontOptions = [NSClassFromString(@"NSFontOptions") sharedFontOptions];
sharedInstance = adoptNS([[TestFontOptions alloc] initWithFontOptions:sharedFontOptions]);
});
return sharedInstance.get();
}
- (instancetype)initWithFontOptions:(NSFontOptions *)fontOptions
{
if (!(self = [super init]))
return nil;
_fontOptions = fontOptions;
ASSERT(_fontOptions);
_shadowOffset = CGSizeZero;
_shadowBlurRadius = 0;
_replaceFontOptionsSwizzler = makeUnique<ClassMethodSwizzler>(NSClassFromString(@"NSFontOptions"), @selector(sharedFontOptions), reinterpret_cast<IMP>(sharedFontOptionsForTesting));
_hasPendingShadowChanges = NO;
_hasMultipleFonts = NO;
return self;
}
- (NSDictionary *)selectedAttributes
{
return _selectedAttributes.get();
}
- (NSFontOptions *)fontOptions
{
return _fontOptions.get();
}
- (CGFloat)shadowWidth
{
return _shadowOffset.width;
}
- (void)setShadowWidth:(CGFloat)shadowWidth
{
if (_shadowOffset.width == shadowWidth)
return;
SetForScope hasPendingFontShadowChanges(_hasPendingShadowChanges, YES);
_shadowOffset.width = shadowWidth;
[self _dispatchFontAttributeChanges];
}
- (CGFloat)shadowHeight
{
return _shadowOffset.height;
}
- (void)setShadowHeight:(CGFloat)shadowHeight
{
if (_shadowOffset.height == shadowHeight)
return;
SetForScope hasPendingFontShadowChanges(_hasPendingShadowChanges, YES);
_shadowOffset.height = shadowHeight;
[self _dispatchFontAttributeChanges];
}
- (void)setShadowBlurRadius:(CGFloat)shadowBlurRadius
{
if (_shadowBlurRadius == shadowBlurRadius)
return;
SetForScope hasPendingFontShadowChanges(_hasPendingShadowChanges, YES);
_shadowBlurRadius = shadowBlurRadius;
[self _dispatchFontAttributeChanges];
}
- (void)setHasShadow:(BOOL)hasShadow
{
if (_hasShadow == hasShadow)
return;
SetForScope hasPendingFontShadowChanges(_hasPendingShadowChanges, YES);
_hasShadow = hasShadow;
[self _dispatchFontAttributeChanges];
}
- (NSColor *)foregroundColor
{
return _foregroundColor.get();
}
- (void)setForegroundColor:(NSColor *)color
{
SetForScope hasPendingColorChanges(_hasPendingColorChanges, YES);
_foregroundColor = adoptNS([color copy]);
[self _dispatchFontAttributeChanges];
}
- (NSColor *)backgroundColor
{
return _backgroundColor.get();
}
- (void)setBackgroundColor:(NSColor *)color
{
SetForScope hasPendingColorChanges(_hasPendingColorChanges, YES);
_backgroundColor = adoptNS([color copy]);
[self _dispatchFontAttributeChanges];
}
- (void)_dispatchFontAttributeChanges
{
[NSFontManager.sharedFontManager.target performSelector:@selector(changeAttributes:) withObject:self];
}
- (NSDictionary *)convertAttributes:(NSDictionary *)attributes
{
auto convertedAttributes = adoptNS([attributes mutableCopy]);
if (_hasPendingShadowChanges) {
if (_hasShadow) {
auto shadow = adoptNS([[NSShadow alloc] init]);
[shadow setShadowBlurRadius:_shadowBlurRadius];
[shadow setShadowOffset:_shadowOffset];
[convertedAttributes setObject:shadow.get() forKey:NSShadowAttributeName];
} else
[convertedAttributes removeObjectForKey:NSShadowAttributeName];
}
if (_hasPendingColorChanges) {
if (_foregroundColor)
[convertedAttributes setObject:_foregroundColor.get() forKey:NSForegroundColorAttributeName];
else
[convertedAttributes removeObjectForKey:NSForegroundColorAttributeName];
if (_backgroundColor)
[convertedAttributes setObject:_backgroundColor.get() forKey:NSBackgroundColorAttributeName];
else
[convertedAttributes removeObjectForKey:NSBackgroundColorAttributeName];
}
return convertedAttributes.autorelease();
}
- (void)setSelectedAttributes:(NSDictionary *)attributes isMultiple:(BOOL)multiple
{
_hasMultipleFonts = multiple;
_selectedAttributes = attributes;
}
- (void)forwardInvocation:(NSInvocation *)invocation
{
if ([_fontOptions respondsToSelector:invocation.selector]) {
[invocation invokeWithTarget:_fontOptions.get()];
return;
}
[super forwardInvocation:invocation];
}
@end
#endif // PLATFORM(MAC)