| 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_WORKSPACE_CONTROLLER_H_ | |
| 6 #define UI_AURA_SHELL_WORKSPACE_CONTROLLER_H_ | |
| 7 #pragma once | |
| 8 | |
| 9 #include "base/basictypes.h" | |
| 10 #include "base/memory/scoped_ptr.h" | |
| 11 #include "ui/aura/root_window_observer.h" | |
| 12 #include "ui/aura/window_observer.h" | |
| 13 #include "ui/aura_shell/aura_shell_export.h" | |
| 14 #include "ui/aura_shell/launcher/launcher_model_observer.h" | |
| 15 #include "ui/aura_shell/workspace/workspace_observer.h" | |
| 16 | |
| 17 namespace aura { | |
| 18 class Window; | |
| 19 } | |
| 20 | |
| 21 namespace gfx { | |
| 22 class Size; | |
| 23 } | |
| 24 | |
| 25 namespace aura_shell { | |
| 26 class LauncherModel; | |
| 27 | |
| 28 namespace internal { | |
| 29 | |
| 30 class WorkspaceManager; | |
| 31 | |
| 32 // WorkspaceControlls owns a WorkspaceManager. WorkspaceControlls bridges | |
| 33 // events From RootWindowObserver translating them to WorkspaceManager, and | |
| 34 // a move event between Laucher and Workspace. | |
| 35 class AURA_SHELL_EXPORT WorkspaceController : | |
| 36 public aura::RootWindowObserver, | |
| 37 public aura::WindowObserver, | |
| 38 public aura_shell::internal::WorkspaceObserver, | |
| 39 public aura_shell::LauncherModelObserver { | |
| 40 public: | |
| 41 explicit WorkspaceController(aura::Window* workspace_viewport); | |
| 42 virtual ~WorkspaceController(); | |
| 43 | |
| 44 void ToggleOverview(); | |
| 45 | |
| 46 void SetLauncherModel(LauncherModel* launcher_model); | |
| 47 | |
| 48 // Returns the workspace manager that this controler owns. | |
| 49 WorkspaceManager* workspace_manager() { | |
| 50 return workspace_manager_.get(); | |
| 51 } | |
| 52 | |
| 53 // aura::RootWindowObserver overrides: | |
| 54 virtual void OnRootWindowResized(const gfx::Size& new_size) OVERRIDE; | |
| 55 | |
| 56 // aura::WindowObserver overrides: | |
| 57 virtual void OnWindowPropertyChanged(aura::Window* window, | |
| 58 const char* key, | |
| 59 void* old) OVERRIDE; | |
| 60 | |
| 61 // WorkspaceObserver overrides: | |
| 62 virtual void WindowMoved(WorkspaceManager* manager, | |
| 63 aura::Window* source, | |
| 64 aura::Window* target) OVERRIDE; | |
| 65 virtual void ActiveWorkspaceChanged(WorkspaceManager* manager, | |
| 66 Workspace* old) OVERRIDE; | |
| 67 | |
| 68 // Invoked after an item has been added to the model. | |
| 69 virtual void LauncherItemAdded(int index) OVERRIDE; | |
| 70 virtual void LauncherItemRemoved(int index) OVERRIDE; | |
| 71 virtual void LauncherItemMoved(int start_index, int target_index) OVERRIDE; | |
| 72 virtual void LauncherItemImagesChanged(int index) OVERRIDE; | |
| 73 virtual void LauncherItemImagesWillChange(int index) OVERRIDE {} | |
| 74 | |
| 75 private: | |
| 76 scoped_ptr<WorkspaceManager> workspace_manager_; | |
| 77 | |
| 78 // Owned by Launcher. | |
| 79 LauncherModel* launcher_model_; | |
| 80 | |
| 81 // True while the controller is moving window either on workspace or launcher. | |
| 82 // Used to prevent infinite recursive call between the workspace and launcher. | |
| 83 bool ignore_move_event_; | |
| 84 | |
| 85 DISALLOW_COPY_AND_ASSIGN(WorkspaceController); | |
| 86 }; | |
| 87 | |
| 88 } // namespace internal | |
| 89 } // namespace aura_shell | |
| 90 | |
| 91 #endif // UI_AURA_SHELL_WORKSPACE_CONTROLLER_H_ | |
| OLD | NEW |