blob: e47e7555ff4fdd208a9f58f394440f6eacef9e7f [file] [log] [blame]
/*
* Copyright (C) 2000 Lars Knoll (knoll@kde.org)
* (C) 2000 Antti Koivisto (koivisto@kde.org)
* (C) 2000 Dirk Mueller (mueller@kde.org)
* Copyright (C) 2003, 2005-2008, 2017 Apple Inc. All rights reserved.
* Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#pragma once
#include "Length.h"
#include "LengthFunctions.h"
#include "TransformOperation.h"
#include <wtf/Ref.h>
namespace WebCore {
struct BlendingContext;
class TranslateTransformOperation final : public TransformOperation {
public:
static Ref<TranslateTransformOperation> create(const Length& tx, const Length& ty, OperationType type)
{
return adoptRef(*new TranslateTransformOperation(tx, ty, Length(0, LengthType::Fixed), type));
}
static Ref<TranslateTransformOperation> create(const Length& tx, const Length& ty, const Length& tz, OperationType type)
{
return adoptRef(*new TranslateTransformOperation(tx, ty, tz, type));
}
Ref<TransformOperation> clone() const override
{
return adoptRef(*new TranslateTransformOperation(m_x, m_y, m_z, type()));
}
float xAsFloat(const FloatSize& borderBoxSize) const { return floatValueForLength(m_x, borderBoxSize.width()); }
float yAsFloat(const FloatSize& borderBoxSize) const { return floatValueForLength(m_y, borderBoxSize.height()); }
float zAsFloat() const { return floatValueForLength(m_z, 1); }
Length x() const { return m_x; }
Length y() const { return m_y; }
Length z() const { return m_z; }
void setX(Length newX) { m_x = newX; }
void setY(Length newY) { m_y = newY; }
void setZ(Length newZ) { m_z = newZ; }
OperationType primitiveType() const final { return isRepresentableIn2D() ? TRANSLATE : TRANSLATE_3D; }
bool apply(TransformationMatrix& transform, const FloatSize& borderBoxSize) const final
{
transform.translate3d(xAsFloat(borderBoxSize), yAsFloat(borderBoxSize), zAsFloat());
return m_x.isPercent() || m_y.isPercent();
}
bool isIdentity() const final { return !floatValueForLength(m_x, 1) && !floatValueForLength(m_y, 1) && !floatValueForLength(m_z, 1); }
bool operator==(const TranslateTransformOperation& other) const { return operator==(static_cast<const TransformOperation&>(other)); }
bool operator==(const TransformOperation&) const final;
Ref<TransformOperation> blend(const TransformOperation* from, const BlendingContext&, bool blendToIdentity = false) final;
bool isRepresentableIn2D() const final { return m_z.isZero(); }
private:
void dump(WTF::TextStream&) const final;
TranslateTransformOperation(const Length& tx, const Length& ty, const Length& tz, OperationType type)
: TransformOperation(type)
, m_x(tx)
, m_y(ty)
, m_z(tz)
{
ASSERT(isTranslateTransformOperationType());
}
Length m_x;
Length m_y;
Length m_z;
};
} // namespace WebCore
SPECIALIZE_TYPE_TRAITS_TRANSFORMOPERATION(WebCore::TranslateTransformOperation, isTranslateTransformOperationType())