OLD | NEW |
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 // fixed. |
| 82 class AndroidDispatcherClient : public aura::client::DispatcherClient { |
| 83 public: |
| 84 AndroidDispatcherClient() {} |
| 85 ~AndroidDispatcherClient() override {} |
| 86 |
| 87 // aura::client::DispatcherClient: |
| 88 void PrepareNestedLoopClosures(base::MessagePumpDispatcher* dispatcher, |
| 89 base::Closure* run_closure, |
| 90 base::Closure* quit_closure) override { |
| 91 scoped_ptr<base::RunLoop> run_loop(new base::RunLoop()); |
| 92 *quit_closure = run_loop->QuitClosure(); |
| 93 *run_closure = |
| 94 base::Bind(&AndroidDispatcherClient::RunNestedDispatcher, |
| 95 base::Unretained(this), base::Passed(&run_loop), dispatcher); |
| 96 } |
| 97 |
| 98 private: |
| 99 void RunNestedDispatcher(scoped_ptr<base::RunLoop> run_loop, |
| 100 base::MessagePumpDispatcher* dispatcher) { |
| 101 base::MessageLoopForUI* loop = base::MessageLoopForUI::current(); |
| 102 base::MessageLoop::ScopedNestableTaskAllower allow(loop); |
| 103 run_loop->Run(); |
| 104 } |
| 105 |
| 106 DISALLOW_COPY_AND_ASSIGN(AndroidDispatcherClient); |
| 107 }; |
| 108 |
| 109 } // namespace |
60 | 110 |
61 namespace views { | 111 namespace views { |
62 | 112 |
63 namespace { | 113 //////////////////////////////////////////////////////////////////////////////// |
| 114 // NativeWidgetAndroid, public |
64 | 115 |
65 void SetRestoreBounds(aura::Window* window, const gfx::Rect& bounds) { | 116 NativeWidgetAndroid::NativeWidgetAndroid( |
66 window->SetProperty(aura::client::kRestoreBoundsKey, new gfx::Rect(bounds)); | 117 internal::NativeWidgetDelegate* delegate) |
67 } | |
68 | |
69 } // namespace | |
70 | |
71 //////////////////////////////////////////////////////////////////////////////// | |
72 // NativeWidgetAura, public: | |
73 | |
74 NativeWidgetAura::NativeWidgetAura(internal::NativeWidgetDelegate* delegate) | |
75 : delegate_(delegate), | 118 : delegate_(delegate), |
76 window_(new aura::Window(this)), | 119 window_(new aura::Window(this)), |
77 ownership_(Widget::InitParams::NATIVE_WIDGET_OWNS_WIDGET), | 120 ownership_(Widget::InitParams::NATIVE_WIDGET_OWNS_WIDGET), |
78 destroying_(false), | 121 destroying_(false), |
79 cursor_(gfx::kNullCursor), | 122 cursor_(gfx::kNullCursor), |
80 saved_window_state_(ui::SHOW_STATE_DEFAULT), | 123 saved_window_state_(ui::SHOW_STATE_DEFAULT), |
81 close_widget_factory_(this) { | 124 close_widget_factory_(this) { |
82 aura::client::SetFocusChangeObserver(window_, this); | 125 aura::client::SetFocusChangeObserver(window_, this); |
83 aura::client::SetActivationChangeObserver(window_, this); | 126 aura::client::SetActivationChangeObserver(window_, this); |
84 } | 127 } |
85 | 128 |
86 // static | 129 //////////////////////////////////////////////////////////////////////////////// |
87 void NativeWidgetAura::RegisterNativeWidgetForWindow( | 130 // NativeWidgetAndroid, internal::NativeWidgetPrivate implementation: |
88 internal::NativeWidgetPrivate* native_widget, | |
89 aura::Window* window) { | |
90 window->set_user_data(native_widget); | |
91 } | |
92 | 131 |
93 //////////////////////////////////////////////////////////////////////////////// | 132 void NativeWidgetAndroid::InitNativeWidget(const Widget::InitParams& params) { |
94 // NativeWidgetAura, internal::NativeWidgetPrivate implementation: | 133 ownership_ = params.ownership; |
| 134 NativeWidgetAura::RegisterNativeWidgetForWindow(this, window_); |
95 | 135 |
96 void NativeWidgetAura::InitNativeWidget(const Widget::InitParams& params) { | 136 window_->SetType(GetAuraWindowTypeForWidgetType(params.type)); |
97 // Aura needs to know which desktop (Ash or regular) will manage this widget. | 137 window_->Init(params.layer_type); |
98 // See Widget::InitParams::context for details. | 138 wm::SetShadowType(window_, wm::SHADOW_TYPE_NONE); |
99 DCHECK(params.parent || params.context); | 139 window_->Show(); |
100 | 140 |
101 ownership_ = params.ownership; | 141 // TODO(bshe): Get rid of the hard coded size. Tracked in crbug.com/551923. |
| 142 host_.reset(aura::WindowTreeHost::Create(gfx::Rect(0, 0, 800, 600))); |
| 143 host_->InitHost(); |
| 144 host_->AddObserver(this); |
102 | 145 |
103 RegisterNativeWidgetForWindow(this, window_); | 146 window_tree_client_.reset(new WindowTreeClientImpl(host_->window())); |
104 window_->SetType(GetAuraWindowTypeForWidgetType(params.type)); | 147 |
105 window_->SetProperty(aura::client::kShowStateKey, params.show_state); | 148 focus_client_.reset(new wm::FocusController(new AndroidFocusRules)); |
106 if (params.type == Widget::InitParams::TYPE_BUBBLE) | 149 aura::client::SetFocusClient(host_->window(), focus_client_.get()); |
107 aura::client::SetHideOnDeactivate(window_, true); | 150 host_->window()->AddPreTargetHandler(focus_client_.get()); |
108 window_->SetTransparent( | 151 |
109 params.opacity == Widget::InitParams::TRANSLUCENT_WINDOW); | 152 new wm::DefaultActivationClient(host_->window()); |
110 window_->Init(params.layer_type); | 153 |
111 if (params.shadow_type == Widget::InitParams::SHADOW_TYPE_NONE) | 154 capture_client_.reset( |
112 SetShadowType(window_, wm::SHADOW_TYPE_NONE); | 155 new aura::client::DefaultCaptureClient(host_->window())); |
113 else if (params.shadow_type == Widget::InitParams::SHADOW_TYPE_DROP) | 156 |
114 SetShadowType(window_, wm::SHADOW_TYPE_RECTANGULAR); | 157 screen_position_client_.reset(new wm::DefaultScreenPositionClient); |
115 if (params.type == Widget::InitParams::TYPE_CONTROL) | 158 aura::client::SetScreenPositionClient(host_->window(), |
116 window_->Show(); | 159 screen_position_client_.get()); |
| 160 dispatcher_client_.reset(new AndroidDispatcherClient); |
| 161 aura::client::SetDispatcherClient(host_->window(), dispatcher_client_.get()); |
117 | 162 |
118 delegate_->OnNativeWidgetCreated(false); | 163 delegate_->OnNativeWidgetCreated(false); |
119 | 164 |
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()); | 165 DCHECK(GetWidget()->GetRootView()); |
168 if (params.type != Widget::InitParams::TYPE_TOOLTIP) | 166 if (params.type != Widget::InitParams::TYPE_TOOLTIP) |
169 tooltip_manager_.reset(new views::TooltipManagerAura(GetWidget())); | 167 tooltip_manager_.reset(new views::TooltipManagerAura(GetWidget())); |
170 | 168 |
171 drop_helper_.reset(new DropHelper(GetWidget()->GetRootView())); | |
172 if (params.type != Widget::InitParams::TYPE_TOOLTIP && | 169 if (params.type != Widget::InitParams::TYPE_TOOLTIP && |
173 params.type != Widget::InitParams::TYPE_POPUP) { | 170 params.type != Widget::InitParams::TYPE_POPUP) { |
174 aura::client::SetDragDropDelegate(window_, this); | 171 aura::client::SetDragDropDelegate(window_, this); |
175 } | 172 } |
176 | 173 |
177 aura::client::SetActivationDelegate(window_, this); | 174 aura::client::SetActivationDelegate(window_, this); |
178 | 175 |
179 window_reorderer_.reset(new WindowReorderer(window_, | 176 host_->window()->AddChild(window_); |
180 GetWidget()->GetRootView())); | 177 window_reorderer_.reset( |
181 } | 178 new WindowReorderer(window_, GetWidget()->GetRootView())); |
182 | 179 |
183 NonClientFrameView* NativeWidgetAura::CreateNonClientFrameView() { | 180 // TODO(bshe): figure out how to add cursor manager, drag drop client and all |
184 return NULL; | 181 // the necessary parts that exists in desktop_native_widget_aura. |
185 } | 182 } |
186 | 183 |
187 bool NativeWidgetAura::ShouldUseNativeFrame() const { | 184 NonClientFrameView* NativeWidgetAndroid::CreateNonClientFrameView() { |
| 185 NOTIMPLEMENTED(); |
| 186 return nullptr; |
| 187 } |
| 188 |
| 189 bool NativeWidgetAndroid::ShouldUseNativeFrame() const { |
188 // There is only one frame type for aura. | 190 // There is only one frame type for aura. |
189 return false; | 191 return false; |
190 } | 192 } |
191 | 193 |
192 bool NativeWidgetAura::ShouldWindowContentsBeTransparent() const { | 194 bool NativeWidgetAndroid::ShouldWindowContentsBeTransparent() const { |
193 return false; | 195 NOTIMPLEMENTED(); |
194 } | 196 return false; |
195 | 197 } |
196 void NativeWidgetAura::FrameTypeChanged() { | 198 |
197 // This is called when the Theme has changed; forward the event to the root | 199 void NativeWidgetAndroid::FrameTypeChanged() { |
198 // widget. | 200 NOTIMPLEMENTED(); |
199 GetWidget()->ThemeChanged(); | 201 } |
200 GetWidget()->GetRootView()->SchedulePaint(); | 202 |
201 } | 203 Widget* NativeWidgetAndroid::GetWidget() { |
202 | |
203 Widget* NativeWidgetAura::GetWidget() { | |
204 return delegate_->AsWidget(); | 204 return delegate_->AsWidget(); |
205 } | 205 } |
206 | 206 |
207 const Widget* NativeWidgetAura::GetWidget() const { | 207 const Widget* NativeWidgetAndroid::GetWidget() const { |
208 return delegate_->AsWidget(); | 208 return delegate_->AsWidget(); |
209 } | 209 } |
210 | 210 |
211 gfx::NativeView NativeWidgetAura::GetNativeView() const { | 211 gfx::NativeView NativeWidgetAndroid::GetNativeView() const { |
212 return window_; | 212 return window_; |
213 } | 213 } |
214 | 214 |
215 gfx::NativeWindow NativeWidgetAura::GetNativeWindow() const { | 215 gfx::NativeWindow NativeWidgetAndroid::GetNativeWindow() const { |
216 return window_; | 216 return window_; |
217 } | 217 } |
218 | 218 |
219 Widget* NativeWidgetAura::GetTopLevelWidget() { | 219 Widget* NativeWidgetAndroid::GetTopLevelWidget() { |
220 NativeWidgetPrivate* native_widget = GetTopLevelNativeWidget(GetNativeView()); | 220 return GetWidget(); |
221 return native_widget ? native_widget->GetWidget() : NULL; | 221 } |
222 } | 222 |
223 | 223 const ui::Compositor* NativeWidgetAndroid::GetCompositor() const { |
224 const ui::Compositor* NativeWidgetAura::GetCompositor() const { | 224 return host_->compositor(); |
225 return window_ ? window_->layer()->GetCompositor() : NULL; | 225 } |
226 } | 226 |
227 | 227 const ui::Layer* NativeWidgetAndroid::GetLayer() const { |
228 const ui::Layer* NativeWidgetAura::GetLayer() const { | 228 return GetNativeWindow()->layer(); |
229 return window_ ? window_->layer() : NULL; | 229 } |
230 } | 230 |
231 | 231 void NativeWidgetAndroid::ReorderNativeViews() { |
232 void NativeWidgetAura::ReorderNativeViews() { | |
233 window_reorderer_->ReorderChildWindows(); | 232 window_reorderer_->ReorderChildWindows(); |
234 } | 233 } |
235 | 234 |
236 void NativeWidgetAura::ViewRemoved(View* view) { | 235 void NativeWidgetAndroid::ViewRemoved(View* view) { |
237 DCHECK(drop_helper_.get() != NULL); | 236 // TODO(bshe): Implement drag and drop. crbug.com/554029. |
238 drop_helper_->ResetTargetViewIfEquals(view); | 237 NOTIMPLEMENTED(); |
239 } | 238 } |
240 | 239 |
241 void NativeWidgetAura::SetNativeWindowProperty(const char* name, void* value) { | 240 void NativeWidgetAndroid::SetNativeWindowProperty(const char* name, |
242 if (window_) | 241 void* value) { |
243 window_->SetNativeWindowProperty(name, value); | 242 GetNativeWindow()->SetNativeWindowProperty(name, value); |
244 } | 243 } |
245 | 244 |
246 void* NativeWidgetAura::GetNativeWindowProperty(const char* name) const { | 245 void* NativeWidgetAndroid::GetNativeWindowProperty(const char* name) const { |
247 return window_ ? window_->GetNativeWindowProperty(name) : NULL; | 246 return GetNativeWindow()->GetNativeWindowProperty(name); |
248 } | 247 } |
249 | 248 |
250 TooltipManager* NativeWidgetAura::GetTooltipManager() const { | 249 TooltipManager* NativeWidgetAndroid::GetTooltipManager() const { |
251 return tooltip_manager_.get(); | 250 return tooltip_manager_.get(); |
252 } | 251 } |
253 | 252 |
254 void NativeWidgetAura::SetCapture() { | 253 void NativeWidgetAndroid::SetCapture() { |
255 if (window_) | 254 GetNativeWindow()->SetCapture(); |
256 window_->SetCapture(); | 255 } |
257 } | 256 |
258 | 257 void NativeWidgetAndroid::ReleaseCapture() { |
259 void NativeWidgetAura::ReleaseCapture() { | 258 GetNativeWindow()->ReleaseCapture(); |
260 if (window_) | 259 } |
261 window_->ReleaseCapture(); | 260 |
262 } | 261 bool NativeWidgetAndroid::HasCapture() const { |
263 | 262 return GetNativeWindow()->HasCapture(); |
264 bool NativeWidgetAura::HasCapture() const { | 263 } |
265 return window_ && window_->HasCapture(); | 264 |
266 } | 265 ui::InputMethod* NativeWidgetAndroid::GetInputMethod() { |
267 | 266 return host_->GetInputMethod(); |
268 ui::InputMethod* NativeWidgetAura::GetInputMethod() { | 267 } |
269 if (!window_) | 268 |
270 return nullptr; | 269 void NativeWidgetAndroid::CenterWindow(const gfx::Size& size) { |
271 aura::Window* root_window = window_->GetRootWindow(); | 270 // TODO(bshe): Implement this. See crbug.com/554208. |
272 return root_window ? root_window->GetHost()->GetInputMethod() : nullptr; | 271 NOTIMPLEMENTED(); |
273 } | 272 } |
274 | 273 |
275 void NativeWidgetAura::CenterWindow(const gfx::Size& size) { | 274 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, | 275 gfx::Rect* bounds, |
327 ui::WindowShowState* show_state) const { | 276 ui::WindowShowState* show_state) const { |
328 // The interface specifies returning restored bounds, not current bounds. | 277 // TODO(bshe): Implement this. See crbug.com/554208. |
329 *bounds = GetRestoredBounds(); | 278 NOTIMPLEMENTED(); |
330 *show_state = window_ ? window_->GetProperty(aura::client::kShowStateKey) : | 279 } |
331 ui::SHOW_STATE_DEFAULT; | 280 |
332 } | 281 bool NativeWidgetAndroid::SetWindowTitle(const base::string16& title) { |
333 | 282 if (GetNativeWindow()->title() == title) |
334 bool NativeWidgetAura::SetWindowTitle(const base::string16& title) { | |
335 if (!window_) | |
336 return false; | 283 return false; |
337 if (window_->title() == title) | 284 GetNativeWindow()->SetTitle(title); |
338 return false; | |
339 window_->SetTitle(title); | |
340 return true; | 285 return true; |
341 } | 286 } |
342 | 287 |
343 void NativeWidgetAura::SetWindowIcons(const gfx::ImageSkia& window_icon, | 288 void NativeWidgetAndroid::SetWindowIcons(const gfx::ImageSkia& window_icon, |
344 const gfx::ImageSkia& app_icon) { | 289 const gfx::ImageSkia& app_icon) { |
345 // Aura doesn't have window icons. | 290 // TODO(bshe): Implement this. See crbug.com/554953. |
346 } | 291 NOTIMPLEMENTED(); |
347 | 292 } |
348 void NativeWidgetAura::InitModalType(ui::ModalType modal_type) { | 293 |
349 if (modal_type != ui::MODAL_TYPE_NONE) | 294 void NativeWidgetAndroid::InitModalType(ui::ModalType modal_type) { |
350 window_->SetProperty(aura::client::kModalKey, modal_type); | 295 // TODO(bshe): Implement this. See crbug.com/554208. |
351 } | 296 NOTIMPLEMENTED(); |
352 | 297 } |
353 gfx::Rect NativeWidgetAura::GetWindowBoundsInScreen() const { | 298 |
354 return window_ ? window_->GetBoundsInScreen() : gfx::Rect(); | 299 gfx::Rect NativeWidgetAndroid::GetWindowBoundsInScreen() const { |
355 } | 300 return GetNativeWindow()->GetBoundsInScreen(); |
356 | 301 } |
357 gfx::Rect NativeWidgetAura::GetClientAreaBoundsInScreen() const { | 302 |
| 303 gfx::Rect NativeWidgetAndroid::GetClientAreaBoundsInScreen() const { |
358 // View-to-screen coordinate system transformations depend on this returning | 304 // View-to-screen coordinate system transformations depend on this returning |
359 // the full window bounds, for example View::ConvertPointToScreen(). | 305 // the full window bounds, for example View::ConvertPointToScreen(). |
360 return window_ ? window_->GetBoundsInScreen() : gfx::Rect(); | 306 return GetNativeWindow()->GetBoundsInScreen(); |
361 } | 307 } |
362 | 308 |
363 gfx::Rect NativeWidgetAura::GetRestoredBounds() const { | 309 gfx::Rect NativeWidgetAndroid::GetRestoredBounds() const { |
364 if (!window_) | 310 // TODO(bshe): Implement this. See crbug.com/554208. |
365 return gfx::Rect(); | 311 NOTIMPLEMENTED(); |
366 | 312 return gfx::Rect(); |
367 // Restored bounds should only be relevant if the window is minimized, | 313 } |
368 // maximized, fullscreen or docked. However, in some places the code expects | 314 |
369 // GetRestoredBounds() to return the current window bounds if the window is | 315 void NativeWidgetAndroid::SetBounds(const gfx::Rect& bounds) { |
370 // not in either state. | 316 // TODO(bshe): This may not work. We may need to resize SurfaceView too. See |
371 if (IsMinimized() || IsMaximized() || IsFullscreen()) { | 317 // crbug.com/554952. |
372 // Restore bounds are in screen coordinates, no need to convert. | 318 host_->SetBounds(bounds); |
373 gfx::Rect* restore_bounds = | 319 } |
374 window_->GetProperty(aura::client::kRestoreBoundsKey); | 320 |
375 if (restore_bounds) | 321 void NativeWidgetAndroid::SetSize(const gfx::Size& size) { |
376 return *restore_bounds; | 322 gfx::Rect bounds = host_->GetBounds(); |
377 } | 323 SetBounds(gfx::Rect(bounds.origin(), size)); |
378 gfx::Rect bounds = window_->GetBoundsInScreen(); | 324 } |
379 if (IsDocked()) { | 325 |
380 // Restore bounds are in screen coordinates, no need to convert. | 326 void NativeWidgetAndroid::StackAbove(gfx::NativeView native_view) { |
381 gfx::Rect* restore_bounds = | 327 // TODO(bshe): Implements window stacking logic. See crbug.com/554047 |
382 window_->GetProperty(aura::client::kRestoreBoundsKey); | 328 NOTIMPLEMENTED(); |
383 // Use current window horizontal offset origin in order to preserve docked | 329 } |
384 // alignment but preserve restored size and vertical offset for the time | 330 |
385 // when the |window_| gets undocked. | 331 void NativeWidgetAndroid::StackAtTop() { |
386 if (restore_bounds) { | 332 // TODO(bshe): Implements window stacking logic. See crbug.com/554047 |
387 bounds.set_size(restore_bounds->size()); | 333 NOTIMPLEMENTED(); |
388 bounds.set_y(restore_bounds->y()); | 334 } |
389 } | 335 |
390 } | 336 void NativeWidgetAndroid::StackBelow(gfx::NativeView native_view) { |
391 return bounds; | 337 // TODO(bshe): Implements window stacking logic. See crbug.com/554047 |
392 } | 338 NOTIMPLEMENTED(); |
393 | 339 } |
394 void NativeWidgetAura::SetBounds(const gfx::Rect& bounds) { | 340 |
395 if (!window_) | 341 void NativeWidgetAndroid::SetShape(SkRegion* region) { |
396 return; | 342 GetNativeWindow()->layer()->SetAlphaShape(make_scoped_ptr(region)); |
397 | 343 } |
398 aura::Window* root = window_->GetRootWindow(); | 344 |
399 if (root) { | 345 void NativeWidgetAndroid::Close() { |
400 aura::client::ScreenPositionClient* screen_position_client = | 346 // TODO(bshe): This might not be right. See crbug.com/554259. |
401 aura::client::GetScreenPositionClient(root); | 347 DCHECK(ownership_ == Widget::InitParams::WIDGET_OWNS_NATIVE_WIDGET); |
402 if (screen_position_client) { | 348 GetNativeWindow()->SuppressPaint(); |
403 gfx::Display dst_display = | 349 Hide(); |
404 gfx::Screen::GetScreenFor(window_)->GetDisplayMatching(bounds); | 350 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 | 351 |
453 if (!close_widget_factory_.HasWeakPtrs()) { | 352 if (!close_widget_factory_.HasWeakPtrs()) { |
454 base::MessageLoop::current()->PostTask( | 353 base::MessageLoop::current()->PostTask( |
455 FROM_HERE, | 354 FROM_HERE, base::Bind(&NativeWidgetAndroid::CloseNow, |
456 base::Bind(&NativeWidgetAura::CloseNow, | 355 close_widget_factory_.GetWeakPtr())); |
457 close_widget_factory_.GetWeakPtr())); | |
458 } | 356 } |
459 } | 357 } |
460 | 358 |
461 void NativeWidgetAura::CloseNow() { | 359 void NativeWidgetAndroid::CloseNow() { |
| 360 // TODO(bshe): This might not be right. See crbug.com/554259. |
| 361 host_->RemoveObserver(this); |
| 362 host_.reset(); |
462 delete window_; | 363 delete window_; |
463 } | 364 } |
464 | 365 |
465 void NativeWidgetAura::Show() { | 366 void NativeWidgetAndroid::Show() { |
466 ShowWithWindowState(ui::SHOW_STATE_NORMAL); | 367 host_->Show(); |
467 } | 368 GetNativeWindow()->Show(); |
468 | 369 } |
469 void NativeWidgetAura::Hide() { | 370 |
470 if (window_) | 371 void NativeWidgetAndroid::Hide() { |
471 window_->Hide(); | 372 host_->Hide(); |
472 } | 373 GetNativeWindow()->Hide(); |
473 | 374 } |
474 void NativeWidgetAura::ShowMaximizedWithBounds( | 375 |
| 376 void NativeWidgetAndroid::ShowMaximizedWithBounds( |
475 const gfx::Rect& restored_bounds) { | 377 const gfx::Rect& restored_bounds) { |
476 SetRestoreBounds(window_, restored_bounds); | 378 NOTIMPLEMENTED(); |
477 ShowWithWindowState(ui::SHOW_STATE_MAXIMIZED); | 379 } |
478 } | 380 |
479 | 381 void NativeWidgetAndroid::ShowWithWindowState(ui::WindowShowState state) { |
480 void NativeWidgetAura::ShowWithWindowState(ui::WindowShowState state) { | 382 NOTIMPLEMENTED(); |
481 if (!window_) | 383 } |
482 return; | 384 |
483 | 385 bool NativeWidgetAndroid::IsVisible() const { |
484 if (state == ui::SHOW_STATE_MAXIMIZED || state == ui::SHOW_STATE_FULLSCREEN || | 386 return GetNativeWindow()->IsVisible(); |
485 state == ui::SHOW_STATE_DOCKED) { | 387 } |
486 window_->SetProperty(aura::client::kShowStateKey, state); | 388 |
487 } | 389 void NativeWidgetAndroid::Activate() { |
488 window_->Show(); | 390 aura::client::GetActivationClient(host_->window()) |
489 if (delegate_->CanActivate()) { | 391 ->ActivateWindow(GetNativeWindow()); |
490 if (state != ui::SHOW_STATE_INACTIVE) | 392 } |
491 Activate(); | 393 |
492 // SetInitialFocus() should be always be called, even for | 394 void NativeWidgetAndroid::Deactivate() { |
493 // SHOW_STATE_INACTIVE. If the window has to stay inactive, the method will | 395 aura::client::GetActivationClient(host_->window()) |
494 // do the right thing. | 396 ->DeactivateWindow(GetNativeWindow()); |
495 SetInitialFocus(state); | 397 } |
496 } | 398 |
497 } | 399 bool NativeWidgetAndroid::IsActive() const { |
498 | 400 return wm::IsActiveWindow(GetNativeWindow()); |
499 bool NativeWidgetAura::IsVisible() const { | 401 } |
500 return window_ && window_->IsVisible(); | 402 |
501 } | 403 void NativeWidgetAndroid::SetAlwaysOnTop(bool on_top) { |
502 | 404 GetNativeWindow()->SetProperty(aura::client::kAlwaysOnTopKey, on_top); |
503 void NativeWidgetAura::Activate() { | 405 } |
504 if (!window_) | 406 |
505 return; | 407 bool NativeWidgetAndroid::IsAlwaysOnTop() const { |
506 | 408 return GetNativeWindow()->GetProperty(aura::client::kAlwaysOnTopKey); |
507 // We don't necessarily have a root window yet. This can happen with | 409 } |
508 // constrained windows. | 410 |
509 if (window_->GetRootWindow()) { | 411 void NativeWidgetAndroid::SetVisibleOnAllWorkspaces(bool always_visible) { |
510 aura::client::GetActivationClient(window_->GetRootWindow())->ActivateWindow( | 412 // TODO(bshe): Implement this. See crbug.com/554208. |
511 window_); | 413 NOTIMPLEMENTED(); |
512 } | 414 } |
513 if (window_->GetProperty(aura::client::kDrawAttentionKey)) | 415 |
514 window_->SetProperty(aura::client::kDrawAttentionKey, false); | 416 void NativeWidgetAndroid::Maximize() { |
515 } | 417 // TODO(bshe): Implement this. See crbug.com/554208. |
516 | 418 NOTIMPLEMENTED(); |
517 void NativeWidgetAura::Deactivate() { | 419 } |
518 if (!window_) | 420 |
519 return; | 421 void NativeWidgetAndroid::Minimize() { |
520 aura::client::GetActivationClient(window_->GetRootWindow())->DeactivateWindow( | 422 // TODO(bshe): Implement this. See crbug.com/554208. |
521 window_); | 423 NOTIMPLEMENTED(); |
522 } | 424 } |
523 | 425 |
524 bool NativeWidgetAura::IsActive() const { | 426 bool NativeWidgetAndroid::IsMaximized() const { |
525 return window_ && wm::IsActiveWindow(window_); | 427 // TODO(bshe): Implement this. See crbug.com/554208. |
526 } | 428 NOTIMPLEMENTED(); |
527 | 429 return false; |
528 void NativeWidgetAura::SetAlwaysOnTop(bool on_top) { | 430 } |
529 if (window_) | 431 |
530 window_->SetProperty(aura::client::kAlwaysOnTopKey, on_top); | 432 bool NativeWidgetAndroid::IsMinimized() const { |
531 } | 433 // TODO(bshe): Implement this. See crbug.com/554208. |
532 | 434 NOTIMPLEMENTED(); |
533 bool NativeWidgetAura::IsAlwaysOnTop() const { | 435 return false; |
534 return window_ && window_->GetProperty(aura::client::kAlwaysOnTopKey); | 436 } |
535 } | 437 |
536 | 438 void NativeWidgetAndroid::Restore() { |
537 void NativeWidgetAura::SetVisibleOnAllWorkspaces(bool always_visible) { | 439 // TODO(bshe): Implement this. See crbug.com/554208. |
538 // Not implemented on chromeos or for child widgets. | 440 NOTIMPLEMENTED(); |
539 } | 441 } |
540 | 442 |
541 void NativeWidgetAura::Maximize() { | 443 void NativeWidgetAndroid::SetFullscreen(bool fullscreen) { |
542 if (window_) | 444 // TODO(bshe): Implement this. See crbug.com/554208. |
543 window_->SetProperty(aura::client::kShowStateKey, ui::SHOW_STATE_MAXIMIZED); | 445 NOTIMPLEMENTED(); |
544 } | 446 } |
545 | 447 |
546 void NativeWidgetAura::Minimize() { | 448 bool NativeWidgetAndroid::IsFullscreen() const { |
547 if (window_) | 449 // TODO(bshe): Implement this. See crbug.com/554208. |
548 window_->SetProperty(aura::client::kShowStateKey, ui::SHOW_STATE_MINIMIZED); | 450 NOTIMPLEMENTED(); |
549 } | 451 return false; |
550 | 452 } |
551 bool NativeWidgetAura::IsMaximized() const { | 453 |
552 return window_ && window_->GetProperty(aura::client::kShowStateKey) == | 454 void NativeWidgetAndroid::SetOpacity(unsigned char opacity) { |
553 ui::SHOW_STATE_MAXIMIZED; | 455 GetNativeWindow()->layer()->SetOpacity(opacity / 255.0); |
554 } | 456 } |
555 | 457 |
556 bool NativeWidgetAura::IsMinimized() const { | 458 void NativeWidgetAndroid::SetUseDragFrame(bool use_drag_frame) { |
557 return window_ && window_->GetProperty(aura::client::kShowStateKey) == | 459 NOTIMPLEMENTED(); |
558 ui::SHOW_STATE_MINIMIZED; | 460 } |
559 } | 461 |
560 | 462 void NativeWidgetAndroid::FlashFrame(bool flash) { |
561 void NativeWidgetAura::Restore() { | 463 NOTIMPLEMENTED(); |
562 if (window_) | 464 } |
563 window_->SetProperty(aura::client::kShowStateKey, ui::SHOW_STATE_NORMAL); | 465 |
564 } | 466 void NativeWidgetAndroid::RunShellDrag( |
565 | 467 View* view, |
566 void NativeWidgetAura::SetFullscreen(bool fullscreen) { | 468 const ui::OSExchangeData& data, |
567 if (!window_ || IsFullscreen() == fullscreen) | 469 const gfx::Point& location, |
568 return; // Nothing to do. | 470 int operation, |
569 | 471 ui::DragDropTypes::DragEventSource source) { |
570 // Save window state before entering full screen so that it could restored | 472 NOTIMPLEMENTED(); |
571 // when exiting full screen. | 473 } |
572 if (fullscreen) | 474 |
573 saved_window_state_ = window_->GetProperty(aura::client::kShowStateKey); | 475 void NativeWidgetAndroid::SchedulePaintInRect(const gfx::Rect& rect) { |
574 | 476 GetNativeWindow()->SchedulePaintInRect(rect); |
575 window_->SetProperty( | 477 } |
576 aura::client::kShowStateKey, | 478 |
577 fullscreen ? ui::SHOW_STATE_FULLSCREEN : saved_window_state_); | 479 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; | 480 cursor_ = cursor; |
615 aura::client::CursorClient* cursor_client = | 481 aura::client::CursorClient* cursor_client = |
616 aura::client::GetCursorClient(window_->GetRootWindow()); | 482 aura::client::GetCursorClient(host_->window()); |
617 if (cursor_client) | 483 if (cursor_client) |
618 cursor_client->SetCursor(cursor); | 484 cursor_client->SetCursor(cursor); |
619 } | 485 } |
620 | 486 |
621 bool NativeWidgetAura::IsMouseEventsEnabled() const { | 487 bool NativeWidgetAndroid::IsMouseEventsEnabled() const { |
622 if (!window_) | |
623 return false; | |
624 aura::client::CursorClient* cursor_client = | 488 aura::client::CursorClient* cursor_client = |
625 aura::client::GetCursorClient(window_->GetRootWindow()); | 489 aura::client::GetCursorClient(host_->window()); |
626 return cursor_client ? cursor_client->IsMouseEventsEnabled() : true; | 490 return cursor_client ? cursor_client->IsMouseEventsEnabled() : true; |
627 } | 491 } |
628 | 492 |
629 void NativeWidgetAura::ClearNativeFocus() { | 493 void NativeWidgetAndroid::ClearNativeFocus() { |
630 aura::client::FocusClient* client = aura::client::GetFocusClient(window_); | 494 aura::client::FocusClient* client = aura::client::GetFocusClient(window_); |
631 if (window_ && client && window_->Contains(client->GetFocusedWindow())) | 495 if (client && window_->Contains(client->GetFocusedWindow())) |
632 client->ResetFocusWithinActiveWindow(window_); | 496 client->ResetFocusWithinActiveWindow(window_); |
633 } | 497 } |
634 | 498 |
635 gfx::Rect NativeWidgetAura::GetWorkAreaBoundsInScreen() const { | 499 gfx::Rect NativeWidgetAndroid::GetWorkAreaBoundsInScreen() const { |
636 if (!window_) | 500 return gfx::Screen::GetScreenFor(window_) |
637 return gfx::Rect(); | 501 ->GetDisplayNearestWindow(window_) |
638 return gfx::Screen::GetScreenFor(window_)-> | 502 .work_area(); |
639 GetDisplayNearestWindow(window_).work_area(); | 503 } |
640 } | 504 |
641 | 505 Widget::MoveLoopResult NativeWidgetAndroid::RunMoveLoop( |
642 Widget::MoveLoopResult NativeWidgetAura::RunMoveLoop( | |
643 const gfx::Vector2d& drag_offset, | 506 const gfx::Vector2d& drag_offset, |
644 Widget::MoveLoopSource source, | 507 Widget::MoveLoopSource source, |
645 Widget::MoveLoopEscapeBehavior escape_behavior) { | 508 Widget::MoveLoopEscapeBehavior escape_behavior) { |
646 // |escape_behavior| is only needed on windows when running the native message | 509 // TODO(bshe): Implement this. See crbug.com/554208. |
647 // loop. | 510 NOTIMPLEMENTED(); |
648 if (!window_ || !window_->GetRootWindow()) | 511 return Widget::MOVE_LOOP_SUCCESSFUL; |
649 return Widget::MOVE_LOOP_CANCELED; | 512 } |
650 aura::client::WindowMoveClient* move_client = | 513 |
651 aura::client::GetWindowMoveClient(window_->GetRootWindow()); | 514 void NativeWidgetAndroid::EndMoveLoop() { |
652 if (!move_client) | 515 // TODO(bshe): Implement this. See crbug.com/554208. |
653 return Widget::MOVE_LOOP_CANCELED; | 516 NOTIMPLEMENTED(); |
654 | 517 } |
655 SetCapture(); | 518 |
656 aura::client::WindowMoveSource window_move_source = | 519 void NativeWidgetAndroid::SetVisibilityChangedAnimationsEnabled(bool value) { |
657 source == Widget::MOVE_LOOP_SOURCE_MOUSE ? | 520 GetNativeWindow()->SetProperty(aura::client::kAnimationsDisabledKey, !value); |
658 aura::client::WINDOW_MOVE_SOURCE_MOUSE : | 521 } |
659 aura::client::WINDOW_MOVE_SOURCE_TOUCH; | 522 |
660 if (move_client->RunMoveLoop(window_, drag_offset, window_move_source) == | 523 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) { | 524 const base::TimeDelta& duration) { |
683 wm::SetWindowVisibilityAnimationDuration(window_, duration); | 525 wm::SetWindowVisibilityAnimationDuration(GetNativeWindow(), duration); |
684 } | 526 } |
685 | 527 |
686 void NativeWidgetAura::SetVisibilityAnimationTransition( | 528 void NativeWidgetAndroid::SetVisibilityAnimationTransition( |
687 Widget::VisibilityTransition transition) { | 529 Widget::VisibilityTransition transition) { |
688 wm::WindowVisibilityAnimationTransition wm_transition = wm::ANIMATE_NONE; | 530 wm::WindowVisibilityAnimationTransition wm_transition = wm::ANIMATE_NONE; |
689 switch (transition) { | 531 switch (transition) { |
690 case Widget::ANIMATE_SHOW: | 532 case Widget::ANIMATE_SHOW: |
691 wm_transition = wm::ANIMATE_SHOW; | 533 wm_transition = wm::ANIMATE_SHOW; |
692 break; | 534 break; |
693 case Widget::ANIMATE_HIDE: | 535 case Widget::ANIMATE_HIDE: |
694 wm_transition = wm::ANIMATE_HIDE; | 536 wm_transition = wm::ANIMATE_HIDE; |
695 break; | 537 break; |
696 case Widget::ANIMATE_BOTH: | 538 case Widget::ANIMATE_BOTH: |
697 wm_transition = wm::ANIMATE_BOTH; | 539 wm_transition = wm::ANIMATE_BOTH; |
698 break; | 540 break; |
699 case Widget::ANIMATE_NONE: | 541 case Widget::ANIMATE_NONE: |
700 wm_transition = wm::ANIMATE_NONE; | 542 wm_transition = wm::ANIMATE_NONE; |
701 break; | 543 break; |
702 } | 544 } |
703 wm::SetWindowVisibilityAnimationTransition(window_, wm_transition); | 545 wm::SetWindowVisibilityAnimationTransition(GetNativeWindow(), wm_transition); |
704 } | 546 } |
705 | 547 |
706 ui::NativeTheme* NativeWidgetAura::GetNativeTheme() const { | 548 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(); | 549 return ui::NativeThemeAura::instance(); |
711 #endif | |
712 } | 550 } |
713 | 551 |
714 void NativeWidgetAura::OnRootViewLayout() { | 552 void NativeWidgetAndroid::OnRootViewLayout() { |
| 553 NOTIMPLEMENTED(); |
715 } | 554 } |
716 | 555 |
717 bool NativeWidgetAura::IsTranslucentWindowOpacitySupported() const { | 556 bool NativeWidgetAndroid::IsTranslucentWindowOpacitySupported() const { |
718 return true; | 557 return true; |
719 } | 558 } |
720 | 559 |
721 void NativeWidgetAura::OnSizeConstraintsChanged() { | 560 void NativeWidgetAndroid::OnSizeConstraintsChanged() { |
722 window_->SetProperty(aura::client::kCanMaximizeKey, | 561 window_->SetProperty(aura::client::kCanMaximizeKey, |
723 GetWidget()->widget_delegate()->CanMaximize()); | 562 GetWidget()->widget_delegate()->CanMaximize()); |
724 window_->SetProperty(aura::client::kCanMinimizeKey, | 563 window_->SetProperty(aura::client::kCanMinimizeKey, |
725 GetWidget()->widget_delegate()->CanMinimize()); | 564 GetWidget()->widget_delegate()->CanMinimize()); |
726 window_->SetProperty(aura::client::kCanResizeKey, | 565 window_->SetProperty(aura::client::kCanResizeKey, |
727 GetWidget()->widget_delegate()->CanResize()); | 566 GetWidget()->widget_delegate()->CanResize()); |
728 } | 567 } |
729 | 568 |
730 void NativeWidgetAura::RepostNativeEvent(gfx::NativeEvent native_event) { | 569 void NativeWidgetAndroid::RepostNativeEvent(gfx::NativeEvent native_event) { |
731 OnEvent(native_event); | 570 OnEvent(native_event); |
732 } | 571 } |
733 | 572 |
734 //////////////////////////////////////////////////////////////////////////////// | 573 //////////////////////////////////////////////////////////////////////////////// |
735 // NativeWidgetAura, aura::WindowDelegate implementation: | 574 // NativeWidgetAndroid, aura::WindowDelegate implementation: |
736 | 575 |
737 gfx::Size NativeWidgetAura::GetMinimumSize() const { | 576 gfx::Size NativeWidgetAndroid::GetMinimumSize() const { |
738 return delegate_->GetMinimumSize(); | 577 return delegate_->GetMinimumSize(); |
739 } | 578 } |
740 | 579 |
741 gfx::Size NativeWidgetAura::GetMaximumSize() const { | 580 gfx::Size NativeWidgetAndroid::GetMaximumSize() const { |
742 // If a window have a maximum size, the window should not be | 581 // If a window have a maximum size, the window should not be |
743 // maximizable. | 582 // maximizable. |
744 DCHECK(delegate_->GetMaximumSize().IsEmpty() || | 583 DCHECK(delegate_->GetMaximumSize().IsEmpty() || |
745 !window_->GetProperty(aura::client::kCanMaximizeKey)); | 584 !window_->GetProperty(aura::client::kCanMaximizeKey)); |
746 return delegate_->GetMaximumSize(); | 585 return delegate_->GetMaximumSize(); |
747 } | 586 } |
748 | 587 |
749 void NativeWidgetAura::OnBoundsChanged(const gfx::Rect& old_bounds, | 588 void NativeWidgetAndroid::OnBoundsChanged(const gfx::Rect& old_bounds, |
750 const gfx::Rect& new_bounds) { | 589 const gfx::Rect& new_bounds) { |
751 // Assume that if the old bounds was completely empty a move happened. This | 590 // 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 | 591 // handles the case of a maximize animation acquiring the layer (acquiring a |
753 // layer results in clearing the bounds). | 592 // layer results in clearing the bounds). |
754 if (old_bounds.origin() != new_bounds.origin() || | 593 if (old_bounds.origin() != new_bounds.origin() || |
755 (old_bounds == gfx::Rect(0, 0, 0, 0) && !new_bounds.IsEmpty())) { | 594 (old_bounds == gfx::Rect(0, 0, 0, 0) && !new_bounds.IsEmpty())) { |
756 delegate_->OnNativeWidgetMove(); | 595 delegate_->OnNativeWidgetMove(); |
757 } | 596 } |
758 if (old_bounds.size() != new_bounds.size()) | 597 if (old_bounds.size() != new_bounds.size()) |
759 delegate_->OnNativeWidgetSizeChanged(new_bounds.size()); | 598 delegate_->OnNativeWidgetSizeChanged(new_bounds.size()); |
760 } | 599 } |
761 | 600 |
762 gfx::NativeCursor NativeWidgetAura::GetCursor(const gfx::Point& point) { | 601 gfx::NativeCursor NativeWidgetAndroid::GetCursor(const gfx::Point& point) { |
763 return cursor_; | 602 return cursor_; |
764 } | 603 } |
765 | 604 |
766 int NativeWidgetAura::GetNonClientComponent(const gfx::Point& point) const { | 605 int NativeWidgetAndroid::GetNonClientComponent(const gfx::Point& point) const { |
767 return delegate_->GetNonClientComponent(point); | 606 return delegate_->GetNonClientComponent(point); |
768 } | 607 } |
769 | 608 |
770 bool NativeWidgetAura::ShouldDescendIntoChildForEventHandling( | 609 bool NativeWidgetAndroid::ShouldDescendIntoChildForEventHandling( |
771 aura::Window* child, | 610 aura::Window* child, |
772 const gfx::Point& location) { | 611 const gfx::Point& location) { |
773 views::WidgetDelegate* widget_delegate = GetWidget()->widget_delegate(); | 612 views::WidgetDelegate* widget_delegate = GetWidget()->widget_delegate(); |
774 if (widget_delegate && | 613 if (widget_delegate && |
775 !widget_delegate->ShouldDescendIntoChildForEventHandling(child, location)) | 614 !widget_delegate->ShouldDescendIntoChildForEventHandling(child, location)) |
776 return false; | 615 return false; |
777 | 616 |
778 // Don't descend into |child| if there is a view with a Layer that contains | 617 // 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. | 618 // the point and is stacked above |child|s layer. |
780 typedef std::vector<ui::Layer*> Layers; | 619 typedef std::vector<ui::Layer*> Layers; |
781 const Layers& root_layers(delegate_->GetRootLayers()); | 620 const Layers& root_layers(delegate_->GetRootLayers()); |
782 if (root_layers.empty()) | 621 if (root_layers.empty()) |
(...skipping 12 matching lines...) Expand all Loading... |
795 Layers::const_iterator root_layer_iter( | 634 Layers::const_iterator root_layer_iter( |
796 std::find(window_->layer()->children().begin(), | 635 std::find(window_->layer()->children().begin(), |
797 window_->layer()->children().end(), layer)); | 636 window_->layer()->children().end(), layer)); |
798 if (root_layer_iter > child_layer_iter) | 637 if (root_layer_iter > child_layer_iter) |
799 return false; | 638 return false; |
800 } | 639 } |
801 } | 640 } |
802 return true; | 641 return true; |
803 } | 642 } |
804 | 643 |
805 bool NativeWidgetAura::CanFocus() { | 644 bool NativeWidgetAndroid::CanFocus() { |
806 return ShouldActivate(); | 645 return ShouldActivate(); |
807 } | 646 } |
808 | 647 |
809 void NativeWidgetAura::OnCaptureLost() { | 648 void NativeWidgetAndroid::OnCaptureLost() { |
810 delegate_->OnMouseCaptureLost(); | 649 delegate_->OnMouseCaptureLost(); |
811 } | 650 } |
812 | 651 |
813 void NativeWidgetAura::OnPaint(const ui::PaintContext& context) { | 652 void NativeWidgetAndroid::OnPaint(const ui::PaintContext& context) { |
814 delegate_->OnNativeWidgetPaint(context); | 653 delegate_->OnNativeWidgetPaint(context); |
815 } | 654 } |
816 | 655 |
817 void NativeWidgetAura::OnDeviceScaleFactorChanged(float device_scale_factor) { | 656 void NativeWidgetAndroid::OnDeviceScaleFactorChanged( |
| 657 float device_scale_factor) { |
818 GetWidget()->DeviceScaleFactorChanged(device_scale_factor); | 658 GetWidget()->DeviceScaleFactorChanged(device_scale_factor); |
819 } | 659 } |
820 | 660 |
821 void NativeWidgetAura::OnWindowDestroying(aura::Window* window) { | 661 void NativeWidgetAndroid::OnWindowDestroying(aura::Window* window) { |
822 window_->RemoveObserver(this); | |
823 delegate_->OnNativeWidgetDestroying(); | 662 delegate_->OnNativeWidgetDestroying(); |
824 | 663 |
825 // If the aura::Window is destroyed, we can no longer show tooltips. | 664 // If the aura::Window is destroyed, we can no longer show tooltips. |
826 tooltip_manager_.reset(); | 665 tooltip_manager_.reset(); |
827 } | 666 } |
828 | 667 |
829 void NativeWidgetAura::OnWindowDestroyed(aura::Window* window) { | 668 void NativeWidgetAndroid::OnWindowDestroyed(aura::Window* window) { |
830 window_ = NULL; | 669 window_ = nullptr; |
831 delegate_->OnNativeWidgetDestroyed(); | 670 delegate_->OnNativeWidgetDestroyed(); |
832 if (ownership_ == Widget::InitParams::NATIVE_WIDGET_OWNS_WIDGET) | 671 if (ownership_ == Widget::InitParams::NATIVE_WIDGET_OWNS_WIDGET) |
833 delete this; | 672 delete this; |
834 } | 673 } |
835 | 674 |
836 void NativeWidgetAura::OnWindowTargetVisibilityChanged(bool visible) { | 675 void NativeWidgetAndroid::OnWindowTargetVisibilityChanged(bool visible) { |
837 delegate_->OnNativeWidgetVisibilityChanged(visible); | 676 delegate_->OnNativeWidgetVisibilityChanged(visible); |
838 } | 677 } |
839 | 678 |
840 bool NativeWidgetAura::HasHitTestMask() const { | 679 bool NativeWidgetAndroid::HasHitTestMask() const { |
841 return delegate_->HasHitTestMask(); | 680 return delegate_->HasHitTestMask(); |
842 } | 681 } |
843 | 682 |
844 void NativeWidgetAura::GetHitTestMask(gfx::Path* mask) const { | 683 void NativeWidgetAndroid::GetHitTestMask(gfx::Path* mask) const { |
845 DCHECK(mask); | 684 DCHECK(mask); |
846 delegate_->GetHitTestMask(mask); | 685 delegate_->GetHitTestMask(mask); |
847 } | 686 } |
848 | 687 |
849 //////////////////////////////////////////////////////////////////////////////// | 688 //////////////////////////////////////////////////////////////////////////////// |
850 // NativeWidgetAura, aura::WindowObserver implementation: | 689 // NativeWidgetAndroid, ui::EventHandler implementation: |
851 | 690 |
852 void NativeWidgetAura::OnWindowPropertyChanged(aura::Window* window, | 691 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_); | 692 DCHECK(window_); |
864 // Renderer may send a key event back to us if the key event wasn't handled, | 693 // 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. | 694 // and the window may be invisible by that time. |
866 if (!window_->IsVisible()) | 695 if (!window_->IsVisible()) |
867 return; | 696 return; |
868 | 697 |
869 FocusManager* focus_manager = GetWidget()->GetFocusManager(); | 698 FocusManager* focus_manager = GetWidget()->GetFocusManager(); |
870 delegate_->OnKeyEvent(event); | 699 delegate_->OnKeyEvent(event); |
871 if (!event->handled() && focus_manager) | 700 if (!event->handled() && focus_manager) |
872 focus_manager->OnKeyEvent(*event); | 701 focus_manager->OnKeyEvent(*event); |
873 event->SetHandled(); | 702 event->SetHandled(); |
874 } | 703 } |
875 | 704 |
876 void NativeWidgetAura::OnMouseEvent(ui::MouseEvent* event) { | 705 void NativeWidgetAndroid::OnMouseEvent(ui::MouseEvent* event) { |
877 DCHECK(window_); | 706 DCHECK(window_); |
878 DCHECK(window_->IsVisible()); | 707 DCHECK(window_->IsVisible()); |
879 if (event->type() == ui::ET_MOUSEWHEEL) { | 708 if (event->type() == ui::ET_MOUSEWHEEL) { |
880 delegate_->OnMouseEvent(event); | 709 delegate_->OnMouseEvent(event); |
881 if (event->handled()) | 710 if (event->handled()) |
882 return; | 711 return; |
883 } | 712 } |
884 | 713 |
885 if (tooltip_manager_.get()) | 714 if (tooltip_manager_.get()) |
886 tooltip_manager_->UpdateTooltip(); | 715 tooltip_manager_->UpdateTooltip(); |
887 TooltipManagerAura::UpdateTooltipManagerForCapture(GetWidget()); | 716 TooltipManagerAura::UpdateTooltipManagerForCapture(GetWidget()); |
888 delegate_->OnMouseEvent(event); | 717 delegate_->OnMouseEvent(event); |
889 } | 718 } |
890 | 719 |
891 void NativeWidgetAura::OnScrollEvent(ui::ScrollEvent* event) { | 720 void NativeWidgetAndroid::OnScrollEvent(ui::ScrollEvent* event) { |
892 delegate_->OnScrollEvent(event); | 721 delegate_->OnScrollEvent(event); |
893 } | 722 } |
894 | 723 |
895 void NativeWidgetAura::OnGestureEvent(ui::GestureEvent* event) { | 724 void NativeWidgetAndroid::OnGestureEvent(ui::GestureEvent* event) { |
896 DCHECK(window_); | 725 DCHECK(window_); |
897 DCHECK(window_->IsVisible() || event->IsEndingEvent()); | 726 DCHECK(window_->IsVisible() || event->IsEndingEvent()); |
898 delegate_->OnGestureEvent(event); | 727 delegate_->OnGestureEvent(event); |
899 } | 728 } |
900 | 729 |
901 //////////////////////////////////////////////////////////////////////////////// | 730 //////////////////////////////////////////////////////////////////////////////// |
902 // NativeWidgetAura, aura::client::ActivationDelegate implementation: | 731 // NativeWidgetAndroid, aura::client::ActivationDelegate implementation: |
903 | 732 |
904 bool NativeWidgetAura::ShouldActivate() const { | 733 bool NativeWidgetAndroid::ShouldActivate() const { |
905 return delegate_->CanActivate(); | 734 return delegate_->CanActivate(); |
906 } | 735 } |
907 | 736 |
908 //////////////////////////////////////////////////////////////////////////////// | 737 //////////////////////////////////////////////////////////////////////////////// |
909 // NativeWidgetAura, aura::client::ActivationChangeObserver implementation: | 738 // NativeWidgetAndroid, aura::client::ActivationChangeObserver |
| 739 // implementation: |
910 | 740 |
911 void NativeWidgetAura::OnWindowActivated( | 741 void NativeWidgetAndroid::OnWindowActivated( |
912 aura::client::ActivationChangeObserver::ActivationReason, | 742 aura::client::ActivationChangeObserver::ActivationReason, |
913 aura::Window* gained_active, | 743 aura::Window* gained_active, |
914 aura::Window* lost_active) { | 744 aura::Window* lost_active) { |
915 DCHECK(window_ == gained_active || window_ == lost_active); | 745 DCHECK(window_ == gained_active || window_ == lost_active); |
916 if (GetWidget()->GetFocusManager()) { | 746 if (GetWidget()->GetFocusManager()) { |
917 if (window_ == gained_active) | 747 if (window_ == gained_active) |
918 GetWidget()->GetFocusManager()->RestoreFocusedView(); | 748 GetWidget()->GetFocusManager()->RestoreFocusedView(); |
919 else if (window_ == lost_active) | 749 else if (window_ == lost_active) |
920 GetWidget()->GetFocusManager()->StoreFocusedView(true); | 750 GetWidget()->GetFocusManager()->StoreFocusedView(true); |
921 } | 751 } |
922 delegate_->OnNativeWidgetActivationChanged(window_ == gained_active); | 752 delegate_->OnNativeWidgetActivationChanged(window_ == gained_active); |
923 } | 753 } |
924 | 754 |
925 //////////////////////////////////////////////////////////////////////////////// | 755 //////////////////////////////////////////////////////////////////////////////// |
926 // NativeWidgetAura, aura::client::FocusChangeObserver: | 756 // NativeWidgetAndroid, aura::client::FocusChangeObserver: |
927 | 757 |
928 void NativeWidgetAura::OnWindowFocused(aura::Window* gained_focus, | 758 void NativeWidgetAndroid::OnWindowFocused(aura::Window* gained_focus, |
929 aura::Window* lost_focus) { | 759 aura::Window* lost_focus) { |
930 if (window_ == gained_focus) | 760 if (window_ == gained_focus) |
931 delegate_->OnNativeFocus(); | 761 delegate_->OnNativeFocus(); |
932 else if (window_ == lost_focus) | 762 else if (window_ == lost_focus) |
933 delegate_->OnNativeBlur(); | 763 delegate_->OnNativeBlur(); |
934 } | 764 } |
935 | 765 |
936 //////////////////////////////////////////////////////////////////////////////// | 766 //////////////////////////////////////////////////////////////////////////////// |
937 // NativeWidgetAura, aura::WindowDragDropDelegate implementation: | 767 // NativeWidgetAndroid, aura::WindowDragDropDelegate implementation: |
938 | 768 |
939 void NativeWidgetAura::OnDragEntered(const ui::DropTargetEvent& event) { | 769 void NativeWidgetAndroid::OnDragEntered(const ui::DropTargetEvent& event) { |
940 DCHECK(drop_helper_.get() != NULL); | 770 // TODO: Implement drag and drop. crbug.com/554029. |
941 last_drop_operation_ = drop_helper_->OnDragOver(event.data(), | 771 NOTIMPLEMENTED(); |
942 event.location(), event.source_operations()); | |
943 } | 772 } |
944 | 773 |
945 int NativeWidgetAura::OnDragUpdated(const ui::DropTargetEvent& event) { | 774 int NativeWidgetAndroid::OnDragUpdated(const ui::DropTargetEvent& event) { |
946 DCHECK(drop_helper_.get() != NULL); | 775 // TODO: Implement drag and drop. crbug.com/554029. |
947 last_drop_operation_ = drop_helper_->OnDragOver(event.data(), | 776 NOTIMPLEMENTED(); |
948 event.location(), event.source_operations()); | 777 return 0; |
949 return last_drop_operation_; | |
950 } | 778 } |
951 | 779 |
952 void NativeWidgetAura::OnDragExited() { | 780 void NativeWidgetAndroid::OnDragExited() { |
953 DCHECK(drop_helper_.get() != NULL); | 781 // TODO: Implement drag and drop. crbug.com/554029. |
954 drop_helper_->OnDragExit(); | 782 NOTIMPLEMENTED(); |
955 } | 783 } |
956 | 784 |
957 int NativeWidgetAura::OnPerformDrop(const ui::DropTargetEvent& event) { | 785 int NativeWidgetAndroid::OnPerformDrop(const ui::DropTargetEvent& event) { |
958 DCHECK(drop_helper_.get() != NULL); | 786 // TODO: Implement drag and drop. crbug.com/554029. |
959 return drop_helper_->OnDrop(event.data(), event.location(), | 787 NOTIMPLEMENTED(); |
960 last_drop_operation_); | 788 return 0; |
961 } | 789 } |
962 | 790 |
963 //////////////////////////////////////////////////////////////////////////////// | 791 //////////////////////////////////////////////////////////////////////////////// |
964 // NativeWidgetAura, protected: | 792 // NativeWidgetAndroid, aura::WindowTreeHostObserver implementation: |
965 | 793 |
966 NativeWidgetAura::~NativeWidgetAura() { | 794 void NativeWidgetAndroid::OnHostCloseRequested( |
| 795 const aura::WindowTreeHost* host) { |
| 796 GetWidget()->Close(); |
| 797 } |
| 798 |
| 799 void NativeWidgetAndroid::OnHostResized(const aura::WindowTreeHost* host) { |
| 800 gfx::Rect new_bounds = gfx::Rect(host_->window()->bounds().size()); |
| 801 GetNativeWindow()->SetBounds(new_bounds); |
| 802 delegate_->OnNativeWidgetSizeChanged(new_bounds.size()); |
| 803 } |
| 804 |
| 805 void NativeWidgetAndroid::OnHostMoved(const aura::WindowTreeHost* host, |
| 806 const gfx::Point& new_origin) { |
| 807 TRACE_EVENT1("views", "NativeWidgetAndroid::OnHostMoved", "new_origin", |
| 808 new_origin.ToString()); |
| 809 |
| 810 delegate_->OnNativeWidgetMove(); |
| 811 } |
| 812 |
| 813 //////////////////////////////////////////////////////////////////////////////// |
| 814 // NativeWidgetAndroid, protected: |
| 815 |
| 816 NativeWidgetAndroid::~NativeWidgetAndroid() { |
967 destroying_ = true; | 817 destroying_ = true; |
968 if (ownership_ == Widget::InitParams::NATIVE_WIDGET_OWNS_WIDGET) | 818 if (ownership_ == Widget::InitParams::NATIVE_WIDGET_OWNS_WIDGET) |
969 delete delegate_; | 819 delete delegate_; |
970 else | 820 else |
971 CloseNow(); | 821 CloseNow(); |
972 } | 822 } |
973 | 823 |
974 //////////////////////////////////////////////////////////////////////////////// | 824 //////////////////////////////////////////////////////////////////////////////// |
975 // NativeWidgetAura, private: | 825 // NativeWidgetAndroid, private: |
976 | 826 |
977 bool NativeWidgetAura::IsDocked() const { | 827 bool NativeWidgetAndroid::IsDocked() const { |
978 return window_ && | 828 NOTIMPLEMENTED(); |
979 window_->GetProperty(aura::client::kShowStateKey) == | 829 return false; |
980 ui::SHOW_STATE_DOCKED; | |
981 } | 830 } |
982 | 831 |
983 void NativeWidgetAura::SetInitialFocus(ui::WindowShowState show_state) { | 832 void NativeWidgetAndroid::SetInitialFocus(ui::WindowShowState show_state) { |
984 // The window does not get keyboard messages unless we focus it. | 833 // The window does not get keyboard messages unless we focus it. |
985 if (!GetWidget()->SetInitialFocus(show_state)) | 834 if (!GetWidget()->SetInitialFocus(show_state)) |
986 window_->Focus(); | 835 window_->Focus(); |
987 } | 836 } |
988 | 837 |
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 | 838 } // namespace views |
OLD | NEW |