| 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_LAUNCHER_LAUNCHER_H_ | 5 #ifndef ASH_LAUNCHER_LAUNCHER_H_ |
| 6 #define ASH_LAUNCHER_LAUNCHER_H_ | 6 #define ASH_LAUNCHER_LAUNCHER_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "ash/launcher/launcher_types.h" | 9 #include "ash/launcher/launcher_types.h" |
| 10 #include "ash/shelf/shelf_types.h" | 10 #include "ash/shelf/shelf_types.h" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 namespace internal { | 34 namespace internal { |
| 35 class FocusCycler; | 35 class FocusCycler; |
| 36 class ShelfLayoutManager; | 36 class ShelfLayoutManager; |
| 37 class ShelfView; | 37 class ShelfView; |
| 38 } | 38 } |
| 39 | 39 |
| 40 namespace test { | 40 namespace test { |
| 41 class LauncherTestAPI; | 41 class LauncherTestAPI; |
| 42 } | 42 } |
| 43 | 43 |
| 44 class LauncherIconObserver; | |
| 45 class LauncherDelegate; | 44 class LauncherDelegate; |
| 46 class LauncherModel; | 45 class LauncherModel; |
| 46 class ShelfIconObserver; |
| 47 class ShelfWidget; | 47 class ShelfWidget; |
| 48 | 48 |
| 49 class ASH_EXPORT Launcher { | 49 class ASH_EXPORT Launcher { |
| 50 public: | 50 public: |
| 51 static const char kNativeViewName[]; | 51 static const char kNativeViewName[]; |
| 52 | 52 |
| 53 Launcher(LauncherModel* launcher_model, | 53 Launcher(LauncherModel* launcher_model, |
| 54 LauncherDelegate* launcher_delegate, | 54 LauncherDelegate* launcher_delegate, |
| 55 ShelfWidget* shelf_widget); | 55 ShelfWidget* shelf_widget); |
| 56 virtual ~Launcher(); | 56 virtual ~Launcher(); |
| (...skipping 18 matching lines...) Expand all Loading... |
| 75 // when dragging panels to reposition them with respect to the other panels. | 75 // when dragging panels to reposition them with respect to the other panels. |
| 76 void UpdateIconPositionForWindow(aura::Window* window); | 76 void UpdateIconPositionForWindow(aura::Window* window); |
| 77 | 77 |
| 78 // Activates the the launcher item specified by the index in the list | 78 // Activates the the launcher item specified by the index in the list |
| 79 // of launcher items. | 79 // of launcher items. |
| 80 void ActivateLauncherItem(int index); | 80 void ActivateLauncherItem(int index); |
| 81 | 81 |
| 82 // Cycles the window focus linearly over the current launcher items. | 82 // Cycles the window focus linearly over the current launcher items. |
| 83 void CycleWindowLinear(CycleDirection direction); | 83 void CycleWindowLinear(CycleDirection direction); |
| 84 | 84 |
| 85 void AddIconObserver(LauncherIconObserver* observer); | 85 void AddIconObserver(ShelfIconObserver* observer); |
| 86 void RemoveIconObserver(LauncherIconObserver* observer); | 86 void RemoveIconObserver(ShelfIconObserver* observer); |
| 87 | 87 |
| 88 // Returns true if the Launcher is showing a context menu. | 88 // Returns true if the Launcher is showing a context menu. |
| 89 bool IsShowingMenu() const; | 89 bool IsShowingMenu() const; |
| 90 | 90 |
| 91 bool IsShowingOverflowBubble() const; | 91 bool IsShowingOverflowBubble() const; |
| 92 | 92 |
| 93 void SetVisible(bool visible) const; | 93 void SetVisible(bool visible) const; |
| 94 bool IsVisible() const; | 94 bool IsVisible() const; |
| 95 | 95 |
| 96 void SchedulePaint(); | 96 void SchedulePaint(); |
| (...skipping 28 matching lines...) Expand all Loading... |
| 125 LauncherDelegate* delegate_; | 125 LauncherDelegate* delegate_; |
| 126 | 126 |
| 127 ShelfWidget* shelf_widget_; | 127 ShelfWidget* shelf_widget_; |
| 128 | 128 |
| 129 DISALLOW_COPY_AND_ASSIGN(Launcher); | 129 DISALLOW_COPY_AND_ASSIGN(Launcher); |
| 130 }; | 130 }; |
| 131 | 131 |
| 132 } // namespace ash | 132 } // namespace ash |
| 133 | 133 |
| 134 #endif // ASH_LAUNCHER_LAUNCHER_H_ | 134 #endif // ASH_LAUNCHER_LAUNCHER_H_ |
| OLD | NEW |