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
|
// Copyright 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/android/display_android_manager.h"
#include <jni.h>
#include <map>
#include "base/android/jni_android.h"
#include "base/stl_util.h"
#include "jni/DisplayAndroidManager_jni.h"
#include "ui/android/screen_android.h"
#include "ui/android/window_android.h"
#include "ui/display/display.h"
#include "ui/gfx/icc_profile.h"
namespace ui {
using base::android::AttachCurrentThread;
using display::Display;
using display::DisplayList;
void SetScreenAndroid() {
// Do not override existing Screen.
DCHECK_EQ(display::Screen::GetScreen(), nullptr);
DisplayAndroidManager* manager = new DisplayAndroidManager();
display::Screen::SetScreenInstance(manager);
JNIEnv* env = AttachCurrentThread();
Java_DisplayAndroidManager_onNativeSideCreated(env, (jlong)manager);
}
DisplayAndroidManager::DisplayAndroidManager() {}
DisplayAndroidManager::~DisplayAndroidManager() {}
// Screen interface.
Display DisplayAndroidManager::GetDisplayNearestWindow(
gfx::NativeWindow window) const {
if (window) {
DisplayList::Displays::const_iterator it =
display_list().FindDisplayById(window->display_id());
if (it != display_list().displays().end()) {
return *it;
}
}
return GetPrimaryDisplay();
}
Display DisplayAndroidManager::GetDisplayNearestView(
gfx::NativeView view) const {
return GetDisplayNearestWindow(view ? view->GetWindowAndroid() : nullptr);
}
// There is no notion of relative display positions on Android.
Display DisplayAndroidManager::GetDisplayNearestPoint(
const gfx::Point& point) const {
NOTIMPLEMENTED();
return GetPrimaryDisplay();
}
// There is no notion of relative display positions on Android.
Display DisplayAndroidManager::GetDisplayMatching(
const gfx::Rect& match_rect) const {
NOTIMPLEMENTED();
return GetPrimaryDisplay();
}
// Methods called from Java
void DisplayAndroidManager::UpdateDisplay(
JNIEnv* env,
const base::android::JavaParamRef<jobject>& jobject,
jint sdkDisplayId,
jint width,
jint height,
jfloat dipScale,
jint rotationDegrees,
jint bitsPerPixel,
jint bitsPerComponent,
jboolean isWideColorGamut) {
gfx::Rect bounds_in_pixels = gfx::Rect(width, height);
const gfx::Rect bounds_in_dip = gfx::Rect(
gfx::ScaleToCeiledSize(bounds_in_pixels.size(), 1.0f / dipScale));
display::Display display(sdkDisplayId, bounds_in_dip);
if (!Display::HasForceDeviceScaleFactor())
display.set_device_scale_factor(dipScale);
if (!Display::HasForceColorProfile()) {
// TODO(ccameron): Use CreateDisplayP3D65 if isWideColorGamut is true, once
// the feature is ready to use.
display.set_color_space(gfx::ColorSpace::CreateSRGB());
}
display.set_size_in_pixels(bounds_in_pixels.size());
display.SetRotationAsDegree(rotationDegrees);
display.set_color_depth(bitsPerPixel);
display.set_depth_per_component(bitsPerComponent);
display.set_is_monochrome(bitsPerComponent == 0);
ProcessDisplayChanged(display, sdkDisplayId == primary_display_id_);
}
void DisplayAndroidManager::RemoveDisplay(
JNIEnv* env,
const base::android::JavaParamRef<jobject>& jobject,
jint sdkDisplayId) {
display_list().RemoveDisplay(sdkDisplayId);
}
void DisplayAndroidManager::SetPrimaryDisplayId(
JNIEnv* env,
const base::android::JavaParamRef<jobject>& jobject,
jint sdkDisplayId) {
primary_display_id_ = sdkDisplayId;
}
} // namespace ui
|