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
|
// 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_window_delegate.h"
#include "base/stringprintf.h"
#include "ui/aura/window.h"
#include "ui/base/event.h"
#include "ui/base/hit_test.h"
#include "ui/gfx/canvas.h"
#include "ui/gfx/path.h"
#include "ui/gfx/skia_util.h"
namespace aura {
namespace test {
////////////////////////////////////////////////////////////////////////////////
// TestWindowDelegate
TestWindowDelegate::TestWindowDelegate() : window_component_(HTCLIENT) {
}
TestWindowDelegate::~TestWindowDelegate() {
}
gfx::Size TestWindowDelegate::GetMinimumSize() const {
return gfx::Size();
}
void TestWindowDelegate::OnBoundsChanged(const gfx::Rect& old_bounds,
const gfx::Rect& new_bounds) {
}
void TestWindowDelegate::OnFocus(Window* old_focused_window) {
}
void TestWindowDelegate::OnBlur() {
}
bool TestWindowDelegate::OnKeyEvent(ui::KeyEvent* event) {
return false;
}
gfx::NativeCursor TestWindowDelegate::GetCursor(const gfx::Point& point) {
return gfx::kNullCursor;
}
int TestWindowDelegate::GetNonClientComponent(const gfx::Point& point) const {
return window_component_;
}
bool TestWindowDelegate::ShouldDescendIntoChildForEventHandling(
Window* child,
const gfx::Point& location) {
return true;
}
bool TestWindowDelegate::OnMouseEvent(ui::MouseEvent* event) {
return false;
}
ui::TouchStatus TestWindowDelegate::OnTouchEvent(ui::TouchEventImpl* event) {
return ui::TOUCH_STATUS_UNKNOWN;
}
ui::GestureStatus TestWindowDelegate::OnGestureEvent(
ui::GestureEventImpl* event) {
return ui::GESTURE_STATUS_UNKNOWN;
}
bool TestWindowDelegate::CanFocus() {
return true;
}
void TestWindowDelegate::OnCaptureLost() {
}
void TestWindowDelegate::OnPaint(gfx::Canvas* canvas) {
}
void TestWindowDelegate::OnDeviceScaleFactorChanged(
float device_scale_factor) {
}
void TestWindowDelegate::OnWindowDestroying() {
}
void TestWindowDelegate::OnWindowDestroyed() {
}
void TestWindowDelegate::OnWindowTargetVisibilityChanged(bool visible) {
}
bool TestWindowDelegate::HasHitTestMask() const {
return false;
}
void TestWindowDelegate::GetHitTestMask(gfx::Path* mask) const {
}
////////////////////////////////////////////////////////////////////////////////
// ColorTestWindowDelegate
ColorTestWindowDelegate::ColorTestWindowDelegate(SkColor color)
: color_(color),
last_key_code_(ui::VKEY_UNKNOWN) {
}
ColorTestWindowDelegate::~ColorTestWindowDelegate() {
}
bool ColorTestWindowDelegate::OnKeyEvent(ui::KeyEvent* event) {
last_key_code_ = event->key_code();
return true;
}
void ColorTestWindowDelegate::OnWindowDestroyed() {
delete this;
}
void ColorTestWindowDelegate::OnPaint(gfx::Canvas* canvas) {
canvas->DrawColor(color_, SkXfermode::kSrc_Mode);
}
////////////////////////////////////////////////////////////////////////////////
// MaskedWindowDelegate
MaskedWindowDelegate::MaskedWindowDelegate(const gfx::Rect mask_rect)
: mask_rect_(mask_rect) {
}
bool MaskedWindowDelegate::HasHitTestMask() const {
return true;
}
void MaskedWindowDelegate::GetHitTestMask(gfx::Path* mask) const {
mask->addRect(RectToSkRect(mask_rect_));
}
////////////////////////////////////////////////////////////////////////////////
// EventCountDelegate
EventCountDelegate::EventCountDelegate()
: mouse_enter_count_(0),
mouse_move_count_(0),
mouse_leave_count_(0),
mouse_press_count_(0),
mouse_release_count_(0),
key_press_count_(0),
key_release_count_(0) {
}
bool EventCountDelegate::OnMouseEvent(ui::MouseEvent* event) {
switch (event->type()) {
case ui::ET_MOUSE_MOVED:
mouse_move_count_++;
break;
case ui::ET_MOUSE_ENTERED:
mouse_enter_count_++;
break;
case ui::ET_MOUSE_EXITED:
mouse_leave_count_++;
break;
case ui::ET_MOUSE_PRESSED:
mouse_press_count_++;
break;
case ui::ET_MOUSE_RELEASED:
mouse_release_count_++;
break;
default:
break;
}
return false;
}
bool EventCountDelegate::OnKeyEvent(ui::KeyEvent* event) {
switch (event->type()) {
case ui::ET_KEY_PRESSED:
key_press_count_++;
break;
case ui::ET_KEY_RELEASED:
key_release_count_++;
default:
break;
}
return false;
}
std::string EventCountDelegate::GetMouseMotionCountsAndReset() {
std::string result = StringPrintf("%d %d %d",
mouse_enter_count_,
mouse_move_count_,
mouse_leave_count_);
mouse_enter_count_ = 0;
mouse_move_count_ = 0;
mouse_leave_count_ = 0;
return result;
}
std::string EventCountDelegate::GetMouseButtonCountsAndReset() {
std::string result = StringPrintf("%d %d",
mouse_press_count_,
mouse_release_count_);
mouse_press_count_ = 0;
mouse_release_count_ = 0;
return result;
}
std::string EventCountDelegate::GetKeyCountsAndReset() {
std::string result = StringPrintf("%d %d",
key_press_count_,
key_release_count_);
key_press_count_ = 0;
key_release_count_ = 0;
return result;
}
} // namespace test
} // namespace aura
|