| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/aura_shell/window_util.h" | 5 #include "ui/aura_shell/window_util.h" |
| 6 | 6 |
| 7 #include "ui/aura/client/activation_client.h" | 7 #include "ui/aura/window.h" |
| 8 #include "ui/aura/client/aura_constants.h" | 8 #include "ui/aura/client/aura_constants.h" |
| 9 #include "ui/aura/root_window.h" | |
| 10 #include "ui/aura/window.h" | |
| 11 #include "ui/aura_shell/activation_controller.h" | |
| 12 #include "ui/base/ui_base_types.h" | 9 #include "ui/base/ui_base_types.h" |
| 13 | 10 |
| 14 namespace aura_shell { | 11 namespace aura_shell { |
| 15 | 12 |
| 16 bool IsWindowMaximized(aura::Window* window) { | 13 bool IsWindowMaximized(aura::Window* window) { |
| 17 return window->GetIntProperty(aura::kShowStateKey) == | 14 return window->GetIntProperty(aura::kShowStateKey) == |
| 18 ui::SHOW_STATE_MAXIMIZED; | 15 ui::SHOW_STATE_MAXIMIZED; |
| 19 } | 16 } |
| 20 | 17 |
| 21 void ActivateWindow(aura::Window* window) { | |
| 22 aura::ActivationClient::GetActivationClient()->ActivateWindow(window); | |
| 23 } | |
| 24 | |
| 25 void DeactivateWindow(aura::Window* window) { | |
| 26 aura::ActivationClient::GetActivationClient()->DeactivateWindow(window); | |
| 27 } | |
| 28 | |
| 29 bool IsActiveWindow(aura::Window* window) { | |
| 30 return GetActiveWindow() == window; | |
| 31 } | |
| 32 | |
| 33 aura::Window* GetActiveWindow() { | |
| 34 return aura::ActivationClient::GetActivationClient()->GetActiveWindow(); | |
| 35 } | |
| 36 | |
| 37 aura::Window* GetActivatableWindow(aura::Window* window) { | |
| 38 return internal::ActivationController::GetActivatableWindow(window); | |
| 39 } | |
| 40 | |
| 41 } // namespace aura_shell | 18 } // namespace aura_shell |
| OLD | NEW |