Rubber-stamped by Brady Eidson.
[webbrowser.git] / WebCore / svg / SVGRectElement.h
bloba4d859efc31820a4ffa69ff6b704817ba935f1e7
1 /*
2 Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org>
3 2004, 2005, 2006 Rob Buis <buis@kde.org>
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version.
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public License
16 along with this library; see the file COPYING.LIB. If not, write to
17 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA.
21 #ifndef SVGRectElement_h
22 #define SVGRectElement_h
24 #if ENABLE(SVG)
25 #include "SVGExternalResourcesRequired.h"
26 #include "SVGLangSpace.h"
27 #include "SVGStyledTransformableElement.h"
28 #include "SVGTests.h"
30 namespace WebCore {
32 class SVGRectElement : public SVGStyledTransformableElement,
33 public SVGTests,
34 public SVGLangSpace,
35 public SVGExternalResourcesRequired {
36 public:
37 SVGRectElement(const QualifiedName&, Document*);
38 virtual ~SVGRectElement();
40 virtual bool isValid() const { return SVGTests::isValid(); }
42 virtual void parseMappedAttribute(MappedAttribute*);
43 virtual void svgAttributeChanged(const QualifiedName&);
45 virtual Path toPathData() const;
47 protected:
48 virtual bool hasRelativeValues() const;
50 private:
51 ANIMATED_PROPERTY_DECLARATIONS(SVGRectElement, SVGNames::rectTagString, SVGNames::xAttrString, SVGLength, X, x)
52 ANIMATED_PROPERTY_DECLARATIONS(SVGRectElement, SVGNames::rectTagString, SVGNames::yAttrString, SVGLength, Y, y)
53 ANIMATED_PROPERTY_DECLARATIONS(SVGRectElement, SVGNames::rectTagString, SVGNames::widthAttrString, SVGLength, Width, width)
54 ANIMATED_PROPERTY_DECLARATIONS(SVGRectElement, SVGNames::rectTagString, SVGNames::heightAttrString, SVGLength, Height, height)
55 ANIMATED_PROPERTY_DECLARATIONS(SVGRectElement, SVGNames::rectTagString, SVGNames::rxAttrString, SVGLength, Rx, rx)
56 ANIMATED_PROPERTY_DECLARATIONS(SVGRectElement, SVGNames::rectTagString, SVGNames::ryAttrString, SVGLength, Ry, ry)
58 // SVGExternalResourcesRequired
59 ANIMATED_PROPERTY_DECLARATIONS(SVGRectElement, SVGExternalResourcesRequiredIdentifier,
60 SVGNames::externalResourcesRequiredAttrString, bool,
61 ExternalResourcesRequired, externalResourcesRequired)
64 } // namespace WebCore
66 #endif // ENABLE(SVG)
67 #endif