flutter_flutter/engine/web/WebViewImpl.h
Ojan Vafai 3ffd336ad5 Remove relayout due to scrollbars taking up width
We only have overlay scrollbars, so we never need to
relayout due to the lack or presence of scrollbars.

Also remove a few stracking has*Scrollbar methods.

R=eseidel@chromium.org

Review URL: https://codereview.chromium.org/783393006
2014-12-09 19:48:50 -08:00

360 lines
13 KiB
C++

/*
* Copyright (C) 2010 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef SKY_ENGINE_WEB_WEBVIEWIMPL_H_
#define SKY_ENGINE_WEB_WEBVIEWIMPL_H_
#include "sky/engine/core/html/ime/InputMethodContext.h"
#include "sky/engine/platform/geometry/IntPoint.h"
#include "sky/engine/platform/geometry/IntRect.h"
#include "sky/engine/public/platform/WebGestureCurveTarget.h"
#include "sky/engine/public/platform/WebLayer.h"
#include "sky/engine/public/platform/WebPoint.h"
#include "sky/engine/public/platform/WebRect.h"
#include "sky/engine/public/platform/WebSize.h"
#include "sky/engine/public/platform/WebString.h"
#include "sky/engine/public/web/WebInputEvent.h"
#include "sky/engine/public/web/WebNavigationPolicy.h"
#include "sky/engine/public/web/WebView.h"
#include "sky/engine/web/ChromeClientImpl.h"
#include "sky/engine/web/EditorClientImpl.h"
#include "sky/engine/web/PageWidgetDelegate.h"
#include "sky/engine/web/SpellCheckerClientImpl.h"
#include "sky/engine/wtf/OwnPtr.h"
#include "sky/engine/wtf/RefCounted.h"
#include "sky/engine/wtf/Vector.h"
namespace blink {
class Frame;
class UserGestureToken;
class WebActiveGestureAnimation;
class WebLocalFrameImpl;
class WebImage;
class WebSettingsImpl;
class WebViewImpl final : public WebView
, public RefCounted<WebViewImpl>
, public WebGestureCurveTarget
, public PageWidgetEventHandler {
public:
static WebViewImpl* create(WebViewClient*);
// WebWidget methods:
virtual void close() override;
virtual WebSize size() override;
virtual void resize(const WebSize&) override;
virtual void beginFrame(const WebBeginFrameArgs&) override;
virtual void layout() override;
virtual void paint(WebCanvas*, const WebRect&) override;
virtual bool isTrackingRepaints() const override;
virtual bool handleInputEvent(const WebInputEvent&) override;
virtual void setCursorVisibilityState(bool isVisible) override;
virtual void mouseCaptureLost() override;
virtual void setFocus(bool enable) override;
virtual bool setComposition(
const WebString& text,
const WebVector<WebCompositionUnderline>& underlines,
int selectionStart,
int selectionEnd) override;
virtual bool confirmComposition() override;
virtual bool confirmComposition(ConfirmCompositionBehavior selectionBehavior) override;
virtual bool confirmComposition(const WebString& text) override;
virtual bool compositionRange(size_t* location, size_t* length) override;
virtual WebTextInputInfo textInputInfo() override;
virtual WebColor backgroundColor() const override;
virtual void didShowCandidateWindow() override;
virtual void didUpdateCandidateWindow() override;
virtual void didHideCandidateWindow() override;
// WebView methods:
virtual void setMainFrame(WebFrame*) override;
virtual void injectModule(const WebString&) override;
virtual void setSpellCheckClient(WebSpellCheckClient*) override;
virtual WebSettings* settings() override;
virtual WebString pageEncoding() const override;
virtual void setPageEncoding(const WebString&) override;
virtual bool isTransparent() const override;
virtual void setIsTransparent(bool value) override;
virtual void setBaseBackgroundColor(WebColor) override;
virtual bool tabsToLinks() const override;
virtual void setTabsToLinks(bool value) override;
virtual bool tabKeyCyclesThroughElements() const override;
virtual void setTabKeyCyclesThroughElements(bool value) override;
virtual bool isActive() const override;
virtual void setIsActive(bool value) override;
virtual WebFrame* mainFrame() override;
virtual WebFrame* focusedFrame() override;
virtual void setFocusedFrame(WebFrame*) override;
virtual void setInitialFocus(bool reverse) override;
virtual void clearFocusedElement() override;
virtual void advanceFocus(bool reverse) override;
virtual float deviceScaleFactor() const override;
virtual void setDeviceScaleFactor(float) override;
virtual WebHitTestResult hitTestResultAt(const WebPoint&) override;
virtual void spellingMarkers(WebVector<uint32_t>* markers) override;
virtual void removeSpellingMarkersUnderWords(const WebVector<WebString>& words) override;
virtual void setCompositorDeviceScaleFactorOverride(float) override;
virtual void transferActiveWheelFlingAnimation(const WebActiveWheelFlingParameters&) override;
virtual bool endActiveFlingAnimation() override;
virtual void setShowPaintRects(bool) override;
void setShowDebugBorders(bool);
virtual void setShowFPSCounter(bool) override;
virtual void setContinuousPaintingEnabled(bool) override;
virtual void setShowScrollBottleneckRects(bool) override;
virtual void acceptLanguagesChanged() override;
// WebViewImpl
HitTestResult coreHitTestResultAt(const WebPoint&);
void suppressInvalidations(bool enable);
void invalidateRect(const IntRect&);
void setIgnoreInputEvents(bool newValue);
void setBackgroundColorOverride(WebColor);
Color baseBackgroundColor() const { return m_baseBackgroundColor; }
LocalFrame* focusedCoreFrame() const;
// Returns the currently focused Element or null if no element has focus.
Element* focusedElement() const;
static WebViewImpl* fromPage(Page*);
WebViewClient* client()
{
return m_client;
}
WebSpellCheckClient* spellCheckClient()
{
return m_spellCheckClient;
}
// Returns the page object associated with this view. This may be null when
// the page is shutting down, but will be valid at all other times.
Page* page() const
{
return m_page.get();
}
// Returns the main frame associated with this view. This may be null when
// the page is shutting down, but will be valid at all other times.
WebLocalFrameImpl* mainFrameImpl();
// FIXME: Temporary method to accommodate out-of-process frame ancestors;
// will be removed when there can be multiple WebWidgets for a single page.
WebLocalFrameImpl* localFrameRootTemporary() const;
// Event related methods:
void mouseDoubleClick(const WebMouseEvent&);
bool detectContentOnTouch(const WebPoint&);
// WebGestureCurveTarget implementation for fling.
virtual bool scrollBy(const WebFloatSize& delta, const WebFloatSize& velocity) override;
// Notifies the WebView that a load has been committed. isNewNavigation
// will be true if a new session history item should be created for that
// load. isNavigationWithinPage will be true if the navigation does
// not take the user away from the current page.
void didCommitLoad(bool isNewNavigation, bool isNavigationWithinPage);
// Indicates two things:
// 1) This view may have a new layout now.
// 2) Calling layout() is a no-op.
// After calling WebWidget::layout(), expect to get this notification
// unless the view did not need a layout.
void layoutUpdated(WebLocalFrameImpl*);
void updateMainFrameLayoutSize();
// Returns the input event we're currently processing. This is used in some
// cases where the WebCore DOM event doesn't have the information we need.
static const WebInputEvent* currentInputEvent()
{
return m_currentInputEvent;
}
void scheduleAnimation();
virtual void setVisibilityState(WebPageVisibilityState, bool) override;
// Returns true if the event leads to scrolling.
static bool mapKeyCodeForScroll(
int keyCode,
ScrollDirection*,
ScrollGranularity*);
// Exposed for the purpose of overriding device metrics.
void sendResizeEventAndRepaint();
WebSettingsImpl* settingsImpl();
IntPoint clampOffsetAtScale(const IntPoint& offset, float scale);
// Exposed for tests.
WebVector<WebCompositionUnderline> compositionUnderlines() const;
bool matchesHeuristicsForGpuRasterizationForTesting() const { return m_matchesHeuristicsForGpuRasterization; }
private:
IntSize contentsSize() const;
void resetSavedScrollAndScaleState();
void performResize();
friend class WebView; // So WebView::Create can call our constructor
friend class WTF::RefCounted<WebViewImpl>;
friend void setCurrentInputEventForTest(const WebInputEvent*);
enum DragAction {
DragEnter,
DragOver
};
explicit WebViewImpl(WebViewClient*);
virtual ~WebViewImpl();
WebTextInputType textInputType();
int textInputFlags();
WebString inputModeOfFocusedElement();
// Returns true if the event was actually processed.
bool keyEventDefault(const WebKeyboardEvent&);
bool confirmComposition(const WebString& text, ConfirmCompositionBehavior);
// Returns true if the view was scrolled.
bool scrollViewWithKeyboard(int keyCode, int modifiers);
// Converts |pos| from window coordinates to contents coordinates and gets
// the HitTestResult for it.
HitTestResult hitTestResultForWindowPos(const IntPoint&);
void doComposite();
void reallocateRenderer();
// PageWidgetEventHandler functions
virtual void handleMouseLeave(LocalFrame&, const WebMouseEvent&) override;
virtual void handleMouseDown(LocalFrame&, const WebMouseEvent&) override;
virtual void handleMouseUp(LocalFrame&, const WebMouseEvent&) override;
virtual bool handleMouseWheel(LocalFrame&, const WebMouseWheelEvent&) override;
virtual bool handleGestureEvent(const WebGestureEvent&) override;
virtual bool handleKeyEvent(const WebKeyboardEvent&) override;
virtual bool handleCharEvent(const WebKeyboardEvent&) override;
InputMethodContext* inputMethodContext();
WebViewClient* m_client; // Can be 0 (e.g. unittests, shared workers, etc.)
WebSpellCheckClient* m_spellCheckClient;
ChromeClientImpl m_chromeClientImpl;
EditorClientImpl m_editorClientImpl;
SpellCheckerClientImpl m_spellCheckerClientImpl;
WebSize m_size;
bool m_fixedLayoutSizeLock;
OwnPtr<Page> m_page;
// An object that can be used to manipulate m_page->settings() without linking
// against WebCore. This is lazily allocated the first time GetWebSettings()
// is called.
OwnPtr<WebSettingsImpl> m_webSettings;
bool m_ignoreInputEvents;
float m_compositorDeviceScaleFactorOverride;
WebSize m_rootLayerOffset;
float m_rootLayerScale;
// Webkit expects keyPress events to be suppressed if the associated keyDown
// event was handled. Safari implements this behavior by peeking out the
// associated WM_CHAR event if the keydown was handled. We emulate
// this behavior by setting this flag if the keyDown was handled.
bool m_suppressNextKeypressEvent;
// Represents whether or not this object should process incoming IME events.
bool m_imeAcceptEvents;
// Whether the webview is rendering transparently.
bool m_isTransparent;
// Whether the user can press tab to focus links.
bool m_tabsToLinks;
// If set, the (plugin) node which has mouse capture.
RefPtr<Node> m_mouseCaptureNode;
RefPtr<UserGestureToken> m_mouseCaptureGestureToken;
IntRect m_rootLayerScrollDamage;
WebLayer* m_rootLayer;
bool m_matchesHeuristicsForGpuRasterization;
// If true, the graphics context is being restored.
bool m_recreatingGraphicsContext;
static const WebInputEvent* m_currentInputEvent;
OwnPtr<WebActiveGestureAnimation> m_gestureAnimation;
WebPoint m_positionOnFlingStart;
WebPoint m_globalPositionOnFlingStart;
int m_flingModifier;
bool m_flingSourceDevice;
bool m_showFPSCounter;
bool m_showPaintRects;
bool m_showDebugBorders;
bool m_continuousPaintingEnabled;
bool m_showScrollBottleneckRects;
WebColor m_baseBackgroundColor;
WebColor m_backgroundColorOverride;
bool m_userGestureObserved;
};
// We have no ways to check if the specified WebView is an instance of
// WebViewImpl because WebViewImpl is the only implementation of WebView.
DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true);
} // namespace blink
#endif // SKY_ENGINE_WEB_WEBVIEWIMPL_H_