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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/display/screen.h"
#import <ApplicationServices/ApplicationServices.h>
#import <Cocoa/Cocoa.h>
#include <stdint.h>
#include <map>
#include <memory>
#include "base/logging.h"
#include "base/mac/mac_util.h"
#include "base/mac/scoped_cftyperef.h"
#include "base/mac/scoped_nsobject.h"
#include "base/mac/sdk_forward_declarations.h"
#include "base/macros.h"
#include "base/timer/timer.h"
#include "ui/display/display.h"
#include "ui/display/display_change_notifier.h"
#include "ui/gfx/icc_profile.h"
#include "ui/gfx/mac/coordinate_conversion.h"
extern "C" {
Boolean CGDisplayUsesForceToGray(void);
}
namespace display {
namespace {
// The delay to handle the display configuration changes.
// See comments in ScreenMac::HandleDisplayReconfiguration.
const int64_t kConfigureDelayMs = 500;
NSScreen* GetMatchingScreen(const gfx::Rect& match_rect) {
// Default to the monitor with the current keyboard focus, in case
// |match_rect| is not on any screen at all.
NSScreen* max_screen = [NSScreen mainScreen];
int max_area = 0;
for (NSScreen* screen in [NSScreen screens]) {
gfx::Rect monitor_area = gfx::ScreenRectFromNSRect([screen frame]);
gfx::Rect intersection = gfx::IntersectRects(monitor_area, match_rect);
int area = intersection.width() * intersection.height();
if (area > max_area) {
max_area = area;
max_screen = screen;
}
}
return max_screen;
}
Display BuildDisplayForScreen(NSScreen* screen) {
NSRect frame = [screen frame];
CGDirectDisplayID display_id = [[[screen deviceDescription]
objectForKey:@"NSScreenNumber"] unsignedIntValue];
Display display(display_id, gfx::Rect(NSRectToCGRect(frame)));
NSRect visible_frame = [screen visibleFrame];
NSScreen* primary = [[NSScreen screens] firstObject];
// Convert work area's coordinate systems.
if ([screen isEqual:primary]) {
gfx::Rect work_area = gfx::Rect(NSRectToCGRect(visible_frame));
work_area.set_y(frame.size.height - visible_frame.origin.y -
visible_frame.size.height);
display.set_work_area(work_area);
} else {
display.set_bounds(gfx::ScreenRectFromNSRect(frame));
display.set_work_area(gfx::ScreenRectFromNSRect(visible_frame));
}
// Compute device scale factor
CGFloat scale = [screen backingScaleFactor];
if (Display::HasForceDeviceScaleFactor())
scale = Display::GetForcedDeviceScaleFactor();
display.set_device_scale_factor(scale);
// Compute the color profile.
gfx::ICCProfile icc_profile;
CGColorSpaceRef cg_color_space = [[screen colorSpace] CGColorSpace];
if (cg_color_space) {
base::ScopedCFTypeRef<CFDataRef> cf_icc_profile(
CGColorSpaceCopyICCProfile(cg_color_space));
if (cf_icc_profile) {
icc_profile = gfx::ICCProfile::FromData(CFDataGetBytePtr(cf_icc_profile),
CFDataGetLength(cf_icc_profile));
}
}
icc_profile.HistogramDisplay(display.id());
gfx::ColorSpace screen_color_space = icc_profile.GetColorSpace();
if (Display::HasForceColorProfile()) {
if (Display::HasEnsureForcedColorProfile()) {
CHECK_EQ(screen_color_space, display.color_space())
<< "The display's color space does not match the color space that "
"was forced by the command line. This will cause pixel tests to "
"fail.";
}
} else {
display.set_color_space(screen_color_space);
}
display.set_color_depth(NSBitsPerPixelFromDepth([screen depth]));
display.set_depth_per_component(NSBitsPerSampleFromDepth([screen depth]));
display.set_is_monochrome(CGDisplayUsesForceToGray());
// CGDisplayRotation returns a double. Display::SetRotationAsDegree will
// handle the unexpected situations were the angle is not a multiple of 90.
display.SetRotationAsDegree(static_cast<int>(CGDisplayRotation(display_id)));
return display;
}
Display BuildPrimaryDisplay() {
return BuildDisplayForScreen([[NSScreen screens] firstObject]);
}
// Returns the minimum Manhattan distance from |point| to corners of |screen|
// frame.
CGFloat GetMinimumDistanceToCorner(const NSPoint& point, NSScreen* screen) {
NSRect frame = [screen frame];
CGFloat distance =
fabs(point.x - NSMinX(frame)) + fabs(point.y - NSMinY(frame));
distance = std::min(
distance, fabs(point.x - NSMaxX(frame)) + fabs(point.y - NSMinY(frame)));
distance = std::min(
distance, fabs(point.x - NSMinX(frame)) + fabs(point.y - NSMaxY(frame)));
distance = std::min(
distance, fabs(point.x - NSMaxX(frame)) + fabs(point.y - NSMaxY(frame)));
return distance;
}
class ScreenMac : public Screen {
public:
ScreenMac()
: configure_timer_(
FROM_HERE,
base::TimeDelta::FromMilliseconds(kConfigureDelayMs),
base::Bind(&ScreenMac::ConfigureTimerFired, base::Unretained(this)),
false) {
old_displays_ = displays_ = BuildDisplaysFromQuartz();
CGDisplayRegisterReconfigurationCallback(
ScreenMac::DisplayReconfigurationCallBack, this);
NSNotificationCenter* center = [NSNotificationCenter defaultCenter];
screen_color_change_observer_.reset(
[[center addObserverForName:NSScreenColorSpaceDidChangeNotification
object:nil
queue:nil
usingBlock:^(NSNotification* notification) {
configure_timer_.Reset();
displays_require_update_ = true;
}] retain]);
}
~ScreenMac() override {
NSNotificationCenter* center = [NSNotificationCenter defaultCenter];
[center removeObserver:screen_color_change_observer_];
CGDisplayRemoveReconfigurationCallback(
ScreenMac::DisplayReconfigurationCallBack, this);
}
gfx::Point GetCursorScreenPoint() override {
// Flip coordinates to gfx (0,0 in top-left corner) using primary screen.
return gfx::ScreenPointFromNSPoint([NSEvent mouseLocation]);
}
bool IsWindowUnderCursor(gfx::NativeWindow window) override {
return [NSWindow windowNumberAtPoint:[NSEvent mouseLocation]
belowWindowWithWindowNumber:0] == [window windowNumber];
}
gfx::NativeWindow GetWindowAtScreenPoint(const gfx::Point& point) override {
NOTIMPLEMENTED();
return gfx::NativeWindow();
}
int GetNumDisplays() const override { return GetAllDisplays().size(); }
const std::vector<Display>& GetAllDisplays() const override {
return displays_;
}
Display GetDisplayNearestWindow(gfx::NativeWindow window) const override {
EnsureDisplaysValid();
if (displays_.size() == 1)
return displays_[0];
if (!window)
return GetPrimaryDisplay();
// Note the following line calls -[NSWindow
// _bestScreenBySpaceAssignmentOrGeometry] which is quite expensive and
// performs IPC with the window server process.
NSScreen* match_screen = [window screen];
if (!match_screen)
return GetPrimaryDisplay();
return GetCachedDisplayForScreen(match_screen);
}
Display GetDisplayNearestView(gfx::NativeView view) const override {
NSWindow* window = [view window];
if (!window)
return GetPrimaryDisplay();
return GetDisplayNearestWindow(window);
}
Display GetDisplayNearestPoint(const gfx::Point& point) const override {
NSArray* screens = [NSScreen screens];
if ([screens count] <= 1)
return GetPrimaryDisplay();
NSPoint ns_point = NSPointFromCGPoint(point.ToCGPoint());
NSScreen* primary = [screens objectAtIndex:0];
ns_point.y = NSMaxY([primary frame]) - ns_point.y;
for (NSScreen* screen in screens) {
if (NSMouseInRect(ns_point, [screen frame], NO))
return GetCachedDisplayForScreen(screen);
}
NSScreen* nearest_screen = primary;
CGFloat min_distance = CGFLOAT_MAX;
for (NSScreen* screen in screens) {
CGFloat distance = GetMinimumDistanceToCorner(ns_point, screen);
if (distance < min_distance) {
min_distance = distance;
nearest_screen = screen;
}
}
return GetCachedDisplayForScreen(nearest_screen);
}
// Returns the display that most closely intersects the provided bounds.
Display GetDisplayMatching(const gfx::Rect& match_rect) const override {
NSScreen* match_screen = GetMatchingScreen(match_rect);
return GetCachedDisplayForScreen(match_screen);
}
// Returns the primary display.
Display GetPrimaryDisplay() const override {
// Primary display is defined as the display with the menubar,
// which is always at index 0.
NSScreen* primary = [[NSScreen screens] firstObject];
Display display = GetCachedDisplayForScreen(primary);
return display;
}
void AddObserver(DisplayObserver* observer) override {
change_notifier_.AddObserver(observer);
}
void RemoveObserver(DisplayObserver* observer) override {
change_notifier_.RemoveObserver(observer);
}
static void DisplayReconfigurationCallBack(CGDirectDisplayID display,
CGDisplayChangeSummaryFlags flags,
void* userInfo) {
if (flags & kCGDisplayBeginConfigurationFlag)
return;
ScreenMac* screen_mac = static_cast<ScreenMac*>(userInfo);
// Timer::Reset() ensures at least another interval passes before the
// associated task runs, effectively coalescing these events.
screen_mac->configure_timer_.Reset();
screen_mac->displays_require_update_ = true;
}
private:
Display GetCachedDisplayForScreen(NSScreen* screen) const {
EnsureDisplaysValid();
const CGDirectDisplayID display_id = [[[screen deviceDescription]
objectForKey:@"NSScreenNumber"] unsignedIntValue];
for (const Display& display : displays_) {
if (display_id == display.id())
return display;
}
NOTREACHED(); // Asked for a hidden/sleeping/mirrored screen?
return BuildDisplayForScreen(screen);
}
void EnsureDisplaysValid() const {
if (displays_require_update_) {
displays_ = BuildDisplaysFromQuartz();
displays_require_update_ = false;
}
}
void ConfigureTimerFired() {
EnsureDisplaysValid();
change_notifier_.NotifyDisplaysChanged(old_displays_, displays_);
old_displays_ = displays_;
}
std::vector<Display> BuildDisplaysFromQuartz() const {
// Don't just return all online displays. This would include displays
// that mirror other displays, which are not desired in this list. It's
// tempting to use the count returned by CGGetActiveDisplayList, but active
// displays exclude sleeping displays, and those are desired.
// It would be ridiculous to have this many displays connected, but
// CGDirectDisplayID is just an integer, so supporting up to this many
// doesn't hurt.
CGDirectDisplayID online_displays[128];
CGDisplayCount online_display_count = 0;
if (CGGetOnlineDisplayList(arraysize(online_displays), online_displays,
&online_display_count) != kCGErrorSuccess) {
return std::vector<Display>(1, BuildPrimaryDisplay());
}
typedef std::map<int64_t, NSScreen*> ScreenIdsToScreensMap;
ScreenIdsToScreensMap screen_ids_to_screens;
for (NSScreen* screen in [NSScreen screens]) {
NSDictionary* screen_device_description = [screen deviceDescription];
int64_t screen_id = [[screen_device_description
objectForKey:@"NSScreenNumber"] unsignedIntValue];
screen_ids_to_screens[screen_id] = screen;
}
std::vector<Display> displays;
for (CGDisplayCount online_display_index = 0;
online_display_index < online_display_count; ++online_display_index) {
CGDirectDisplayID online_display = online_displays[online_display_index];
if (CGDisplayMirrorsDisplay(online_display) == kCGNullDirectDisplay) {
// If this display doesn't mirror any other, include it in the list.
// The primary display in a mirrored set will be counted, but those that
// mirror it will not be.
ScreenIdsToScreensMap::iterator foundScreen =
screen_ids_to_screens.find(online_display);
if (foundScreen != screen_ids_to_screens.end()) {
displays.push_back(BuildDisplayForScreen(foundScreen->second));
}
}
}
return displays.empty() ? std::vector<Display>(1, BuildPrimaryDisplay())
: displays;
}
// The displays currently attached to the device. Cached.
mutable std::vector<Display> displays_;
// Set whenever the CGDisplayRegisterReconfigurationCallback is invoked and
// cleared when |displays_| is updated by BuildDisplaysFromQuartz().
mutable bool displays_require_update_ = false;
// The displays last communicated to DisplayChangeNotifier.
std::vector<Display> old_displays_;
// The timer to delay configuring outputs and notifying observers.
base::Timer configure_timer_;
// The observer notified by NSScreenColorSpaceDidChangeNotification.
base::scoped_nsobject<id> screen_color_change_observer_;
DisplayChangeNotifier change_notifier_;
DISALLOW_COPY_AND_ASSIGN(ScreenMac);
};
} // namespace
// static
gfx::NativeWindow Screen::GetWindowForView(gfx::NativeView view) {
NSWindow* window = nil;
#if !defined(USE_AURA)
window = [view window];
#endif
return window;
}
#if !defined(USE_AURA)
Screen* CreateNativeScreen() {
return new ScreenMac;
}
#endif
} // namespace display
|