OSDN Git Service

am e5097951: (-s ours) am 5793dcc1: Merge "Do not merge: fix dns prefetch, multiply...
[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 "SVGAnimatedLength.h"
25 #include "SVGAnimatedPropertyMacros.h"
26 #include "SVGTests.h"
27 #include "SVGLangSpace.h"
28 #include "SVGURIReference.h"
29 #include "SVGStyledTransformableElement.h"
30 #include "SVGExternalResourcesRequired.h"
31
32 namespace WebCore {
33     class SVGLength;
34
35     class SVGForeignObjectElement : public SVGStyledTransformableElement,
36                                     public SVGTests,
37                                     public SVGLangSpace,
38                                     public SVGExternalResourcesRequired {
39     public:
40         static PassRefPtr<SVGForeignObjectElement> create(const QualifiedName&, Document*);
41
42     private:
43         SVGForeignObjectElement(const QualifiedName&, Document*);
44
45         virtual bool isValid() const { return SVGTests::isValid(); }
46         virtual void parseMappedAttribute(Attribute*);
47         virtual void svgAttributeChanged(const QualifiedName&);
48         virtual void synchronizeProperty(const QualifiedName&);
49
50         virtual bool childShouldCreateRenderer(Node*) const;
51         virtual RenderObject* createRenderer(RenderArena* arena, RenderStyle* style);
52
53         virtual bool selfHasRelativeLengths() const;
54
55         DECLARE_ANIMATED_PROPERTY_NEW(SVGForeignObjectElement, SVGNames::xAttr, SVGLength, X, x)
56         DECLARE_ANIMATED_PROPERTY_NEW(SVGForeignObjectElement, SVGNames::yAttr, SVGLength, Y, y)
57         DECLARE_ANIMATED_PROPERTY_NEW(SVGForeignObjectElement, SVGNames::widthAttr, SVGLength, Width, width)
58         DECLARE_ANIMATED_PROPERTY_NEW(SVGForeignObjectElement, SVGNames::heightAttr, SVGLength, Height, height)
59
60         // SVGURIReference
61         DECLARE_ANIMATED_STATIC_PROPERTY_NEW(SVGForeignObjectElement, XLinkNames::hrefAttr, String, Href, href)
62
63         // SVGExternalResourcesRequired
64         DECLARE_ANIMATED_STATIC_PROPERTY_NEW(SVGForeignObjectElement, SVGNames::externalResourcesRequiredAttr, bool, ExternalResourcesRequired, externalResourcesRequired)
65     };
66
67 } // namespace WebCore
68
69 #endif // ENABLE(SVG) && ENABLE(SVG_FOREIGN_OBJECT)
70 #endif