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" |
| 8 #include "ui/aura/client/aura_constants.h" |
| 9 #include "ui/aura/root_window.h" |
7 #include "ui/aura/window.h" | 10 #include "ui/aura/window.h" |
8 #include "ui/aura/client/aura_constants.h" | 11 #include "ui/aura_shell/activation_controller.h" |
9 #include "ui/base/ui_base_types.h" | 12 #include "ui/base/ui_base_types.h" |
10 | 13 |
| 14 namespace { |
| 15 aura::ActivationClient* GetActivationClient() { |
| 16 return reinterpret_cast<aura::ActivationClient*>( |
| 17 aura::RootWindow::GetInstance()->GetProperty( |
| 18 aura::kRootWindowActivationClient)); |
| 19 } |
| 20 } // namespace |
| 21 |
11 namespace aura_shell { | 22 namespace aura_shell { |
12 | 23 |
13 bool IsWindowMaximized(aura::Window* window) { | 24 bool IsWindowMaximized(aura::Window* window) { |
14 return window->GetIntProperty(aura::kShowStateKey) == | 25 return window->GetIntProperty(aura::kShowStateKey) == |
15 ui::SHOW_STATE_MAXIMIZED; | 26 ui::SHOW_STATE_MAXIMIZED; |
16 } | 27 } |
17 | 28 |
| 29 void ActivateWindow(aura::Window* window) { |
| 30 GetActivationClient()->ActivateWindow(window); |
| 31 } |
| 32 |
| 33 void DeactivateWindow(aura::Window* window) { |
| 34 GetActivationClient()->DeactivateWindow(window); |
| 35 } |
| 36 |
| 37 bool IsActiveWindow(aura::Window* window) { |
| 38 return GetActiveWindow() == window; |
| 39 } |
| 40 |
| 41 aura::Window* GetActiveWindow() { |
| 42 return GetActivationClient()->GetActiveWindow(); |
| 43 } |
| 44 |
| 45 aura::Window* GetActivatableWindow(aura::Window* window) { |
| 46 return internal::ActivationController::GetActivatableWindow(window); |
| 47 } |
| 48 |
| 49 bool CanFocusWindow(aura::Window* window) { |
| 50 return internal::ActivationController::CanFocusWindow(window); |
| 51 } |
| 52 |
18 } // namespace aura_shell | 53 } // namespace aura_shell |
OLD | NEW |