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