зеркало из https://github.com/mozilla/gecko-dev.git
352 строки
10 KiB
C++
352 строки
10 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
* vim: sw=2 ts=8 et :
|
|
*/
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
#ifndef mozilla_gfx_layers_LayerAttributes_h
|
|
#define mozilla_gfx_layers_LayerAttributes_h
|
|
|
|
#include "mozilla/gfx/Types.h"
|
|
#include "mozilla/layers/LayersTypes.h"
|
|
|
|
namespace IPC {
|
|
template <typename T> struct ParamTraits;
|
|
} // namespace IPC
|
|
|
|
namespace mozilla {
|
|
namespace layers {
|
|
|
|
// Data stored for scroll thumb container layers.
|
|
struct ScrollThumbData {
|
|
ScrollThumbData()
|
|
: mDirection(ScrollDirection::NONE)
|
|
, mThumbRatio(0.0f)
|
|
, mIsAsyncDraggable(false)
|
|
{}
|
|
ScrollThumbData(ScrollDirection aDirection,
|
|
float aThumbRatio,
|
|
CSSCoord aThumbStart,
|
|
CSSCoord aThumbLength,
|
|
bool aIsAsyncDraggable,
|
|
CSSCoord aScrollTrackStart,
|
|
CSSCoord aScrollTrackLength)
|
|
: mDirection(aDirection)
|
|
, mThumbRatio(aThumbRatio)
|
|
, mThumbStart(aThumbStart)
|
|
, mThumbLength(aThumbLength)
|
|
, mIsAsyncDraggable(aIsAsyncDraggable)
|
|
, mScrollTrackStart(aScrollTrackStart)
|
|
, mScrollTrackLength(aScrollTrackLength)
|
|
{}
|
|
|
|
ScrollDirection mDirection;
|
|
// The scrollbar thumb ratio is the ratio of the thumb position (in the CSS
|
|
// pixels of the scrollframe's parent's space) to the scroll position (in the
|
|
// CSS pixels of the scrollframe's space).
|
|
float mThumbRatio;
|
|
CSSCoord mThumbStart;
|
|
CSSCoord mThumbLength;
|
|
// Whether the scrollbar thumb can be dragged asynchronously.
|
|
bool mIsAsyncDraggable;
|
|
CSSCoord mScrollTrackStart;
|
|
CSSCoord mScrollTrackLength;
|
|
|
|
bool operator==(const ScrollThumbData& aOther) const {
|
|
return mDirection == aOther.mDirection &&
|
|
mThumbRatio == aOther.mThumbRatio &&
|
|
mThumbStart == aOther.mThumbStart &&
|
|
mThumbLength == aOther.mThumbLength &&
|
|
mIsAsyncDraggable == aOther.mIsAsyncDraggable &&
|
|
mScrollTrackStart == aOther.mScrollTrackStart &&
|
|
mScrollTrackLength == aOther.mScrollTrackLength;
|
|
}
|
|
bool operator!=(const ScrollThumbData& aOther) const {
|
|
return !(*this == aOther);
|
|
}
|
|
};
|
|
|
|
// Infrequently changing layer attributes that require no special
|
|
// serialization work.
|
|
class SimpleLayerAttributes final
|
|
{
|
|
friend struct IPC::ParamTraits<mozilla::layers::SimpleLayerAttributes>;
|
|
public:
|
|
SimpleLayerAttributes()
|
|
: mTransformIsPerspective(false),
|
|
mPostXScale(1.0f),
|
|
mPostYScale(1.0f),
|
|
mContentFlags(0),
|
|
mOpacity(1.0f),
|
|
mIsFixedPosition(false),
|
|
mScrollbarTargetContainerId(FrameMetrics::NULL_SCROLL_ID),
|
|
mIsScrollbarContainer(false),
|
|
mMixBlendMode(gfx::CompositionOp::OP_OVER),
|
|
mForceIsolatedGroup(false)
|
|
{
|
|
}
|
|
|
|
//
|
|
// Setters.
|
|
// All set methods return true if values changed, false otherwise.
|
|
//
|
|
|
|
bool SetPostScale(float aXScale, float aYScale) {
|
|
if (mPostXScale == aXScale && mPostYScale == aYScale) {
|
|
return false;
|
|
}
|
|
mPostXScale = aXScale;
|
|
mPostYScale = aYScale;
|
|
return true;
|
|
}
|
|
bool SetContentFlags(uint32_t aFlags) {
|
|
if (aFlags == mContentFlags) {
|
|
return false;
|
|
}
|
|
mContentFlags = aFlags;
|
|
return true;
|
|
}
|
|
bool SetOpacity(float aOpacity) {
|
|
if (aOpacity == mOpacity) {
|
|
return false;
|
|
}
|
|
mOpacity = aOpacity;
|
|
return true;
|
|
}
|
|
bool SetIsFixedPosition(bool aFixedPosition) {
|
|
if (mIsFixedPosition == aFixedPosition) {
|
|
return false;
|
|
}
|
|
mIsFixedPosition = aFixedPosition;
|
|
return true;
|
|
}
|
|
bool SetScrollThumbData(FrameMetrics::ViewID aScrollId, const ScrollThumbData& aThumbData) {
|
|
if (mScrollbarTargetContainerId == aScrollId &&
|
|
mThumbData == aThumbData)
|
|
{
|
|
return false;
|
|
}
|
|
mScrollbarTargetContainerId = aScrollId;
|
|
mThumbData = aThumbData;
|
|
return true;
|
|
}
|
|
bool SetIsScrollbarContainer(FrameMetrics::ViewID aScrollId) {
|
|
if (mIsScrollbarContainer && mScrollbarTargetContainerId == aScrollId) {
|
|
return false;
|
|
}
|
|
mIsScrollbarContainer = true;
|
|
mScrollbarTargetContainerId = aScrollId;
|
|
return true;
|
|
}
|
|
bool SetMixBlendMode(gfx::CompositionOp aMixBlendMode) {
|
|
if (mMixBlendMode == aMixBlendMode) {
|
|
return false;
|
|
}
|
|
mMixBlendMode = aMixBlendMode;
|
|
return true;
|
|
}
|
|
bool SetForceIsolatedGroup(bool aForceIsolatedGroup) {
|
|
if (mForceIsolatedGroup == aForceIsolatedGroup) {
|
|
return false;
|
|
}
|
|
mForceIsolatedGroup = aForceIsolatedGroup;
|
|
return true;
|
|
}
|
|
bool SetTransform(const gfx::Matrix4x4& aMatrix) {
|
|
if (mTransform == aMatrix) {
|
|
return false;
|
|
}
|
|
mTransform = aMatrix;
|
|
return true;
|
|
}
|
|
bool SetTransformIsPerspective(bool aIsPerspective) {
|
|
if (mTransformIsPerspective == aIsPerspective) {
|
|
return false;
|
|
}
|
|
mTransformIsPerspective = aIsPerspective;
|
|
return true;
|
|
}
|
|
bool SetScrolledClip(const Maybe<LayerClip>& aScrolledClip) {
|
|
if (mScrolledClip == aScrolledClip) {
|
|
return false;
|
|
}
|
|
mScrolledClip = aScrolledClip;
|
|
return true;
|
|
}
|
|
bool SetFixedPositionData(FrameMetrics::ViewID aScrollId,
|
|
const LayerPoint& aAnchor,
|
|
int32_t aSides)
|
|
{
|
|
if (mFixedPositionData &&
|
|
mFixedPositionData->mScrollId == aScrollId &&
|
|
mFixedPositionData->mAnchor == aAnchor &&
|
|
mFixedPositionData->mSides == aSides) {
|
|
return false;
|
|
}
|
|
if (!mFixedPositionData) {
|
|
mFixedPositionData.emplace();
|
|
}
|
|
mFixedPositionData->mScrollId = aScrollId;
|
|
mFixedPositionData->mAnchor = aAnchor;
|
|
mFixedPositionData->mSides = aSides;
|
|
return true;
|
|
}
|
|
bool SetStickyPositionData(FrameMetrics::ViewID aScrollId, LayerRect aOuter,
|
|
LayerRect aInner)
|
|
{
|
|
if (mStickyPositionData &&
|
|
mStickyPositionData->mOuter.IsEqualEdges(aOuter) &&
|
|
mStickyPositionData->mInner.IsEqualEdges(aInner)) {
|
|
return false;
|
|
}
|
|
if (!mStickyPositionData) {
|
|
mStickyPositionData.emplace();
|
|
}
|
|
mStickyPositionData->mScrollId = aScrollId;
|
|
mStickyPositionData->mOuter = aOuter;
|
|
mStickyPositionData->mInner = aInner;
|
|
return true;
|
|
}
|
|
|
|
// This returns true if scrolling info is equivalent for the purposes of
|
|
// APZ hit testing.
|
|
bool HitTestingInfoIsEqual(const SimpleLayerAttributes& aOther) const {
|
|
if (mIsScrollbarContainer != aOther.mIsScrollbarContainer) {
|
|
return false;
|
|
}
|
|
if (mScrollbarTargetContainerId != aOther.mScrollbarTargetContainerId) {
|
|
return false;
|
|
}
|
|
if (mThumbData != aOther.mThumbData) {
|
|
return false;
|
|
}
|
|
if (FixedPositionScrollContainerId() != aOther.FixedPositionScrollContainerId()) {
|
|
return false;
|
|
}
|
|
if (mTransform != aOther.mTransform) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
//
|
|
// Getters.
|
|
//
|
|
|
|
float PostXScale() const {
|
|
return mPostXScale;
|
|
}
|
|
float PostYScale() const {
|
|
return mPostYScale;
|
|
}
|
|
uint32_t ContentFlags() const {
|
|
return mContentFlags;
|
|
}
|
|
float Opacity() const {
|
|
return mOpacity;
|
|
}
|
|
bool IsFixedPosition() const {
|
|
return mIsFixedPosition;
|
|
}
|
|
FrameMetrics::ViewID ScrollbarTargetContainerId() const {
|
|
return mScrollbarTargetContainerId;
|
|
}
|
|
const ScrollThumbData& ThumbData() const {
|
|
return mThumbData;
|
|
}
|
|
float IsScrollbarContainer() const {
|
|
return mIsScrollbarContainer;
|
|
}
|
|
gfx::CompositionOp MixBlendMode() const {
|
|
return mMixBlendMode;
|
|
}
|
|
bool ForceIsolatedGroup() const {
|
|
return mForceIsolatedGroup;
|
|
}
|
|
const gfx::Matrix4x4& Transform() const {
|
|
return mTransform;
|
|
}
|
|
bool TransformIsPerspective() const {
|
|
return mTransformIsPerspective;
|
|
}
|
|
const Maybe<LayerClip>& ScrolledClip() const {
|
|
return mScrolledClip;
|
|
}
|
|
FrameMetrics::ViewID FixedPositionScrollContainerId() const {
|
|
return mFixedPositionData
|
|
? mFixedPositionData->mScrollId
|
|
: FrameMetrics::NULL_SCROLL_ID;
|
|
}
|
|
LayerPoint FixedPositionAnchor() const {
|
|
return mFixedPositionData ? mFixedPositionData->mAnchor : LayerPoint();
|
|
}
|
|
int32_t FixedPositionSides() const {
|
|
return mFixedPositionData ? mFixedPositionData->mSides : eSideBitsNone;
|
|
}
|
|
bool IsStickyPosition() const {
|
|
return !!mStickyPositionData;
|
|
}
|
|
FrameMetrics::ViewID StickyScrollContainerId() const {
|
|
return mStickyPositionData->mScrollId;
|
|
}
|
|
const LayerRect& StickyScrollRangeOuter() const {
|
|
return mStickyPositionData->mOuter;
|
|
}
|
|
const LayerRect& StickyScrollRangeInner() const {
|
|
return mStickyPositionData->mInner;
|
|
}
|
|
|
|
bool operator ==(const SimpleLayerAttributes& aOther) const {
|
|
return mTransform == aOther.mTransform &&
|
|
mTransformIsPerspective == aOther.mTransformIsPerspective &&
|
|
mScrolledClip == aOther.mScrolledClip &&
|
|
mPostXScale == aOther.mPostXScale &&
|
|
mPostYScale == aOther.mPostYScale &&
|
|
mContentFlags == aOther.mContentFlags &&
|
|
mOpacity == aOther.mOpacity &&
|
|
mIsFixedPosition == aOther.mIsFixedPosition &&
|
|
mScrollbarTargetContainerId == aOther.mScrollbarTargetContainerId &&
|
|
mThumbData == aOther.mThumbData &&
|
|
mIsScrollbarContainer == aOther.mIsScrollbarContainer &&
|
|
mMixBlendMode == aOther.mMixBlendMode &&
|
|
mForceIsolatedGroup == aOther.mForceIsolatedGroup;
|
|
}
|
|
|
|
private:
|
|
gfx::Matrix4x4 mTransform;
|
|
bool mTransformIsPerspective;
|
|
Maybe<LayerClip> mScrolledClip;
|
|
float mPostXScale;
|
|
float mPostYScale;
|
|
uint32_t mContentFlags;
|
|
float mOpacity;
|
|
bool mIsFixedPosition;
|
|
uint64_t mScrollbarTargetContainerId;
|
|
ScrollThumbData mThumbData;
|
|
bool mIsScrollbarContainer;
|
|
gfx::CompositionOp mMixBlendMode;
|
|
bool mForceIsolatedGroup;
|
|
|
|
struct FixedPositionData {
|
|
FrameMetrics::ViewID mScrollId;
|
|
LayerPoint mAnchor;
|
|
int32_t mSides;
|
|
};
|
|
Maybe<FixedPositionData> mFixedPositionData;
|
|
|
|
struct StickyPositionData {
|
|
FrameMetrics::ViewID mScrollId;
|
|
LayerRect mOuter;
|
|
LayerRect mInner;
|
|
};
|
|
Maybe<StickyPositionData> mStickyPositionData;
|
|
|
|
// This class may only contain plain-old-data members that can be safely
|
|
// copied over IPC. Make sure to add new members to operator ==.
|
|
};
|
|
|
|
} // namespace layers
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_gfx_layers_LayerAttributes_h
|