blob: d242d78e57742ae36c23b6395c30a9c86930ec36 (
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
|
// 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/aura/test/test_screen.h"
#include "base/logging.h"
#include "ui/aura/root_window.h"
#include "ui/aura/window.h"
#include "ui/gfx/native_widget_types.h"
#include "ui/gfx/screen.h"
namespace aura {
TestScreen::TestScreen(aura::RootWindow* root_window)
: root_window_(root_window) {
}
TestScreen::~TestScreen() {
}
gfx::Point TestScreen::GetCursorScreenPoint() {
return root_window_->last_mouse_location();
}
gfx::NativeWindow TestScreen::GetWindowAtCursorScreenPoint() {
const gfx::Point point = gfx::Screen::GetCursorScreenPoint();
return root_window_->GetTopWindowContainingPoint(point);
}
int TestScreen::GetNumMonitors() {
return 1;
}
gfx::Monitor TestScreen::GetMonitorNearestWindow(
gfx::NativeWindow window) const {
return GetMonitor();
}
gfx::Monitor TestScreen::GetMonitorNearestPoint(const gfx::Point& point) const {
return GetMonitor();
}
gfx::Monitor TestScreen::GetPrimaryMonitor() const {
return GetMonitor();
}
gfx::Monitor TestScreen::GetMonitor() const {
return gfx::Monitor(0, root_window_->bounds());
}
} // namespace aura
|