OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 CHROME_BROWSER_UI_VIEWS_FRAME_IMMERSIVE_MODE_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_IMMERSIVE_MODE_CONTROLLER_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_IMMERSIVE_MODE_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_IMMERSIVE_MODE_CONTROLLER_H_ |
7 | 7 |
8 #include "ash/wm/immersive_revealed_lock.h" | |
9 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
10 #include "base/observer_list.h" | 9 #include "base/observer_list.h" |
11 #include "chrome/browser/ui/host_desktop.h" | 10 #include "chrome/browser/ui/host_desktop.h" |
12 | 11 |
13 class BrowserView; | 12 class BrowserView; |
14 | 13 |
15 namespace gfx { | 14 namespace gfx { |
16 class Rect; | 15 class Rect; |
17 class Size; | 16 class Size; |
18 } | 17 } |
19 | 18 |
20 typedef ash::ImmersiveRevealedLock ImmersiveRevealedLock; | 19 // A lock which will keep the top-of-window views revealed for its |
| 20 // lifetime. |
| 21 // See ImmersiveModeController::GetRevealedLock for details. |
| 22 class ImmersiveRevealedLock { |
| 23 public: |
| 24 virtual ~ImmersiveRevealedLock() {} |
| 25 |
| 26 protected: |
| 27 ImmersiveRevealedLock() {} |
| 28 }; |
21 | 29 |
22 // Controller for an "immersive mode" similar to MacOS presentation mode where | 30 // Controller for an "immersive mode" similar to MacOS presentation mode where |
23 // the top-of-window views are hidden until the mouse hits the top of the | 31 // the top-of-window views are hidden until the mouse hits the top of the |
24 // screen. The tab strip is optionally painted with miniature "tab indicator" | 32 // screen. The tab strip is optionally painted with miniature "tab indicator" |
25 // rectangles. | 33 // rectangles. |
26 // Currently, immersive mode is only available for Chrome OS. | 34 // Currently, immersive mode is only available for Chrome OS. |
27 class ImmersiveModeController { | 35 class ImmersiveModeController { |
28 public: | 36 public: |
29 enum AnimateReveal { | 37 enum AnimateReveal { |
30 ANIMATE_REVEAL_YES, | 38 ANIMATE_REVEAL_YES, |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 // Returns a lock which will keep the top-of-window views revealed for its | 83 // Returns a lock which will keep the top-of-window views revealed for its |
76 // lifetime. Several locks can be obtained. When all of the locks are | 84 // lifetime. Several locks can be obtained. When all of the locks are |
77 // destroyed, if immersive mode is enabled and there is nothing else keeping | 85 // destroyed, if immersive mode is enabled and there is nothing else keeping |
78 // the top-of-window views revealed, the top-of-window views will be closed. | 86 // the top-of-window views revealed, the top-of-window views will be closed. |
79 // This method always returns a valid lock regardless of whether immersive | 87 // This method always returns a valid lock regardless of whether immersive |
80 // mode is enabled. The lock's lifetime can span immersive mode being | 88 // mode is enabled. The lock's lifetime can span immersive mode being |
81 // enabled / disabled. | 89 // enabled / disabled. |
82 // If acquiring the lock causes a reveal, the top-of-window views will animate | 90 // If acquiring the lock causes a reveal, the top-of-window views will animate |
83 // according to |animate_reveal|. | 91 // according to |animate_reveal|. |
84 // The caller takes ownership of the returned lock. | 92 // The caller takes ownership of the returned lock. |
| 93 // This is currently only supported on Ash. |
85 virtual ImmersiveRevealedLock* GetRevealedLock( | 94 virtual ImmersiveRevealedLock* GetRevealedLock( |
86 AnimateReveal animate_reveal) WARN_UNUSED_RESULT = 0; | 95 AnimateReveal animate_reveal) WARN_UNUSED_RESULT = 0; |
87 | 96 |
88 // Called by the find bar to indicate that its visible bounds have changed. | 97 // Called by the find bar to indicate that its visible bounds have changed. |
89 // |new_visible_bounds_in_screen| should be empty if the find bar is not | 98 // |new_visible_bounds_in_screen| should be empty if the find bar is not |
90 // visible. | 99 // visible. |
91 virtual void OnFindBarVisibleBoundsChanged( | 100 virtual void OnFindBarVisibleBoundsChanged( |
92 const gfx::Rect& new_visible_bounds_in_screen) = 0; | 101 const gfx::Rect& new_visible_bounds_in_screen) = 0; |
93 | 102 |
94 // Disables animations and moves the mouse so that it is not over the | 103 // Disables animations and moves the mouse so that it is not over the |
(...skipping 13 matching lines...) Expand all Loading... |
108 | 117 |
109 namespace chrome { | 118 namespace chrome { |
110 | 119 |
111 // Implemented in immersive_mode_controller_factory.cc. | 120 // Implemented in immersive_mode_controller_factory.cc. |
112 ImmersiveModeController* CreateImmersiveModeController( | 121 ImmersiveModeController* CreateImmersiveModeController( |
113 chrome::HostDesktopType host_desktop_type); | 122 chrome::HostDesktopType host_desktop_type); |
114 | 123 |
115 } // namespace chrome | 124 } // namespace chrome |
116 | 125 |
117 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_IMMERSIVE_MODE_CONTROLLER_H_ | 126 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_IMMERSIVE_MODE_CONTROLLER_H_ |
OLD | NEW |