OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 COMPONENTS_EXO_WM_HELPER_ASH_H_ | 5 #ifndef COMPONENTS_EXO_WM_HELPER_ASH_H_ |
6 #define COMPONENTS_EXO_WM_HELPER_ASH_H_ | 6 #define COMPONENTS_EXO_WM_HELPER_ASH_H_ |
7 | 7 |
8 #include "ash/shell_observer.h" | 8 #include "ash/shell_observer.h" |
9 #include "ash/wm_display_observer.h" | 9 #include "ash/wm_display_observer.h" |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
(...skipping 11 matching lines...) Expand all Loading... |
22 public aura::client::FocusChangeObserver, | 22 public aura::client::FocusChangeObserver, |
23 public aura::client::CursorClientObserver, | 23 public aura::client::CursorClientObserver, |
24 public ash::ShellObserver, | 24 public ash::ShellObserver, |
25 public ash::WmDisplayObserver, | 25 public ash::WmDisplayObserver, |
26 public ui::InputDeviceEventObserver { | 26 public ui::InputDeviceEventObserver { |
27 public: | 27 public: |
28 WMHelperAsh(); | 28 WMHelperAsh(); |
29 ~WMHelperAsh() override; | 29 ~WMHelperAsh() override; |
30 | 30 |
31 // Overridden from WMHelper: | 31 // Overridden from WMHelper: |
32 const display::ManagedDisplayInfo GetDisplayInfo( | 32 const display::ManagedDisplayInfo& GetDisplayInfo( |
33 int64_t display_id) const override; | 33 int64_t display_id) const override; |
34 aura::Window* GetContainer(int container_id) override; | 34 aura::Window* GetPrimaryDisplayContainer(int container_id) override; |
35 aura::Window* GetActiveWindow() const override; | 35 aura::Window* GetActiveWindow() const override; |
36 aura::Window* GetFocusedWindow() const override; | 36 aura::Window* GetFocusedWindow() const override; |
37 ui::CursorSetType GetCursorSet() const override; | 37 ui::CursorSetType GetCursorSet() const override; |
| 38 const display::Display& GetCursorDisplay() const override; |
38 void AddPreTargetHandler(ui::EventHandler* handler) override; | 39 void AddPreTargetHandler(ui::EventHandler* handler) override; |
39 void PrependPreTargetHandler(ui::EventHandler* handler) override; | 40 void PrependPreTargetHandler(ui::EventHandler* handler) override; |
40 void RemovePreTargetHandler(ui::EventHandler* handler) override; | 41 void RemovePreTargetHandler(ui::EventHandler* handler) override; |
41 void AddPostTargetHandler(ui::EventHandler* handler) override; | 42 void AddPostTargetHandler(ui::EventHandler* handler) override; |
42 void RemovePostTargetHandler(ui::EventHandler* handler) override; | 43 void RemovePostTargetHandler(ui::EventHandler* handler) override; |
43 bool IsMaximizeModeWindowManagerEnabled() const override; | 44 bool IsMaximizeModeWindowManagerEnabled() const override; |
44 | 45 |
45 // Overridden from aura::client::ActivationChangeObserver: | 46 // Overridden from aura::client::ActivationChangeObserver: |
46 void OnWindowActivated( | 47 void OnWindowActivated( |
47 aura::client::ActivationChangeObserver::ActivationReason reason, | 48 aura::client::ActivationChangeObserver::ActivationReason reason, |
48 aura::Window* gained_active, | 49 aura::Window* gained_active, |
49 aura::Window* lost_active) override; | 50 aura::Window* lost_active) override; |
50 | 51 |
51 // Overridden from aura::client::FocusChangeObserver: | 52 // Overridden from aura::client::FocusChangeObserver: |
52 void OnWindowFocused(aura::Window* gained_focus, | 53 void OnWindowFocused(aura::Window* gained_focus, |
53 aura::Window* lost_focus) override; | 54 aura::Window* lost_focus) override; |
54 | 55 |
55 // Overridden from aura::client::CursorClientObserver: | 56 // Overridden from aura::client::CursorClientObserver: |
56 void OnCursorVisibilityChanged(bool is_visible) override; | 57 void OnCursorVisibilityChanged(bool is_visible) override; |
57 void OnCursorSetChanged(ui::CursorSetType cursor_set) override; | 58 void OnCursorSetChanged(ui::CursorSetType cursor_set) override; |
| 59 void OnCursorDisplayChanged(const display::Display& display) override; |
58 | 60 |
59 // Overridden from ash::ShellObserver: | 61 // Overridden from ash::ShellObserver: |
60 void OnMaximizeModeStarted() override; | 62 void OnMaximizeModeStarted() override; |
61 void OnMaximizeModeEnding() override; | 63 void OnMaximizeModeEnding() override; |
62 void OnMaximizeModeEnded() override; | 64 void OnMaximizeModeEnded() override; |
63 | 65 |
64 // Overridden from ash::WmDisplayObserver: | 66 // Overridden from ash::WmDisplayObserver: |
65 void OnDisplayConfigurationChanged() override; | 67 void OnDisplayConfigurationChanged() override; |
66 | 68 |
67 // Overridden from ui::InputDeviceEventObserver: | 69 // Overridden from ui::InputDeviceEventObserver: |
68 void OnKeyboardDeviceConfigurationChanged() override; | 70 void OnKeyboardDeviceConfigurationChanged() override; |
69 | 71 |
70 private: | 72 private: |
71 DISALLOW_COPY_AND_ASSIGN(WMHelperAsh); | 73 DISALLOW_COPY_AND_ASSIGN(WMHelperAsh); |
72 }; | 74 }; |
73 | 75 |
74 } // namespace exo | 76 } // namespace exo |
75 | 77 |
76 #endif // COMPONENTS_EXO_WM_HELPER_H_ | 78 #endif // COMPONENTS_EXO_WM_HELPER_H_ |
OLD | NEW |