OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2006 Allan Sandfeld Jensen (kde@carewolf.com) | 4 * (C) 2006 Allan Sandfeld Jensen (kde@carewolf.com) |
5 * (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 5 * (C) 2006 Samuel Weinig (sam.weinig@gmail.com) |
6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights
reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights
reserved. |
7 * | 7 * |
8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 virtual void destroy() OVERRIDE; | 44 virtual void destroy() OVERRIDE; |
45 | 45 |
46 static RenderImage* createAnonymous(Document*); | 46 static RenderImage* createAnonymous(Document*); |
47 | 47 |
48 void setImageResource(PassOwnPtr<RenderImageResource>); | 48 void setImageResource(PassOwnPtr<RenderImageResource>); |
49 | 49 |
50 RenderImageResource* imageResource() { return m_imageResource.get(); } | 50 RenderImageResource* imageResource() { return m_imageResource.get(); } |
51 const RenderImageResource* imageResource() const { return m_imageResource.ge
t(); } | 51 const RenderImageResource* imageResource() const { return m_imageResource.ge
t(); } |
52 ImageResource* cachedImage() const { return m_imageResource ? m_imageResourc
e->cachedImage() : 0; } | 52 ImageResource* cachedImage() const { return m_imageResource ? m_imageResourc
e->cachedImage() : 0; } |
53 | 53 |
54 bool setImageSizeForAltText(ImageResource* newImage = 0); | |
55 | |
56 void updateAltText(); | |
57 | |
58 HTMLMapElement* imageMap() const; | 54 HTMLMapElement* imageMap() const; |
59 void areaElementFocusChanged(HTMLAreaElement*); | 55 void areaElementFocusChanged(HTMLAreaElement*); |
60 | 56 |
61 void setIsGeneratedContent(bool generated = true) { m_isGeneratedContent = g
enerated; } | 57 void setIsGeneratedContent(bool generated = true) { m_isGeneratedContent = g
enerated; } |
62 | 58 |
63 bool isGeneratedContent() const { return m_isGeneratedContent; } | 59 bool isGeneratedContent() const { return m_isGeneratedContent; } |
64 | 60 |
65 String altText() const { return m_altText; } | |
66 | |
67 inline void setImageDevicePixelRatio(float factor) { m_imageDevicePixelRatio
= factor; } | 61 inline void setImageDevicePixelRatio(float factor) { m_imageDevicePixelRatio
= factor; } |
68 float imageDevicePixelRatio() const { return m_imageDevicePixelRatio; } | 62 float imageDevicePixelRatio() const { return m_imageDevicePixelRatio; } |
69 | 63 |
70 virtual void intrinsicSizeChanged() OVERRIDE | 64 virtual void intrinsicSizeChanged() OVERRIDE |
71 { | 65 { |
72 if (m_imageResource) | 66 if (m_imageResource) |
73 imageChanged(m_imageResource->imagePtr()); | 67 imageChanged(m_imageResource->imagePtr()); |
74 } | 68 } |
75 | 69 |
76 protected: | 70 protected: |
(...skipping 18 matching lines...) Expand all Loading... |
95 virtual bool foregroundIsKnownToBeOpaqueInRect(const LayoutRect& localRect,
unsigned maxDepthToTest) const OVERRIDE FINAL; | 89 virtual bool foregroundIsKnownToBeOpaqueInRect(const LayoutRect& localRect,
unsigned maxDepthToTest) const OVERRIDE FINAL; |
96 virtual bool computeBackgroundIsKnownToBeObscured() OVERRIDE FINAL; | 90 virtual bool computeBackgroundIsKnownToBeObscured() OVERRIDE FINAL; |
97 | 91 |
98 virtual LayoutUnit minimumReplacedHeight() const OVERRIDE; | 92 virtual LayoutUnit minimumReplacedHeight() const OVERRIDE; |
99 | 93 |
100 virtual void notifyFinished(Resource*) OVERRIDE FINAL; | 94 virtual void notifyFinished(Resource*) OVERRIDE FINAL; |
101 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTes
tLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAct
ion) OVERRIDE FINAL; | 95 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTes
tLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAct
ion) OVERRIDE FINAL; |
102 | 96 |
103 virtual bool boxShadowShouldBeAppliedToBackground(BackgroundBleedAvoidance,
InlineFlowBox*) const OVERRIDE FINAL; | 97 virtual bool boxShadowShouldBeAppliedToBackground(BackgroundBleedAvoidance,
InlineFlowBox*) const OVERRIDE FINAL; |
104 | 98 |
105 IntSize imageSizeForError(ImageResource*) const; | 99 void repaintOrMarkForLayout(const IntRect* = 0); |
106 void paintInvalidationOrMarkForLayout(bool imageSizeChanged, const IntRect*
= 0); | |
107 void updateIntrinsicSizeIfNeeded(const LayoutSize&); | 100 void updateIntrinsicSizeIfNeeded(const LayoutSize&); |
108 // Update the size of the image to be rendered. Object-fit may cause this to
be different from the CSS box's content rect. | 101 // Update the size of the image to be rendered. Object-fit may cause this to
be different from the CSS box's content rect. |
109 void updateInnerContentRect(); | 102 void updateInnerContentRect(); |
110 | 103 |
111 // Text to display as long as the image isn't available. | 104 // Text to display as long as the image isn't available. |
112 String m_altText; | |
113 OwnPtr<RenderImageResource> m_imageResource; | 105 OwnPtr<RenderImageResource> m_imageResource; |
114 bool m_didIncrementVisuallyNonEmptyPixelCount; | 106 bool m_didIncrementVisuallyNonEmptyPixelCount; |
115 bool m_isGeneratedContent; | 107 bool m_isGeneratedContent; |
116 float m_imageDevicePixelRatio; | 108 float m_imageDevicePixelRatio; |
117 | 109 |
118 friend class RenderImageScaleObserver; | 110 friend class RenderImageScaleObserver; |
119 }; | 111 }; |
120 | 112 |
121 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderImage, isRenderImage()); | 113 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderImage, isRenderImage()); |
122 | 114 |
123 } // namespace blink | 115 } // namespace blink |
124 | 116 |
125 #endif // RenderImage_h | 117 #endif // RenderImage_h |
OLD | NEW |