web_contents_view_aura.h revision 5d1f7b1de12d16ceb2c938c56701a3e8bfa558f7
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
3// found in the LICENSE file.
4
5#ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_AURA_H_
6#define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_AURA_H_
7
8#include <vector>
9
10#include "base/memory/ref_counted.h"
11#include "base/memory/scoped_ptr.h"
12#include "content/browser/renderer_host/overscroll_controller_delegate.h"
13#include "content/common/content_export.h"
14#include "content/port/browser/render_view_host_delegate_view.h"
15#include "content/port/browser/web_contents_view_port.h"
16#include "ui/aura/client/drag_drop_delegate.h"
17#include "ui/aura/window_delegate.h"
18#include "ui/compositor/layer_animation_observer.h"
19
20namespace aura {
21class Window;
22}
23
24namespace ui {
25class DropTargetEvent;
26}
27
28namespace content {
29class OverscrollNavigationOverlay;
30class ShadowLayerDelegate;
31class TouchEditableImplAura;
32class WebContentsViewDelegate;
33class WebContentsImpl;
34class WebDragDestDelegate;
35
36class CONTENT_EXPORT WebContentsViewAura
37    : public WebContentsViewPort,
38      public RenderViewHostDelegateView,
39      NON_EXPORTED_BASE(public OverscrollControllerDelegate),
40      public ui::ImplicitAnimationObserver,
41      public aura::WindowDelegate,
42      public aura::client::DragDropDelegate {
43 public:
44  WebContentsViewAura(WebContentsImpl* web_contents,
45                      WebContentsViewDelegate* delegate);
46
47  void SetupOverlayWindowForTesting();
48
49  void SetTouchEditableForTest(TouchEditableImplAura* touch_editable);
50
51 private:
52  class WindowObserver;
53
54  virtual ~WebContentsViewAura();
55
56  void SizeChangedCommon(const gfx::Size& size);
57
58  void EndDrag(blink::WebDragOperationsMask ops);
59
60  // Creates and sets up the overlay window that will be displayed during the
61  // overscroll gesture.
62  void PrepareOverscrollWindow();
63
64  // Sets up the content window in preparation for starting an overscroll
65  // gesture.
66  void PrepareContentWindowForOverscroll();
67
68  // Resets any in-progress animation for the overscroll gesture. Note that this
69  // doesn't immediately reset the internal states; that happens after an
70  // animation.
71  void ResetOverscrollTransform();
72
73  // Completes the navigation in response to a completed overscroll gesture.
74  // The navigation happens after an animation (either the overlay window
75  // animates in, or the content window animates out).
76  void CompleteOverscrollNavigation(OverscrollMode mode);
77
78  // Returns the window that should be animated for the overscroll gesture.
79  // (note that during the overscroll gesture, either the overlay window or the
80  // content window can be animated).
81  aura::Window* GetWindowToAnimateForOverscroll();
82
83  // Returns the amount the animating window should be translated in response to
84  // the overscroll gesture.
85  gfx::Vector2d GetTranslationForOverscroll(int delta_x, int delta_y);
86
87  // A window showing the screenshot is overlayed during a navigation triggered
88  // by overscroll. This function sets this up.
89  void PrepareOverscrollNavigationOverlay();
90
91  // Changes the brightness of the layer depending on the amount of horizontal
92  // overscroll (|delta_x|, in pixels).
93  void UpdateOverscrollWindowBrightness(float delta_x);
94
95  void AttachTouchEditableToRenderView();
96
97  void OverscrollUpdateForWebContentsDelegate(int delta_y);
98
99  // Overridden from WebContentsView:
100  virtual gfx::NativeView GetNativeView() const OVERRIDE;
101  virtual gfx::NativeView GetContentNativeView() const OVERRIDE;
102  virtual gfx::NativeWindow GetTopLevelNativeWindow() const OVERRIDE;
103  virtual void GetContainerBounds(gfx::Rect *out) const OVERRIDE;
104  virtual void OnTabCrashed(base::TerminationStatus status,
105                            int error_code) OVERRIDE;
106  virtual void SizeContents(const gfx::Size& size) OVERRIDE;
107  virtual void Focus() OVERRIDE;
108  virtual void SetInitialFocus() OVERRIDE;
109  virtual void StoreFocus() OVERRIDE;
110  virtual void RestoreFocus() OVERRIDE;
111  virtual DropData* GetDropData() const OVERRIDE;
112  virtual gfx::Rect GetViewBounds() const OVERRIDE;
113
114  // Overridden from WebContentsViewPort:
115  virtual void CreateView(
116      const gfx::Size& initial_size, gfx::NativeView context) OVERRIDE;
117  virtual RenderWidgetHostView* CreateViewForWidget(
118      RenderWidgetHost* render_widget_host) OVERRIDE;
119  virtual RenderWidgetHostView* CreateViewForPopupWidget(
120      RenderWidgetHost* render_widget_host) OVERRIDE;
121  virtual void SetPageTitle(const base::string16& title) OVERRIDE;
122  virtual void RenderViewCreated(RenderViewHost* host) OVERRIDE;
123  virtual void RenderViewSwappedIn(RenderViewHost* host) OVERRIDE;
124  virtual void SetOverscrollControllerEnabled(bool enabled) OVERRIDE;
125
126  // Overridden from RenderViewHostDelegateView:
127  virtual void ShowContextMenu(RenderFrameHost* render_frame_host,
128                               const ContextMenuParams& params) OVERRIDE;
129  virtual void ShowPopupMenu(const gfx::Rect& bounds,
130                             int item_height,
131                             double item_font_size,
132                             int selected_item,
133                             const std::vector<MenuItem>& items,
134                             bool right_aligned,
135                             bool allow_multiple_selection) OVERRIDE;
136  virtual void StartDragging(const DropData& drop_data,
137                             blink::WebDragOperationsMask operations,
138                             const gfx::ImageSkia& image,
139                             const gfx::Vector2d& image_offset,
140                             const DragEventSourceInfo& event_info) OVERRIDE;
141  virtual void UpdateDragCursor(blink::WebDragOperation operation) OVERRIDE;
142  virtual void GotFocus() OVERRIDE;
143  virtual void TakeFocus(bool reverse) OVERRIDE;
144
145  // Overridden from OverscrollControllerDelegate:
146  virtual gfx::Rect GetVisibleBounds() const OVERRIDE;
147  virtual void OnOverscrollUpdate(float delta_x, float delta_y) OVERRIDE;
148  virtual void OnOverscrollComplete(OverscrollMode overscroll_mode) OVERRIDE;
149  virtual void OnOverscrollModeChange(OverscrollMode old_mode,
150                                      OverscrollMode new_mode) OVERRIDE;
151
152  // Overridden from ui::ImplicitAnimationObserver:
153  virtual void OnImplicitAnimationsCompleted() OVERRIDE;
154
155  // Overridden from aura::WindowDelegate:
156  virtual gfx::Size GetMinimumSize() const OVERRIDE;
157  virtual gfx::Size GetMaximumSize() const OVERRIDE;
158  virtual void OnBoundsChanged(const gfx::Rect& old_bounds,
159                               const gfx::Rect& new_bounds) OVERRIDE;
160  virtual gfx::NativeCursor GetCursor(const gfx::Point& point) OVERRIDE;
161  virtual int GetNonClientComponent(const gfx::Point& point) const OVERRIDE;
162  virtual bool ShouldDescendIntoChildForEventHandling(
163      aura::Window* child,
164      const gfx::Point& location) OVERRIDE;
165  virtual bool CanFocus() OVERRIDE;
166  virtual void OnCaptureLost() OVERRIDE;
167  virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
168  virtual void OnDeviceScaleFactorChanged(float device_scale_factor) OVERRIDE;
169  virtual void OnWindowDestroying() OVERRIDE;
170  virtual void OnWindowDestroyed() OVERRIDE;
171  virtual void OnWindowTargetVisibilityChanged(bool visible) OVERRIDE;
172  virtual bool HasHitTestMask() const OVERRIDE;
173  virtual void GetHitTestMask(gfx::Path* mask) const OVERRIDE;
174  virtual void DidRecreateLayer(ui::Layer* old_layer,
175                                ui::Layer* new_layer) OVERRIDE;
176
177  // Overridden from ui::EventHandler:
178  virtual void OnKeyEvent(ui::KeyEvent* event) OVERRIDE;
179  virtual void OnMouseEvent(ui::MouseEvent* event) OVERRIDE;
180
181  // Overridden from aura::client::DragDropDelegate:
182  virtual void OnDragEntered(const ui::DropTargetEvent& event) OVERRIDE;
183  virtual int OnDragUpdated(const ui::DropTargetEvent& event) OVERRIDE;
184  virtual void OnDragExited() OVERRIDE;
185  virtual int OnPerformDrop(const ui::DropTargetEvent& event) OVERRIDE;
186
187  scoped_ptr<aura::Window> window_;
188
189  // The window that shows the screenshot of the history page during an
190  // overscroll navigation gesture.
191  scoped_ptr<aura::Window> overscroll_window_;
192
193  scoped_ptr<WindowObserver> window_observer_;
194
195  // The WebContentsImpl whose contents we display.
196  WebContentsImpl* web_contents_;
197
198  scoped_ptr<WebContentsViewDelegate> delegate_;
199
200  blink::WebDragOperationsMask current_drag_op_;
201
202  scoped_ptr<DropData> current_drop_data_;
203
204  WebDragDestDelegate* drag_dest_delegate_;
205
206  // We keep track of the render view host we're dragging over.  If it changes
207  // during a drag, we need to re-send the DragEnter message.  WARNING:
208  // this pointer should never be dereferenced.  We only use it for comparing
209  // pointers.
210  void* current_rvh_for_drag_;
211
212  bool overscroll_change_brightness_;
213
214  // The overscroll gesture currently in progress.
215  OverscrollMode current_overscroll_gesture_;
216
217  // This is the completed overscroll gesture. This is used for the animation
218  // callback that happens in response to a completed overscroll gesture.
219  OverscrollMode completed_overscroll_gesture_;
220
221  // This manages the overlay window that shows the screenshot during a history
222  // navigation triggered by the overscroll gesture.
223  scoped_ptr<OverscrollNavigationOverlay> navigation_overlay_;
224
225  scoped_ptr<ShadowLayerDelegate> overscroll_shadow_;
226
227  scoped_ptr<TouchEditableImplAura> touch_editable_;
228
229  DISALLOW_COPY_AND_ASSIGN(WebContentsViewAura);
230};
231
232}  // namespace content
233
234#endif  // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_AURA_H_
235