Rubber-stamped by Brady Eidson.
[webbrowser.git] / WebCore / svg / SVGForeignObjectElement.h
blob1848e2ba7e264f65249ffff664819c398022dc56
1 /*
2 Copyright (C) 2006 Apple Computer, Inc.
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
20 #ifndef SVGForeignObjectElement_h
21 #define SVGForeignObjectElement_h
23 #if ENABLE(SVG) && ENABLE(SVG_FOREIGN_OBJECT)
24 #include "SVGTests.h"
25 #include "SVGLangSpace.h"
26 #include "SVGURIReference.h"
27 #include "SVGStyledTransformableElement.h"
28 #include "SVGExternalResourcesRequired.h"
30 namespace WebCore {
31 class SVGLength;
33 class SVGForeignObjectElement : public SVGStyledTransformableElement,
34 public SVGTests,
35 public SVGLangSpace,
36 public SVGExternalResourcesRequired,
37 public SVGURIReference {
38 public:
39 SVGForeignObjectElement(const QualifiedName&, Document*);
40 virtual ~SVGForeignObjectElement();
42 virtual bool isValid() const { return SVGTests::isValid(); }
43 virtual void parseMappedAttribute(MappedAttribute*);
44 virtual void svgAttributeChanged(const QualifiedName&);
46 bool childShouldCreateRenderer(Node*) const;
47 virtual RenderObject* createRenderer(RenderArena* arena, RenderStyle* style);
49 private:
50 ANIMATED_PROPERTY_DECLARATIONS(SVGForeignObjectElement, SVGNames::foreignObjectTagString, SVGNames::xAttrString, SVGLength, X, x)
51 ANIMATED_PROPERTY_DECLARATIONS(SVGForeignObjectElement, SVGNames::foreignObjectTagString, SVGNames::yAttrString, SVGLength, Y, y)
52 ANIMATED_PROPERTY_DECLARATIONS(SVGForeignObjectElement, SVGNames::foreignObjectTagString, SVGNames::widthAttrString, SVGLength, Width, width)
53 ANIMATED_PROPERTY_DECLARATIONS(SVGForeignObjectElement, SVGNames::foreignObjectTagString, SVGNames::heightAttrString, SVGLength, Height, height)
55 // SVGURIReference
56 ANIMATED_PROPERTY_DECLARATIONS(SVGForeignObjectElement, SVGURIReferenceIdentifier, XLinkNames::hrefAttrString, String, Href, href)
58 // SVGExternalResourcesRequired
59 ANIMATED_PROPERTY_DECLARATIONS(SVGForeignObjectElement, SVGExternalResourcesRequiredIdentifier,
60 SVGNames::externalResourcesRequiredAttrString, bool,
61 ExternalResourcesRequired, externalResourcesRequired)
64 } // namespace WebCore
66 #endif // ENABLE(SVG) && ENABLE(SVG_FOREIGN_OBJECT)
67 #endif