605cb97b974ca5e35bf11558fa09783b98cdc045
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / svg / SVGImageElement.h
1 /*
2  * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org>
3  * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org>
4  *
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.
9  *
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.
14  *
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.
19  */
20
21 #ifndef SVGImageElement_h
22 #define SVGImageElement_h
23
24 #include "SVGNames.h"
25 #include "core/svg/SVGAnimatedBoolean.h"
26 #include "core/svg/SVGAnimatedLength.h"
27 #include "core/svg/SVGAnimatedPreserveAspectRatio.h"
28 #include "core/svg/SVGGraphicsElement.h"
29 #include "core/svg/SVGImageLoader.h"
30 #include "core/svg/SVGURIReference.h"
31
32 namespace WebCore {
33
34 class SVGImageElement FINAL : public SVGGraphicsElement,
35                               public SVGURIReference {
36 public:
37     static PassRefPtr<SVGImageElement> create(Document&);
38
39     bool currentFrameHasSingleSecurityOrigin() const;
40
41     SVGAnimatedLength* x() const { return m_x.get(); }
42     SVGAnimatedLength* y() const { return m_y.get(); }
43     SVGAnimatedLength* width() const { return m_width.get(); }
44     SVGAnimatedLength* height() const { return m_height.get(); }
45     SVGAnimatedPreserveAspectRatio* preserveAspectRatio() { return m_preserveAspectRatio.get(); }
46
47 private:
48     explicit SVGImageElement(Document&);
49
50     virtual bool isStructurallyExternal() const OVERRIDE { return !hrefString().isNull(); }
51
52     bool isSupportedAttribute(const QualifiedName&);
53     virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
54     virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE;
55     virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) OVERRIDE;
56     virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE;
57
58     virtual void attach(const AttachContext& = AttachContext()) OVERRIDE;
59     virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
60
61     virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
62
63     virtual const AtomicString imageSourceURL() const OVERRIDE;
64
65     virtual bool haveLoadedRequiredResources() OVERRIDE;
66
67     virtual bool selfHasRelativeLengths() const OVERRIDE;
68     virtual void didMoveToNewDocument(Document& oldDocument) OVERRIDE;
69
70     RefPtr<SVGAnimatedLength> m_x;
71     RefPtr<SVGAnimatedLength> m_y;
72     RefPtr<SVGAnimatedLength> m_width;
73     RefPtr<SVGAnimatedLength> m_height;
74     RefPtr<SVGAnimatedPreserveAspectRatio> m_preserveAspectRatio;
75
76     SVGImageLoader m_imageLoader;
77     bool m_needsLoaderURIUpdate : 1;
78 };
79
80 } // namespace WebCore
81
82 #endif