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 * Copyright (C) 2005 Oliver Hunt <oliver@nerget.com> | 4 * Copyright (C) 2005 Oliver Hunt <oliver@nerget.com> |
5 * | 5 * |
6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
10 * | 10 * |
(...skipping 20 matching lines...) Expand all Loading... |
31 namespace blink { | 31 namespace blink { |
32 | 32 |
33 inline SVGFESpecularLightingElement::SVGFESpecularLightingElement(Document& docu
ment) | 33 inline SVGFESpecularLightingElement::SVGFESpecularLightingElement(Document& docu
ment) |
34 : SVGFilterPrimitiveStandardAttributes(SVGNames::feSpecularLightingTag, docu
ment) | 34 : SVGFilterPrimitiveStandardAttributes(SVGNames::feSpecularLightingTag, docu
ment) |
35 , m_specularConstant(SVGAnimatedNumber::create(this, SVGNames::specularConst
antAttr, SVGNumber::create(1))) | 35 , m_specularConstant(SVGAnimatedNumber::create(this, SVGNames::specularConst
antAttr, SVGNumber::create(1))) |
36 , m_specularExponent(SVGAnimatedNumber::create(this, SVGNames::specularExpon
entAttr, SVGNumber::create(1))) | 36 , m_specularExponent(SVGAnimatedNumber::create(this, SVGNames::specularExpon
entAttr, SVGNumber::create(1))) |
37 , m_surfaceScale(SVGAnimatedNumber::create(this, SVGNames::surfaceScaleAttr,
SVGNumber::create(1))) | 37 , m_surfaceScale(SVGAnimatedNumber::create(this, SVGNames::surfaceScaleAttr,
SVGNumber::create(1))) |
38 , m_kernelUnitLength(SVGAnimatedNumberOptionalNumber::create(this, SVGNames:
:surfaceScaleAttr)) | 38 , m_kernelUnitLength(SVGAnimatedNumberOptionalNumber::create(this, SVGNames:
:surfaceScaleAttr)) |
39 , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create(
))) | 39 , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create(
))) |
40 { | 40 { |
41 ScriptWrappable::init(this); | |
42 | |
43 addToPropertyMap(m_specularConstant); | 41 addToPropertyMap(m_specularConstant); |
44 addToPropertyMap(m_specularExponent); | 42 addToPropertyMap(m_specularExponent); |
45 addToPropertyMap(m_surfaceScale); | 43 addToPropertyMap(m_surfaceScale); |
46 addToPropertyMap(m_kernelUnitLength); | 44 addToPropertyMap(m_kernelUnitLength); |
47 addToPropertyMap(m_in1); | 45 addToPropertyMap(m_in1); |
48 } | 46 } |
49 | 47 |
50 DEFINE_NODE_FACTORY(SVGFESpecularLightingElement) | 48 DEFINE_NODE_FACTORY(SVGFESpecularLightingElement) |
51 | 49 |
52 bool SVGFESpecularLightingElement::isSupportedAttribute(const QualifiedName& att
rName) | 50 bool SVGFESpecularLightingElement::isSupportedAttribute(const QualifiedName& att
rName) |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 ASSERT(renderer->style()); | 177 ASSERT(renderer->style()); |
180 Color color = renderer->style()->svgStyle().lightingColor(); | 178 Color color = renderer->style()->svgStyle().lightingColor(); |
181 | 179 |
182 RefPtr<LightSource> lightSource = lightNode->lightSource(filter); | 180 RefPtr<LightSource> lightSource = lightNode->lightSource(filter); |
183 RefPtr<FilterEffect> effect = FESpecularLighting::create(filter, color, m_su
rfaceScale->currentValue()->value(), m_specularConstant->currentValue()->value()
, | 181 RefPtr<FilterEffect> effect = FESpecularLighting::create(filter, color, m_su
rfaceScale->currentValue()->value(), m_specularConstant->currentValue()->value()
, |
184 m_specularExponent->currentValue()->value(), kernelUnitLengthX()->curren
tValue()->value(), kernelUnitLengthY()->currentValue()->value(), lightSource.rel
ease()); | 182 m_specularExponent->currentValue()->value(), kernelUnitLengthX()->curren
tValue()->value(), kernelUnitLengthY()->currentValue()->value(), lightSource.rel
ease()); |
185 effect->inputEffects().append(input1); | 183 effect->inputEffects().append(input1); |
186 return effect.release(); | 184 return effect.release(); |
187 } | 185 } |
188 | 186 |
189 } | 187 } // namespace blink |
OLD | NEW |