| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) | 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 { | 40 { |
| 41 return adoptRef(new ScaleTransformOperation(sx, sy, sz, type)); | 41 return adoptRef(new ScaleTransformOperation(sx, sy, sz, type)); |
| 42 } | 42 } |
| 43 | 43 |
| 44 double x() const { return m_x; } | 44 double x() const { return m_x; } |
| 45 double y() const { return m_y; } | 45 double y() const { return m_y; } |
| 46 double z() const { return m_z; } | 46 double z() const { return m_z; } |
| 47 | 47 |
| 48 virtual bool canBlendWith(const TransformOperation& other) const; | 48 virtual bool canBlendWith(const TransformOperation& other) const; |
| 49 | 49 |
| 50 virtual void apply(TransformationMatrix& transform, const FloatSize&) const
override | 50 void apply(TransformationMatrix& transform, const FloatSize&) const override |
| 51 { | 51 { |
| 52 transform.scale3d(m_x, m_y, m_z); | 52 transform.scale3d(m_x, m_y, m_z); |
| 53 } | 53 } |
| 54 virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from,
double progress, bool blendToIdentity = false) override; | 54 PassRefPtr<TransformOperation> blend(const TransformOperation* from, double
progress, bool blendToIdentity = false) override; |
| 55 | 55 |
| 56 static bool isMatchingOperationType(OperationType type) { return type == Sca
le || type == ScaleX || type == ScaleY || type == ScaleZ || type == Scale3D; } | 56 static bool isMatchingOperationType(OperationType type) { return type == Sca
le || type == ScaleX || type == ScaleY || type == ScaleZ || type == Scale3D; } |
| 57 | 57 |
| 58 private: | 58 private: |
| 59 virtual OperationType type() const override { return m_type; } | 59 OperationType type() const override { return m_type; } |
| 60 | 60 |
| 61 virtual bool operator==(const TransformOperation& o) const override | 61 bool operator==(const TransformOperation& o) const override |
| 62 { | 62 { |
| 63 if (!isSameType(o)) | 63 if (!isSameType(o)) |
| 64 return false; | 64 return false; |
| 65 const ScaleTransformOperation* s = static_cast<const ScaleTransformOpera
tion*>(&o); | 65 const ScaleTransformOperation* s = static_cast<const ScaleTransformOpera
tion*>(&o); |
| 66 return m_x == s->m_x && m_y == s->m_y && m_z == s->m_z; | 66 return m_x == s->m_x && m_y == s->m_y && m_z == s->m_z; |
| 67 } | 67 } |
| 68 | 68 |
| 69 ScaleTransformOperation(double sx, double sy, double sz, OperationType type) | 69 ScaleTransformOperation(double sx, double sy, double sz, OperationType type) |
| 70 : m_x(sx) | 70 : m_x(sx) |
| 71 , m_y(sy) | 71 , m_y(sy) |
| 72 , m_z(sz) | 72 , m_z(sz) |
| 73 , m_type(type) | 73 , m_type(type) |
| 74 { | 74 { |
| 75 ASSERT(isMatchingOperationType(type)); | 75 ASSERT(isMatchingOperationType(type)); |
| 76 } | 76 } |
| 77 | 77 |
| 78 double m_x; | 78 double m_x; |
| 79 double m_y; | 79 double m_y; |
| 80 double m_z; | 80 double m_z; |
| 81 OperationType m_type; | 81 OperationType m_type; |
| 82 }; | 82 }; |
| 83 | 83 |
| 84 DEFINE_TRANSFORM_TYPE_CASTS(ScaleTransformOperation); | 84 DEFINE_TRANSFORM_TYPE_CASTS(ScaleTransformOperation); |
| 85 | 85 |
| 86 } // namespace blink | 86 } // namespace blink |
| 87 | 87 |
| 88 #endif // ScaleTransformOperation_h | 88 #endif // ScaleTransformOperation_h |
| OLD | NEW |