OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde
.org> | 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde
.org> |
3 * Copyright (C) 2004, 2005, 2006, 2008 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2008 Rob Buis <buis@kde.org> |
4 * Copyright (C) 2008 Apple Inc. All rights reserved. | 4 * Copyright (C) 2008 Apple Inc. All rights reserved. |
5 * Copyright (C) 2008 Alp Toker <alp@atoker.com> | 5 * Copyright (C) 2008 Alp Toker <alp@atoker.com> |
6 * Copyright (C) 2009 Cameron McCormack <cam@mcc.id.au> | 6 * Copyright (C) 2009 Cameron McCormack <cam@mcc.id.au> |
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 1079 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1090 animatableAttributes.add(SVGNames::clipPathUnitsAttr); | 1090 animatableAttributes.add(SVGNames::clipPathUnitsAttr); |
1091 animatableAttributes.add(SVGNames::cxAttr); | 1091 animatableAttributes.add(SVGNames::cxAttr); |
1092 animatableAttributes.add(SVGNames::cyAttr); | 1092 animatableAttributes.add(SVGNames::cyAttr); |
1093 animatableAttributes.add(SVGNames::diffuseConstantAttr); | 1093 animatableAttributes.add(SVGNames::diffuseConstantAttr); |
1094 animatableAttributes.add(SVGNames::divisorAttr); | 1094 animatableAttributes.add(SVGNames::divisorAttr); |
1095 animatableAttributes.add(SVGNames::dxAttr); | 1095 animatableAttributes.add(SVGNames::dxAttr); |
1096 animatableAttributes.add(SVGNames::dyAttr); | 1096 animatableAttributes.add(SVGNames::dyAttr); |
1097 animatableAttributes.add(SVGNames::edgeModeAttr); | 1097 animatableAttributes.add(SVGNames::edgeModeAttr); |
1098 animatableAttributes.add(SVGNames::elevationAttr); | 1098 animatableAttributes.add(SVGNames::elevationAttr); |
1099 animatableAttributes.add(SVGNames::exponentAttr); | 1099 animatableAttributes.add(SVGNames::exponentAttr); |
1100 animatableAttributes.add(SVGNames::externalResourcesRequiredAttr); | |
1101 animatableAttributes.add(SVGNames::filterResAttr); | 1100 animatableAttributes.add(SVGNames::filterResAttr); |
1102 animatableAttributes.add(SVGNames::filterUnitsAttr); | 1101 animatableAttributes.add(SVGNames::filterUnitsAttr); |
1103 animatableAttributes.add(SVGNames::fxAttr); | 1102 animatableAttributes.add(SVGNames::fxAttr); |
1104 animatableAttributes.add(SVGNames::fyAttr); | 1103 animatableAttributes.add(SVGNames::fyAttr); |
1105 animatableAttributes.add(SVGNames::gradientTransformAttr); | 1104 animatableAttributes.add(SVGNames::gradientTransformAttr); |
1106 animatableAttributes.add(SVGNames::gradientUnitsAttr); | 1105 animatableAttributes.add(SVGNames::gradientUnitsAttr); |
1107 animatableAttributes.add(SVGNames::heightAttr); | 1106 animatableAttributes.add(SVGNames::heightAttr); |
1108 animatableAttributes.add(SVGNames::in2Attr); | 1107 animatableAttributes.add(SVGNames::in2Attr); |
1109 animatableAttributes.add(SVGNames::inAttr); | 1108 animatableAttributes.add(SVGNames::inAttr); |
1110 animatableAttributes.add(SVGNames::interceptAttr); | 1109 animatableAttributes.add(SVGNames::interceptAttr); |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1178 } | 1177 } |
1179 | 1178 |
1180 if (name == classAttr) | 1179 if (name == classAttr) |
1181 return true; | 1180 return true; |
1182 | 1181 |
1183 return animatableAttributes.contains(name); | 1182 return animatableAttributes.contains(name); |
1184 } | 1183 } |
1185 #endif | 1184 #endif |
1186 | 1185 |
1187 } | 1186 } |
OLD | NEW |