blob: 661e1683f0c10e884bcd419bafba3e0cb530b963 (
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
|
// Copyright (c) 2011 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 "third_party/skia/include/core/SkCanvas.h"
#include "ui/aura/event.h"
#include "ui/aura/window.h"
#include "ui/base/hit_test.h"
#include "ui/gfx/canvas.h"
namespace aura {
namespace test {
////////////////////////////////////////////////////////////////////////////////
// TestWindowDelegate
TestWindowDelegate::TestWindowDelegate() {
}
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() {
}
void TestWindowDelegate::OnBlur() {
}
bool TestWindowDelegate::OnKeyEvent(KeyEvent* event) {
return false;
}
gfx::NativeCursor TestWindowDelegate::GetCursor(const gfx::Point& point) {
return gfx::kNullCursor;
}
int TestWindowDelegate::GetNonClientComponent(const gfx::Point& point) const {
return HTCLIENT;
}
bool TestWindowDelegate::OnMouseEvent(MouseEvent* event) {
return false;
}
ui::TouchStatus TestWindowDelegate::OnTouchEvent(TouchEvent* event) {
return ui::TOUCH_STATUS_UNKNOWN;
}
bool TestWindowDelegate::CanFocus() {
return true;
}
void TestWindowDelegate::OnCaptureLost() {
}
void TestWindowDelegate::OnPaint(gfx::Canvas* canvas) {
}
void TestWindowDelegate::OnWindowDestroying() {
}
void TestWindowDelegate::OnWindowDestroyed() {
}
void TestWindowDelegate::OnWindowVisibilityChanged(bool visible) {
}
////////////////////////////////////////////////////////////////////////////////
// ColorTestWindowDelegate
ColorTestWindowDelegate::ColorTestWindowDelegate(SkColor color)
: color_(color),
last_key_code_(ui::VKEY_UNKNOWN) {
}
ColorTestWindowDelegate::~ColorTestWindowDelegate() {
}
bool ColorTestWindowDelegate::OnKeyEvent(KeyEvent* event) {
last_key_code_ = event->key_code();
return true;
}
void ColorTestWindowDelegate::OnWindowDestroyed() {
delete this;
}
void ColorTestWindowDelegate::OnPaint(gfx::Canvas* canvas) {
canvas->GetSkCanvas()->drawColor(color_, SkXfermode::kSrc_Mode);
}
} // namespace test
} // namespace aura
|