KHTML
SVGFELightElement.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef SVGFELightElement_h
00023 #define SVGFELightElement_h
00024
00025 #if ENABLE(SVG) && ENABLE(SVG_FILTERS)
00026 #include "SVGElement.h"
00027 #include "SVGLightSource.h"
00028
00029 namespace WebCore
00030 {
00031 class SVGNumberList;
00032
00033 class SVGFELightElement : public SVGElement
00034 {
00035 public:
00036 SVGFELightElement(const QualifiedName&, Document*);
00037 virtual ~SVGFELightElement();
00038
00039 virtual SVGLightSource* lightSource() const = 0;
00040 virtual void parseMappedAttribute(MappedAttribute*);
00041
00042 private:
00043 ANIMATED_PROPERTY_DECLARATIONS(SVGFELightElement, float, float, Azimuth, azimuth)
00044 ANIMATED_PROPERTY_DECLARATIONS(SVGFELightElement, float, float, Elevation, elevation)
00045 ANIMATED_PROPERTY_DECLARATIONS(SVGFELightElement, float, float, X, x)
00046 ANIMATED_PROPERTY_DECLARATIONS(SVGFELightElement, float, float, Y, y)
00047 ANIMATED_PROPERTY_DECLARATIONS(SVGFELightElement, float, float, Z, z)
00048 ANIMATED_PROPERTY_DECLARATIONS(SVGFELightElement, float, float, PointsAtX, pointsAtX)
00049 ANIMATED_PROPERTY_DECLARATIONS(SVGFELightElement, float, float, PointsAtY, pointsAtY)
00050 ANIMATED_PROPERTY_DECLARATIONS(SVGFELightElement, float, float, PointsAtZ, pointsAtZ)
00051 ANIMATED_PROPERTY_DECLARATIONS(SVGFELightElement, float, float, SpecularExponent, specularExponent)
00052 ANIMATED_PROPERTY_DECLARATIONS(SVGFELightElement, float, float, LimitingConeAngle, limitingConeAngle)
00053 };
00054
00055 }
00056
00057 #endif // ENABLE(SVG) && ENABLE(SVG_FILTERS)
00058 #endif