OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> |
3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 31 matching lines...) Loading... |
42 BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGComponentTransferFunctionElement) | 42 BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGComponentTransferFunctionElement) |
43 REGISTER_LOCAL_ANIMATED_PROPERTY(type) | 43 REGISTER_LOCAL_ANIMATED_PROPERTY(type) |
44 REGISTER_LOCAL_ANIMATED_PROPERTY(tableValues) | 44 REGISTER_LOCAL_ANIMATED_PROPERTY(tableValues) |
45 REGISTER_LOCAL_ANIMATED_PROPERTY(slope) | 45 REGISTER_LOCAL_ANIMATED_PROPERTY(slope) |
46 REGISTER_LOCAL_ANIMATED_PROPERTY(intercept) | 46 REGISTER_LOCAL_ANIMATED_PROPERTY(intercept) |
47 REGISTER_LOCAL_ANIMATED_PROPERTY(amplitude) | 47 REGISTER_LOCAL_ANIMATED_PROPERTY(amplitude) |
48 REGISTER_LOCAL_ANIMATED_PROPERTY(exponent) | 48 REGISTER_LOCAL_ANIMATED_PROPERTY(exponent) |
49 REGISTER_LOCAL_ANIMATED_PROPERTY(offset) | 49 REGISTER_LOCAL_ANIMATED_PROPERTY(offset) |
50 END_REGISTER_ANIMATED_PROPERTIES | 50 END_REGISTER_ANIMATED_PROPERTIES |
51 | 51 |
52 SVGComponentTransferFunctionElement::SVGComponentTransferFunctionElement(const Q
ualifiedName& tagName, Document* document) | 52 SVGComponentTransferFunctionElement::SVGComponentTransferFunctionElement(const Q
ualifiedName& tagName, Document& document) |
53 : SVGElement(tagName, document) | 53 : SVGElement(tagName, document) |
54 , m_type(FECOMPONENTTRANSFER_TYPE_IDENTITY) | 54 , m_type(FECOMPONENTTRANSFER_TYPE_IDENTITY) |
55 , m_slope(1) | 55 , m_slope(1) |
56 , m_amplitude(1) | 56 , m_amplitude(1) |
57 , m_exponent(1) | 57 , m_exponent(1) |
58 { | 58 { |
59 ScriptWrappable::init(this); | 59 ScriptWrappable::init(this); |
60 registerAnimatedPropertiesForSVGComponentTransferFunctionElement(); | 60 registerAnimatedPropertiesForSVGComponentTransferFunctionElement(); |
61 } | 61 } |
62 | 62 |
(...skipping 81 matching lines...) Loading... |
144 func.slope = slopeCurrentValue(); | 144 func.slope = slopeCurrentValue(); |
145 func.intercept = interceptCurrentValue(); | 145 func.intercept = interceptCurrentValue(); |
146 func.amplitude = amplitudeCurrentValue(); | 146 func.amplitude = amplitudeCurrentValue(); |
147 func.exponent = exponentCurrentValue(); | 147 func.exponent = exponentCurrentValue(); |
148 func.offset = offsetCurrentValue(); | 148 func.offset = offsetCurrentValue(); |
149 func.tableValues = tableValuesCurrentValue().toFloatVector(); | 149 func.tableValues = tableValuesCurrentValue().toFloatVector(); |
150 return func; | 150 return func; |
151 } | 151 } |
152 | 152 |
153 } | 153 } |
OLD | NEW |