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
|
// 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 "views/widget/native_widget_view.h"
#include "ui/gfx/canvas.h"
#include "ui/gfx/compositor/layer.h"
namespace views {
namespace internal {
////////////////////////////////////////////////////////////////////////////////
// NativeWidgetView, public:
// static
const char NativeWidgetView::kViewClassName[] = "views/NativeWidgetView";
NativeWidgetView::NativeWidgetView(NativeWidgetViews* native_widget)
: native_widget_(native_widget),
sent_create_(false),
delete_native_widget_(true),
cursor_(NULL) {
}
NativeWidgetView::~NativeWidgetView() {
// Don't let NativeWidgetViews delete this again. This must be outside
// the |delete_native_widget_| clause so it gets invoked for
// WIDGET_OWNS_NATIVE_WIDGET. It is safe because |native_widget_| will
// still exist in both ways NativeWidgetView can be destroyed: by view
// hierarchy teardown and from the NativeWidgetViews destructor.
native_widget_->set_delete_native_view(false);
if (delete_native_widget_)
delete native_widget_;
}
Widget* NativeWidgetView::GetAssociatedWidget() {
return native_widget_->delegate()->AsWidget();
}
////////////////////////////////////////////////////////////////////////////////
// NativeWidgetView, View overrides:
void NativeWidgetView::CalculateOffsetToAncestorWithLayer(
gfx::Point* offset,
ui::Layer** layer_parent) {
View::CalculateOffsetToAncestorWithLayer(offset, layer_parent);
}
#if !defined(NDEBUG)
std::string NativeWidgetView::PrintViewGraph(bool first) {
return DoPrintViewGraph(first, GetAssociatedWidget()->GetRootView());
}
#endif
void NativeWidgetView::ViewHierarchyChanged(bool is_add,
View* parent,
View* child) {
if (is_add && child == this) {
GetAssociatedWidget()->GetRootView()->UpdateParentLayers();
if (!sent_create_) {
sent_create_ = true;
delegate()->OnNativeWidgetCreated();
}
}
}
void NativeWidgetView::OnBoundsChanged(const gfx::Rect& previous_bounds) {
native_widget_->OnBoundsChanged(bounds(), previous_bounds);
}
void NativeWidgetView::OnPaint(gfx::Canvas* canvas) {
delegate()->OnNativeWidgetPaint(canvas);
}
gfx::NativeCursor NativeWidgetView::GetCursor(const MouseEvent& event) {
return cursor_;
}
bool NativeWidgetView::OnMousePressed(const MouseEvent& event) {
return native_widget_->OnMouseEvent(event);
}
bool NativeWidgetView::OnMouseDragged(const MouseEvent& event) {
return native_widget_->OnMouseEvent(event);
}
void NativeWidgetView::OnMouseReleased(const MouseEvent& event) {
native_widget_->OnMouseEvent(event);
}
void NativeWidgetView::OnMouseCaptureLost() {
delegate()->OnMouseCaptureLost();
}
void NativeWidgetView::OnMouseMoved(const MouseEvent& event) {
native_widget_->OnMouseEvent(event);
}
void NativeWidgetView::OnMouseEntered(const MouseEvent& event) {
native_widget_->OnMouseEvent(event);
}
void NativeWidgetView::OnMouseExited(const MouseEvent& event) {
native_widget_->OnMouseEvent(event);
}
ui::TouchStatus NativeWidgetView::OnTouchEvent(const TouchEvent& event) {
return delegate()->OnTouchEvent(event);
}
bool NativeWidgetView::OnKeyPressed(const KeyEvent& event) {
return delegate()->OnKeyEvent(event);
}
bool NativeWidgetView::OnKeyReleased(const KeyEvent& event) {
return delegate()->OnKeyEvent(event);
}
bool NativeWidgetView::OnMouseWheel(const MouseWheelEvent& event) {
return native_widget_->OnMouseEvent(event);
}
void NativeWidgetView::VisibilityChanged(View* starting_from,
bool visible) {
delegate()->OnNativeWidgetVisibilityChanged(visible);
}
void NativeWidgetView::OnFocus() {
// TODO(beng): check if we have to do this.
//delegate()->OnNativeFocus(NULL);
}
void NativeWidgetView::OnBlur() {
// TODO(beng): check if we have to do this.
//delegate()->OnNativeBlur(NULL);
}
std::string NativeWidgetView::GetClassName() const {
return kViewClassName;
}
void NativeWidgetView::MoveLayerToParent(ui::Layer* parent_layer,
const gfx::Point& point) {
View::MoveLayerToParent(parent_layer, point);
if (!layer() || parent_layer == layer()) {
gfx::Point new_offset(point);
if (layer() != parent_layer)
new_offset.Offset(x(), y());
GetAssociatedWidget()->GetRootView()->MoveLayerToParent(
parent_layer, new_offset);
}
}
void NativeWidgetView::UpdateChildLayerBounds(const gfx::Point& offset) {
gfx::Point new_offset(offset.x() + x(), offset.y() + y());
View::UpdateChildLayerBounds(new_offset);
if (!layer())
GetAssociatedWidget()->GetRootView()->UpdateChildLayerBounds(new_offset);
}
} // namespace internal
} // namespace views
|