11c8178d499f3a5e3c6fe4415c842823a568e2f9
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / html / HTMLImageElement.h
1 /*
2  * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3  *           (C) 1999 Antti Koivisto (koivisto@kde.org)
4  * Copyright (C) 2004, 2008, 2010 Apple Inc. All rights reserved.
5  * Copyright (C) 2010 Google Inc. All rights reserved.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public License
18  * along with this library; see the file COPYING.LIB.  If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20  * Boston, MA 02110-1301, USA.
21  *
22  */
23
24 #ifndef HTMLImageElement_h
25 #define HTMLImageElement_h
26
27 #include "core/html/HTMLElement.h"
28 #include "core/html/HTMLImageLoader.h"
29 #include "core/html/canvas/CanvasImageSource.h"
30 #include "platform/graphics/GraphicsTypes.h"
31 #include "wtf/WeakPtr.h"
32
33 namespace blink {
34
35 class HTMLFormElement;
36 class ImageCandidate;
37 class MediaQueryList;
38
39 class HTMLImageElement FINAL : public HTMLElement, public CanvasImageSource {
40 public:
41     class ViewportChangeListener;
42
43     static PassRefPtrWillBeRawPtr<HTMLImageElement> create(Document&);
44     static PassRefPtrWillBeRawPtr<HTMLImageElement> create(Document&, HTMLFormElement*, bool createdByParser);
45     static PassRefPtrWillBeRawPtr<HTMLImageElement> createForJSConstructor(Document&, int width, int height);
46
47     virtual ~HTMLImageElement();
48     virtual void trace(Visitor*) OVERRIDE;
49
50     int width(bool ignorePendingStylesheets = false);
51     int height(bool ignorePendingStylesheets = false);
52
53     int naturalWidth() const;
54     int naturalHeight() const;
55     const String& currentSrc() const;
56
57     bool isServerMap() const;
58
59     const AtomicString& altText() const;
60
61     CompositeOperator compositeOperator() const { return m_compositeOperator; }
62
63     ImageResource* cachedImage() const { return imageLoader().image(); }
64     void setImageResource(ImageResource* i) { imageLoader().setImage(i); };
65
66     void setLoadingImageDocument() { imageLoader().setLoadingImageDocument(); }
67
68     void setHeight(int);
69
70     KURL src() const;
71     void setSrc(const String&);
72
73     void setWidth(int);
74
75     int x() const;
76     int y() const;
77
78     bool complete() const;
79
80     bool hasPendingActivity() const { return imageLoader().hasPendingActivity(); }
81
82     virtual bool canContainRangeEndPoint() const OVERRIDE { return false; }
83
84     void addClient(ImageLoaderClient* client) { imageLoader().addClient(client); }
85     void removeClient(ImageLoaderClient* client) { imageLoader().removeClient(client); }
86
87     virtual const AtomicString imageSourceURL() const OVERRIDE;
88
89     virtual HTMLFormElement* formOwner() const OVERRIDE;
90     void formRemovedFromTree(const Node& formRoot);
91
92     // CanvasImageSourceImplementations
93     virtual PassRefPtr<Image> getSourceImageForCanvas(SourceImageMode, SourceImageStatus*) const;
94     virtual bool wouldTaintOrigin(SecurityOrigin*) const OVERRIDE;
95     virtual FloatSize sourceSize() const OVERRIDE;
96     virtual FloatSize defaultDestinationSize() const OVERRIDE;
97     virtual const KURL& sourceURL() const OVERRIDE;
98
99     // public so that HTMLPictureElement can call this as well.
100     void selectSourceURL(ImageLoader::UpdateFromElementBehavior);
101 protected:
102     explicit HTMLImageElement(Document&, HTMLFormElement* = 0, bool createdByParser = false);
103
104     virtual void didMoveToNewDocument(Document& oldDocument) OVERRIDE;
105
106 private:
107     virtual bool areAuthorShadowsAllowed() const OVERRIDE { return false; }
108
109     virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
110     virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE;
111     virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) OVERRIDE;
112
113     virtual void attach(const AttachContext& = AttachContext()) OVERRIDE;
114     virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
115
116     virtual bool canStartSelection() const OVERRIDE;
117
118     virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
119     virtual bool hasLegalLinkAttribute(const QualifiedName&) const OVERRIDE;
120     virtual const QualifiedName& subResourceAttributeName() const OVERRIDE;
121
122     virtual bool draggable() const OVERRIDE;
123
124     virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
125     virtual void removedFrom(ContainerNode*) OVERRIDE;
126     virtual bool shouldRegisterAsNamedItem() const OVERRIDE { return true; }
127     virtual bool shouldRegisterAsExtraNamedItem() const OVERRIDE { return true; }
128     virtual bool isInteractiveContent() const OVERRIDE;
129     virtual Image* imageContents() OVERRIDE;
130
131     void resetFormOwner();
132     ImageCandidate findBestFitImageFromPictureParent();
133     void setBestFitURLAndDPRFromImageCandidate(const ImageCandidate&);
134     HTMLImageLoader& imageLoader() const { return *m_imageLoader; }
135     void notifyViewportChanged();
136     void createMediaQueryListIfDoesNotExist();
137
138     OwnPtrWillBeMember<HTMLImageLoader> m_imageLoader;
139     RefPtrWillBeMember<ViewportChangeListener> m_listener;
140 #if ENABLE(OILPAN)
141     Member<HTMLFormElement> m_form;
142 #else
143     WeakPtr<HTMLFormElement> m_form;
144 #endif
145     CompositeOperator m_compositeOperator;
146     AtomicString m_bestFitImageURL;
147     float m_imageDevicePixelRatio;
148     unsigned m_formWasSetByParser : 1;
149     unsigned m_elementCreatedByParser : 1;
150     // Intrinsic sizing is viewport dependant if the 'w' descriptor was used for the picked resource.
151     unsigned m_intrinsicSizingViewportDependant : 1;
152     // Effective size is viewport dependant if the sizes attribute's effective size used v* length units.
153     unsigned m_effectiveSizeViewportDependant : 1;
154 };
155
156 } //namespace
157
158 #endif