blob: 88e8be3d8ca6ddc9f80109fa97685ca6e8e359eb (
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
123
124
125
126
127
128
129
130
131
132
133
|
// Copyright 2016 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 "ash/host/ash_window_tree_host_platform.h"
#include <utility>
#include "ash/host/root_window_transformer.h"
#include "ash/host/transformer_helper.h"
#include "ash/ime/input_method_event_handler.h"
#include "base/trace_event/trace_event.h"
#include "ui/aura/window.h"
#include "ui/aura/window_tree_host_platform.h"
#include "ui/events/event_processor.h"
#include "ui/events/null_event_targeter.h"
#include "ui/gfx/geometry/insets.h"
#include "ui/gfx/transform.h"
#include "ui/platform_window/platform_window.h"
#if defined(USE_OZONE)
#include "ui/ozone/public/input_controller.h"
#include "ui/ozone/public/ozone_platform.h"
#endif
namespace ash {
AshWindowTreeHostPlatform::AshWindowTreeHostPlatform(
const gfx::Rect& initial_bounds)
: aura::WindowTreeHostPlatform(initial_bounds), transformer_helper_(this) {
transformer_helper_.Init();
}
AshWindowTreeHostPlatform::AshWindowTreeHostPlatform()
: transformer_helper_(this) {
transformer_helper_.Init();
}
AshWindowTreeHostPlatform::~AshWindowTreeHostPlatform() {}
void AshWindowTreeHostPlatform::ToggleFullScreen() {
NOTIMPLEMENTED();
}
bool AshWindowTreeHostPlatform::ConfineCursorToRootWindow() {
gfx::Rect confined_bounds(GetBounds().size());
confined_bounds.Inset(transformer_helper_.GetHostInsets());
platform_window()->ConfineCursorToBounds(confined_bounds);
return true;
}
void AshWindowTreeHostPlatform::UnConfineCursor() {
NOTIMPLEMENTED();
}
void AshWindowTreeHostPlatform::SetRootWindowTransformer(
scoped_ptr<RootWindowTransformer> transformer) {
transformer_helper_.SetRootWindowTransformer(std::move(transformer));
ConfineCursorToRootWindow();
}
gfx::Insets AshWindowTreeHostPlatform::GetHostInsets() const {
return transformer_helper_.GetHostInsets();
}
aura::WindowTreeHost* AshWindowTreeHostPlatform::AsWindowTreeHost() {
return this;
}
void AshWindowTreeHostPlatform::PrepareForShutdown() {
// Block the root window from dispatching events because it is weird for a
// ScreenPositionClient not to be attached to the root window and for
// ui::EventHandlers to be unable to convert the event's location to screen
// coordinates.
window()->SetEventTargeter(
scoped_ptr<ui::EventTargeter>(new ui::NullEventTargeter));
}
void AshWindowTreeHostPlatform::SetRootTransform(
const gfx::Transform& transform) {
transformer_helper_.SetTransform(transform);
}
gfx::Transform AshWindowTreeHostPlatform::GetRootTransform() const {
return transformer_helper_.GetTransform();
}
gfx::Transform AshWindowTreeHostPlatform::GetInverseRootTransform() const {
return transformer_helper_.GetInverseTransform();
}
void AshWindowTreeHostPlatform::UpdateRootWindowSize(
const gfx::Size& host_size) {
transformer_helper_.UpdateWindowSize(host_size);
}
void AshWindowTreeHostPlatform::OnCursorVisibilityChangedNative(bool show) {
SetTapToClickPaused(!show);
}
void AshWindowTreeHostPlatform::SetBounds(const gfx::Rect& bounds) {
WindowTreeHostPlatform::SetBounds(bounds);
ConfineCursorToRootWindow();
}
void AshWindowTreeHostPlatform::DispatchEvent(ui::Event* event) {
TRACE_EVENT0("input", "AshWindowTreeHostPlatform::DispatchEvent");
if (event->IsLocatedEvent())
TranslateLocatedEvent(static_cast<ui::LocatedEvent*>(event));
SendEventToProcessor(event);
}
ui::EventDispatchDetails AshWindowTreeHostPlatform::DispatchKeyEventPostIME(
ui::KeyEvent* event) {
input_method_handler()->SetPostIME(true);
ui::EventDispatchDetails details =
event_processor()->OnEventFromSource(event);
if (!details.dispatcher_destroyed)
input_method_handler()->SetPostIME(false);
return details;
}
void AshWindowTreeHostPlatform::SetTapToClickPaused(bool state) {
#if defined(USE_OZONE)
DCHECK(ui::OzonePlatform::GetInstance()->GetInputController());
// Temporarily pause tap-to-click when the cursor is hidden.
ui::OzonePlatform::GetInstance()->GetInputController()->SetTapToClickPaused(
state);
#endif
}
} // namespace ash
|