2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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 18:29:03 +00:00
|
|
|
|
2014-09-12 20:15:24 +00:00
|
|
|
/* rendering object for replaced elements with image data */
|
2006-03-29 18:29:03 +00:00
|
|
|
|
1999-04-13 21:50:25 +00:00
|
|
|
#ifndef nsImageFrame_h___
|
|
|
|
#define nsImageFrame_h___
|
|
|
|
|
2001-11-01 15:31:13 +00:00
|
|
|
#include "nsSplittableFrame.h"
|
2004-01-21 09:35:59 +00:00
|
|
|
#include "nsIIOService.h"
|
2004-02-03 20:30:02 +00:00
|
|
|
#include "nsIObserver.h"
|
1999-04-13 21:50:25 +00:00
|
|
|
|
2012-10-12 16:11:22 +00:00
|
|
|
#include "imgINotificationObserver.h"
|
2001-03-22 01:38:35 +00:00
|
|
|
|
2011-01-17 21:47:18 +00:00
|
|
|
#include "nsDisplayList.h"
|
|
|
|
#include "imgIContainer.h"
|
2012-06-19 03:26:34 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-10-02 05:02:23 +00:00
|
|
|
#include "mozilla/DebugOnly.h"
|
2013-09-15 00:05:05 +00:00
|
|
|
#include "nsIReflowCallback.h"
|
2014-08-06 05:19:25 +00:00
|
|
|
#include "nsTObserverArray.h"
|
2011-01-17 21:47:18 +00:00
|
|
|
|
2014-10-24 15:28:14 +00:00
|
|
|
class nsFontMetrics;
|
1999-04-13 21:50:25 +00:00
|
|
|
class nsImageMap;
|
1999-06-23 03:29:44 +00:00
|
|
|
class nsIURI;
|
2001-03-22 01:38:35 +00:00
|
|
|
class nsILoadGroup;
|
1999-04-13 21:50:25 +00:00
|
|
|
struct nsHTMLReflowState;
|
2014-06-19 00:57:51 +00:00
|
|
|
class nsHTMLReflowMetrics;
|
2006-01-26 02:29:17 +00:00
|
|
|
class nsDisplayImage;
|
2010-04-10 20:10:12 +00:00
|
|
|
class nsPresContext;
|
2001-03-22 01:38:35 +00:00
|
|
|
class nsImageFrame;
|
2010-09-08 20:40:38 +00:00
|
|
|
class nsTransform2D;
|
2012-03-19 22:22:02 +00:00
|
|
|
class nsImageLoadingContent;
|
2001-03-22 01:38:35 +00:00
|
|
|
|
2011-04-26 06:04:18 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace layers {
|
|
|
|
class ImageContainer;
|
|
|
|
class ImageLayer;
|
|
|
|
class LayerManager;
|
|
|
|
}
|
|
|
|
}
|
2011-01-17 21:47:18 +00:00
|
|
|
|
2012-10-12 16:11:22 +00:00
|
|
|
class nsImageListener : public imgINotificationObserver
|
2001-03-22 01:38:35 +00:00
|
|
|
{
|
2014-06-23 22:40:01 +00:00
|
|
|
protected:
|
|
|
|
virtual ~nsImageListener();
|
|
|
|
|
2001-03-22 01:38:35 +00:00
|
|
|
public:
|
2014-09-01 03:36:37 +00:00
|
|
|
explicit nsImageListener(nsImageFrame *aFrame);
|
2001-03-22 01:38:35 +00:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
2012-10-12 16:11:22 +00:00
|
|
|
NS_DECL_IMGINOTIFICATIONOBSERVER
|
2001-03-22 01:38:35 +00:00
|
|
|
|
|
|
|
void SetFrame(nsImageFrame *frame) { mFrame = frame; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsImageFrame *mFrame;
|
|
|
|
};
|
|
|
|
|
2014-02-19 08:21:56 +00:00
|
|
|
typedef nsSplittableFrame ImageFrameSuper;
|
1999-04-13 21:50:25 +00:00
|
|
|
|
2013-09-15 00:05:05 +00:00
|
|
|
class nsImageFrame : public ImageFrameSuper,
|
|
|
|
public nsIReflowCallback {
|
1999-04-13 21:50:25 +00:00
|
|
|
public:
|
2015-02-04 21:50:56 +00:00
|
|
|
typedef mozilla::image::DrawResult DrawResult;
|
2011-04-26 06:04:18 +00:00
|
|
|
typedef mozilla::layers::ImageContainer ImageContainer;
|
|
|
|
typedef mozilla::layers::ImageLayer ImageLayer;
|
|
|
|
typedef mozilla::layers::LayerManager LayerManager;
|
|
|
|
|
2009-09-12 16:49:24 +00:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2014-09-01 03:36:37 +00:00
|
|
|
explicit nsImageFrame(nsStyleContext* aContext);
|
2000-04-19 14:00:11 +00:00
|
|
|
|
2011-04-26 06:52:19 +00:00
|
|
|
NS_DECL_QUERYFRAME_TARGET(nsImageFrame)
|
2009-01-12 19:20:59 +00:00
|
|
|
NS_DECL_QUERYFRAME
|
2001-02-19 21:50:04 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot) override;
|
|
|
|
virtual void DidSetStyleContext(nsStyleContext* aOldStyleContext) override;
|
2014-06-28 03:50:26 +00:00
|
|
|
|
2014-05-24 22:20:40 +00:00
|
|
|
virtual void Init(nsIContent* aContent,
|
|
|
|
nsContainerFrame* aParent,
|
2015-03-21 16:28:04 +00:00
|
|
|
nsIFrame* aPrevInFlow) override;
|
2013-02-14 11:12:27 +00:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
2015-03-21 16:28:04 +00: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 00:47:52 +00:00
|
|
|
virtual void Reflow(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
2015-03-21 16:28:04 +00:00
|
|
|
nsReflowStatus& aStatus) override;
|
2001-08-29 22:59:09 +00:00
|
|
|
|
2014-02-18 07:47:48 +00:00
|
|
|
virtual nsresult GetContentForEvent(mozilla::WidgetEvent* aEvent,
|
2015-03-21 16:28:04 +00:00
|
|
|
nsIContent** aContent) override;
|
2014-02-18 07:47:48 +00:00
|
|
|
virtual nsresult HandleEvent(nsPresContext* aPresContext,
|
2014-02-18 08:36:33 +00:00
|
|
|
mozilla::WidgetGUIEvent* aEvent,
|
2015-03-21 16:28:04 +00:00
|
|
|
nsEventStatus* aEventStatus) override;
|
2014-02-18 07:47:48 +00:00
|
|
|
virtual nsresult GetCursor(const nsPoint& aPoint,
|
2015-03-21 16:28:04 +00:00
|
|
|
nsIFrame::Cursor& aCursor) override;
|
2014-02-18 07:47:48 +00:00
|
|
|
virtual nsresult AttributeChanged(int32_t aNameSpaceID,
|
2014-02-18 08:36:33 +00:00
|
|
|
nsIAtom* aAttribute,
|
2015-03-21 16:28:04 +00:00
|
|
|
int32_t aModType) override;
|
2001-05-17 23:52:32 +00:00
|
|
|
|
2001-08-17 03:13:07 +00:00
|
|
|
#ifdef ACCESSIBILITY
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual mozilla::a11y::AccType AccessibleType() override;
|
2001-08-17 03:13:07 +00:00
|
|
|
#endif
|
2001-05-17 23:52:32 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nsIAtom* GetType() const override;
|
2007-02-24 18:33:33 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual bool IsFrameOfType(uint32_t aFlags) const override
|
2007-02-24 18:33:33 +00:00
|
|
|
{
|
|
|
|
return ImageFrameSuper::IsFrameOfType(aFlags & ~(nsIFrame::eReplaced));
|
|
|
|
}
|
|
|
|
|
2014-01-05 23:31:14 +00:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const override;
|
2014-02-19 08:21:57 +00:00
|
|
|
void List(FILE* out = stderr, const char* aPrefix = "",
|
2015-03-21 16:28:04 +00:00
|
|
|
uint32_t aFlags = 0) const override;
|
2001-10-31 04:43:48 +00:00
|
|
|
#endif
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual LogicalSides GetLogicalSkipSides(const nsHTMLReflowState* aReflowState = nullptr) const override;
|
2007-03-20 00:58:20 +00:00
|
|
|
|
2011-04-26 06:52:19 +00:00
|
|
|
nsresult GetIntrinsicImageSize(nsSize& aSize);
|
2000-09-08 22:52:05 +00:00
|
|
|
|
2004-02-03 20:30:02 +00:00
|
|
|
static void ReleaseGlobals() {
|
|
|
|
if (gIconLoad) {
|
|
|
|
gIconLoad->Shutdown();
|
|
|
|
NS_RELEASE(gIconLoad);
|
|
|
|
}
|
|
|
|
NS_IF_RELEASE(sIOService);
|
|
|
|
}
|
2004-01-21 09:35:59 +00:00
|
|
|
|
2012-10-12 16:11:22 +00:00
|
|
|
nsresult Notify(imgIRequest *aRequest, int32_t aType, const nsIntRect* aData);
|
|
|
|
|
2005-09-18 18:05:40 +00: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 06:19:26 +00:00
|
|
|
static bool ShouldCreateImageFrameFor(mozilla::dom::Element* aElement,
|
2005-09-18 18:05:40 +00:00
|
|
|
nsStyleContext* aStyleContext);
|
|
|
|
|
2015-03-18 02:40:16 +00:00
|
|
|
DrawResult DisplayAltFeedback(nsRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
imgIRequest* aRequest,
|
|
|
|
nsPoint aPt,
|
|
|
|
uint32_t aFlags);
|
2006-01-26 02:29:17 +00:00
|
|
|
|
|
|
|
nsRect GetInnerArea() const;
|
|
|
|
|
2012-03-15 20:16:02 +00:00
|
|
|
/**
|
|
|
|
* Return a map element associated with this image.
|
|
|
|
*/
|
2014-08-06 05:19:25 +00:00
|
|
|
mozilla::dom::Element* GetMapElement() const;
|
2012-03-15 20:16:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return true if the image has associated image map.
|
|
|
|
*/
|
|
|
|
bool HasImageMap() const { return mImageMap || GetMapElement(); }
|
|
|
|
|
2011-09-26 20:55:04 +00:00
|
|
|
nsImageMap* GetImageMap();
|
2012-03-15 20:16:02 +00:00
|
|
|
nsImageMap* GetExistingImageMap() const { return mImageMap; }
|
2006-01-26 02:29:17 +00:00
|
|
|
|
2014-07-24 17:03:25 +00:00
|
|
|
virtual void AddInlineMinISize(nsRenderingContext *aRenderingContext,
|
2015-03-21 16:28:04 +00:00
|
|
|
InlineMinISizeData *aData) override;
|
2007-12-03 09:24:49 +00:00
|
|
|
|
2011-10-29 10:44:50 +00:00
|
|
|
void DisconnectMap();
|
2013-09-15 00:05:05 +00:00
|
|
|
|
|
|
|
// nsIReflowCallback
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual bool ReflowFinished() override;
|
|
|
|
virtual void ReflowCallbackCanceled() override;
|
2013-09-15 00:05:05 +00:00
|
|
|
|
1999-04-13 21:50:25 +00:00
|
|
|
protected:
|
|
|
|
virtual ~nsImageFrame();
|
|
|
|
|
2014-09-12 20:15:23 +00: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 05:38:33 +00:00
|
|
|
|
2014-08-24 14:34:44 +00: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 16:28:04 +00:00
|
|
|
ComputeSizeFlags aFlags) override;
|
1999-04-13 21:50:25 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsServerImageMap();
|
1999-04-13 21:50:25 +00:00
|
|
|
|
2004-12-26 19:48:54 +00:00
|
|
|
void TranslateEventCoords(const nsPoint& aPoint,
|
2007-02-18 16:49:54 +00:00
|
|
|
nsIntPoint& aResult);
|
1999-07-08 19:38:08 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool GetAnchorHREFTargetAndNode(nsIURI** aHref, nsString& aTarget,
|
2007-07-11 13:05:05 +00:00
|
|
|
nsIContent** aNode);
|
2006-07-31 07:08:45 +00: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 15:02:17 +00:00
|
|
|
nscoord MeasureString(const char16_t* aString,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t aLength,
|
2006-07-31 07:08:45 +00:00
|
|
|
nscoord aMaxWidth,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t& aMaxFit,
|
2014-10-24 15:28:14 +00:00
|
|
|
nsRenderingContext& aContext,
|
|
|
|
nsFontMetrics& aFontMetrics);
|
1999-04-13 21:50:25 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
void DisplayAltText(nsPresContext* aPresContext,
|
2011-04-08 01:04:40 +00:00
|
|
|
nsRenderingContext& aRenderingContext,
|
1999-04-13 21:50:25 +00:00
|
|
|
const nsString& aAltText,
|
|
|
|
const nsRect& aRect);
|
|
|
|
|
2015-02-04 21:50:56 +00:00
|
|
|
DrawResult PaintImage(nsRenderingContext& aRenderingContext, nsPoint aPt,
|
|
|
|
const nsRect& aDirtyRect, imgIContainer* aImage,
|
|
|
|
uint32_t aFlags);
|
2011-01-17 21:47:18 +00:00
|
|
|
|
2001-10-07 18:02:13 +00:00
|
|
|
protected:
|
2003-03-19 03:47:09 +00:00
|
|
|
friend class nsImageListener;
|
2012-03-19 22:22:02 +00:00
|
|
|
friend class nsImageLoadingContent;
|
2014-11-17 22:29:56 +00:00
|
|
|
|
|
|
|
nsresult OnSizeAvailable(imgIRequest* aRequest, imgIContainer* aImage);
|
|
|
|
nsresult OnFrameUpdate(imgIRequest* aRequest, const nsIntRect* aRect);
|
|
|
|
nsresult OnLoadComplete(imgIRequest* aRequest, nsresult aStatus);
|
2015-02-11 09:11:43 +00:00
|
|
|
|
2012-03-19 22:22:02 +00:00
|
|
|
/**
|
|
|
|
* Notification that aRequest will now be the current request.
|
|
|
|
*/
|
|
|
|
void NotifyNewCurrentRequest(imgIRequest *aRequest, nsresult aStatus);
|
2001-05-04 06:29:59 +00:00
|
|
|
|
2003-03-19 03:47:09 +00:00
|
|
|
private:
|
|
|
|
// random helpers
|
|
|
|
inline void SpecToURI(const nsAString& aSpec, nsIIOService *aIOService,
|
|
|
|
nsIURI **aURI);
|
2001-05-04 06:29:59 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
inline void GetLoadGroup(nsPresContext *aPresContext,
|
2003-03-19 03:47:09 +00:00
|
|
|
nsILoadGroup **aLoadGroup);
|
2007-03-20 00:58:20 +00:00
|
|
|
nscoord GetContinuationOffset() const;
|
2003-06-17 16:40:34 +00:00
|
|
|
void GetDocumentCharacterSet(nsACString& aCharset) const;
|
2010-10-07 04:25:47 +00:00
|
|
|
bool ShouldDisplaySelection();
|
2001-10-06 05:08:16 +00:00
|
|
|
|
2003-03-19 03:47:09 +00:00
|
|
|
/**
|
2007-03-20 00:58:20 +00:00
|
|
|
* Recalculate mIntrinsicSize from the image.
|
2003-03-19 03:47:09 +00:00
|
|
|
*
|
2007-03-20 00:58:20 +00:00
|
|
|
* @return whether aImage's size did _not_
|
2010-09-08 20:40:38 +00:00
|
|
|
* match our previous intrinsic size.
|
2003-03-19 03:47:09 +00:00
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool UpdateIntrinsicSize(imgIContainer* aImage);
|
2007-03-20 00:58:20 +00:00
|
|
|
|
2010-09-08 20:40:38 +00:00
|
|
|
/**
|
|
|
|
* Recalculate mIntrinsicRatio from the image.
|
|
|
|
*
|
|
|
|
* @return whether aImage's ratio did _not_
|
|
|
|
* match our previous intrinsic ratio.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool UpdateIntrinsicRatio(imgIContainer* aImage);
|
2010-09-08 20:40:38 +00:00
|
|
|
|
2007-03-20 00:58:20 +00:00
|
|
|
/**
|
2010-09-08 20:40:38 +00: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 00:58:20 +00:00
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool GetSourceToDestTransform(nsTransform2D& aTransform);
|
2001-03-22 01:38:35 +00:00
|
|
|
|
2003-03-19 03:47:09 +00:00
|
|
|
/**
|
2015-02-11 09:11:43 +00: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 03:47:09 +00:00
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsPendingLoad(imgIRequest* aRequest) const;
|
2001-03-22 01:38:35 +00:00
|
|
|
|
2001-10-06 05:08:16 +00:00
|
|
|
/**
|
2004-08-28 23:59:15 +00:00
|
|
|
* Function to convert a dirty rect in the source image to a dirty
|
|
|
|
* rect for the image frame.
|
2001-10-06 05:08:16 +00:00
|
|
|
*/
|
2009-01-15 03:27:09 +00:00
|
|
|
nsRect SourceRectToDest(const nsIntRect & aRect);
|
2003-03-19 03:47:09 +00:00
|
|
|
|
2015-02-11 09:11:43 +00: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 18:39:45 +00:00
|
|
|
nsRefPtr<nsImageMap> mImageMap;
|
2003-03-19 03:47:09 +00:00
|
|
|
|
2012-10-12 16:11:22 +00:00
|
|
|
nsCOMPtr<imgINotificationObserver> mListener;
|
2001-10-06 05:08:16 +00:00
|
|
|
|
2013-08-28 22:39:06 +00:00
|
|
|
nsCOMPtr<imgIContainer> mImage;
|
2001-03-22 01:38:35 +00:00
|
|
|
nsSize mComputedSize;
|
2013-09-30 21:26:04 +00:00
|
|
|
mozilla::IntrinsicSize mIntrinsicSize;
|
2010-09-08 20:40:38 +00:00
|
|
|
nsSize mIntrinsicRatio;
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mDisplayingIcon;
|
2012-10-12 16:11:23 +00:00
|
|
|
bool mFirstFrameComplete;
|
2013-09-15 00:05:05 +00:00
|
|
|
bool mReflowCallbackPosted;
|
2009-08-12 14:23:38 +00:00
|
|
|
|
2004-01-21 09:35:59 +00:00
|
|
|
static nsIIOService* sIOService;
|
2011-01-17 21:47:18 +00:00
|
|
|
|
2001-11-07 05:02:42 +00:00
|
|
|
/* loading / broken image icon support */
|
|
|
|
|
2003-03-19 03:47:09 +00: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-07-31 23:15:21 +00:00
|
|
|
nsresult LoadIcons(nsPresContext *aPresContext);
|
|
|
|
nsresult LoadIcon(const nsAString& aSpec, nsPresContext *aPresContext,
|
2012-10-12 12:43:01 +00:00
|
|
|
imgRequestProxy **aRequest);
|
2003-03-19 03:47:09 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class IconLoad final : public nsIObserver,
|
2015-03-27 18:52:19 +00:00
|
|
|
public imgINotificationObserver
|
|
|
|
{
|
2009-08-12 14:23:38 +00:00
|
|
|
// private class that wraps the data and logic needed for
|
2001-11-07 05:02:42 +00:00
|
|
|
// broken image and loading image icons
|
|
|
|
public:
|
2009-08-12 14:23:38 +00:00
|
|
|
IconLoad();
|
2003-03-19 03:47:09 +00:00
|
|
|
|
2011-06-03 06:07:10 +00:00
|
|
|
void Shutdown();
|
2003-03-19 03:47:09 +00:00
|
|
|
|
2004-02-03 20:30:02 +00:00
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIOBSERVER
|
2012-10-12 16:11:22 +00:00
|
|
|
NS_DECL_IMGINOTIFICATIONOBSERVER
|
2009-08-12 14:23:38 +00:00
|
|
|
|
|
|
|
void AddIconObserver(nsImageFrame *frame) {
|
2015-02-09 22:34:50 +00:00
|
|
|
MOZ_ASSERT(!mIconObservers.Contains(frame),
|
|
|
|
"Observer shouldn't aleady be in array");
|
2009-08-12 14:23:38 +00:00
|
|
|
mIconObservers.AppendElement(frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RemoveIconObserver(nsImageFrame *frame) {
|
2013-10-02 05:02:23 +00:00
|
|
|
mozilla::DebugOnly<bool> didRemove = mIconObservers.RemoveElement(frame);
|
2015-02-09 22:34:50 +00:00
|
|
|
MOZ_ASSERT(didRemove, "Observer not in array");
|
2009-08-12 14:23:38 +00:00
|
|
|
}
|
2001-11-07 05:02:42 +00:00
|
|
|
|
2004-02-03 20:30:02 +00:00
|
|
|
private:
|
2014-06-23 22:40:01 +00:00
|
|
|
~IconLoad() {}
|
|
|
|
|
2004-04-29 23:34:19 +00:00
|
|
|
void GetPrefs();
|
2009-08-12 14:23:38 +00:00
|
|
|
nsTObserverArray<nsImageFrame*> mIconObservers;
|
|
|
|
|
2003-03-19 03:47:09 +00:00
|
|
|
|
|
|
|
public:
|
2012-10-12 12:43:01 +00:00
|
|
|
nsRefPtr<imgRequestProxy> mLoadingImage;
|
|
|
|
nsRefPtr<imgRequestProxy> mBrokenImage;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mPrefForceInlineAltText;
|
|
|
|
bool mPrefShowPlaceholders;
|
2001-11-07 05:02:42 +00:00
|
|
|
};
|
2006-01-26 02:29:17 +00:00
|
|
|
|
|
|
|
public:
|
2004-02-03 20:30:02 +00:00
|
|
|
static IconLoad* gIconLoad; // singleton pattern: one LoadIcons instance is used
|
2006-01-26 02:29:17 +00:00
|
|
|
|
|
|
|
friend class nsDisplayImage;
|
1999-04-13 21:50:25 +00:00
|
|
|
};
|
|
|
|
|
2011-01-17 21:47:18 +00: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-24 20:29:14 +00:00
|
|
|
class nsDisplayImage : public nsDisplayImageContainer {
|
2011-01-17 21:47:18 +00:00
|
|
|
public:
|
2011-04-26 06:04:18 +00:00
|
|
|
typedef mozilla::layers::LayerManager LayerManager;
|
|
|
|
|
2011-01-17 21:47:18 +00:00
|
|
|
nsDisplayImage(nsDisplayListBuilder* aBuilder, nsImageFrame* aFrame,
|
|
|
|
imgIContainer* aImage)
|
2012-09-24 20:29:14 +00:00
|
|
|
: nsDisplayImageContainer(aBuilder, aFrame), mImage(aImage) {
|
2011-01-17 21:47:18 +00:00
|
|
|
MOZ_COUNT_CTOR(nsDisplayImage);
|
|
|
|
}
|
|
|
|
virtual ~nsDisplayImage() {
|
|
|
|
MOZ_COUNT_DTOR(nsDisplayImage);
|
|
|
|
}
|
2015-02-04 21:50:56 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nsDisplayItemGeometry* AllocateGeometry(nsDisplayListBuilder* aBuilder) override;
|
2013-06-26 16:43:27 +00:00
|
|
|
virtual void ComputeInvalidationRegion(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsDisplayItemGeometry* aGeometry,
|
2015-03-21 16:28:04 +00:00
|
|
|
nsRegion* aInvalidRegion) override;
|
2011-01-17 21:47:18 +00:00
|
|
|
virtual void Paint(nsDisplayListBuilder* aBuilder,
|
2015-03-21 16:28:04 +00:00
|
|
|
nsRenderingContext* aCtx) override;
|
2012-05-03 14:05:55 +00:00
|
|
|
|
2011-01-17 21:47:18 +00:00
|
|
|
/**
|
|
|
|
* Returns an ImageContainer for this image if the image type
|
|
|
|
* supports it (TYPE_RASTER only).
|
|
|
|
*/
|
2012-11-28 02:34:45 +00:00
|
|
|
virtual already_AddRefed<ImageContainer> GetContainer(LayerManager* aManager,
|
2015-03-21 16:28:04 +00:00
|
|
|
nsDisplayListBuilder* aBuilder) override;
|
2012-05-03 14:05:55 +00:00
|
|
|
|
2015-04-08 01:55:28 +00:00
|
|
|
/**
|
|
|
|
* @return the dest rect we'll use when drawing this image, in app units.
|
|
|
|
*/
|
|
|
|
nsRect GetDestRect(bool* aSnap = nullptr);
|
2012-05-03 14:05:55 +00:00
|
|
|
|
|
|
|
virtual LayerState GetLayerState(nsDisplayListBuilder* aBuilder,
|
|
|
|
LayerManager* aManager,
|
2015-03-21 16:28:04 +00:00
|
|
|
const ContainerLayerParameters& aParameters) override;
|
2014-09-04 05:02:27 +00:00
|
|
|
nsRect GetBounds(bool* aSnap)
|
|
|
|
{
|
|
|
|
*aSnap = true;
|
|
|
|
|
|
|
|
nsImageFrame* imageFrame = static_cast<nsImageFrame*>(mFrame);
|
|
|
|
return imageFrame->GetInnerArea() + ToReferenceFrame();
|
|
|
|
}
|
|
|
|
|
2014-11-20 02:34:50 +00:00
|
|
|
virtual nsRect GetBounds(nsDisplayListBuilder* aBuilder,
|
2015-03-21 16:28:04 +00:00
|
|
|
bool* aSnap) override
|
2014-09-04 05:02:27 +00:00
|
|
|
{
|
|
|
|
return GetBounds(aSnap);
|
|
|
|
}
|
|
|
|
|
2014-11-20 02:34:50 +00:00
|
|
|
virtual nsRegion GetOpaqueRegion(nsDisplayListBuilder* aBuilder,
|
2015-03-21 16:28:04 +00:00
|
|
|
bool* aSnap) override;
|
2012-05-03 14:05:55 +00:00
|
|
|
|
|
|
|
virtual already_AddRefed<Layer> BuildLayer(nsDisplayListBuilder* aBuilder,
|
|
|
|
LayerManager* aManager,
|
2015-03-21 16:28:04 +00:00
|
|
|
const ContainerLayerParameters& aContainerParameters) override;
|
2012-05-03 14:05:55 +00:00
|
|
|
|
2011-01-17 21:47:18 +00:00
|
|
|
/**
|
|
|
|
* Configure an ImageLayer for this display item.
|
|
|
|
* Set the required filter and scaling transform.
|
|
|
|
*/
|
2015-04-08 01:55:28 +00:00
|
|
|
virtual void ConfigureLayer(ImageLayer* aLayer,
|
|
|
|
const ContainerLayerParameters& aParameters) override;
|
2011-01-17 21:47:18 +00:00
|
|
|
|
|
|
|
NS_DISPLAY_DECL_NAME("Image", TYPE_IMAGE)
|
|
|
|
private:
|
|
|
|
nsCOMPtr<imgIContainer> mImage;
|
|
|
|
};
|
|
|
|
|
1999-04-13 21:50:25 +00:00
|
|
|
#endif /* nsImageFrame_h___ */
|