OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "ash/wm/overview/scoped_window_copy.h" | 5 #include "ash/wm/overview/scoped_window_copy.h" |
6 | 6 |
7 #include "ash/screen_util.h" | 7 #include "ash/screen_util.h" |
8 #include "ash/shell.h" | 8 #include "ash/shell.h" |
9 #include "ui/aura/client/aura_constants.h" | 9 #include "ui/aura/client/aura_constants.h" |
10 #include "ui/aura/client/screen_position_client.h" | 10 #include "ui/aura/client/screen_position_client.h" |
(...skipping 17 matching lines...) Expand all Loading... |
28 // Save and remove the transform from the layer to later reapply to both the | 28 // Save and remove the transform from the layer to later reapply to both the |
29 // source and newly created copy window. | 29 // source and newly created copy window. |
30 gfx::Transform transform = recreated_layer->transform(); | 30 gfx::Transform transform = recreated_layer->transform(); |
31 recreated_layer->SetTransform(gfx::Transform()); | 31 recreated_layer->SetTransform(gfx::Transform()); |
32 | 32 |
33 src_window->SetTransform(transform); | 33 src_window->SetTransform(transform); |
34 views::Widget* widget = new views::Widget; | 34 views::Widget* widget = new views::Widget; |
35 views::Widget::InitParams params(views::Widget::InitParams::TYPE_POPUP); | 35 views::Widget::InitParams params(views::Widget::InitParams::TYPE_POPUP); |
36 params.opacity = views::Widget::InitParams::TRANSLUCENT_WINDOW; | 36 params.opacity = views::Widget::InitParams::TRANSLUCENT_WINDOW; |
37 params.parent = src_window->parent(); | 37 params.parent = src_window->parent(); |
| 38 params.can_activate = false; |
38 params.keep_on_top = true; | 39 params.keep_on_top = true; |
39 widget->set_focus_on_creation(false); | 40 widget->set_focus_on_creation(false); |
40 widget->Init(params); | 41 widget->Init(params); |
41 widget->SetVisibilityChangedAnimationsEnabled(false); | 42 widget->SetVisibilityChangedAnimationsEnabled(false); |
42 std::string name = src_window->name() + " (Copy)"; | 43 std::string name = src_window->name() + " (Copy)"; |
43 widget->GetNativeWindow()->SetName(name); | 44 widget->GetNativeWindow()->SetName(name); |
44 ::wm::SetShadowType(widget->GetNativeWindow(), | 45 ::wm::SetShadowType(widget->GetNativeWindow(), |
45 ::wm::SHADOW_TYPE_RECTANGULAR); | 46 ::wm::SHADOW_TYPE_RECTANGULAR); |
46 | 47 |
47 // Set the bounds in the target root window. | 48 // Set the bounds in the target root window. |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 // The cleanup observer will delete itself and the window when any pending | 170 // The cleanup observer will delete itself and the window when any pending |
170 // animations have completed. | 171 // animations have completed. |
171 cleanup_observer_->TakeOwnershipOfWidget(); | 172 cleanup_observer_->TakeOwnershipOfWidget(); |
172 } | 173 } |
173 | 174 |
174 aura::Window* ScopedWindowCopy::GetWindow() { | 175 aura::Window* ScopedWindowCopy::GetWindow() { |
175 return widget_->GetNativeWindow(); | 176 return widget_->GetNativeWindow(); |
176 } | 177 } |
177 | 178 |
178 } // namespace ash | 179 } // namespace ash |
OLD | NEW |