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 ASH_ROOT_WINDOW_CONTROLLER_H_ | 5 #ifndef ASH_ROOT_WINDOW_CONTROLLER_H_ |
6 #define ASH_ROOT_WINDOW_CONTROLLER_H_ | 6 #define ASH_ROOT_WINDOW_CONTROLLER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "ash/ash_export.h" | 10 #include "ash/ash_export.h" |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 | 98 |
99 // Returns a RootWindowController of the window's root window. | 99 // Returns a RootWindowController of the window's root window. |
100 static RootWindowController* ForWindow(const aura::Window* window); | 100 static RootWindowController* ForWindow(const aura::Window* window); |
101 | 101 |
102 // Returns the RootWindowController of the target root window. | 102 // Returns the RootWindowController of the target root window. |
103 static RootWindowController* ForTargetRootWindow(); | 103 static RootWindowController* ForTargetRootWindow(); |
104 | 104 |
105 // Returns container which contains a given |window|. | 105 // Returns container which contains a given |window|. |
106 static aura::Window* GetContainerForWindow(aura::Window* window); | 106 static aura::Window* GetContainerForWindow(aura::Window* window); |
107 | 107 |
108 virtual ~RootWindowController(); | 108 ~RootWindowController() override; |
109 | 109 |
110 AshWindowTreeHost* ash_host() { return ash_host_.get(); } | 110 AshWindowTreeHost* ash_host() { return ash_host_.get(); } |
111 const AshWindowTreeHost* ash_host() const { return ash_host_.get(); } | 111 const AshWindowTreeHost* ash_host() const { return ash_host_.get(); } |
112 | 112 |
113 aura::WindowTreeHost* GetHost(); | 113 aura::WindowTreeHost* GetHost(); |
114 const aura::WindowTreeHost* GetHost() const; | 114 const aura::WindowTreeHost* GetHost() const; |
115 aura::Window* GetRootWindow(); | 115 aura::Window* GetRootWindow(); |
116 const aura::Window* GetRootWindow() const; | 116 const aura::Window* GetRootWindow() const; |
117 | 117 |
118 RootWindowLayoutManager* root_window_layout() { return root_window_layout_; } | 118 RootWindowLayoutManager* root_window_layout() { return root_window_layout_; } |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 // types in the shell UI. | 260 // types in the shell UI. |
261 void CreateContainersInRootWindow(aura::Window* root_window); | 261 void CreateContainersInRootWindow(aura::Window* root_window); |
262 | 262 |
263 // Enables projection touch HUD. | 263 // Enables projection touch HUD. |
264 void EnableTouchHudProjection(); | 264 void EnableTouchHudProjection(); |
265 | 265 |
266 // Disables projection touch HUD. | 266 // Disables projection touch HUD. |
267 void DisableTouchHudProjection(); | 267 void DisableTouchHudProjection(); |
268 | 268 |
269 // Overridden from ShellObserver. | 269 // Overridden from ShellObserver. |
270 virtual void OnLoginStateChanged(user::LoginStatus status) override; | 270 void OnLoginStateChanged(user::LoginStatus status) override; |
271 virtual void OnTouchHudProjectionToggled(bool enabled) override; | 271 void OnTouchHudProjectionToggled(bool enabled) override; |
272 | 272 |
273 scoped_ptr<AshWindowTreeHost> ash_host_; | 273 scoped_ptr<AshWindowTreeHost> ash_host_; |
274 RootWindowLayoutManager* root_window_layout_; | 274 RootWindowLayoutManager* root_window_layout_; |
275 | 275 |
276 scoped_ptr<StackingController> stacking_controller_; | 276 scoped_ptr<StackingController> stacking_controller_; |
277 | 277 |
278 // The shelf for managing the shelf and the status widget. | 278 // The shelf for managing the shelf and the status widget. |
279 scoped_ptr<ShelfWidget> shelf_; | 279 scoped_ptr<ShelfWidget> shelf_; |
280 | 280 |
281 // An invisible/empty window used as a event target for | 281 // An invisible/empty window used as a event target for |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
320 }; | 320 }; |
321 | 321 |
322 | 322 |
323 // Gets the RootWindowController for |root_window|. | 323 // Gets the RootWindowController for |root_window|. |
324 ASH_EXPORT RootWindowController* GetRootWindowController( | 324 ASH_EXPORT RootWindowController* GetRootWindowController( |
325 const aura::Window* root_window); | 325 const aura::Window* root_window); |
326 | 326 |
327 } // namespace ash | 327 } // namespace ash |
328 | 328 |
329 #endif // ASH_ROOT_WINDOW_CONTROLLER_H_ | 329 #endif // ASH_ROOT_WINDOW_CONTROLLER_H_ |
OLD | NEW |