~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to src/3rdparty/webkit/WebCore/svg/SVGFESpecularLightingElement.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2009-11-02 18:30:08 UTC
  • mfrom: (1.2.2 upstream)
  • mto: (15.2.5 experimental)
  • mto: This revision was merged to the branch mainline in revision 88.
  • Revision ID: james.westby@ubuntu.com-20091102183008-b6a4gcs128mvfb3m
Tags: upstream-4.6.0~beta1
ImportĀ upstreamĀ versionĀ 4.6.0~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#ifndef SVGFESpecularLightingElement_h
23
23
#define SVGFESpecularLightingElement_h
24
24
 
25
 
#if ENABLE(SVG) && ENABLE(SVG_FILTERS)
 
25
#if ENABLE(SVG) && ENABLE(FILTERS)
26
26
#include "SVGFESpecularLighting.h"
27
27
#include "SVGFilterPrimitiveStandardAttributes.h"
28
28
 
39
39
        virtual ~SVGFESpecularLightingElement();
40
40
        
41
41
        virtual void parseMappedAttribute(MappedAttribute*);
42
 
        virtual SVGFilterEffect* filterEffect(SVGResourceFilter*) const;
43
 
        bool build(FilterBuilder*);
 
42
        virtual bool build(SVGResourceFilter*);
44
43
 
45
44
    private:
46
45
        ANIMATED_PROPERTY_DECLARATIONS(SVGFESpecularLightingElement, SVGNames::feSpecularLightingTagString, SVGNames::inAttrString, String, In1, in1)
49
48
        ANIMATED_PROPERTY_DECLARATIONS(SVGFESpecularLightingElement, SVGNames::feSpecularLightingTagString, SVGNames::surfaceScaleAttrString, float, SurfaceScale, surfaceScale)
50
49
        ANIMATED_PROPERTY_DECLARATIONS(SVGFESpecularLightingElement, SVGNames::feSpecularLightingTagString, SVGKernelUnitLengthXIdentifier, float, KernelUnitLengthX, kernelUnitLengthX)
51
50
        ANIMATED_PROPERTY_DECLARATIONS(SVGFESpecularLightingElement, SVGNames::feSpecularLightingTagString, SVGKernelUnitLengthYIdentifier, float, KernelUnitLengthY, kernelUnitLengthY)
52
 
 
53
 
        mutable RefPtr<FESpecularLighting> m_filterEffect;
54
51
        
55
52
        LightSource* findLights() const;
56
53
    };