| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef UI_AURA_SHELL_TOPLEVEL_LAYOUT_MANAGER_H_ | |
| 6 #define UI_AURA_SHELL_TOPLEVEL_LAYOUT_MANAGER_H_ | |
| 7 #pragma once | |
| 8 | |
| 9 #include <set> | |
| 10 | |
| 11 #include "base/basictypes.h" | |
| 12 #include "base/compiler_specific.h" | |
| 13 #include "ui/aura/layout_manager.h" | |
| 14 #include "ui/aura/window_observer.h" | |
| 15 #include "ui/aura_shell/aura_shell_export.h" | |
| 16 | |
| 17 namespace aura_shell { | |
| 18 namespace internal { | |
| 19 | |
| 20 class ShelfLayoutManager; | |
| 21 | |
| 22 // ToplevelLayoutManager is the LayoutManager installed on a container that | |
| 23 // hosts what the shell considers to be top-level windows. It is used if the | |
| 24 // WorkspaceManager is not enabled. ToplevelLayoutManager listens for changes to | |
| 25 // kShowStateKey and resizes the window appropriately. | |
| 26 class AURA_SHELL_EXPORT ToplevelLayoutManager : public aura::LayoutManager, | |
| 27 public aura::WindowObserver { | |
| 28 public: | |
| 29 ToplevelLayoutManager(); | |
| 30 virtual ~ToplevelLayoutManager(); | |
| 31 | |
| 32 void set_shelf(ShelfLayoutManager* shelf) { shelf_ = shelf; } | |
| 33 | |
| 34 // LayoutManager overrides: | |
| 35 virtual void OnWindowResized() OVERRIDE; | |
| 36 virtual void OnWindowAddedToLayout(aura::Window* child) OVERRIDE; | |
| 37 virtual void OnWillRemoveWindowFromLayout(aura::Window* child) OVERRIDE; | |
| 38 virtual void OnChildWindowVisibilityChanged(aura::Window* child, | |
| 39 bool visibile) OVERRIDE; | |
| 40 virtual void SetChildBounds(aura::Window* child, | |
| 41 const gfx::Rect& requested_bounds) OVERRIDE; | |
| 42 | |
| 43 // WindowObserver overrides: | |
| 44 virtual void OnWindowPropertyChanged(aura::Window* window, | |
| 45 const char* name, | |
| 46 void* old) OVERRIDE; | |
| 47 | |
| 48 private: | |
| 49 typedef std::set<aura::Window*> Windows; | |
| 50 | |
| 51 // Updates the visibility of the shelf based on if there are any full screen | |
| 52 // windows. | |
| 53 void UpdateShelfVisibility(); | |
| 54 | |
| 55 // Set of windows we're listening to. | |
| 56 Windows windows_; | |
| 57 | |
| 58 // May be NULL if we're not using a shelf. | |
| 59 ShelfLayoutManager* shelf_; | |
| 60 | |
| 61 DISALLOW_COPY_AND_ASSIGN(ToplevelLayoutManager); | |
| 62 }; | |
| 63 | |
| 64 } // namespace aura_shell | |
| 65 } // namespace internal | |
| 66 | |
| 67 #endif // UI_AURA_SHELL_TOPLEVEL_LAYOUT_MANAGER_H_ | |
| OLD | NEW |