2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2006-03-29 22:29:03 +04:00
|
|
|
|
2014-09-13 00:15:24 +04:00
|
|
|
/* rendering object for replaced elements with image data */
|
2006-03-29 22:29:03 +04:00
|
|
|
|
1999-04-14 01:50:25 +04:00
|
|
|
#ifndef nsImageFrame_h___
|
|
|
|
#define nsImageFrame_h___
|
|
|
|
|
2001-11-01 18:31:13 +03:00
|
|
|
#include "nsSplittableFrame.h"
|
2004-01-21 12:35:59 +03:00
|
|
|
#include "nsIIOService.h"
|
2004-02-03 23:30:02 +03:00
|
|
|
#include "nsIObserver.h"
|
1999-04-14 01:50:25 +04:00
|
|
|
|
2012-10-12 20:11:22 +04:00
|
|
|
#include "imgINotificationObserver.h"
|
2001-03-22 04:38:35 +03:00
|
|
|
|
2011-01-18 00:47:18 +03:00
|
|
|
#include "nsDisplayList.h"
|
|
|
|
#include "imgIContainer.h"
|
2012-06-19 07:26:34 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-10-02 09:02:23 +04:00
|
|
|
#include "mozilla/DebugOnly.h"
|
2013-09-15 04:05:05 +04:00
|
|
|
#include "nsIReflowCallback.h"
|
2014-08-06 09:19:25 +04:00
|
|
|
#include "nsTObserverArray.h"
|
2011-01-18 00:47:18 +03:00
|
|
|
|
2014-10-24 19:28:14 +04:00
|
|
|
class nsFontMetrics;
|
1999-04-14 01:50:25 +04:00
|
|
|
class nsImageMap;
|
1999-06-23 07:29:44 +04:00
|
|
|
class nsIURI;
|
2001-03-22 04:38:35 +03:00
|
|
|
class nsILoadGroup;
|
1999-04-14 01:50:25 +04:00
|
|
|
struct nsHTMLReflowState;
|
2014-06-19 04:57:51 +04:00
|
|
|
class nsHTMLReflowMetrics;
|
2006-01-26 05:29:17 +03:00
|
|
|
class nsDisplayImage;
|
2010-04-11 00:10:12 +04:00
|
|
|
class nsPresContext;
|
2001-03-22 04:38:35 +03:00
|
|
|
class nsImageFrame;
|
2010-09-09 00:40:38 +04:00
|
|
|
class nsTransform2D;
|
2012-03-20 02:22:02 +04:00
|
|
|
class nsImageLoadingContent;
|
2001-03-22 04:38:35 +03:00
|
|
|
|
2011-04-26 10:04:18 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace layers {
|
|
|
|
class ImageContainer;
|
|
|
|
class ImageLayer;
|
|
|
|
class LayerManager;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace layers
|
|
|
|
} // namespace mozilla
|
2011-01-18 00:47:18 +03:00
|
|
|
|
2012-10-12 20:11:22 +04:00
|
|
|
class nsImageListener : public imgINotificationObserver
|
2001-03-22 04:38:35 +03:00
|
|
|
{
|
2014-06-24 02:40:01 +04:00
|
|
|
protected:
|
|
|
|
virtual ~nsImageListener();
|
|
|
|
|
2001-03-22 04:38:35 +03:00
|
|
|
public:
|
2014-09-01 07:36:37 +04:00
|
|
|
explicit nsImageListener(nsImageFrame *aFrame);
|
2001-03-22 04:38:35 +03:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
2012-10-12 20:11:22 +04:00
|
|
|
NS_DECL_IMGINOTIFICATIONOBSERVER
|
2001-03-22 04:38:35 +03:00
|
|
|
|
|
|
|
void SetFrame(nsImageFrame *frame) { mFrame = frame; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsImageFrame *mFrame;
|
|
|
|
};
|
|
|
|
|
2014-02-19 12:21:56 +04:00
|
|
|
typedef nsSplittableFrame ImageFrameSuper;
|
1999-04-14 01:50:25 +04:00
|
|
|
|
2013-09-15 04:05:05 +04:00
|
|
|
class nsImageFrame : public ImageFrameSuper,
|
|
|
|
public nsIReflowCallback {
|
1999-04-14 01:50:25 +04:00
|
|
|
public:
|
2015-02-05 00:50:56 +03:00
|
|
|
typedef mozilla::image::DrawResult DrawResult;
|
2011-04-26 10:04:18 +04:00
|
|
|
typedef mozilla::layers::ImageContainer ImageContainer;
|
|
|
|
typedef mozilla::layers::ImageLayer ImageLayer;
|
|
|
|
typedef mozilla::layers::LayerManager LayerManager;
|
|
|
|
|
2009-09-12 20:49:24 +04:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2014-09-01 07:36:37 +04:00
|
|
|
explicit nsImageFrame(nsStyleContext* aContext);
|
2000-04-19 18:00:11 +04:00
|
|
|
|
2011-04-26 10:52:19 +04:00
|
|
|
NS_DECL_QUERYFRAME_TARGET(nsImageFrame)
|
2009-01-12 22:20:59 +03:00
|
|
|
NS_DECL_QUERYFRAME
|
2001-02-20 00:50:04 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot) override;
|
|
|
|
virtual void DidSetStyleContext(nsStyleContext* aOldStyleContext) override;
|
2014-06-28 07:50:26 +04:00
|
|
|
|
2014-05-25 02:20:40 +04:00
|
|
|
virtual void Init(nsIContent* aContent,
|
|
|
|
nsContainerFrame* aParent,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsIFrame* aPrevInFlow) override;
|
2013-02-14 15:12:27 +04:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
2015-03-21 19:28:04 +03:00
|
|
|
const nsDisplayListSet& aLists) override;
|
|
|
|
virtual nscoord GetMinISize(nsRenderingContext *aRenderingContext) override;
|
|
|
|
virtual nscoord GetPrefISize(nsRenderingContext *aRenderingContext) override;
|
|
|
|
virtual mozilla::IntrinsicSize GetIntrinsicSize() override;
|
|
|
|
virtual nsSize GetIntrinsicRatio() override;
|
2014-05-13 04:47:52 +04:00
|
|
|
virtual void Reflow(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsReflowStatus& aStatus) override;
|
2001-08-30 02:59:09 +04:00
|
|
|
|
2014-02-18 11:47:48 +04:00
|
|
|
virtual nsresult GetContentForEvent(mozilla::WidgetEvent* aEvent,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsIContent** aContent) override;
|
2014-02-18 11:47:48 +04:00
|
|
|
virtual nsresult HandleEvent(nsPresContext* aPresContext,
|
2014-02-18 12:36:33 +04:00
|
|
|
mozilla::WidgetGUIEvent* aEvent,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsEventStatus* aEventStatus) override;
|
2014-02-18 11:47:48 +04:00
|
|
|
virtual nsresult GetCursor(const nsPoint& aPoint,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsIFrame::Cursor& aCursor) override;
|
2014-02-18 11:47:48 +04:00
|
|
|
virtual nsresult AttributeChanged(int32_t aNameSpaceID,
|
2014-02-18 12:36:33 +04:00
|
|
|
nsIAtom* aAttribute,
|
2015-03-21 19:28:04 +03:00
|
|
|
int32_t aModType) override;
|
2001-05-18 03:52:32 +04:00
|
|
|
|
2001-08-17 07:13:07 +04:00
|
|
|
#ifdef ACCESSIBILITY
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual mozilla::a11y::AccType AccessibleType() override;
|
2001-08-17 07:13:07 +04:00
|
|
|
#endif
|
2001-05-18 03:52:32 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsIAtom* GetType() const override;
|
2007-02-24 21:33:33 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool IsFrameOfType(uint32_t aFlags) const override
|
2007-02-24 21:33:33 +03:00
|
|
|
{
|
|
|
|
return ImageFrameSuper::IsFrameOfType(aFlags & ~(nsIFrame::eReplaced));
|
|
|
|
}
|
|
|
|
|
2014-01-06 03:31:14 +04:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const override;
|
2014-02-19 12:21:57 +04:00
|
|
|
void List(FILE* out = stderr, const char* aPrefix = "",
|
2015-03-21 19:28:04 +03:00
|
|
|
uint32_t aFlags = 0) const override;
|
2001-10-31 07:43:48 +03:00
|
|
|
#endif
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual LogicalSides GetLogicalSkipSides(const nsHTMLReflowState* aReflowState = nullptr) const override;
|
2007-03-20 03:58:20 +03:00
|
|
|
|
2011-04-26 10:52:19 +04:00
|
|
|
nsresult GetIntrinsicImageSize(nsSize& aSize);
|
2000-09-09 02:52:05 +04:00
|
|
|
|
2004-02-03 23:30:02 +03:00
|
|
|
static void ReleaseGlobals() {
|
|
|
|
if (gIconLoad) {
|
|
|
|
gIconLoad->Shutdown();
|
|
|
|
NS_RELEASE(gIconLoad);
|
|
|
|
}
|
|
|
|
NS_IF_RELEASE(sIOService);
|
|
|
|
}
|
2004-01-21 12:35:59 +03:00
|
|
|
|
2012-10-12 20:11:22 +04:00
|
|
|
nsresult Notify(imgIRequest *aRequest, int32_t aType, const nsIntRect* aData);
|
|
|
|
|
2005-09-18 22:05:40 +04:00
|
|
|
/**
|
|
|
|
* Function to test whether aContent, which has aStyleContext as its style,
|
|
|
|
* should get an image frame. Note that this method is only used by the
|
|
|
|
* frame constructor; it's only here because it uses gIconLoad for now.
|
|
|
|
*/
|
2011-09-29 10:19:26 +04:00
|
|
|
static bool ShouldCreateImageFrameFor(mozilla::dom::Element* aElement,
|
2005-09-18 22:05:40 +04:00
|
|
|
nsStyleContext* aStyleContext);
|
|
|
|
|
2015-03-18 05:40:16 +03:00
|
|
|
DrawResult DisplayAltFeedback(nsRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
nsPoint aPt,
|
|
|
|
uint32_t aFlags);
|
2006-01-26 05:29:17 +03:00
|
|
|
|
|
|
|
nsRect GetInnerArea() const;
|
|
|
|
|
2012-03-16 00:16:02 +04:00
|
|
|
/**
|
|
|
|
* Return a map element associated with this image.
|
|
|
|
*/
|
2014-08-06 09:19:25 +04:00
|
|
|
mozilla::dom::Element* GetMapElement() const;
|
2012-03-16 00:16:02 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return true if the image has associated image map.
|
|
|
|
*/
|
|
|
|
bool HasImageMap() const { return mImageMap || GetMapElement(); }
|
|
|
|
|
2011-09-27 00:55:04 +04:00
|
|
|
nsImageMap* GetImageMap();
|
2012-03-16 00:16:02 +04:00
|
|
|
nsImageMap* GetExistingImageMap() const { return mImageMap; }
|
2006-01-26 05:29:17 +03:00
|
|
|
|
2014-07-24 21:03:25 +04:00
|
|
|
virtual void AddInlineMinISize(nsRenderingContext *aRenderingContext,
|
2015-03-21 19:28:04 +03:00
|
|
|
InlineMinISizeData *aData) override;
|
2007-12-03 12:24:49 +03:00
|
|
|
|
2011-10-29 14:44:50 +04:00
|
|
|
void DisconnectMap();
|
2013-09-15 04:05:05 +04:00
|
|
|
|
|
|
|
// nsIReflowCallback
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool ReflowFinished() override;
|
|
|
|
virtual void ReflowCallbackCanceled() override;
|
2013-09-15 04:05:05 +04:00
|
|
|
|
1999-04-14 01:50:25 +04:00
|
|
|
protected:
|
|
|
|
virtual ~nsImageFrame();
|
|
|
|
|
2014-09-13 00:15:23 +04:00
|
|
|
void EnsureIntrinsicSizeAndRatio();
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 08:38:33 +03:00
|
|
|
|
2014-08-24 18:34:44 +04:00
|
|
|
virtual mozilla::LogicalSize
|
|
|
|
ComputeSize(nsRenderingContext *aRenderingContext,
|
|
|
|
mozilla::WritingMode aWritingMode,
|
|
|
|
const mozilla::LogicalSize& aCBSize,
|
|
|
|
nscoord aAvailableISize,
|
|
|
|
const mozilla::LogicalSize& aMargin,
|
|
|
|
const mozilla::LogicalSize& aBorder,
|
|
|
|
const mozilla::LogicalSize& aPadding,
|
2015-03-21 19:28:04 +03:00
|
|
|
ComputeSizeFlags aFlags) override;
|
1999-04-14 01:50:25 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsServerImageMap();
|
1999-04-14 01:50:25 +04:00
|
|
|
|
2004-12-26 22:48:54 +03:00
|
|
|
void TranslateEventCoords(const nsPoint& aPoint,
|
2007-02-18 19:49:54 +03:00
|
|
|
nsIntPoint& aResult);
|
1999-07-08 23:38:08 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool GetAnchorHREFTargetAndNode(nsIURI** aHref, nsString& aTarget,
|
2007-07-11 17:05:05 +04:00
|
|
|
nsIContent** aNode);
|
2006-07-31 11:08:45 +04:00
|
|
|
/**
|
|
|
|
* Computes the width of the string that fits into the available space
|
|
|
|
*
|
|
|
|
* @param in aLength total length of the string in PRUnichars
|
|
|
|
* @param in aMaxWidth width not to be exceeded
|
|
|
|
* @param out aMaxFit length of the string that fits within aMaxWidth
|
|
|
|
* in PRUnichars
|
|
|
|
* @return width of the string that fits within aMaxWidth
|
|
|
|
*/
|
2014-01-04 19:02:17 +04:00
|
|
|
nscoord MeasureString(const char16_t* aString,
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t aLength,
|
2006-07-31 11:08:45 +04:00
|
|
|
nscoord aMaxWidth,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t& aMaxFit,
|
2014-10-24 19:28:14 +04:00
|
|
|
nsRenderingContext& aContext,
|
|
|
|
nsFontMetrics& aFontMetrics);
|
1999-04-14 01:50:25 +04:00
|
|
|
|
2004-08-01 03:15:21 +04:00
|
|
|
void DisplayAltText(nsPresContext* aPresContext,
|
2011-04-08 05:04:40 +04:00
|
|
|
nsRenderingContext& aRenderingContext,
|
1999-04-14 01:50:25 +04:00
|
|
|
const nsString& aAltText,
|
|
|
|
const nsRect& aRect);
|
|
|
|
|
2015-02-05 00:50:56 +03:00
|
|
|
DrawResult PaintImage(nsRenderingContext& aRenderingContext, nsPoint aPt,
|
|
|
|
const nsRect& aDirtyRect, imgIContainer* aImage,
|
|
|
|
uint32_t aFlags);
|
2011-01-18 00:47:18 +03:00
|
|
|
|
2015-07-20 05:30:35 +03:00
|
|
|
/**
|
|
|
|
* If we're ready to decode - that is, if our current request's image is
|
|
|
|
* available and our decoding heuristics are satisfied - then trigger a decode
|
|
|
|
* for our image at the size we predict it will be drawn next time it's
|
|
|
|
* painted.
|
|
|
|
*/
|
|
|
|
void MaybeDecodeForPredictedSize();
|
|
|
|
|
2001-10-07 22:02:13 +04:00
|
|
|
protected:
|
2003-03-19 06:47:09 +03:00
|
|
|
friend class nsImageListener;
|
2012-03-20 02:22:02 +04:00
|
|
|
friend class nsImageLoadingContent;
|
2014-11-18 01:29:56 +03:00
|
|
|
|
|
|
|
nsresult OnSizeAvailable(imgIRequest* aRequest, imgIContainer* aImage);
|
|
|
|
nsresult OnFrameUpdate(imgIRequest* aRequest, const nsIntRect* aRect);
|
|
|
|
nsresult OnLoadComplete(imgIRequest* aRequest, nsresult aStatus);
|
2015-02-11 12:11:43 +03:00
|
|
|
|
2012-03-20 02:22:02 +04:00
|
|
|
/**
|
|
|
|
* Notification that aRequest will now be the current request.
|
|
|
|
*/
|
|
|
|
void NotifyNewCurrentRequest(imgIRequest *aRequest, nsresult aStatus);
|
2001-05-04 10:29:59 +04:00
|
|
|
|
2015-07-08 00:00:08 +03:00
|
|
|
/// Always sync decode our image when painting if @aForce is true.
|
|
|
|
void SetForceSyncDecoding(bool aForce) { mForceSyncDecoding = aForce; }
|
|
|
|
|
2015-07-20 05:30:35 +03:00
|
|
|
/**
|
|
|
|
* Computes the predicted dest rect that we'll draw into, in app units, based
|
|
|
|
* upon the provided frame content box. (The content box is what
|
|
|
|
* nsDisplayImage::GetBounds() returns.)
|
|
|
|
*/
|
|
|
|
nsRect PredictedDestRect(const nsRect& aFrameContentBox);
|
|
|
|
|
2003-03-19 06:47:09 +03:00
|
|
|
private:
|
|
|
|
// random helpers
|
|
|
|
inline void SpecToURI(const nsAString& aSpec, nsIIOService *aIOService,
|
|
|
|
nsIURI **aURI);
|
2001-05-04 10:29:59 +04:00
|
|
|
|
2004-08-01 03:15:21 +04:00
|
|
|
inline void GetLoadGroup(nsPresContext *aPresContext,
|
2003-03-19 06:47:09 +03:00
|
|
|
nsILoadGroup **aLoadGroup);
|
2007-03-20 03:58:20 +03:00
|
|
|
nscoord GetContinuationOffset() const;
|
2003-06-17 20:40:34 +04:00
|
|
|
void GetDocumentCharacterSet(nsACString& aCharset) const;
|
2010-10-07 08:25:47 +04:00
|
|
|
bool ShouldDisplaySelection();
|
2001-10-06 09:08:16 +04:00
|
|
|
|
2003-03-19 06:47:09 +03:00
|
|
|
/**
|
2007-03-20 03:58:20 +03:00
|
|
|
* Recalculate mIntrinsicSize from the image.
|
2003-03-19 06:47:09 +03:00
|
|
|
*
|
2007-03-20 03:58:20 +03:00
|
|
|
* @return whether aImage's size did _not_
|
2010-09-09 00:40:38 +04:00
|
|
|
* match our previous intrinsic size.
|
2003-03-19 06:47:09 +03:00
|
|
|
*/
|
2011-09-29 10:19:26 +04:00
|
|
|
bool UpdateIntrinsicSize(imgIContainer* aImage);
|
2007-03-20 03:58:20 +03:00
|
|
|
|
2010-09-09 00:40:38 +04:00
|
|
|
/**
|
|
|
|
* Recalculate mIntrinsicRatio from the image.
|
|
|
|
*
|
|
|
|
* @return whether aImage's ratio did _not_
|
|
|
|
* match our previous intrinsic ratio.
|
|
|
|
*/
|
2011-09-29 10:19:26 +04:00
|
|
|
bool UpdateIntrinsicRatio(imgIContainer* aImage);
|
2010-09-09 00:40:38 +04:00
|
|
|
|
2007-03-20 03:58:20 +03:00
|
|
|
/**
|
2010-09-09 00:40:38 +04:00
|
|
|
* This function calculates the transform for converting between
|
|
|
|
* source space & destination space. May fail if our image has a
|
|
|
|
* percent-valued or zero-valued height or width.
|
|
|
|
*
|
|
|
|
* @param aTransform The transform object to populate.
|
|
|
|
*
|
|
|
|
* @return whether we succeeded in creating the transform.
|
2007-03-20 03:58:20 +03:00
|
|
|
*/
|
2011-09-29 10:19:26 +04:00
|
|
|
bool GetSourceToDestTransform(nsTransform2D& aTransform);
|
2001-03-22 04:38:35 +03:00
|
|
|
|
2003-03-19 06:47:09 +03:00
|
|
|
/**
|
2015-02-11 12:11:43 +03:00
|
|
|
* Helper function to check whether the request corresponds to a load we don't
|
|
|
|
* care about. Most of the decoder observer methods will bail early if this
|
|
|
|
* returns true.
|
2003-03-19 06:47:09 +03:00
|
|
|
*/
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsPendingLoad(imgIRequest* aRequest) const;
|
2001-03-22 04:38:35 +03:00
|
|
|
|
2001-10-06 09:08:16 +04:00
|
|
|
/**
|
2004-08-29 03:59:15 +04:00
|
|
|
* Function to convert a dirty rect in the source image to a dirty
|
|
|
|
* rect for the image frame.
|
2001-10-06 09:08:16 +04:00
|
|
|
*/
|
2009-01-15 06:27:09 +03:00
|
|
|
nsRect SourceRectToDest(const nsIntRect & aRect);
|
2003-03-19 06:47:09 +03:00
|
|
|
|
2015-02-11 12:11:43 +03:00
|
|
|
/**
|
|
|
|
* Triggers invalidation for both our image display item and, if appropriate,
|
|
|
|
* our alt-feedback display item.
|
|
|
|
*
|
|
|
|
* @param aLayerInvalidRect The area to invalidate in layer space. If null, the
|
|
|
|
* entire layer will be invalidated.
|
|
|
|
* @param aFrameInvalidRect The area to invalidate in frame space. If null, the
|
|
|
|
* entire frame will be invalidated.
|
|
|
|
*/
|
|
|
|
void InvalidateSelf(const nsIntRect* aLayerInvalidRect,
|
|
|
|
const nsRect* aFrameInvalidRect);
|
|
|
|
|
2015-04-19 21:39:45 +03:00
|
|
|
nsRefPtr<nsImageMap> mImageMap;
|
2003-03-19 06:47:09 +03:00
|
|
|
|
2012-10-12 20:11:22 +04:00
|
|
|
nsCOMPtr<imgINotificationObserver> mListener;
|
2001-10-06 09:08:16 +04:00
|
|
|
|
2013-08-29 02:39:06 +04:00
|
|
|
nsCOMPtr<imgIContainer> mImage;
|
2001-03-22 04:38:35 +03:00
|
|
|
nsSize mComputedSize;
|
2013-10-01 01:26:04 +04:00
|
|
|
mozilla::IntrinsicSize mIntrinsicSize;
|
2010-09-09 00:40:38 +04:00
|
|
|
nsSize mIntrinsicRatio;
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mDisplayingIcon;
|
2012-10-12 20:11:23 +04:00
|
|
|
bool mFirstFrameComplete;
|
2013-09-15 04:05:05 +04:00
|
|
|
bool mReflowCallbackPosted;
|
2015-07-08 00:00:08 +03:00
|
|
|
bool mForceSyncDecoding;
|
2009-08-12 18:23:38 +04:00
|
|
|
|
2004-01-21 12:35:59 +03:00
|
|
|
static nsIIOService* sIOService;
|
2011-01-18 00:47:18 +03:00
|
|
|
|
2001-11-07 08:02:42 +03:00
|
|
|
/* loading / broken image icon support */
|
|
|
|
|
2003-03-19 06:47:09 +03:00
|
|
|
// XXXbz this should be handled by the prescontext, I think; that
|
|
|
|
// way we would have a single iconload per mozilla session instead
|
|
|
|
// of one per document...
|
|
|
|
|
|
|
|
// LoadIcons: initiate the loading of the static icons used to show
|
|
|
|
// loading / broken images
|
2004-08-01 03:15:21 +04:00
|
|
|
nsresult LoadIcons(nsPresContext *aPresContext);
|
|
|
|
nsresult LoadIcon(const nsAString& aSpec, nsPresContext *aPresContext,
|
2012-10-12 16:43:01 +04:00
|
|
|
imgRequestProxy **aRequest);
|
2003-03-19 06:47:09 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class IconLoad final : public nsIObserver,
|
2015-03-27 21:52:19 +03:00
|
|
|
public imgINotificationObserver
|
|
|
|
{
|
2009-08-12 18:23:38 +04:00
|
|
|
// private class that wraps the data and logic needed for
|
2001-11-07 08:02:42 +03:00
|
|
|
// broken image and loading image icons
|
|
|
|
public:
|
2009-08-12 18:23:38 +04:00
|
|
|
IconLoad();
|
2003-03-19 06:47:09 +03:00
|
|
|
|
2011-06-03 10:07:10 +04:00
|
|
|
void Shutdown();
|
2003-03-19 06:47:09 +03:00
|
|
|
|
2004-02-03 23:30:02 +03:00
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIOBSERVER
|
2012-10-12 20:11:22 +04:00
|
|
|
NS_DECL_IMGINOTIFICATIONOBSERVER
|
2009-08-12 18:23:38 +04:00
|
|
|
|
|
|
|
void AddIconObserver(nsImageFrame *frame) {
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(!mIconObservers.Contains(frame),
|
|
|
|
"Observer shouldn't aleady be in array");
|
2009-08-12 18:23:38 +04:00
|
|
|
mIconObservers.AppendElement(frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RemoveIconObserver(nsImageFrame *frame) {
|
2013-10-02 09:02:23 +04:00
|
|
|
mozilla::DebugOnly<bool> didRemove = mIconObservers.RemoveElement(frame);
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(didRemove, "Observer not in array");
|
2009-08-12 18:23:38 +04:00
|
|
|
}
|
2001-11-07 08:02:42 +03:00
|
|
|
|
2004-02-03 23:30:02 +03:00
|
|
|
private:
|
2014-06-24 02:40:01 +04:00
|
|
|
~IconLoad() {}
|
|
|
|
|
2004-04-30 03:34:19 +04:00
|
|
|
void GetPrefs();
|
2009-08-12 18:23:38 +04:00
|
|
|
nsTObserverArray<nsImageFrame*> mIconObservers;
|
|
|
|
|
2003-03-19 06:47:09 +03:00
|
|
|
|
|
|
|
public:
|
2012-10-12 16:43:01 +04:00
|
|
|
nsRefPtr<imgRequestProxy> mLoadingImage;
|
|
|
|
nsRefPtr<imgRequestProxy> mBrokenImage;
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mPrefForceInlineAltText;
|
|
|
|
bool mPrefShowPlaceholders;
|
2015-07-10 03:13:31 +03:00
|
|
|
bool mPrefShowLoadingPlaceholder;
|
2001-11-07 08:02:42 +03:00
|
|
|
};
|
2006-01-26 05:29:17 +03:00
|
|
|
|
|
|
|
public:
|
2004-02-03 23:30:02 +03:00
|
|
|
static IconLoad* gIconLoad; // singleton pattern: one LoadIcons instance is used
|
2006-01-26 05:29:17 +03:00
|
|
|
|
|
|
|
friend class nsDisplayImage;
|
1999-04-14 01:50:25 +04:00
|
|
|
};
|
|
|
|
|
2011-01-18 00:47:18 +03:00
|
|
|
/**
|
|
|
|
* Note that nsDisplayImage does not receive events. However, an image element
|
|
|
|
* is replaced content so its background will be z-adjacent to the
|
|
|
|
* image itself, and hence receive events just as if the image itself
|
|
|
|
* received events.
|
|
|
|
*/
|
2012-09-25 00:29:14 +04:00
|
|
|
class nsDisplayImage : public nsDisplayImageContainer {
|
2011-01-18 00:47:18 +03:00
|
|
|
public:
|
2011-04-26 10:04:18 +04:00
|
|
|
typedef mozilla::layers::LayerManager LayerManager;
|
|
|
|
|
2011-01-18 00:47:18 +03:00
|
|
|
nsDisplayImage(nsDisplayListBuilder* aBuilder, nsImageFrame* aFrame,
|
|
|
|
imgIContainer* aImage)
|
2012-09-25 00:29:14 +04:00
|
|
|
: nsDisplayImageContainer(aBuilder, aFrame), mImage(aImage) {
|
2011-01-18 00:47:18 +03:00
|
|
|
MOZ_COUNT_CTOR(nsDisplayImage);
|
|
|
|
}
|
|
|
|
virtual ~nsDisplayImage() {
|
|
|
|
MOZ_COUNT_DTOR(nsDisplayImage);
|
|
|
|
}
|
2015-02-05 00:50:56 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsDisplayItemGeometry* AllocateGeometry(nsDisplayListBuilder* aBuilder) override;
|
2013-06-26 20:43:27 +04:00
|
|
|
virtual void ComputeInvalidationRegion(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsDisplayItemGeometry* aGeometry,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsRegion* aInvalidRegion) override;
|
2011-01-18 00:47:18 +03:00
|
|
|
virtual void Paint(nsDisplayListBuilder* aBuilder,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsRenderingContext* aCtx) override;
|
2012-05-03 18:05:55 +04:00
|
|
|
|
2015-05-13 10:23:46 +03:00
|
|
|
virtual bool CanOptimizeToImageLayer(LayerManager* aManager,
|
|
|
|
nsDisplayListBuilder* aBuilder) override;
|
|
|
|
|
2011-01-18 00:47:18 +03:00
|
|
|
/**
|
|
|
|
* Returns an ImageContainer for this image if the image type
|
|
|
|
* supports it (TYPE_RASTER only).
|
|
|
|
*/
|
2012-11-28 06:34:45 +04:00
|
|
|
virtual already_AddRefed<ImageContainer> GetContainer(LayerManager* aManager,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsDisplayListBuilder* aBuilder) override;
|
2012-05-03 18:05:55 +04:00
|
|
|
|
2015-04-08 04:55:28 +03:00
|
|
|
/**
|
|
|
|
* @return the dest rect we'll use when drawing this image, in app units.
|
|
|
|
*/
|
|
|
|
nsRect GetDestRect(bool* aSnap = nullptr);
|
2012-05-03 18:05:55 +04:00
|
|
|
|
|
|
|
virtual LayerState GetLayerState(nsDisplayListBuilder* aBuilder,
|
|
|
|
LayerManager* aManager,
|
2015-03-21 19:28:04 +03:00
|
|
|
const ContainerLayerParameters& aParameters) override;
|
2014-09-04 09:02:27 +04:00
|
|
|
nsRect GetBounds(bool* aSnap)
|
|
|
|
{
|
|
|
|
*aSnap = true;
|
|
|
|
|
|
|
|
nsImageFrame* imageFrame = static_cast<nsImageFrame*>(mFrame);
|
|
|
|
return imageFrame->GetInnerArea() + ToReferenceFrame();
|
|
|
|
}
|
|
|
|
|
2014-11-20 05:34:50 +03:00
|
|
|
virtual nsRect GetBounds(nsDisplayListBuilder* aBuilder,
|
2015-03-21 19:28:04 +03:00
|
|
|
bool* aSnap) override
|
2014-09-04 09:02:27 +04:00
|
|
|
{
|
|
|
|
return GetBounds(aSnap);
|
|
|
|
}
|
|
|
|
|
2014-11-20 05:34:50 +03:00
|
|
|
virtual nsRegion GetOpaqueRegion(nsDisplayListBuilder* aBuilder,
|
2015-03-21 19:28:04 +03:00
|
|
|
bool* aSnap) override;
|
2012-05-03 18:05:55 +04:00
|
|
|
|
|
|
|
virtual already_AddRefed<Layer> BuildLayer(nsDisplayListBuilder* aBuilder,
|
|
|
|
LayerManager* aManager,
|
2015-03-21 19:28:04 +03:00
|
|
|
const ContainerLayerParameters& aContainerParameters) override;
|
2012-05-03 18:05:55 +04:00
|
|
|
|
2011-01-18 00:47:18 +03:00
|
|
|
/**
|
|
|
|
* Configure an ImageLayer for this display item.
|
|
|
|
* Set the required filter and scaling transform.
|
|
|
|
*/
|
2015-04-08 04:55:28 +03:00
|
|
|
virtual void ConfigureLayer(ImageLayer* aLayer,
|
|
|
|
const ContainerLayerParameters& aParameters) override;
|
2011-01-18 00:47:18 +03:00
|
|
|
|
|
|
|
NS_DISPLAY_DECL_NAME("Image", TYPE_IMAGE)
|
|
|
|
private:
|
|
|
|
nsCOMPtr<imgIContainer> mImage;
|
|
|
|
};
|
|
|
|
|
1999-04-14 01:50:25 +04:00
|
|
|
#endif /* nsImageFrame_h___ */
|