OSDN Git Service

am ee47e11a: (-s ours) am f6b396da: DO NOT MERGE
[android-x86/external-webkit.git] / WebCore / svg / SVGForeignObjectElement.h
1 /*
2  * Copyright (C) 2006 Apple Inc. All rights reserved.
3  *
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.
8  *
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.
13  *
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.
18  */
19
20 #ifndef SVGForeignObjectElement_h
21 #define SVGForeignObjectElement_h
22
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"
29
30 namespace WebCore {
31     class SVGLength;
32
33     class SVGForeignObjectElement : public SVGStyledTransformableElement,
34                                     public SVGTests,
35                                     public SVGLangSpace,
36                                     public SVGExternalResourcesRequired {
37     public:
38         static PassRefPtr<SVGForeignObjectElement> create(const QualifiedName&, Document*);
39
40     private:
41         SVGForeignObjectElement(const QualifiedName&, Document*);
42
43         virtual bool isValid() const { return SVGTests::isValid(); }
44         virtual void parseMappedAttribute(Attribute*);
45         virtual void svgAttributeChanged(const QualifiedName&);
46         virtual void synchronizeProperty(const QualifiedName&);
47
48         virtual bool childShouldCreateRenderer(Node*) const;
49         virtual RenderObject* createRenderer(RenderArena* arena, RenderStyle* style);
50
51         virtual bool selfHasRelativeLengths() const;
52
53         DECLARE_ANIMATED_PROPERTY(SVGForeignObjectElement, SVGNames::xAttr, SVGLength, X, x)
54         DECLARE_ANIMATED_PROPERTY(SVGForeignObjectElement, SVGNames::yAttr, SVGLength, Y, y)
55         DECLARE_ANIMATED_PROPERTY(SVGForeignObjectElement, SVGNames::widthAttr, SVGLength, Width, width)
56         DECLARE_ANIMATED_PROPERTY(SVGForeignObjectElement, SVGNames::heightAttr, SVGLength, Height, height)
57
58         // SVGURIReference
59         DECLARE_ANIMATED_PROPERTY(SVGForeignObjectElement, XLinkNames::hrefAttr, String, Href, href)
60
61         // SVGExternalResourcesRequired
62         DECLARE_ANIMATED_PROPERTY(SVGForeignObjectElement, SVGNames::externalResourcesRequiredAttr, bool, ExternalResourcesRequired, externalResourcesRequired)
63     };
64
65 } // namespace WebCore
66
67 #endif // ENABLE(SVG) && ENABLE(SVG_FOREIGN_OBJECT)
68 #endif