Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(584)

Side by Side Diff: ui/views/widget/android/native_widget_android.cc

Issue 1403293003: Introduce AndroidFocusRules and NativeWidgetAndroid (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/views/widget/native_widget_aura.h" 5 #include "ui/views/widget/android/native_widget_android.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/run_loop.h"
8 #include "base/strings/string_util.h" 9 #include "base/strings/string_util.h"
9 #include "third_party/skia/include/core/SkRegion.h" 10 #include "third_party/skia/include/core/SkRegion.h"
10 #include "ui/aura/client/aura_constants.h" 11 #include "ui/aura/client/aura_constants.h"
11 #include "ui/aura/client/cursor_client.h" 12 #include "ui/aura/client/cursor_client.h"
13 #include "ui/aura/client/default_capture_client.h"
12 #include "ui/aura/client/focus_client.h" 14 #include "ui/aura/client/focus_client.h"
13 #include "ui/aura/client/screen_position_client.h" 15 #include "ui/aura/client/screen_position_client.h"
14 #include "ui/aura/client/window_tree_client.h" 16 #include "ui/aura/client/window_tree_client.h"
15 #include "ui/aura/env.h" 17 #include "ui/aura/env.h"
16 #include "ui/aura/window.h" 18 #include "ui/aura/window.h"
17 #include "ui/aura/window_event_dispatcher.h" 19 #include "ui/aura/window_event_dispatcher.h"
18 #include "ui/aura/window_observer.h" 20 #include "ui/aura/window_observer.h"
19 #include "ui/aura/window_tree_host.h" 21 #include "ui/aura/window_tree_host.h"
20 #include "ui/base/dragdrop/os_exchange_data.h" 22 #include "ui/base/dragdrop/os_exchange_data.h"
21 #include "ui/base/ui_base_types.h" 23 #include "ui/base/ui_base_types.h"
22 #include "ui/compositor/layer.h" 24 #include "ui/compositor/layer.h"
23 #include "ui/events/event.h" 25 #include "ui/events/event.h"
24 #include "ui/gfx/canvas.h" 26 #include "ui/gfx/canvas.h"
25 #include "ui/gfx/font_list.h" 27 #include "ui/gfx/font_list.h"
26 #include "ui/gfx/screen.h" 28 #include "ui/gfx/screen.h"
27 #include "ui/native_theme/native_theme_aura.h" 29 #include "ui/native_theme/native_theme_aura.h"
28 #include "ui/views/drag_utils.h" 30 #include "ui/views/drag_utils.h"
29 #include "ui/views/views_delegate.h" 31 #include "ui/views/views_delegate.h"
30 #include "ui/views/widget/drop_helper.h" 32 #include "ui/views/widget/android/android_focus_rules.h"
33 #include "ui/views/widget/native_widget_aura.h"
31 #include "ui/views/widget/native_widget_delegate.h" 34 #include "ui/views/widget/native_widget_delegate.h"
32 #include "ui/views/widget/root_view.h" 35 #include "ui/views/widget/root_view.h"
33 #include "ui/views/widget/tooltip_manager_aura.h" 36 #include "ui/views/widget/tooltip_manager_aura.h"
34 #include "ui/views/widget/widget_aura_utils.h" 37 #include "ui/views/widget/widget_aura_utils.h"
35 #include "ui/views/widget/widget_delegate.h" 38 #include "ui/views/widget/widget_delegate.h"
36 #include "ui/views/widget/window_reorderer.h" 39 #include "ui/views/widget/window_reorderer.h"
40 #include "ui/wm/core/default_activation_client.h"
41 #include "ui/wm/core/default_screen_position_client.h"
42 #include "ui/wm/core/focus_controller.h"
37 #include "ui/wm/core/shadow_types.h" 43 #include "ui/wm/core/shadow_types.h"
38 #include "ui/wm/core/window_animations.h" 44 #include "ui/wm/core/window_animations.h"
39 #include "ui/wm/core/window_util.h" 45 #include "ui/wm/core/window_util.h"
40 #include "ui/wm/public/activation_client.h" 46 #include "ui/wm/public/activation_client.h"
47 #include "ui/wm/public/dispatcher_client.h"
41 #include "ui/wm/public/drag_drop_client.h" 48 #include "ui/wm/public/drag_drop_client.h"
42 #include "ui/wm/public/window_move_client.h" 49 #include "ui/wm/public/window_move_client.h"
43 #include "ui/wm/public/window_types.h" 50 #include "ui/wm/public/window_types.h"
44 51
45 #if defined(OS_WIN) 52 // TODO(bshe): Most of the code is copied from NativeWidgetAura or
46 #include "base/win/scoped_gdi_object.h" 53 // DesktopNativeWidgetAura. Share more code instead of duplicate code when
47 #include "base/win/win_util.h" 54 // possible. crbug.com/554961.
48 #include "ui/base/l10n/l10n_util_win.h" 55 namespace {
49 #include "ui/views/widget/desktop_aura/desktop_window_tree_host_win.h"
50 #endif
51 56
52 #if defined(USE_X11) && !defined(OS_CHROMEOS) 57 class WindowTreeClientImpl : public aura::client::WindowTreeClient {
53 #include "ui/views/widget/desktop_aura/desktop_window_tree_host_x11.h" 58 public:
54 #endif 59 explicit WindowTreeClientImpl(aura::Window* root_window)
60 : root_window_(root_window) {
61 aura::client::SetWindowTreeClient(root_window_, this);
62 }
63 ~WindowTreeClientImpl() override {
64 aura::client::SetWindowTreeClient(root_window_, nullptr);
65 }
55 66
56 #if !defined(OS_CHROMEOS) 67 // Overridden from client::WindowTreeClient:
57 #include "ui/views/widget/desktop_aura/desktop_native_widget_aura.h" 68 aura::Window* GetDefaultParent(aura::Window* context,
58 #include "ui/views/widget/desktop_aura/desktop_window_tree_host.h" 69 aura::Window* window,
59 #endif 70 const gfx::Rect& bounds) override {
71 return root_window_;
72 }
73
74 private:
75 aura::Window* root_window_;
76
77 DISALLOW_COPY_AND_ASSIGN(WindowTreeClientImpl);
78 };
79
80 // TODO(bshe|jonross): Get rid of nested message loop once crbug.com/523680 is
81 // fiexed.
82 class AndroidDispatcherClient : public aura::client::DispatcherClient {
83 public:
84 AndroidDispatcherClient() : dispatcher_(nullptr) {}
85 ~AndroidDispatcherClient() override {}
86
87 base::MessagePumpDispatcher* dispatcher() { return dispatcher_; }
88
89 // aura::client::DispatcherClient:
90 void PrepareNestedLoopClosures(base::MessagePumpDispatcher* dispatcher,
91 base::Closure* run_closure,
92 base::Closure* quit_closure) override {
93 scoped_ptr<base::RunLoop> run_loop(new base::RunLoop());
94 *quit_closure = run_loop->QuitClosure();
95 *run_closure =
96 base::Bind(&AndroidDispatcherClient::RunNestedDispatcher,
97 base::Unretained(this), base::Passed(&run_loop), dispatcher);
98 }
99
100 private:
101 void RunNestedDispatcher(scoped_ptr<base::RunLoop> run_loop,
102 base::MessagePumpDispatcher* dispatcher) {
103 base::AutoReset<base::MessagePumpDispatcher*> reset_dispatcher(&dispatcher_,
104 dispatcher);
105 base::MessageLoopForUI* loop = base::MessageLoopForUI::current();
106 base::MessageLoop::ScopedNestableTaskAllower allow(loop);
107 run_loop->Run();
108 }
109
110 base::MessagePumpDispatcher* dispatcher_;
111
112 DISALLOW_COPY_AND_ASSIGN(AndroidDispatcherClient);
113 };
114
115 } // namespace
60 116
61 namespace views { 117 namespace views {
62 118
63 namespace { 119 ////////////////////////////////////////////////////////////////////////////////
120 // NativeWidgetAndroid, public
64 121
65 void SetRestoreBounds(aura::Window* window, const gfx::Rect& bounds) { 122 NativeWidgetAndroid::NativeWidgetAndroid(
66 window->SetProperty(aura::client::kRestoreBoundsKey, new gfx::Rect(bounds)); 123 internal::NativeWidgetDelegate* delegate)
67 }
68
69 } // namespace
70
71 ////////////////////////////////////////////////////////////////////////////////
72 // NativeWidgetAura, public:
73
74 NativeWidgetAura::NativeWidgetAura(internal::NativeWidgetDelegate* delegate)
75 : delegate_(delegate), 124 : delegate_(delegate),
76 window_(new aura::Window(this)), 125 window_(new aura::Window(this)),
77 ownership_(Widget::InitParams::NATIVE_WIDGET_OWNS_WIDGET), 126 ownership_(Widget::InitParams::NATIVE_WIDGET_OWNS_WIDGET),
78 destroying_(false), 127 destroying_(false),
79 cursor_(gfx::kNullCursor), 128 cursor_(gfx::kNullCursor),
80 saved_window_state_(ui::SHOW_STATE_DEFAULT), 129 saved_window_state_(ui::SHOW_STATE_DEFAULT),
81 close_widget_factory_(this) { 130 close_widget_factory_(this) {
82 aura::client::SetFocusChangeObserver(window_, this); 131 aura::client::SetFocusChangeObserver(window_, this);
83 aura::client::SetActivationChangeObserver(window_, this); 132 aura::client::SetActivationChangeObserver(window_, this);
84 } 133 }
85 134
86 // static 135 ////////////////////////////////////////////////////////////////////////////////
87 void NativeWidgetAura::RegisterNativeWidgetForWindow( 136 // NativeWidgetAndroid, internal::NativeWidgetPrivate implementation:
88 internal::NativeWidgetPrivate* native_widget,
89 aura::Window* window) {
90 window->set_user_data(native_widget);
91 }
92 137
93 //////////////////////////////////////////////////////////////////////////////// 138 void NativeWidgetAndroid::InitNativeWidget(const Widget::InitParams& params) {
94 // NativeWidgetAura, internal::NativeWidgetPrivate implementation: 139 ownership_ = params.ownership;
140 NativeWidgetAura::RegisterNativeWidgetForWindow(this, window_);
95 141
96 void NativeWidgetAura::InitNativeWidget(const Widget::InitParams& params) { 142 window_->SetType(GetAuraWindowTypeForWidgetType(params.type));
97 // Aura needs to know which desktop (Ash or regular) will manage this widget. 143 window_->Init(params.layer_type);
98 // See Widget::InitParams::context for details. 144 wm::SetShadowType(window_, wm::SHADOW_TYPE_NONE);
99 DCHECK(params.parent || params.context); 145 window_->Show();
100 146
101 ownership_ = params.ownership; 147 // TODO(bshe): Get rid of the hard coded size. Tracked in crbug.com/551923.
148 host_.reset(aura::WindowTreeHost::Create(gfx::Rect(0, 0, 800, 600)));
149 host_->InitHost();
150 host_->AddObserver(this);
102 151
103 RegisterNativeWidgetForWindow(this, window_); 152 window_tree_client_.reset(new WindowTreeClientImpl(host_->window()));
104 window_->SetType(GetAuraWindowTypeForWidgetType(params.type)); 153
105 window_->SetProperty(aura::client::kShowStateKey, params.show_state); 154 focus_client_.reset(new wm::FocusController(new AndroidFocusRules));
106 if (params.type == Widget::InitParams::TYPE_BUBBLE) 155 aura::client::SetFocusClient(host_->window(), focus_client_.get());
107 aura::client::SetHideOnDeactivate(window_, true); 156 host_->window()->AddPreTargetHandler(focus_client_.get());
108 window_->SetTransparent( 157
109 params.opacity == Widget::InitParams::TRANSLUCENT_WINDOW); 158 new wm::DefaultActivationClient(host_->window());
110 window_->Init(params.layer_type); 159
111 if (params.shadow_type == Widget::InitParams::SHADOW_TYPE_NONE) 160 capture_client_.reset(
112 SetShadowType(window_, wm::SHADOW_TYPE_NONE); 161 new aura::client::DefaultCaptureClient(host_->window()));
113 else if (params.shadow_type == Widget::InitParams::SHADOW_TYPE_DROP) 162
114 SetShadowType(window_, wm::SHADOW_TYPE_RECTANGULAR); 163 screen_position_client_.reset(new wm::DefaultScreenPositionClient);
115 if (params.type == Widget::InitParams::TYPE_CONTROL) 164 aura::client::SetScreenPositionClient(host_->window(),
116 window_->Show(); 165 screen_position_client_.get());
166 dispatcher_client_.reset(new AndroidDispatcherClient);
167 aura::client::SetDispatcherClient(host_->window(), dispatcher_client_.get());
117 168
118 delegate_->OnNativeWidgetCreated(false); 169 delegate_->OnNativeWidgetCreated(false);
119 170
120 gfx::Rect window_bounds = params.bounds;
121 gfx::NativeView parent = params.parent;
122 gfx::NativeView context = params.context;
123 if (!params.child) {
124 // Set up the transient child before the window is added. This way the
125 // LayoutManager knows the window has a transient parent.
126 if (parent && parent->type() != ui::wm::WINDOW_TYPE_UNKNOWN) {
127 wm::AddTransientChild(parent, window_);
128 if (!context)
129 context = parent;
130 parent = NULL;
131 }
132 // SetAlwaysOnTop before SetParent so that always-on-top container is used.
133 SetAlwaysOnTop(params.keep_on_top);
134 // Make sure we have a real |window_bounds|.
135 if (parent && window_bounds == gfx::Rect()) {
136 // If a parent is specified but no bounds are given,
137 // use the origin of the parent's display so that the widget
138 // will be added to the same display as the parent.
139 gfx::Rect bounds = gfx::Screen::GetScreenFor(parent)->
140 GetDisplayNearestWindow(parent).bounds();
141 window_bounds.set_origin(bounds.origin());
142 }
143 }
144
145 // Set properties before adding to the parent so that its layout manager sees
146 // the correct values.
147 OnSizeConstraintsChanged();
148
149 if (parent) {
150 parent->AddChild(window_);
151 } else {
152 aura::client::ParentWindowWithContext(
153 window_, context->GetRootWindow(), window_bounds);
154 }
155
156 // Start observing property changes.
157 window_->AddObserver(this);
158
159 // Wait to set the bounds until we have a parent. That way we can know our
160 // true state/bounds (the LayoutManager may enforce a particular
161 // state/bounds).
162 if (IsMaximized())
163 SetRestoreBounds(window_, window_bounds);
164 else
165 SetBounds(window_bounds);
166 window_->set_ignore_events(!params.accept_events);
167 DCHECK(GetWidget()->GetRootView()); 171 DCHECK(GetWidget()->GetRootView());
168 if (params.type != Widget::InitParams::TYPE_TOOLTIP) 172 if (params.type != Widget::InitParams::TYPE_TOOLTIP)
169 tooltip_manager_.reset(new views::TooltipManagerAura(GetWidget())); 173 tooltip_manager_.reset(new views::TooltipManagerAura(GetWidget()));
170 174
171 drop_helper_.reset(new DropHelper(GetWidget()->GetRootView()));
172 if (params.type != Widget::InitParams::TYPE_TOOLTIP && 175 if (params.type != Widget::InitParams::TYPE_TOOLTIP &&
173 params.type != Widget::InitParams::TYPE_POPUP) { 176 params.type != Widget::InitParams::TYPE_POPUP) {
174 aura::client::SetDragDropDelegate(window_, this); 177 aura::client::SetDragDropDelegate(window_, this);
175 } 178 }
176 179
177 aura::client::SetActivationDelegate(window_, this); 180 aura::client::SetActivationDelegate(window_, this);
178 181
179 window_reorderer_.reset(new WindowReorderer(window_, 182 host_->window()->AddChild(window_);
180 GetWidget()->GetRootView())); 183 window_reorderer_.reset(
181 } 184 new WindowReorderer(window_, GetWidget()->GetRootView()));
182 185
183 NonClientFrameView* NativeWidgetAura::CreateNonClientFrameView() { 186 // TODO(bshe): figure out how to add cursor manager, drag drop client and all
184 return NULL; 187 // the necessary parts that exists in desktop_native_widget_aura.
185 } 188 }
186 189
187 bool NativeWidgetAura::ShouldUseNativeFrame() const { 190 NonClientFrameView* NativeWidgetAndroid::CreateNonClientFrameView() {
191 NOTIMPLEMENTED();
192 return nullptr;
193 }
194
195 bool NativeWidgetAndroid::ShouldUseNativeFrame() const {
188 // There is only one frame type for aura. 196 // There is only one frame type for aura.
189 return false; 197 return false;
190 } 198 }
191 199
192 bool NativeWidgetAura::ShouldWindowContentsBeTransparent() const { 200 bool NativeWidgetAndroid::ShouldWindowContentsBeTransparent() const {
193 return false; 201 NOTIMPLEMENTED();
194 } 202 return false;
195 203 }
196 void NativeWidgetAura::FrameTypeChanged() { 204
197 // This is called when the Theme has changed; forward the event to the root 205 void NativeWidgetAndroid::FrameTypeChanged() {
198 // widget. 206 NOTIMPLEMENTED();
199 GetWidget()->ThemeChanged(); 207 }
200 GetWidget()->GetRootView()->SchedulePaint(); 208
201 } 209 Widget* NativeWidgetAndroid::GetWidget() {
202
203 Widget* NativeWidgetAura::GetWidget() {
204 return delegate_->AsWidget(); 210 return delegate_->AsWidget();
205 } 211 }
206 212
207 const Widget* NativeWidgetAura::GetWidget() const { 213 const Widget* NativeWidgetAndroid::GetWidget() const {
208 return delegate_->AsWidget(); 214 return delegate_->AsWidget();
209 } 215 }
210 216
211 gfx::NativeView NativeWidgetAura::GetNativeView() const { 217 gfx::NativeView NativeWidgetAndroid::GetNativeView() const {
212 return window_; 218 return window_;
213 } 219 }
214 220
215 gfx::NativeWindow NativeWidgetAura::GetNativeWindow() const { 221 gfx::NativeWindow NativeWidgetAndroid::GetNativeWindow() const {
216 return window_; 222 return window_;
217 } 223 }
218 224
219 Widget* NativeWidgetAura::GetTopLevelWidget() { 225 Widget* NativeWidgetAndroid::GetTopLevelWidget() {
220 NativeWidgetPrivate* native_widget = GetTopLevelNativeWidget(GetNativeView()); 226 return GetWidget();
221 return native_widget ? native_widget->GetWidget() : NULL; 227 }
222 } 228
223 229 const ui::Compositor* NativeWidgetAndroid::GetCompositor() const {
224 const ui::Compositor* NativeWidgetAura::GetCompositor() const { 230 return host_->compositor();
225 return window_ ? window_->layer()->GetCompositor() : NULL; 231 }
226 } 232
227 233 const ui::Layer* NativeWidgetAndroid::GetLayer() const {
228 const ui::Layer* NativeWidgetAura::GetLayer() const { 234 return GetNativeWindow()->layer();
229 return window_ ? window_->layer() : NULL; 235 }
230 } 236
231 237 void NativeWidgetAndroid::ReorderNativeViews() {
232 void NativeWidgetAura::ReorderNativeViews() {
233 window_reorderer_->ReorderChildWindows(); 238 window_reorderer_->ReorderChildWindows();
234 } 239 }
235 240
236 void NativeWidgetAura::ViewRemoved(View* view) { 241 void NativeWidgetAndroid::ViewRemoved(View* view) {
237 DCHECK(drop_helper_.get() != NULL); 242 // TODO(bshe): Implement drag and drop. crbug.com/554029.
238 drop_helper_->ResetTargetViewIfEquals(view); 243 NOTIMPLEMENTED();
239 } 244 }
240 245
241 void NativeWidgetAura::SetNativeWindowProperty(const char* name, void* value) { 246 void NativeWidgetAndroid::SetNativeWindowProperty(const char* name,
242 if (window_) 247 void* value) {
243 window_->SetNativeWindowProperty(name, value); 248 GetNativeWindow()->SetNativeWindowProperty(name, value);
244 } 249 }
245 250
246 void* NativeWidgetAura::GetNativeWindowProperty(const char* name) const { 251 void* NativeWidgetAndroid::GetNativeWindowProperty(const char* name) const {
247 return window_ ? window_->GetNativeWindowProperty(name) : NULL; 252 return GetNativeWindow()->GetNativeWindowProperty(name);
248 } 253 }
249 254
250 TooltipManager* NativeWidgetAura::GetTooltipManager() const { 255 TooltipManager* NativeWidgetAndroid::GetTooltipManager() const {
251 return tooltip_manager_.get(); 256 return tooltip_manager_.get();
252 } 257 }
253 258
254 void NativeWidgetAura::SetCapture() { 259 void NativeWidgetAndroid::SetCapture() {
255 if (window_) 260 GetNativeWindow()->SetCapture();
256 window_->SetCapture(); 261 }
257 } 262
258 263 void NativeWidgetAndroid::ReleaseCapture() {
259 void NativeWidgetAura::ReleaseCapture() { 264 GetNativeWindow()->ReleaseCapture();
260 if (window_) 265 }
261 window_->ReleaseCapture(); 266
262 } 267 bool NativeWidgetAndroid::HasCapture() const {
263 268 return GetNativeWindow()->HasCapture();
264 bool NativeWidgetAura::HasCapture() const { 269 }
265 return window_ && window_->HasCapture(); 270
266 } 271 ui::InputMethod* NativeWidgetAndroid::GetInputMethod() {
267 272 return host_->GetInputMethod();
268 ui::InputMethod* NativeWidgetAura::GetInputMethod() { 273 }
269 if (!window_) 274
270 return nullptr; 275 void NativeWidgetAndroid::CenterWindow(const gfx::Size& size) {
271 aura::Window* root_window = window_->GetRootWindow(); 276 // TODO(bshe): Implement this. See crbug.com/554208.
272 return root_window ? root_window->GetHost()->GetInputMethod() : nullptr; 277 NOTIMPLEMENTED();
273 } 278 }
274 279
275 void NativeWidgetAura::CenterWindow(const gfx::Size& size) { 280 void NativeWidgetAndroid::GetWindowPlacement(
276 if (!window_)
277 return;
278
279 gfx::Rect parent_bounds(window_->parent()->GetBoundsInRootWindow());
280 // When centering window, we take the intersection of the host and
281 // the parent. We assume the root window represents the visible
282 // rect of a single screen.
283 gfx::Rect work_area = gfx::Screen::GetScreenFor(window_)->
284 GetDisplayNearestWindow(window_).work_area();
285
286 aura::client::ScreenPositionClient* screen_position_client =
287 aura::client::GetScreenPositionClient(window_->GetRootWindow());
288 if (screen_position_client) {
289 gfx::Point origin = work_area.origin();
290 screen_position_client->ConvertPointFromScreen(window_->GetRootWindow(),
291 &origin);
292 work_area.set_origin(origin);
293 }
294
295 parent_bounds.Intersect(work_area);
296
297 // If |window_|'s transient parent's bounds are big enough to fit it, then we
298 // center it with respect to the transient parent.
299 if (wm::GetTransientParent(window_)) {
300 gfx::Rect transient_parent_rect =
301 wm::GetTransientParent(window_)->GetBoundsInRootWindow();
302 transient_parent_rect.Intersect(work_area);
303 if (transient_parent_rect.height() >= size.height() &&
304 transient_parent_rect.width() >= size.width())
305 parent_bounds = transient_parent_rect;
306 }
307
308 gfx::Rect window_bounds(
309 parent_bounds.x() + (parent_bounds.width() - size.width()) / 2,
310 parent_bounds.y() + (parent_bounds.height() - size.height()) / 2,
311 size.width(),
312 size.height());
313 // Don't size the window bigger than the parent, otherwise the user may not be
314 // able to close or move it.
315 window_bounds.AdjustToFit(parent_bounds);
316
317 // Convert the bounds back relative to the parent.
318 gfx::Point origin = window_bounds.origin();
319 aura::Window::ConvertPointToTarget(window_->GetRootWindow(),
320 window_->parent(), &origin);
321 window_bounds.set_origin(origin);
322 window_->SetBounds(window_bounds);
323 }
324
325 void NativeWidgetAura::GetWindowPlacement(
326 gfx::Rect* bounds, 281 gfx::Rect* bounds,
327 ui::WindowShowState* show_state) const { 282 ui::WindowShowState* show_state) const {
328 // The interface specifies returning restored bounds, not current bounds. 283 // TODO(bshe): Implement this. See crbug.com/554208.
329 *bounds = GetRestoredBounds(); 284 NOTIMPLEMENTED();
330 *show_state = window_ ? window_->GetProperty(aura::client::kShowStateKey) : 285 }
331 ui::SHOW_STATE_DEFAULT; 286
332 } 287 bool NativeWidgetAndroid::SetWindowTitle(const base::string16& title) {
333 288 if (GetNativeWindow()->title() == title)
334 bool NativeWidgetAura::SetWindowTitle(const base::string16& title) {
335 if (!window_)
336 return false; 289 return false;
337 if (window_->title() == title) 290 GetNativeWindow()->SetTitle(title);
338 return false;
339 window_->SetTitle(title);
340 return true; 291 return true;
341 } 292 }
342 293
343 void NativeWidgetAura::SetWindowIcons(const gfx::ImageSkia& window_icon, 294 void NativeWidgetAndroid::SetWindowIcons(const gfx::ImageSkia& window_icon,
344 const gfx::ImageSkia& app_icon) { 295 const gfx::ImageSkia& app_icon) {
345 // Aura doesn't have window icons. 296 // TODO(bshe): Implement this. See crbug.com/554953.
346 } 297 NOTIMPLEMENTED();
347 298 }
348 void NativeWidgetAura::InitModalType(ui::ModalType modal_type) { 299
349 if (modal_type != ui::MODAL_TYPE_NONE) 300 void NativeWidgetAndroid::InitModalType(ui::ModalType modal_type) {
350 window_->SetProperty(aura::client::kModalKey, modal_type); 301 // TODO(bshe): Implement this. See crbug.com/554208.
351 } 302 NOTIMPLEMENTED();
352 303 }
353 gfx::Rect NativeWidgetAura::GetWindowBoundsInScreen() const { 304
354 return window_ ? window_->GetBoundsInScreen() : gfx::Rect(); 305 gfx::Rect NativeWidgetAndroid::GetWindowBoundsInScreen() const {
355 } 306 return GetNativeWindow()->GetBoundsInScreen();
356 307 }
357 gfx::Rect NativeWidgetAura::GetClientAreaBoundsInScreen() const { 308
309 gfx::Rect NativeWidgetAndroid::GetClientAreaBoundsInScreen() const {
358 // View-to-screen coordinate system transformations depend on this returning 310 // View-to-screen coordinate system transformations depend on this returning
359 // the full window bounds, for example View::ConvertPointToScreen(). 311 // the full window bounds, for example View::ConvertPointToScreen().
360 return window_ ? window_->GetBoundsInScreen() : gfx::Rect(); 312 return GetNativeWindow()->GetBoundsInScreen();
361 } 313 }
362 314
363 gfx::Rect NativeWidgetAura::GetRestoredBounds() const { 315 gfx::Rect NativeWidgetAndroid::GetRestoredBounds() const {
364 if (!window_) 316 // TODO(bshe): Implement this. See crbug.com/554208.
365 return gfx::Rect(); 317 NOTIMPLEMENTED();
366 318 return gfx::Rect();
367 // Restored bounds should only be relevant if the window is minimized, 319 }
368 // maximized, fullscreen or docked. However, in some places the code expects 320
369 // GetRestoredBounds() to return the current window bounds if the window is 321 void NativeWidgetAndroid::SetBounds(const gfx::Rect& bounds) {
370 // not in either state. 322 // TODO(bshe): This may not work. We may need to resize SurfaceView too. See
371 if (IsMinimized() || IsMaximized() || IsFullscreen()) { 323 // crbug.com/554952.
372 // Restore bounds are in screen coordinates, no need to convert. 324 host_->SetBounds(bounds);
373 gfx::Rect* restore_bounds = 325 }
374 window_->GetProperty(aura::client::kRestoreBoundsKey); 326
375 if (restore_bounds) 327 void NativeWidgetAndroid::SetSize(const gfx::Size& size) {
376 return *restore_bounds; 328 gfx::Rect bounds = host_->GetBounds();
377 } 329 SetBounds(gfx::Rect(bounds.origin(), size));
378 gfx::Rect bounds = window_->GetBoundsInScreen(); 330 }
379 if (IsDocked()) { 331
380 // Restore bounds are in screen coordinates, no need to convert. 332 void NativeWidgetAndroid::StackAbove(gfx::NativeView native_view) {
381 gfx::Rect* restore_bounds = 333 // TODO(bshe): Implements window stacking logic. See crbug.com/554047
382 window_->GetProperty(aura::client::kRestoreBoundsKey); 334 NOTIMPLEMENTED();
383 // Use current window horizontal offset origin in order to preserve docked 335 }
384 // alignment but preserve restored size and vertical offset for the time 336
385 // when the |window_| gets undocked. 337 void NativeWidgetAndroid::StackAtTop() {
386 if (restore_bounds) { 338 // TODO(bshe): Implements window stacking logic. See crbug.com/554047
387 bounds.set_size(restore_bounds->size()); 339 NOTIMPLEMENTED();
388 bounds.set_y(restore_bounds->y()); 340 }
389 } 341
390 } 342 void NativeWidgetAndroid::StackBelow(gfx::NativeView native_view) {
391 return bounds; 343 // TODO(bshe): Implements window stacking logic. See crbug.com/554047
392 } 344 NOTIMPLEMENTED();
393 345 }
394 void NativeWidgetAura::SetBounds(const gfx::Rect& bounds) { 346
395 if (!window_) 347 void NativeWidgetAndroid::SetShape(SkRegion* region) {
396 return; 348 GetNativeWindow()->layer()->SetAlphaShape(make_scoped_ptr(region));
397 349 }
398 aura::Window* root = window_->GetRootWindow(); 350
399 if (root) { 351 void NativeWidgetAndroid::Close() {
400 aura::client::ScreenPositionClient* screen_position_client = 352 // TODO(bshe): This might not be right. See crbug.com/554259.
401 aura::client::GetScreenPositionClient(root); 353 DCHECK(ownership_ == Widget::InitParams::WIDGET_OWNS_NATIVE_WIDGET);
402 if (screen_position_client) { 354 GetNativeWindow()->SuppressPaint();
403 gfx::Display dst_display = 355 Hide();
404 gfx::Screen::GetScreenFor(window_)->GetDisplayMatching(bounds); 356 GetNativeWindow()->SetProperty(aura::client::kModalKey, ui::MODAL_TYPE_NONE);
405 screen_position_client->SetBounds(window_, bounds, dst_display);
406 return;
407 }
408 }
409 window_->SetBounds(bounds);
410 }
411
412 void NativeWidgetAura::SetSize(const gfx::Size& size) {
413 if (window_)
414 window_->SetBounds(gfx::Rect(window_->bounds().origin(), size));
415 }
416
417 void NativeWidgetAura::StackAbove(gfx::NativeView native_view) {
418 if (window_ && window_->parent() &&
419 window_->parent() == native_view->parent())
420 window_->parent()->StackChildAbove(window_, native_view);
421 }
422
423 void NativeWidgetAura::StackAtTop() {
424 if (window_)
425 window_->parent()->StackChildAtTop(window_);
426 }
427
428 void NativeWidgetAura::StackBelow(gfx::NativeView native_view) {
429 if (window_ && window_->parent() &&
430 window_->parent() == native_view->parent())
431 window_->parent()->StackChildBelow(window_, native_view);
432 }
433
434 void NativeWidgetAura::SetShape(SkRegion* region) {
435 if (window_)
436 window_->layer()->SetAlphaShape(make_scoped_ptr(region));
437 else
438 delete region;
439 }
440
441 void NativeWidgetAura::Close() {
442 // |window_| may already be deleted by parent window. This can happen
443 // when this widget is child widget or has transient parent
444 // and ownership is WIDGET_OWNS_NATIVE_WIDGET.
445 DCHECK(window_ ||
446 ownership_ == Widget::InitParams::WIDGET_OWNS_NATIVE_WIDGET);
447 if (window_) {
448 window_->SuppressPaint();
449 Hide();
450 window_->SetProperty(aura::client::kModalKey, ui::MODAL_TYPE_NONE);
451 }
452 357
453 if (!close_widget_factory_.HasWeakPtrs()) { 358 if (!close_widget_factory_.HasWeakPtrs()) {
454 base::MessageLoop::current()->PostTask( 359 base::MessageLoop::current()->PostTask(
455 FROM_HERE, 360 FROM_HERE, base::Bind(&NativeWidgetAndroid::CloseNow,
456 base::Bind(&NativeWidgetAura::CloseNow, 361 close_widget_factory_.GetWeakPtr()));
457 close_widget_factory_.GetWeakPtr()));
458 } 362 }
459 } 363 }
460 364
461 void NativeWidgetAura::CloseNow() { 365 void NativeWidgetAndroid::CloseNow() {
366 // TODO(bshe): This might not be right. See crbug.com/554259.
367 host_->RemoveObserver(this);
368 host_.reset();
462 delete window_; 369 delete window_;
463 } 370 }
464 371
465 void NativeWidgetAura::Show() { 372 void NativeWidgetAndroid::Show() {
466 ShowWithWindowState(ui::SHOW_STATE_NORMAL); 373 host_->Show();
467 } 374 GetNativeWindow()->Show();
468 375 }
469 void NativeWidgetAura::Hide() { 376
470 if (window_) 377 void NativeWidgetAndroid::Hide() {
471 window_->Hide(); 378 host_->Hide();
472 } 379 GetNativeWindow()->Hide();
473 380 }
474 void NativeWidgetAura::ShowMaximizedWithBounds( 381
382 void NativeWidgetAndroid::ShowMaximizedWithBounds(
475 const gfx::Rect& restored_bounds) { 383 const gfx::Rect& restored_bounds) {
476 SetRestoreBounds(window_, restored_bounds); 384 NOTIMPLEMENTED();
477 ShowWithWindowState(ui::SHOW_STATE_MAXIMIZED); 385 }
478 } 386
479 387 void NativeWidgetAndroid::ShowWithWindowState(ui::WindowShowState state) {
480 void NativeWidgetAura::ShowWithWindowState(ui::WindowShowState state) { 388 NOTIMPLEMENTED();
481 if (!window_) 389 }
482 return; 390
483 391 bool NativeWidgetAndroid::IsVisible() const {
484 if (state == ui::SHOW_STATE_MAXIMIZED || state == ui::SHOW_STATE_FULLSCREEN || 392 return GetNativeWindow()->IsVisible();
485 state == ui::SHOW_STATE_DOCKED) { 393 }
486 window_->SetProperty(aura::client::kShowStateKey, state); 394
487 } 395 void NativeWidgetAndroid::Activate() {
488 window_->Show(); 396 aura::client::GetActivationClient(host_->window())
489 if (delegate_->CanActivate()) { 397 ->ActivateWindow(GetNativeWindow());
490 if (state != ui::SHOW_STATE_INACTIVE) 398 }
491 Activate(); 399
492 // SetInitialFocus() should be always be called, even for 400 void NativeWidgetAndroid::Deactivate() {
493 // SHOW_STATE_INACTIVE. If the window has to stay inactive, the method will 401 aura::client::GetActivationClient(host_->window())
494 // do the right thing. 402 ->DeactivateWindow(GetNativeWindow());
495 SetInitialFocus(state); 403 }
496 } 404
497 } 405 bool NativeWidgetAndroid::IsActive() const {
498 406 return wm::IsActiveWindow(GetNativeWindow());
499 bool NativeWidgetAura::IsVisible() const { 407 }
500 return window_ && window_->IsVisible(); 408
501 } 409 void NativeWidgetAndroid::SetAlwaysOnTop(bool on_top) {
502 410 GetNativeWindow()->SetProperty(aura::client::kAlwaysOnTopKey, on_top);
503 void NativeWidgetAura::Activate() { 411 }
504 if (!window_) 412
505 return; 413 bool NativeWidgetAndroid::IsAlwaysOnTop() const {
506 414 return GetNativeWindow()->GetProperty(aura::client::kAlwaysOnTopKey);
507 // We don't necessarily have a root window yet. This can happen with 415 }
508 // constrained windows. 416
509 if (window_->GetRootWindow()) { 417 void NativeWidgetAndroid::SetVisibleOnAllWorkspaces(bool always_visible) {
510 aura::client::GetActivationClient(window_->GetRootWindow())->ActivateWindow( 418 // TODO(bshe): Implement this. See crbug.com/554208.
511 window_); 419 NOTIMPLEMENTED();
512 } 420 }
513 if (window_->GetProperty(aura::client::kDrawAttentionKey)) 421
514 window_->SetProperty(aura::client::kDrawAttentionKey, false); 422 void NativeWidgetAndroid::Maximize() {
515 } 423 // TODO(bshe): Implement this. See crbug.com/554208.
516 424 NOTIMPLEMENTED();
517 void NativeWidgetAura::Deactivate() { 425 }
518 if (!window_) 426
519 return; 427 void NativeWidgetAndroid::Minimize() {
520 aura::client::GetActivationClient(window_->GetRootWindow())->DeactivateWindow( 428 // TODO(bshe): Implement this. See crbug.com/554208.
521 window_); 429 NOTIMPLEMENTED();
522 } 430 }
523 431
524 bool NativeWidgetAura::IsActive() const { 432 bool NativeWidgetAndroid::IsMaximized() const {
525 return window_ && wm::IsActiveWindow(window_); 433 // TODO(bshe): Implement this. See crbug.com/554208.
526 } 434 NOTIMPLEMENTED();
527 435 return false;
528 void NativeWidgetAura::SetAlwaysOnTop(bool on_top) { 436 }
529 if (window_) 437
530 window_->SetProperty(aura::client::kAlwaysOnTopKey, on_top); 438 bool NativeWidgetAndroid::IsMinimized() const {
531 } 439 // TODO(bshe): Implement this. See crbug.com/554208.
532 440 NOTIMPLEMENTED();
533 bool NativeWidgetAura::IsAlwaysOnTop() const { 441 return false;
534 return window_ && window_->GetProperty(aura::client::kAlwaysOnTopKey); 442 }
535 } 443
536 444 void NativeWidgetAndroid::Restore() {
537 void NativeWidgetAura::SetVisibleOnAllWorkspaces(bool always_visible) { 445 // TODO(bshe): Implement this. See crbug.com/554208.
538 // Not implemented on chromeos or for child widgets. 446 NOTIMPLEMENTED();
539 } 447 }
540 448
541 void NativeWidgetAura::Maximize() { 449 void NativeWidgetAndroid::SetFullscreen(bool fullscreen) {
542 if (window_) 450 // TODO(bshe): Implement this. See crbug.com/554208.
543 window_->SetProperty(aura::client::kShowStateKey, ui::SHOW_STATE_MAXIMIZED); 451 NOTIMPLEMENTED();
544 } 452 }
545 453
546 void NativeWidgetAura::Minimize() { 454 bool NativeWidgetAndroid::IsFullscreen() const {
547 if (window_) 455 // TODO(bshe): Implement this. See crbug.com/554208.
548 window_->SetProperty(aura::client::kShowStateKey, ui::SHOW_STATE_MINIMIZED); 456 NOTIMPLEMENTED();
549 } 457 return false;
550 458 }
551 bool NativeWidgetAura::IsMaximized() const { 459
552 return window_ && window_->GetProperty(aura::client::kShowStateKey) == 460 void NativeWidgetAndroid::SetOpacity(unsigned char opacity) {
553 ui::SHOW_STATE_MAXIMIZED; 461 GetNativeWindow()->layer()->SetOpacity(opacity / 255.0);
554 } 462 }
555 463
556 bool NativeWidgetAura::IsMinimized() const { 464 void NativeWidgetAndroid::SetUseDragFrame(bool use_drag_frame) {
557 return window_ && window_->GetProperty(aura::client::kShowStateKey) == 465 NOTIMPLEMENTED();
558 ui::SHOW_STATE_MINIMIZED; 466 }
559 } 467
560 468 void NativeWidgetAndroid::FlashFrame(bool flash) {
561 void NativeWidgetAura::Restore() { 469 NOTIMPLEMENTED();
562 if (window_) 470 }
563 window_->SetProperty(aura::client::kShowStateKey, ui::SHOW_STATE_NORMAL); 471
564 } 472 void NativeWidgetAndroid::RunShellDrag(
565 473 View* view,
566 void NativeWidgetAura::SetFullscreen(bool fullscreen) { 474 const ui::OSExchangeData& data,
567 if (!window_ || IsFullscreen() == fullscreen) 475 const gfx::Point& location,
568 return; // Nothing to do. 476 int operation,
569 477 ui::DragDropTypes::DragEventSource source) {
570 // Save window state before entering full screen so that it could restored 478 NOTIMPLEMENTED();
571 // when exiting full screen. 479 }
572 if (fullscreen) 480
573 saved_window_state_ = window_->GetProperty(aura::client::kShowStateKey); 481 void NativeWidgetAndroid::SchedulePaintInRect(const gfx::Rect& rect) {
574 482 GetNativeWindow()->SchedulePaintInRect(rect);
575 window_->SetProperty( 483 }
576 aura::client::kShowStateKey, 484
577 fullscreen ? ui::SHOW_STATE_FULLSCREEN : saved_window_state_); 485 void NativeWidgetAndroid::SetCursor(gfx::NativeCursor cursor) {
578 }
579
580 bool NativeWidgetAura::IsFullscreen() const {
581 return window_ && window_->GetProperty(aura::client::kShowStateKey) ==
582 ui::SHOW_STATE_FULLSCREEN;
583 }
584
585 void NativeWidgetAura::SetOpacity(unsigned char opacity) {
586 if (window_)
587 window_->layer()->SetOpacity(opacity / 255.0);
588 }
589
590 void NativeWidgetAura::SetUseDragFrame(bool use_drag_frame) {
591 NOTIMPLEMENTED();
592 }
593
594 void NativeWidgetAura::FlashFrame(bool flash) {
595 if (window_)
596 window_->SetProperty(aura::client::kDrawAttentionKey, flash);
597 }
598
599 void NativeWidgetAura::RunShellDrag(View* view,
600 const ui::OSExchangeData& data,
601 const gfx::Point& location,
602 int operation,
603 ui::DragDropTypes::DragEventSource source) {
604 if (window_)
605 views::RunShellDrag(window_, data, location, operation, source);
606 }
607
608 void NativeWidgetAura::SchedulePaintInRect(const gfx::Rect& rect) {
609 if (window_)
610 window_->SchedulePaintInRect(rect);
611 }
612
613 void NativeWidgetAura::SetCursor(gfx::NativeCursor cursor) {
614 cursor_ = cursor; 486 cursor_ = cursor;
615 aura::client::CursorClient* cursor_client = 487 aura::client::CursorClient* cursor_client =
616 aura::client::GetCursorClient(window_->GetRootWindow()); 488 aura::client::GetCursorClient(host_->window());
617 if (cursor_client) 489 if (cursor_client)
618 cursor_client->SetCursor(cursor); 490 cursor_client->SetCursor(cursor);
619 } 491 }
620 492
621 bool NativeWidgetAura::IsMouseEventsEnabled() const { 493 bool NativeWidgetAndroid::IsMouseEventsEnabled() const {
622 if (!window_)
623 return false;
624 aura::client::CursorClient* cursor_client = 494 aura::client::CursorClient* cursor_client =
625 aura::client::GetCursorClient(window_->GetRootWindow()); 495 aura::client::GetCursorClient(host_->window());
626 return cursor_client ? cursor_client->IsMouseEventsEnabled() : true; 496 return cursor_client ? cursor_client->IsMouseEventsEnabled() : true;
627 } 497 }
628 498
629 void NativeWidgetAura::ClearNativeFocus() { 499 void NativeWidgetAndroid::ClearNativeFocus() {
630 aura::client::FocusClient* client = aura::client::GetFocusClient(window_); 500 aura::client::FocusClient* client = aura::client::GetFocusClient(window_);
631 if (window_ && client && window_->Contains(client->GetFocusedWindow())) 501 if (client && window_->Contains(client->GetFocusedWindow()))
632 client->ResetFocusWithinActiveWindow(window_); 502 client->ResetFocusWithinActiveWindow(window_);
633 } 503 }
634 504
635 gfx::Rect NativeWidgetAura::GetWorkAreaBoundsInScreen() const { 505 gfx::Rect NativeWidgetAndroid::GetWorkAreaBoundsInScreen() const {
636 if (!window_) 506 return gfx::Screen::GetScreenFor(window_)
637 return gfx::Rect(); 507 ->GetDisplayNearestWindow(window_)
638 return gfx::Screen::GetScreenFor(window_)-> 508 .work_area();
639 GetDisplayNearestWindow(window_).work_area(); 509 }
640 } 510
641 511 Widget::MoveLoopResult NativeWidgetAndroid::RunMoveLoop(
642 Widget::MoveLoopResult NativeWidgetAura::RunMoveLoop(
643 const gfx::Vector2d& drag_offset, 512 const gfx::Vector2d& drag_offset,
644 Widget::MoveLoopSource source, 513 Widget::MoveLoopSource source,
645 Widget::MoveLoopEscapeBehavior escape_behavior) { 514 Widget::MoveLoopEscapeBehavior escape_behavior) {
646 // |escape_behavior| is only needed on windows when running the native message 515 // TODO(bshe): Implement this. See crbug.com/554208.
647 // loop. 516 NOTIMPLEMENTED();
648 if (!window_ || !window_->GetRootWindow()) 517 return Widget::MOVE_LOOP_SUCCESSFUL;
649 return Widget::MOVE_LOOP_CANCELED; 518 }
650 aura::client::WindowMoveClient* move_client = 519
651 aura::client::GetWindowMoveClient(window_->GetRootWindow()); 520 void NativeWidgetAndroid::EndMoveLoop() {
652 if (!move_client) 521 // TODO(bshe): Implement this. See crbug.com/554208.
653 return Widget::MOVE_LOOP_CANCELED; 522 NOTIMPLEMENTED();
654 523 }
655 SetCapture(); 524
656 aura::client::WindowMoveSource window_move_source = 525 void NativeWidgetAndroid::SetVisibilityChangedAnimationsEnabled(bool value) {
657 source == Widget::MOVE_LOOP_SOURCE_MOUSE ? 526 GetNativeWindow()->SetProperty(aura::client::kAnimationsDisabledKey, !value);
658 aura::client::WINDOW_MOVE_SOURCE_MOUSE : 527 }
659 aura::client::WINDOW_MOVE_SOURCE_TOUCH; 528
660 if (move_client->RunMoveLoop(window_, drag_offset, window_move_source) == 529 void NativeWidgetAndroid::SetVisibilityAnimationDuration(
661 aura::client::MOVE_SUCCESSFUL) {
662 return Widget::MOVE_LOOP_SUCCESSFUL;
663 }
664 return Widget::MOVE_LOOP_CANCELED;
665 }
666
667 void NativeWidgetAura::EndMoveLoop() {
668 if (!window_ || !window_->GetRootWindow())
669 return;
670 aura::client::WindowMoveClient* move_client =
671 aura::client::GetWindowMoveClient(window_->GetRootWindow());
672 if (move_client)
673 move_client->EndMoveLoop();
674 }
675
676 void NativeWidgetAura::SetVisibilityChangedAnimationsEnabled(bool value) {
677 if (window_)
678 window_->SetProperty(aura::client::kAnimationsDisabledKey, !value);
679 }
680
681 void NativeWidgetAura::SetVisibilityAnimationDuration(
682 const base::TimeDelta& duration) { 530 const base::TimeDelta& duration) {
683 wm::SetWindowVisibilityAnimationDuration(window_, duration); 531 wm::SetWindowVisibilityAnimationDuration(GetNativeWindow(), duration);
684 } 532 }
685 533
686 void NativeWidgetAura::SetVisibilityAnimationTransition( 534 void NativeWidgetAndroid::SetVisibilityAnimationTransition(
687 Widget::VisibilityTransition transition) { 535 Widget::VisibilityTransition transition) {
688 wm::WindowVisibilityAnimationTransition wm_transition = wm::ANIMATE_NONE; 536 wm::WindowVisibilityAnimationTransition wm_transition = wm::ANIMATE_NONE;
689 switch (transition) { 537 switch (transition) {
690 case Widget::ANIMATE_SHOW: 538 case Widget::ANIMATE_SHOW:
691 wm_transition = wm::ANIMATE_SHOW; 539 wm_transition = wm::ANIMATE_SHOW;
692 break; 540 break;
693 case Widget::ANIMATE_HIDE: 541 case Widget::ANIMATE_HIDE:
694 wm_transition = wm::ANIMATE_HIDE; 542 wm_transition = wm::ANIMATE_HIDE;
695 break; 543 break;
696 case Widget::ANIMATE_BOTH: 544 case Widget::ANIMATE_BOTH:
697 wm_transition = wm::ANIMATE_BOTH; 545 wm_transition = wm::ANIMATE_BOTH;
698 break; 546 break;
699 case Widget::ANIMATE_NONE: 547 case Widget::ANIMATE_NONE:
700 wm_transition = wm::ANIMATE_NONE; 548 wm_transition = wm::ANIMATE_NONE;
701 break; 549 break;
702 } 550 }
703 wm::SetWindowVisibilityAnimationTransition(window_, wm_transition); 551 wm::SetWindowVisibilityAnimationTransition(GetNativeWindow(), wm_transition);
704 } 552 }
705 553
706 ui::NativeTheme* NativeWidgetAura::GetNativeTheme() const { 554 ui::NativeTheme* NativeWidgetAndroid::GetNativeTheme() const {
707 #if !defined(OS_CHROMEOS) && !defined(OS_ANDROID)
708 return DesktopWindowTreeHost::GetNativeTheme(window_);
709 #else
710 return ui::NativeThemeAura::instance(); 555 return ui::NativeThemeAura::instance();
711 #endif
712 } 556 }
713 557
714 void NativeWidgetAura::OnRootViewLayout() { 558 void NativeWidgetAndroid::OnRootViewLayout() {
559 NOTIMPLEMENTED();
715 } 560 }
716 561
717 bool NativeWidgetAura::IsTranslucentWindowOpacitySupported() const { 562 bool NativeWidgetAndroid::IsTranslucentWindowOpacitySupported() const {
718 return true; 563 return true;
719 } 564 }
720 565
721 void NativeWidgetAura::OnSizeConstraintsChanged() { 566 void NativeWidgetAndroid::OnSizeConstraintsChanged() {
722 window_->SetProperty(aura::client::kCanMaximizeKey, 567 window_->SetProperty(aura::client::kCanMaximizeKey,
723 GetWidget()->widget_delegate()->CanMaximize()); 568 GetWidget()->widget_delegate()->CanMaximize());
724 window_->SetProperty(aura::client::kCanMinimizeKey, 569 window_->SetProperty(aura::client::kCanMinimizeKey,
725 GetWidget()->widget_delegate()->CanMinimize()); 570 GetWidget()->widget_delegate()->CanMinimize());
726 window_->SetProperty(aura::client::kCanResizeKey, 571 window_->SetProperty(aura::client::kCanResizeKey,
727 GetWidget()->widget_delegate()->CanResize()); 572 GetWidget()->widget_delegate()->CanResize());
728 } 573 }
729 574
730 void NativeWidgetAura::RepostNativeEvent(gfx::NativeEvent native_event) { 575 void NativeWidgetAndroid::RepostNativeEvent(gfx::NativeEvent native_event) {
731 OnEvent(native_event); 576 OnEvent(native_event);
732 } 577 }
733 578
734 //////////////////////////////////////////////////////////////////////////////// 579 ////////////////////////////////////////////////////////////////////////////////
735 // NativeWidgetAura, aura::WindowDelegate implementation: 580 // NativeWidgetAndroid, aura::WindowDelegate implementation:
736 581
737 gfx::Size NativeWidgetAura::GetMinimumSize() const { 582 gfx::Size NativeWidgetAndroid::GetMinimumSize() const {
738 return delegate_->GetMinimumSize(); 583 return delegate_->GetMinimumSize();
739 } 584 }
740 585
741 gfx::Size NativeWidgetAura::GetMaximumSize() const { 586 gfx::Size NativeWidgetAndroid::GetMaximumSize() const {
742 // If a window have a maximum size, the window should not be 587 // If a window have a maximum size, the window should not be
743 // maximizable. 588 // maximizable.
744 DCHECK(delegate_->GetMaximumSize().IsEmpty() || 589 DCHECK(delegate_->GetMaximumSize().IsEmpty() ||
745 !window_->GetProperty(aura::client::kCanMaximizeKey)); 590 !window_->GetProperty(aura::client::kCanMaximizeKey));
746 return delegate_->GetMaximumSize(); 591 return delegate_->GetMaximumSize();
747 } 592 }
748 593
749 void NativeWidgetAura::OnBoundsChanged(const gfx::Rect& old_bounds, 594 void NativeWidgetAndroid::OnBoundsChanged(const gfx::Rect& old_bounds,
750 const gfx::Rect& new_bounds) { 595 const gfx::Rect& new_bounds) {
751 // Assume that if the old bounds was completely empty a move happened. This 596 // Assume that if the old bounds was completely empty a move happened. This
752 // handles the case of a maximize animation acquiring the layer (acquiring a 597 // handles the case of a maximize animation acquiring the layer (acquiring a
753 // layer results in clearing the bounds). 598 // layer results in clearing the bounds).
754 if (old_bounds.origin() != new_bounds.origin() || 599 if (old_bounds.origin() != new_bounds.origin() ||
755 (old_bounds == gfx::Rect(0, 0, 0, 0) && !new_bounds.IsEmpty())) { 600 (old_bounds == gfx::Rect(0, 0, 0, 0) && !new_bounds.IsEmpty())) {
756 delegate_->OnNativeWidgetMove(); 601 delegate_->OnNativeWidgetMove();
757 } 602 }
758 if (old_bounds.size() != new_bounds.size()) 603 if (old_bounds.size() != new_bounds.size())
759 delegate_->OnNativeWidgetSizeChanged(new_bounds.size()); 604 delegate_->OnNativeWidgetSizeChanged(new_bounds.size());
760 } 605 }
761 606
762 gfx::NativeCursor NativeWidgetAura::GetCursor(const gfx::Point& point) { 607 gfx::NativeCursor NativeWidgetAndroid::GetCursor(const gfx::Point& point) {
763 return cursor_; 608 return cursor_;
764 } 609 }
765 610
766 int NativeWidgetAura::GetNonClientComponent(const gfx::Point& point) const { 611 int NativeWidgetAndroid::GetNonClientComponent(const gfx::Point& point) const {
767 return delegate_->GetNonClientComponent(point); 612 return delegate_->GetNonClientComponent(point);
768 } 613 }
769 614
770 bool NativeWidgetAura::ShouldDescendIntoChildForEventHandling( 615 bool NativeWidgetAndroid::ShouldDescendIntoChildForEventHandling(
771 aura::Window* child, 616 aura::Window* child,
772 const gfx::Point& location) { 617 const gfx::Point& location) {
773 views::WidgetDelegate* widget_delegate = GetWidget()->widget_delegate(); 618 views::WidgetDelegate* widget_delegate = GetWidget()->widget_delegate();
774 if (widget_delegate && 619 if (widget_delegate &&
775 !widget_delegate->ShouldDescendIntoChildForEventHandling(child, location)) 620 !widget_delegate->ShouldDescendIntoChildForEventHandling(child, location))
776 return false; 621 return false;
777 622
778 // Don't descend into |child| if there is a view with a Layer that contains 623 // Don't descend into |child| if there is a view with a Layer that contains
779 // the point and is stacked above |child|s layer. 624 // the point and is stacked above |child|s layer.
780 typedef std::vector<ui::Layer*> Layers; 625 typedef std::vector<ui::Layer*> Layers;
781 const Layers& root_layers(delegate_->GetRootLayers()); 626 const Layers& root_layers(delegate_->GetRootLayers());
782 if (root_layers.empty()) 627 if (root_layers.empty())
(...skipping 12 matching lines...) Expand all
795 Layers::const_iterator root_layer_iter( 640 Layers::const_iterator root_layer_iter(
796 std::find(window_->layer()->children().begin(), 641 std::find(window_->layer()->children().begin(),
797 window_->layer()->children().end(), layer)); 642 window_->layer()->children().end(), layer));
798 if (root_layer_iter > child_layer_iter) 643 if (root_layer_iter > child_layer_iter)
799 return false; 644 return false;
800 } 645 }
801 } 646 }
802 return true; 647 return true;
803 } 648 }
804 649
805 bool NativeWidgetAura::CanFocus() { 650 bool NativeWidgetAndroid::CanFocus() {
806 return ShouldActivate(); 651 return ShouldActivate();
807 } 652 }
808 653
809 void NativeWidgetAura::OnCaptureLost() { 654 void NativeWidgetAndroid::OnCaptureLost() {
810 delegate_->OnMouseCaptureLost(); 655 delegate_->OnMouseCaptureLost();
811 } 656 }
812 657
813 void NativeWidgetAura::OnPaint(const ui::PaintContext& context) { 658 void NativeWidgetAndroid::OnPaint(const ui::PaintContext& context) {
814 delegate_->OnNativeWidgetPaint(context); 659 delegate_->OnNativeWidgetPaint(context);
815 } 660 }
816 661
817 void NativeWidgetAura::OnDeviceScaleFactorChanged(float device_scale_factor) { 662 void NativeWidgetAndroid::OnDeviceScaleFactorChanged(
663 float device_scale_factor) {
818 GetWidget()->DeviceScaleFactorChanged(device_scale_factor); 664 GetWidget()->DeviceScaleFactorChanged(device_scale_factor);
819 } 665 }
820 666
821 void NativeWidgetAura::OnWindowDestroying(aura::Window* window) { 667 void NativeWidgetAndroid::OnWindowDestroying(aura::Window* window) {
822 window_->RemoveObserver(this);
823 delegate_->OnNativeWidgetDestroying(); 668 delegate_->OnNativeWidgetDestroying();
824 669
825 // If the aura::Window is destroyed, we can no longer show tooltips. 670 // If the aura::Window is destroyed, we can no longer show tooltips.
826 tooltip_manager_.reset(); 671 tooltip_manager_.reset();
827 } 672 }
828 673
829 void NativeWidgetAura::OnWindowDestroyed(aura::Window* window) { 674 void NativeWidgetAndroid::OnWindowDestroyed(aura::Window* window) {
830 window_ = NULL; 675 window_ = nullptr;
831 delegate_->OnNativeWidgetDestroyed(); 676 delegate_->OnNativeWidgetDestroyed();
832 if (ownership_ == Widget::InitParams::NATIVE_WIDGET_OWNS_WIDGET) 677 if (ownership_ == Widget::InitParams::NATIVE_WIDGET_OWNS_WIDGET)
833 delete this; 678 delete this;
834 } 679 }
835 680
836 void NativeWidgetAura::OnWindowTargetVisibilityChanged(bool visible) { 681 void NativeWidgetAndroid::OnWindowTargetVisibilityChanged(bool visible) {
837 delegate_->OnNativeWidgetVisibilityChanged(visible); 682 delegate_->OnNativeWidgetVisibilityChanged(visible);
838 } 683 }
839 684
840 bool NativeWidgetAura::HasHitTestMask() const { 685 bool NativeWidgetAndroid::HasHitTestMask() const {
841 return delegate_->HasHitTestMask(); 686 return delegate_->HasHitTestMask();
842 } 687 }
843 688
844 void NativeWidgetAura::GetHitTestMask(gfx::Path* mask) const { 689 void NativeWidgetAndroid::GetHitTestMask(gfx::Path* mask) const {
845 DCHECK(mask); 690 DCHECK(mask);
846 delegate_->GetHitTestMask(mask); 691 delegate_->GetHitTestMask(mask);
847 } 692 }
848 693
849 //////////////////////////////////////////////////////////////////////////////// 694 ////////////////////////////////////////////////////////////////////////////////
850 // NativeWidgetAura, aura::WindowObserver implementation: 695 // NativeWidgetAndroid, ui::EventHandler implementation:
851 696
852 void NativeWidgetAura::OnWindowPropertyChanged(aura::Window* window, 697 void NativeWidgetAndroid::OnKeyEvent(ui::KeyEvent* event) {
853 const void* key,
854 intptr_t old) {
855 if (key == aura::client::kShowStateKey)
856 delegate_->OnNativeWidgetWindowShowStateChanged();
857 }
858
859 ////////////////////////////////////////////////////////////////////////////////
860 // NativeWidgetAura, ui::EventHandler implementation:
861
862 void NativeWidgetAura::OnKeyEvent(ui::KeyEvent* event) {
863 DCHECK(window_); 698 DCHECK(window_);
864 // Renderer may send a key event back to us if the key event wasn't handled, 699 // Renderer may send a key event back to us if the key event wasn't handled,
865 // and the window may be invisible by that time. 700 // and the window may be invisible by that time.
866 if (!window_->IsVisible()) 701 if (!window_->IsVisible())
867 return; 702 return;
868 703
869 FocusManager* focus_manager = GetWidget()->GetFocusManager(); 704 FocusManager* focus_manager = GetWidget()->GetFocusManager();
870 delegate_->OnKeyEvent(event); 705 delegate_->OnKeyEvent(event);
871 if (!event->handled() && focus_manager) 706 if (!event->handled() && focus_manager)
872 focus_manager->OnKeyEvent(*event); 707 focus_manager->OnKeyEvent(*event);
873 event->SetHandled(); 708 event->SetHandled();
874 } 709 }
875 710
876 void NativeWidgetAura::OnMouseEvent(ui::MouseEvent* event) { 711 void NativeWidgetAndroid::OnMouseEvent(ui::MouseEvent* event) {
877 DCHECK(window_); 712 DCHECK(window_);
878 DCHECK(window_->IsVisible()); 713 DCHECK(window_->IsVisible());
879 if (event->type() == ui::ET_MOUSEWHEEL) { 714 if (event->type() == ui::ET_MOUSEWHEEL) {
880 delegate_->OnMouseEvent(event); 715 delegate_->OnMouseEvent(event);
881 if (event->handled()) 716 if (event->handled())
882 return; 717 return;
883 } 718 }
884 719
885 if (tooltip_manager_.get()) 720 if (tooltip_manager_.get())
886 tooltip_manager_->UpdateTooltip(); 721 tooltip_manager_->UpdateTooltip();
887 TooltipManagerAura::UpdateTooltipManagerForCapture(GetWidget()); 722 TooltipManagerAura::UpdateTooltipManagerForCapture(GetWidget());
888 delegate_->OnMouseEvent(event); 723 delegate_->OnMouseEvent(event);
889 } 724 }
890 725
891 void NativeWidgetAura::OnScrollEvent(ui::ScrollEvent* event) { 726 void NativeWidgetAndroid::OnScrollEvent(ui::ScrollEvent* event) {
892 delegate_->OnScrollEvent(event); 727 delegate_->OnScrollEvent(event);
893 } 728 }
894 729
895 void NativeWidgetAura::OnGestureEvent(ui::GestureEvent* event) { 730 void NativeWidgetAndroid::OnGestureEvent(ui::GestureEvent* event) {
896 DCHECK(window_); 731 DCHECK(window_);
897 DCHECK(window_->IsVisible() || event->IsEndingEvent()); 732 DCHECK(window_->IsVisible() || event->IsEndingEvent());
898 delegate_->OnGestureEvent(event); 733 delegate_->OnGestureEvent(event);
899 } 734 }
900 735
901 //////////////////////////////////////////////////////////////////////////////// 736 ////////////////////////////////////////////////////////////////////////////////
902 // NativeWidgetAura, aura::client::ActivationDelegate implementation: 737 // NativeWidgetAndroid, aura::client::ActivationDelegate implementation:
903 738
904 bool NativeWidgetAura::ShouldActivate() const { 739 bool NativeWidgetAndroid::ShouldActivate() const {
905 return delegate_->CanActivate(); 740 return delegate_->CanActivate();
906 } 741 }
907 742
908 //////////////////////////////////////////////////////////////////////////////// 743 ////////////////////////////////////////////////////////////////////////////////
909 // NativeWidgetAura, aura::client::ActivationChangeObserver implementation: 744 // NativeWidgetAndroid, aura::client::ActivationChangeObserver
745 // implementation:
910 746
911 void NativeWidgetAura::OnWindowActivated( 747 void NativeWidgetAndroid::OnWindowActivated(
912 aura::client::ActivationChangeObserver::ActivationReason, 748 aura::client::ActivationChangeObserver::ActivationReason,
913 aura::Window* gained_active, 749 aura::Window* gained_active,
914 aura::Window* lost_active) { 750 aura::Window* lost_active) {
915 DCHECK(window_ == gained_active || window_ == lost_active); 751 DCHECK(window_ == gained_active || window_ == lost_active);
916 if (GetWidget()->GetFocusManager()) { 752 if (GetWidget()->GetFocusManager()) {
917 if (window_ == gained_active) 753 if (window_ == gained_active)
918 GetWidget()->GetFocusManager()->RestoreFocusedView(); 754 GetWidget()->GetFocusManager()->RestoreFocusedView();
919 else if (window_ == lost_active) 755 else if (window_ == lost_active)
920 GetWidget()->GetFocusManager()->StoreFocusedView(true); 756 GetWidget()->GetFocusManager()->StoreFocusedView(true);
921 } 757 }
922 delegate_->OnNativeWidgetActivationChanged(window_ == gained_active); 758 delegate_->OnNativeWidgetActivationChanged(window_ == gained_active);
923 } 759 }
924 760
925 //////////////////////////////////////////////////////////////////////////////// 761 ////////////////////////////////////////////////////////////////////////////////
926 // NativeWidgetAura, aura::client::FocusChangeObserver: 762 // NativeWidgetAndroid, aura::client::FocusChangeObserver:
927 763
928 void NativeWidgetAura::OnWindowFocused(aura::Window* gained_focus, 764 void NativeWidgetAndroid::OnWindowFocused(aura::Window* gained_focus,
929 aura::Window* lost_focus) { 765 aura::Window* lost_focus) {
930 if (window_ == gained_focus) 766 if (window_ == gained_focus)
931 delegate_->OnNativeFocus(); 767 delegate_->OnNativeFocus();
932 else if (window_ == lost_focus) 768 else if (window_ == lost_focus)
933 delegate_->OnNativeBlur(); 769 delegate_->OnNativeBlur();
934 } 770 }
935 771
936 //////////////////////////////////////////////////////////////////////////////// 772 ////////////////////////////////////////////////////////////////////////////////
937 // NativeWidgetAura, aura::WindowDragDropDelegate implementation: 773 // NativeWidgetAndroid, aura::WindowDragDropDelegate implementation:
938 774
939 void NativeWidgetAura::OnDragEntered(const ui::DropTargetEvent& event) { 775 void NativeWidgetAndroid::OnDragEntered(const ui::DropTargetEvent& event) {
940 DCHECK(drop_helper_.get() != NULL); 776 // TODO: Implement drag and drop. crbug.com/554029.
941 last_drop_operation_ = drop_helper_->OnDragOver(event.data(), 777 NOTIMPLEMENTED();
942 event.location(), event.source_operations());
943 } 778 }
944 779
945 int NativeWidgetAura::OnDragUpdated(const ui::DropTargetEvent& event) { 780 int NativeWidgetAndroid::OnDragUpdated(const ui::DropTargetEvent& event) {
946 DCHECK(drop_helper_.get() != NULL); 781 // TODO: Implement drag and drop. crbug.com/554029.
947 last_drop_operation_ = drop_helper_->OnDragOver(event.data(), 782 NOTIMPLEMENTED();
948 event.location(), event.source_operations()); 783 return 0;
949 return last_drop_operation_;
950 } 784 }
951 785
952 void NativeWidgetAura::OnDragExited() { 786 void NativeWidgetAndroid::OnDragExited() {
953 DCHECK(drop_helper_.get() != NULL); 787 // TODO: Implement drag and drop. crbug.com/554029.
954 drop_helper_->OnDragExit(); 788 NOTIMPLEMENTED();
955 } 789 }
956 790
957 int NativeWidgetAura::OnPerformDrop(const ui::DropTargetEvent& event) { 791 int NativeWidgetAndroid::OnPerformDrop(const ui::DropTargetEvent& event) {
958 DCHECK(drop_helper_.get() != NULL); 792 // TODO: Implement drag and drop. crbug.com/554029.
959 return drop_helper_->OnDrop(event.data(), event.location(), 793 NOTIMPLEMENTED();
960 last_drop_operation_); 794 return 0;
961 } 795 }
962 796
963 //////////////////////////////////////////////////////////////////////////////// 797 ////////////////////////////////////////////////////////////////////////////////
964 // NativeWidgetAura, protected: 798 // NativeWidgetAndroid, aura::WindowTreeHostObserver implementation:
965 799
966 NativeWidgetAura::~NativeWidgetAura() { 800 void NativeWidgetAndroid::OnHostCloseRequested(
801 const aura::WindowTreeHost* host) {
802 GetWidget()->Close();
803 }
804
805 void NativeWidgetAndroid::OnHostResized(const aura::WindowTreeHost* host) {
806 gfx::Rect new_bounds = gfx::Rect(host_->window()->bounds().size());
807 GetNativeWindow()->SetBounds(new_bounds);
808 delegate_->OnNativeWidgetSizeChanged(new_bounds.size());
809 }
810
811 void NativeWidgetAndroid::OnHostMoved(const aura::WindowTreeHost* host,
812 const gfx::Point& new_origin) {
813 TRACE_EVENT1("views", "NativeWidgetAndroid::OnHostMoved", "new_origin",
814 new_origin.ToString());
815
816 delegate_->OnNativeWidgetMove();
817 }
818
819 ////////////////////////////////////////////////////////////////////////////////
820 // NativeWidgetAndroid, protected:
821
822 NativeWidgetAndroid::~NativeWidgetAndroid() {
967 destroying_ = true; 823 destroying_ = true;
968 if (ownership_ == Widget::InitParams::NATIVE_WIDGET_OWNS_WIDGET) 824 if (ownership_ == Widget::InitParams::NATIVE_WIDGET_OWNS_WIDGET)
969 delete delegate_; 825 delete delegate_;
970 else 826 else
971 CloseNow(); 827 CloseNow();
972 } 828 }
973 829
974 //////////////////////////////////////////////////////////////////////////////// 830 ////////////////////////////////////////////////////////////////////////////////
975 // NativeWidgetAura, private: 831 // NativeWidgetAndroid, private:
976 832
977 bool NativeWidgetAura::IsDocked() const { 833 bool NativeWidgetAndroid::IsDocked() const {
978 return window_ && 834 NOTIMPLEMENTED();
979 window_->GetProperty(aura::client::kShowStateKey) == 835 return false;
980 ui::SHOW_STATE_DOCKED;
981 } 836 }
982 837
983 void NativeWidgetAura::SetInitialFocus(ui::WindowShowState show_state) { 838 void NativeWidgetAndroid::SetInitialFocus(ui::WindowShowState show_state) {
984 // The window does not get keyboard messages unless we focus it. 839 // The window does not get keyboard messages unless we focus it.
985 if (!GetWidget()->SetInitialFocus(show_state)) 840 if (!GetWidget()->SetInitialFocus(show_state))
986 window_->Focus(); 841 window_->Focus();
987 } 842 }
988 843
989 ////////////////////////////////////////////////////////////////////////////////
990 // Widget, public:
991
992 namespace {
993 #if defined(OS_WIN) || (defined(USE_X11) && !defined(OS_CHROMEOS))
994 void CloseWindow(aura::Window* window) {
995 if (window) {
996 Widget* widget = Widget::GetWidgetForNativeView(window);
997 if (widget && widget->is_secondary_widget())
998 // To avoid the delay in shutdown caused by using Close which may wait
999 // for animations, use CloseNow. Because this is only used on secondary
1000 // widgets it seems relatively safe to skip the extra processing of
1001 // Close.
1002 widget->CloseNow();
1003 }
1004 }
1005 #endif
1006
1007 #if defined(OS_WIN)
1008 BOOL CALLBACK WindowCallbackProc(HWND hwnd, LPARAM lParam) {
1009 aura::Window* root_window =
1010 DesktopWindowTreeHostWin::GetContentWindowForHWND(hwnd);
1011 CloseWindow(root_window);
1012 return TRUE;
1013 }
1014 #endif
1015 } // namespace
1016
1017 // static
1018 void Widget::CloseAllSecondaryWidgets() {
1019 #if defined(OS_WIN)
1020 EnumThreadWindows(GetCurrentThreadId(), WindowCallbackProc, 0);
1021 #endif
1022
1023 #if defined(USE_X11) && !defined(OS_CHROMEOS)
1024 DesktopWindowTreeHostX11::CleanUpWindowList(CloseWindow);
1025 #endif
1026 }
1027
1028 bool Widget::ConvertRect(const Widget* source,
1029 const Widget* target,
1030 gfx::Rect* rect) {
1031 return false;
1032 }
1033
1034 namespace internal {
1035
1036 ////////////////////////////////////////////////////////////////////////////////
1037 // internal::NativeWidgetPrivate, public:
1038
1039 // static
1040 NativeWidgetPrivate* NativeWidgetPrivate::CreateNativeWidget(
1041 internal::NativeWidgetDelegate* delegate) {
1042 return new NativeWidgetAura(delegate);
1043 }
1044
1045 // static
1046 NativeWidgetPrivate* NativeWidgetPrivate::GetNativeWidgetForNativeView(
1047 gfx::NativeView native_view) {
1048 // Cast must match type supplied to RegisterNativeWidgetForWindow().
1049 return reinterpret_cast<NativeWidgetPrivate*>(native_view->user_data());
1050 }
1051
1052 // static
1053 NativeWidgetPrivate* NativeWidgetPrivate::GetNativeWidgetForNativeWindow(
1054 gfx::NativeWindow native_window) {
1055 // Cast must match type supplied to RegisterNativeWidgetForWindow().
1056 return reinterpret_cast<NativeWidgetPrivate*>(native_window->user_data());
1057 }
1058
1059 // static
1060 NativeWidgetPrivate* NativeWidgetPrivate::GetTopLevelNativeWidget(
1061 gfx::NativeView native_view) {
1062 aura::Window* window = native_view;
1063 NativeWidgetPrivate* top_level_native_widget = NULL;
1064 while (window) {
1065 NativeWidgetPrivate* native_widget = GetNativeWidgetForNativeView(window);
1066 if (native_widget)
1067 top_level_native_widget = native_widget;
1068 window = window->parent();
1069 }
1070 return top_level_native_widget;
1071 }
1072
1073 // static
1074 void NativeWidgetPrivate::GetAllChildWidgets(gfx::NativeView native_view,
1075 Widget::Widgets* children) {
1076 {
1077 // Code expects widget for |native_view| to be added to |children|.
1078 NativeWidgetPrivate* native_widget = static_cast<NativeWidgetPrivate*>(
1079 GetNativeWidgetForNativeView(native_view));
1080 if (native_widget && native_widget->GetWidget())
1081 children->insert(native_widget->GetWidget());
1082 }
1083
1084 const aura::Window::Windows& child_windows = native_view->children();
1085 for (aura::Window::Windows::const_iterator i = child_windows.begin();
1086 i != child_windows.end(); ++i) {
1087 GetAllChildWidgets((*i), children);
1088 }
1089 }
1090
1091 // static
1092 void NativeWidgetPrivate::GetAllOwnedWidgets(gfx::NativeView native_view,
1093 Widget::Widgets* owned) {
1094 // Add all owned widgets.
1095 for (aura::Window* transient_child : wm::GetTransientChildren(native_view)) {
1096 NativeWidgetPrivate* native_widget = static_cast<NativeWidgetPrivate*>(
1097 GetNativeWidgetForNativeView(transient_child));
1098 if (native_widget && native_widget->GetWidget())
1099 owned->insert(native_widget->GetWidget());
1100 GetAllOwnedWidgets(transient_child, owned);
1101 }
1102
1103 // Add all child windows.
1104 for (aura::Window* child : native_view->children())
1105 GetAllChildWidgets(child, owned);
1106 }
1107
1108 // static
1109 void NativeWidgetPrivate::ReparentNativeView(gfx::NativeView native_view,
1110 gfx::NativeView new_parent) {
1111 DCHECK(native_view != new_parent);
1112
1113 gfx::NativeView previous_parent = native_view->parent();
1114 if (previous_parent == new_parent)
1115 return;
1116
1117 Widget::Widgets widgets;
1118 GetAllChildWidgets(native_view, &widgets);
1119
1120 // First notify all the widgets that they are being disassociated
1121 // from their previous parent.
1122 for (Widget::Widgets::iterator it = widgets.begin();
1123 it != widgets.end(); ++it) {
1124 (*it)->NotifyNativeViewHierarchyWillChange();
1125 }
1126
1127 if (new_parent) {
1128 new_parent->AddChild(native_view);
1129 } else {
1130 // The following looks weird, but it's the equivalent of what aura has
1131 // always done. (The previous behaviour of aura::Window::SetParent() used
1132 // NULL as a special value that meant ask the WindowTreeClient where things
1133 // should go.)
1134 //
1135 // This probably isn't strictly correct, but its an invariant that a Window
1136 // in use will be attached to a RootWindow, so we can't just call
1137 // RemoveChild here. The only possible thing that could assign a RootWindow
1138 // in this case is the stacking client of the current RootWindow. This
1139 // matches our previous behaviour; the global stacking client would almost
1140 // always reattach the window to the same RootWindow.
1141 aura::Window* root_window = native_view->GetRootWindow();
1142 aura::client::ParentWindowWithContext(
1143 native_view, root_window, root_window->GetBoundsInScreen());
1144 }
1145
1146 // And now, notify them that they have a brand new parent.
1147 for (Widget::Widgets::iterator it = widgets.begin();
1148 it != widgets.end(); ++it) {
1149 (*it)->NotifyNativeViewHierarchyChanged();
1150 }
1151 }
1152
1153 // static
1154 bool NativeWidgetPrivate::IsMouseButtonDown() {
1155 return aura::Env::GetInstance()->IsMouseButtonDown();
1156 }
1157
1158 // static
1159 gfx::FontList NativeWidgetPrivate::GetWindowTitleFontList() {
1160 #if defined(OS_WIN)
1161 NONCLIENTMETRICS_XP ncm;
1162 base::win::GetNonClientMetrics(&ncm);
1163 l10n_util::AdjustUIFont(&(ncm.lfCaptionFont));
1164 base::win::ScopedHFONT caption_font(CreateFontIndirect(&(ncm.lfCaptionFont)));
1165 return gfx::FontList(gfx::Font(caption_font));
1166 #else
1167 return gfx::FontList();
1168 #endif
1169 }
1170
1171 } // namespace internal
1172 } // namespace views 844 } // namespace views
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698