| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef UI_WM_PUBLIC_ACTIVATION_CHANGE_OBSERVER_H_ | 5 #ifndef UI_WM_PUBLIC_ACTIVATION_CHANGE_OBSERVER_H_ |
| 6 #define UI_WM_PUBLIC_ACTIVATION_CHANGE_OBSERVER_H_ | 6 #define UI_WM_PUBLIC_ACTIVATION_CHANGE_OBSERVER_H_ |
| 7 | 7 |
| 8 #include "ui/aura/aura_export.h" | 8 #include "ui/wm/wm_export.h" |
| 9 | 9 |
| 10 namespace aura { | 10 namespace aura { |
| 11 class Window; | 11 class Window; |
| 12 | 12 |
| 13 namespace client { | 13 namespace client { |
| 14 | 14 |
| 15 class AURA_EXPORT ActivationChangeObserver { | 15 class WM_EXPORT ActivationChangeObserver { |
| 16 public: | 16 public: |
| 17 // Called when |active| gains focus, or there is no active window | 17 // Called when |active| gains focus, or there is no active window |
| 18 // (|active| is NULL in this case.) |old_active| refers to the | 18 // (|active| is NULL in this case.) |old_active| refers to the |
| 19 // previous active window or NULL if there was no previously active | 19 // previous active window or NULL if there was no previously active |
| 20 // window. | 20 // window. |
| 21 virtual void OnWindowActivated(Window* gained_active, | 21 virtual void OnWindowActivated(Window* gained_active, |
| 22 Window* lost_active) = 0; | 22 Window* lost_active) = 0; |
| 23 | 23 |
| 24 // Called when during window activation the currently active window is | 24 // Called when during window activation the currently active window is |
| 25 // selected for activation. This can happen when a window requested for | 25 // selected for activation. This can happen when a window requested for |
| 26 // activation cannot be activated because a system modal window is active. | 26 // activation cannot be activated because a system modal window is active. |
| 27 virtual void OnAttemptToReactivateWindow(aura::Window* request_active, | 27 virtual void OnAttemptToReactivateWindow(aura::Window* request_active, |
| 28 aura::Window* actual_active) {} | 28 aura::Window* actual_active) {} |
| 29 | 29 |
| 30 protected: | 30 protected: |
| 31 virtual ~ActivationChangeObserver() {} | 31 virtual ~ActivationChangeObserver() {} |
| 32 }; | 32 }; |
| 33 | 33 |
| 34 // Gets/Sets the ActivationChangeObserver for a specific window. This observer | 34 // Gets/Sets the ActivationChangeObserver for a specific window. This observer |
| 35 // is notified after the ActivationClient notifies all registered observers. | 35 // is notified after the ActivationClient notifies all registered observers. |
| 36 AURA_EXPORT void SetActivationChangeObserver( | 36 WM_EXPORT void SetActivationChangeObserver( |
| 37 Window* window, | 37 Window* window, |
| 38 ActivationChangeObserver* observer); | 38 ActivationChangeObserver* observer); |
| 39 AURA_EXPORT ActivationChangeObserver* GetActivationChangeObserver( | 39 WM_EXPORT ActivationChangeObserver* GetActivationChangeObserver(Window* window); |
| 40 Window* window); | |
| 41 | 40 |
| 42 } // namespace client | 41 } // namespace client |
| 43 } // namespace aura | 42 } // namespace aura |
| 44 | 43 |
| 45 #endif // UI_WM_PUBLIC_ACTIVATION_CHANGE_OBSERVER_H_ | 44 #endif // UI_WM_PUBLIC_ACTIVATION_CHANGE_OBSERVER_H_ |
| OLD | NEW |