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_ASH_H_ | 5 #ifndef ASH_WM_IMMERSIVE_FULLSCREEN_CONTROLLER_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_IMMERSIVE_MODE_CONTROLLER_ASH_H_ | 6 #define ASH_WM_IMMERSIVE_FULLSCREEN_CONTROLLER_H_ |
7 | 7 |
8 #include "chrome/browser/ui/views/frame/immersive_mode_controller.h" | 8 #include <vector> |
9 | 9 |
| 10 #include "ash/ash_export.h" |
| 11 #include "ash/wm/immersive_revealed_lock.h" |
10 #include "base/timer/timer.h" | 12 #include "base/timer/timer.h" |
11 #include "content/public/browser/notification_observer.h" | |
12 #include "content/public/browser/notification_registrar.h" | |
13 #include "ui/aura/window_observer.h" | 13 #include "ui/aura/window_observer.h" |
14 #include "ui/events/event_handler.h" | 14 #include "ui/events/event_handler.h" |
15 #include "ui/gfx/animation/animation_delegate.h" | 15 #include "ui/gfx/animation/animation_delegate.h" |
16 #include "ui/gfx/rect.h" | 16 #include "ui/gfx/rect.h" |
17 #include "ui/views/focus/focus_manager.h" | 17 #include "ui/views/focus/focus_manager.h" |
18 #include "ui/views/widget/widget_observer.h" | 18 #include "ui/views/widget/widget_observer.h" |
19 | 19 |
20 class BrowserView; | |
21 class BookmarkBarView; | |
22 | |
23 namespace aura { | 20 namespace aura { |
24 class Window; | 21 class Window; |
25 } | 22 } |
26 | 23 |
27 namespace gfx { | 24 namespace gfx { |
28 class SlideAnimation; | 25 class SlideAnimation; |
29 class Transform; | |
30 } | 26 } |
31 | 27 |
32 namespace ui { | 28 namespace ui { |
33 class Layer; | |
34 class LocatedEvent; | 29 class LocatedEvent; |
35 } | 30 } |
36 | 31 |
37 namespace views { | 32 namespace views { |
38 class View; | 33 class View; |
| 34 class Widget; |
39 } | 35 } |
40 | 36 |
41 class ImmersiveModeControllerAsh : public ImmersiveModeController, | 37 namespace ash { |
42 public content::NotificationObserver, | 38 |
43 public gfx::AnimationDelegate, | 39 class ASH_EXPORT ImmersiveFullscreenController |
44 public ui::EventHandler, | 40 : public gfx::AnimationDelegate, |
45 public views::FocusChangeListener, | 41 public ui::EventHandler, |
46 public views::WidgetObserver, | 42 public views::FocusChangeListener, |
47 public aura::WindowObserver { | 43 public views::WidgetObserver, |
| 44 public aura::WindowObserver, |
| 45 public ImmersiveRevealedLock::Delegate { |
48 public: | 46 public: |
49 ImmersiveModeControllerAsh(); | 47 class Delegate { |
50 virtual ~ImmersiveModeControllerAsh(); | 48 public: |
| 49 // Called when a reveal of the top-of-window views starts. |
| 50 virtual void OnImmersiveRevealStarted() = 0; |
51 | 51 |
52 // These methods are used to increment and decrement |revealed_lock_count_|. | 52 // Called when the top-of-window views have finished closing. This call |
53 // If immersive mode is enabled, a transition from 1 to 0 in | 53 // implies a visible fraction of 0. SetVisibleFraction(0) may not be called |
54 // |revealed_lock_count_| closes the top-of-window views and a transition | 54 // prior to OnImmersiveRevealEnded(). |
55 // from 0 to 1 in |revealed_lock_count_| reveals the top-of-window views. | 55 virtual void OnImmersiveRevealEnded() = 0; |
56 void LockRevealedState(AnimateReveal animate_reveal); | |
57 void UnlockRevealedState(); | |
58 | 56 |
59 // ImmersiveModeController overrides: | 57 // Called as a result of disabling immersive fullscreen via SetEnabled(). |
60 virtual void Init(Delegate* delegate, | 58 virtual void OnImmersiveFullscreenExited() = 0; |
61 views::Widget* widget, | |
62 views::View* top_container) OVERRIDE; | |
63 virtual void SetEnabled(bool enabled) OVERRIDE; | |
64 virtual bool IsEnabled() const OVERRIDE; | |
65 virtual bool ShouldHideTabIndicators() const OVERRIDE; | |
66 virtual bool ShouldHideTopViews() const OVERRIDE; | |
67 virtual bool IsRevealed() const OVERRIDE; | |
68 virtual int GetTopContainerVerticalOffset( | |
69 const gfx::Size& top_container_size) const OVERRIDE; | |
70 virtual ImmersiveRevealedLock* GetRevealedLock( | |
71 AnimateReveal animate_reveal) OVERRIDE WARN_UNUSED_RESULT; | |
72 virtual void OnFindBarVisibleBoundsChanged( | |
73 const gfx::Rect& new_visible_bounds_in_screen) OVERRIDE; | |
74 virtual void SetupForTest() OVERRIDE; | |
75 | 59 |
76 // content::NotificationObserver override: | 60 // Called to update the fraction of the top-of-window views height which is |
77 virtual void Observe(int type, | 61 // visible. |
78 const content::NotificationSource& source, | 62 virtual void SetVisibleFraction(double visible_fraction) = 0; |
79 const content::NotificationDetails& details) OVERRIDE; | 63 |
| 64 // Returns a list of rects whose union makes up the top-of-window views. |
| 65 // The returned list is used for hittesting when the top-of-window views |
| 66 // are revealed. GetVisibleBoundsInScreen() must return a valid value when |
| 67 // not in immersive fullscreen for the sake of SetupForTest(). |
| 68 virtual std::vector<gfx::Rect> GetVisibleBoundsInScreen() = 0; |
| 69 |
| 70 protected: |
| 71 virtual ~Delegate() {} |
| 72 }; |
| 73 |
| 74 ImmersiveFullscreenController(); |
| 75 virtual ~ImmersiveFullscreenController(); |
| 76 |
| 77 // Initializes the controller. Must be called prior to enabling immersive |
| 78 // fullscreen via SetEnabled(). |top_container| is used to keep the |
| 79 // top-of-window views revealed when a child of |top_container| has focus. |
| 80 // |top_container| has no effect on which mouse and touch events keep the |
| 81 // top-of-window views revealed. |
| 82 void Init(Delegate* delegate, |
| 83 views::Widget* widget, |
| 84 views::View* top_container); |
| 85 |
| 86 // Enables or disables immersive fullscreen. |
| 87 void SetEnabled(bool enable); |
| 88 |
| 89 // Returns true if |native_window_| is in immersive fullscreen. |
| 90 bool IsEnabled() const; |
| 91 |
| 92 // Returns true if |native_window_| is in immersive fullscreen and the |
| 93 // top-of-window views are fully or partially visible. |
| 94 bool IsRevealed() const; |
| 95 |
| 96 // Returns a lock which will keep the top-of-window views revealed for its |
| 97 // lifetime. Several locks can be obtained. When all of the locks are |
| 98 // destroyed, if immersive fullscreen is enabled and there is nothing else |
| 99 // keeping the top-of-window views revealed, the top-of-window views will be |
| 100 // closed. This method always returns a valid lock regardless of whether |
| 101 // immersive fullscreen is enabled. The lock's lifetime can span immersive |
| 102 // fullscreen being enabled / disabled. If acquiring the lock causes a reveal, |
| 103 // the top-of-window views will animate according to |animate_reveal|. The |
| 104 // caller takes ownership of the returned lock. |
| 105 ImmersiveRevealedLock* GetRevealedLock( |
| 106 AnimateReveal animate_reveal) WARN_UNUSED_RESULT; |
| 107 |
| 108 // Disables animations and moves the mouse so that it is not over the |
| 109 // top-of-window views for the sake of testing. |
| 110 void SetupForTest(); |
80 | 111 |
81 // ui::EventHandler overrides: | 112 // ui::EventHandler overrides: |
82 virtual void OnMouseEvent(ui::MouseEvent* event) OVERRIDE; | 113 virtual void OnMouseEvent(ui::MouseEvent* event) OVERRIDE; |
83 virtual void OnTouchEvent(ui::TouchEvent* event) OVERRIDE; | 114 virtual void OnTouchEvent(ui::TouchEvent* event) OVERRIDE; |
84 virtual void OnGestureEvent(ui::GestureEvent* event) OVERRIDE; | 115 virtual void OnGestureEvent(ui::GestureEvent* event) OVERRIDE; |
85 | 116 |
86 // views::FocusChangeObserver overrides: | 117 // views::FocusChangeObserver overrides: |
87 virtual void OnWillChangeFocus(views::View* focused_before, | 118 virtual void OnWillChangeFocus(views::View* focused_before, |
88 views::View* focused_now) OVERRIDE; | 119 views::View* focused_now) OVERRIDE; |
89 virtual void OnDidChangeFocus(views::View* focused_before, | 120 virtual void OnDidChangeFocus(views::View* focused_before, |
90 views::View* focused_now) OVERRIDE; | 121 views::View* focused_now) OVERRIDE; |
91 | 122 |
92 // views::WidgetObserver overrides: | 123 // views::WidgetObserver overrides: |
93 virtual void OnWidgetDestroying(views::Widget* widget) OVERRIDE; | 124 virtual void OnWidgetDestroying(views::Widget* widget) OVERRIDE; |
94 virtual void OnWidgetActivationChanged(views::Widget* widget, | 125 virtual void OnWidgetActivationChanged(views::Widget* widget, |
95 bool active) OVERRIDE; | 126 bool active) OVERRIDE; |
96 | 127 |
97 // gfx::AnimationDelegate overrides: | 128 // gfx::AnimationDelegate overrides: |
98 virtual void AnimationEnded(const gfx::Animation* animation) OVERRIDE; | 129 virtual void AnimationEnded(const gfx::Animation* animation) OVERRIDE; |
99 virtual void AnimationProgressed(const gfx::Animation* animation) OVERRIDE; | 130 virtual void AnimationProgressed(const gfx::Animation* animation) OVERRIDE; |
100 | 131 |
101 // aura::WindowObserver overrides: | 132 // aura::WindowObserver overrides: |
102 virtual void OnWindowPropertyChanged(aura::Window* window, | |
103 const void* key, | |
104 intptr_t old) OVERRIDE; | |
105 virtual void OnAddTransientChild(aura::Window* window, | 133 virtual void OnAddTransientChild(aura::Window* window, |
106 aura::Window* transient) OVERRIDE; | 134 aura::Window* transient) OVERRIDE; |
107 virtual void OnRemoveTransientChild(aura::Window* window, | 135 virtual void OnRemoveTransientChild(aura::Window* window, |
108 aura::Window* transient) OVERRIDE; | 136 aura::Window* transient) OVERRIDE; |
109 | 137 |
| 138 // ash::ImmersiveRevealedLock::Delegate overrides: |
| 139 virtual void LockRevealedState(AnimateReveal animate_reveal) OVERRIDE; |
| 140 virtual void UnlockRevealedState() OVERRIDE; |
| 141 |
110 private: | 142 private: |
111 friend class ImmersiveModeControllerAshTest; | 143 friend class ImmersiveFullscreenControllerTest; |
112 | 144 |
113 enum AllowRevealWhileClosing { | 145 enum AllowRevealWhileClosing { |
114 ALLOW_REVEAL_WHILE_CLOSING_YES, | 146 ALLOW_REVEAL_WHILE_CLOSING_YES, |
115 ALLOW_REVEAL_WHILE_CLOSING_NO | 147 ALLOW_REVEAL_WHILE_CLOSING_NO |
116 }; | 148 }; |
117 enum Animate { | 149 enum Animate { |
118 ANIMATE_NO, | 150 ANIMATE_NO, |
119 ANIMATE_SLOW, | 151 ANIMATE_SLOW, |
120 ANIMATE_FAST, | 152 ANIMATE_FAST, |
121 }; | 153 }; |
122 enum Layout { | |
123 LAYOUT_YES, | |
124 LAYOUT_NO | |
125 }; | |
126 enum RevealState { | 154 enum RevealState { |
127 CLOSED, // Top container only showing tabstrip, y = 0. | 155 CLOSED, |
128 SLIDING_OPEN, // All views showing, y animating from -height to 0. | 156 SLIDING_OPEN, |
129 REVEALED, // All views showing, y = 0. | 157 REVEALED, |
130 SLIDING_CLOSED, // All views showing, y animating from 0 to -height. | 158 SLIDING_CLOSED, |
131 }; | |
132 enum TabIndicatorVisibility { | |
133 TAB_INDICATORS_FORCE_HIDE, | |
134 TAB_INDICATORS_HIDE, | |
135 TAB_INDICATORS_SHOW | |
136 }; | 159 }; |
137 enum SwipeType { | 160 enum SwipeType { |
138 SWIPE_OPEN, | 161 SWIPE_OPEN, |
139 SWIPE_CLOSE, | 162 SWIPE_CLOSE, |
140 SWIPE_NONE | 163 SWIPE_NONE |
141 }; | 164 }; |
142 | 165 |
143 // Enables or disables observers for mouse move, focus, and window restore. | 166 // Enables or disables observers for mouse, touch, focus, and activation. |
144 void EnableWindowObservers(bool enable); | 167 void EnableWindowObservers(bool enable); |
145 | 168 |
146 // Updates |top_edge_hover_timer_| based on a mouse |event|. If the mouse is | 169 // Updates |top_edge_hover_timer_| based on a mouse |event|. If the mouse is |
147 // hovered at the top of the screen the timer is started. If the mouse moves | 170 // hovered at the top of the screen the timer is started. If the mouse moves |
148 // away from the top edge, or moves too much in the x direction, the timer is | 171 // away from the top edge, or moves too much in the x direction, the timer is |
149 // stopped. | 172 // stopped. |
150 void UpdateTopEdgeHoverTimer(ui::MouseEvent* event); | 173 void UpdateTopEdgeHoverTimer(ui::MouseEvent* event); |
151 | 174 |
152 // Updates |located_event_revealed_lock_| based on the current mouse state and | 175 // Updates |located_event_revealed_lock_| based on the current mouse state and |
153 // the current touch state. | 176 // the current touch state. |
(...skipping 10 matching lines...) Expand all Loading... |
164 | 187 |
165 // Updates |focus_revealed_lock_| based on the currently active view and the | 188 // Updates |focus_revealed_lock_| based on the currently active view and the |
166 // currently active widget. | 189 // currently active widget. |
167 void UpdateFocusRevealedLock(); | 190 void UpdateFocusRevealedLock(); |
168 | 191 |
169 // Update |located_event_revealed_lock_| and |focus_revealed_lock_| as a | 192 // Update |located_event_revealed_lock_| and |focus_revealed_lock_| as a |
170 // result of a gesture of |swipe_type|. Returns true if any locks were | 193 // result of a gesture of |swipe_type|. Returns true if any locks were |
171 // acquired or released. | 194 // acquired or released. |
172 bool UpdateRevealedLocksForSwipe(SwipeType swipe_type); | 195 bool UpdateRevealedLocksForSwipe(SwipeType swipe_type); |
173 | 196 |
174 // Updates whether fullscreen uses any chrome at all. When using minimal | |
175 // chrome, a 'light bar' is permanently visible for the launcher and possibly | |
176 // for the tabstrip. | |
177 void UpdateUseMinimalChrome(Layout layout); | |
178 | |
179 // Returns the animation duration given |animate|. | 197 // Returns the animation duration given |animate|. |
180 int GetAnimationDuration(Animate animate) const; | 198 int GetAnimationDuration(Animate animate) const; |
181 | 199 |
182 // Temporarily reveals the top-of-window views while in immersive mode, | 200 // Temporarily reveals the top-of-window views while in immersive mode, |
183 // hiding them when the cursor exits the area of the top views. If |animate| | 201 // hiding them when the cursor exits the area of the top views. If |animate| |
184 // is not ANIMATE_NO, slides in the view, otherwise shows it immediately. | 202 // is not ANIMATE_NO, slides in the view, otherwise shows it immediately. |
185 void MaybeStartReveal(Animate animate); | 203 void MaybeStartReveal(Animate animate); |
186 | 204 |
187 // Updates the browser root view's layout including window caption controls. | |
188 void LayoutBrowserRootView(); | |
189 | |
190 // Called when the animation to slide open the top-of-window views has | 205 // Called when the animation to slide open the top-of-window views has |
191 // completed. | 206 // completed. |
192 void OnSlideOpenAnimationCompleted(Layout layout); | 207 void OnSlideOpenAnimationCompleted(); |
193 | 208 |
194 // Hides the top-of-window views if immersive mode is enabled and nothing is | 209 // Hides the top-of-window views if immersive mode is enabled and nothing is |
195 // keeping them revealed. Optionally animates. | 210 // keeping them revealed. Optionally animates. |
196 void MaybeEndReveal(Animate animate); | 211 void MaybeEndReveal(Animate animate); |
197 | 212 |
198 // Called when the animation to slide out the top-of-window views has | 213 // Called when the animation to slide out the top-of-window views has |
199 // completed. | 214 // completed. |
200 void OnSlideClosedAnimationCompleted(); | 215 void OnSlideClosedAnimationCompleted(); |
201 | 216 |
202 // Returns the type of swipe given |event|. | 217 // Returns the type of swipe given |event|. |
(...skipping 10 matching lines...) Expand all Loading... |
213 // the top container is closed "near" means either within the displayed | 228 // the top container is closed "near" means either within the displayed |
214 // bounds, above it, or within a few pixels below it. This allow the container | 229 // bounds, above it, or within a few pixels below it. This allow the container |
215 // to steal enough pixels to detect a swipe in and handles the case that there | 230 // to steal enough pixels to detect a swipe in and handles the case that there |
216 // is a bezel sensor above the top container. | 231 // is a bezel sensor above the top container. |
217 bool ShouldHandleGestureEvent(const gfx::Point& location) const; | 232 bool ShouldHandleGestureEvent(const gfx::Point& location) const; |
218 | 233 |
219 // Recreate |bubble_manager_| and start observing any bubbles anchored to a | 234 // Recreate |bubble_manager_| and start observing any bubbles anchored to a |
220 // child of |top_container_|. | 235 // child of |top_container_|. |
221 void RecreateBubbleManager(); | 236 void RecreateBubbleManager(); |
222 | 237 |
223 // Shrinks or expands the touch hit test by updating insets for the render | 238 // Not owned. |
224 // window depending on if top_inset is positive or negative respectively. | 239 Delegate* delegate_; |
225 // Used to ensure that touch events at the top of the screen go to the top | 240 views::View* top_container_; |
226 // container so a slide gesture can be generated when the content window is | 241 views::Widget* widget_; |
227 // consuming all touch events sent to it. | 242 aura::Window* native_window_; |
228 void SetRenderWindowTopInsetsForTouch(int top_inset); | |
229 | 243 |
230 // Injected dependencies. Not owned. | 244 // True if the observers have been enabled. |
231 Delegate* delegate_; | |
232 views::Widget* widget_; | |
233 views::View* top_container_; | |
234 | |
235 // True if the window observers are enabled. | |
236 bool observers_enabled_; | 245 bool observers_enabled_; |
237 | 246 |
238 // True when in immersive mode. | 247 // True when in immersive fullscreen. |
239 bool enabled_; | 248 bool enabled_; |
240 | 249 |
241 // State machine for the revealed/closed animations. | 250 // State machine for the revealed/closed animations. |
242 RevealState reveal_state_; | 251 RevealState reveal_state_; |
243 | 252 |
244 int revealed_lock_count_; | 253 int revealed_lock_count_; |
245 | 254 |
246 // The visibility of the miniature "tab indicators" in the main browser view | |
247 // when immersive mode is enabled and the top-of-window views are closed. | |
248 TabIndicatorVisibility tab_indicator_visibility_; | |
249 | |
250 // Timer to track cursor being held at the top edge of the screen. | 255 // Timer to track cursor being held at the top edge of the screen. |
251 base::OneShotTimer<ImmersiveModeController> top_edge_hover_timer_; | 256 base::OneShotTimer<ImmersiveFullscreenController> top_edge_hover_timer_; |
252 | 257 |
253 // The cursor x position in screen coordinates when the cursor first hit the | 258 // The cursor x position in screen coordinates when the cursor first hit the |
254 // top edge of the screen. | 259 // top edge of the screen. |
255 int mouse_x_when_hit_top_in_screen_; | 260 int mouse_x_when_hit_top_in_screen_; |
256 | 261 |
257 // Tracks if the controller has seen a ET_GESTURE_SCROLL_BEGIN, without the | 262 // Tracks if the controller has seen a ET_GESTURE_SCROLL_BEGIN, without the |
258 // following events. | 263 // following events. |
259 bool gesture_begun_; | 264 bool gesture_begun_; |
260 | 265 |
261 // The current visible bounds of the find bar, in screen coordinates. This is | |
262 // an empty rect if the find bar is not visible. | |
263 gfx::Rect find_bar_visible_bounds_in_screen_; | |
264 | |
265 // Lock which keeps the top-of-window views revealed based on the current | 266 // Lock which keeps the top-of-window views revealed based on the current |
266 // mouse state and the current touch state. Acquiring the lock is used to | 267 // mouse state and the current touch state. Acquiring the lock is used to |
267 // trigger a reveal when the user moves the mouse to the top of the screen | 268 // trigger a reveal when the user moves the mouse to the top of the screen |
268 // and when the user does a SWIPE_OPEN edge gesture. | 269 // and when the user does a SWIPE_OPEN edge gesture. |
269 scoped_ptr<ImmersiveRevealedLock> located_event_revealed_lock_; | 270 scoped_ptr<ImmersiveRevealedLock> located_event_revealed_lock_; |
270 | 271 |
271 // Lock which keeps the top-of-window views revealed based on the focused view | 272 // Lock which keeps the top-of-window views revealed based on the focused view |
272 // and the active widget. Acquiring the lock never triggers a reveal because | 273 // and the active widget. Acquiring the lock never triggers a reveal because |
273 // a view is not focusable till a reveal has made it visible. | 274 // a view is not focusable till a reveal has made it visible. |
274 scoped_ptr<ImmersiveRevealedLock> focus_revealed_lock_; | 275 scoped_ptr<ImmersiveRevealedLock> focus_revealed_lock_; |
275 | 276 |
276 // Native window for the browser. | |
277 aura::Window* native_window_; | |
278 | |
279 // The animation which controls sliding the top-of-window views in and out. | 277 // The animation which controls sliding the top-of-window views in and out. |
280 scoped_ptr<gfx::SlideAnimation> animation_; | 278 scoped_ptr<gfx::SlideAnimation> animation_; |
281 | 279 |
282 // Whether the animations are disabled for testing. | 280 // Whether the animations are disabled for testing. |
283 bool animations_disabled_for_test_; | 281 bool animations_disabled_for_test_; |
284 | 282 |
285 // Manages bubbles which are anchored to a child of |top_container_|. | 283 // Manages bubbles which are anchored to a child of |top_container_|. |
286 class BubbleManager; | 284 class BubbleManager; |
287 scoped_ptr<BubbleManager> bubble_manager_; | 285 scoped_ptr<BubbleManager> bubble_manager_; |
288 | 286 |
289 content::NotificationRegistrar registrar_; | 287 base::WeakPtrFactory<ImmersiveFullscreenController> weak_ptr_factory_; |
290 | 288 |
291 base::WeakPtrFactory<ImmersiveModeControllerAsh> weak_ptr_factory_; | 289 DISALLOW_COPY_AND_ASSIGN(ImmersiveFullscreenController); |
292 | |
293 DISALLOW_COPY_AND_ASSIGN(ImmersiveModeControllerAsh); | |
294 }; | 290 }; |
295 | 291 |
296 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_IMMERSIVE_MODE_CONTROLLER_ASH_H_ | 292 } // namespace ash |
| 293 |
| 294 #endif // ASH_WM_IMMERSIVE_FULLSCREEN_CONTROLLER_H_ |
OLD | NEW |