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 27 matching lines...) Expand all Loading... |
38 | 38 |
39 static PassRefPtr<ScaleTransformOperation> create(double sx, double sy, doub
le sz, OperationType type) | 39 static PassRefPtr<ScaleTransformOperation> create(double sx, double sy, doub
le sz, OperationType type) |
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; |
| 49 |
48 private: | 50 private: |
49 virtual bool isIdentity() const OVERRIDE { return m_x == 1 && m_y == 1 &&
m_z == 1; } | 51 virtual bool isIdentity() const OVERRIDE { return m_x == 1 && m_y == 1 &&
m_z == 1; } |
50 | 52 |
51 virtual OperationType type() const OVERRIDE { return m_type; } | 53 virtual OperationType type() const OVERRIDE { return m_type; } |
52 | 54 |
53 virtual bool operator==(const TransformOperation& o) const OVERRIDE | 55 virtual bool operator==(const TransformOperation& o) const OVERRIDE |
54 { | 56 { |
55 if (!isSameType(o)) | 57 if (!isSameType(o)) |
56 return false; | 58 return false; |
57 const ScaleTransformOperation* s = static_cast<const ScaleTransformOpera
tion*>(&o); | 59 const ScaleTransformOperation* s = static_cast<const ScaleTransformOpera
tion*>(&o); |
(...skipping 18 matching lines...) Expand all Loading... |
76 | 78 |
77 double m_x; | 79 double m_x; |
78 double m_y; | 80 double m_y; |
79 double m_z; | 81 double m_z; |
80 OperationType m_type; | 82 OperationType m_type; |
81 }; | 83 }; |
82 | 84 |
83 } // namespace WebCore | 85 } // namespace WebCore |
84 | 86 |
85 #endif // ScaleTransformOperation_h | 87 #endif // ScaleTransformOperation_h |
OLD | NEW |