| Index: Source/core/frame/TopControls.h
|
| diff --git a/Source/core/frame/TopControls.h b/Source/core/frame/TopControls.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ac9ba59c9db5413bed5ea7eedc4205ad07bc250b
|
| --- /dev/null
|
| +++ b/Source/core/frame/TopControls.h
|
| @@ -0,0 +1,105 @@
|
| +/*
|
| + * Copyright (C) 2015 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:
|
| + *
|
| + * 1. Redistributions of source code must retain the above copyright
|
| + * notice, this list of conditions and the following disclaimer.
|
| + * 2. 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.
|
| + *
|
| + * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS 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 APPLE OR ITS 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 TopControls_h
|
| +#define TopControls_h
|
| +
|
| +#include "platform/heap/Handle.h"
|
| +#include "public/platform/WebTopControlsState.h"
|
| +#include "wtf/OwnPtr.h"
|
| +#include "wtf/PassOwnPtr.h"
|
| +
|
| +namespace blink {
|
| +class FrameHost;
|
| +class FloatSize;
|
| +
|
| +// This class encapsulate data and logic required to show/hide top controls
|
| +// duplicating cc::TopControlsManager behaviour. Top controls' self-animation
|
| +// to completion is still handled by compositor and kicks in when scrolling is
|
| +// complete (i.e, upon ScrollEnd or FlingEnd).
|
| +class TopControls final : public NoBaseWillBeGarbageCollectedFinalized<TopControls> {
|
| +public:
|
| + static PassOwnPtrWillBeRawPtr<TopControls> create(const FrameHost& host)
|
| + {
|
| + return adoptPtrWillBeNoop(new TopControls(host));
|
| + }
|
| +
|
| + // The amount that the viewport was shrunk by to accommodate the top
|
| + // controls.
|
| + float layoutHeight();
|
| + // The amount that top controls are currently shown.
|
| + float contentOffset();
|
| +
|
| + float height() const { return m_height; }
|
| + bool shrinkViewport() const { return m_shrinkViewport; }
|
| + void setHeight(float height, bool shrinkViewport);
|
| +
|
| + float shownRatio() const { return m_shownRatio; }
|
| + void setShownRatio(float);
|
| +
|
| + void updateConstraints(WebTopControlsState constraints);
|
| +
|
| + void scrollBegin();
|
| +
|
| + // Scrolls top controls vertically if possible and returns the remaining scroll
|
| + // amount.
|
| + FloatSize scrollBy(FloatSize scrollDelta);
|
| +
|
| +private:
|
| + explicit TopControls(const FrameHost&);
|
| + void resetBaseline();
|
| +
|
| + const FrameHost& m_frameHost;
|
| +
|
| + // The top controls height regardless of whether it is visible or not.
|
| + float m_height;
|
| +
|
| + // The top controls shown amount (normalized from 0 to 1) since the last
|
| + // compositor commit. This value is updated from two sources:
|
| + // (1) compositor (impl) thread at the beginning of frame if it has
|
| + // scrolled top controls since last commit.
|
| + // (2) blink (main) thread updates this value if it scrolls top controls
|
| + // when responding to gesture scroll events.
|
| + // This value is reflected in web layer tree and is synced with compositor
|
| + // during the commit.
|
| + float m_shownRatio;
|
| +
|
| + // Content offset when last re-baseline occurred.
|
| + float m_baselineContentOffset;
|
| +
|
| + // Accumulated scroll delta since last re-baseline.
|
| + float m_accumulatedScrollDelta;
|
| +
|
| + // If this is true, then the embedder shrunk the WebView size by the top
|
| + // controls height.
|
| + bool m_shrinkViewport;
|
| +
|
| + // Constraints on the top controls state
|
| + WebTopControlsState m_permittedState;
|
| +
|
| +};
|
| +} // namespace blink
|
| +
|
| +#endif // TopControls_h
|
|
|