2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-18 14:30:37 +00:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1999-04-13 21:50:25 +00:00
|
|
|
*
|
2004-04-18 14:30:37 +00:00
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
1999-04-13 21:50:25 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
1999-04-13 21:50:25 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2004-04-18 14:30:37 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-28 20:14:13 +00:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 03:40:37 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Contributor(s):
|
2007-03-20 00:58:20 +00:00
|
|
|
* L. David Baron <dbaron@dbaron.org>, Mozilla Corporation
|
2001-09-28 20:14:13 +00:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-18 14:30:37 +00:00
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
2001-09-28 20:14:13 +00:00
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
2004-04-18 14:30:37 +00:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-28 20:14:13 +00:00
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
2004-04-18 14:30:37 +00:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-28 20:14:13 +00:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
2006-03-29 18:29:03 +00:00
|
|
|
|
|
|
|
/* rendering object for replaced elements with bitmap image data */
|
|
|
|
|
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
|
|
|
|
2006-06-16 21:07:47 +00:00
|
|
|
#include "nsStubImageDecoderObserver.h"
|
2009-08-12 14:23:38 +00:00
|
|
|
#include "imgIDecoderObserver.h"
|
2001-03-22 01:38:35 +00:00
|
|
|
|
2011-01-17 21:47:18 +00:00
|
|
|
#include "nsDisplayList.h"
|
|
|
|
#include "imgIContainer.h"
|
|
|
|
|
1999-04-13 21:50:25 +00:00
|
|
|
class nsIFrame;
|
|
|
|
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;
|
|
|
|
struct nsHTMLReflowMetrics;
|
|
|
|
struct nsSize;
|
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
|
|
|
|
2006-06-16 21:07:47 +00:00
|
|
|
class nsImageListener : public nsStubImageDecoderObserver
|
2001-03-22 01:38:35 +00:00
|
|
|
{
|
|
|
|
public:
|
2001-04-15 02:13:49 +00:00
|
|
|
nsImageListener(nsImageFrame *aFrame);
|
2001-03-22 01:38:35 +00:00
|
|
|
virtual ~nsImageListener();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
2006-06-16 21:07:47 +00:00
|
|
|
// imgIDecoderObserver (override nsStubImageDecoderObserver)
|
|
|
|
NS_IMETHOD OnStartContainer(imgIRequest *aRequest, imgIContainer *aImage);
|
2011-09-29 06:19:26 +00:00
|
|
|
NS_IMETHOD OnDataAvailable(imgIRequest *aRequest, bool aCurrentFrame,
|
2009-01-15 03:27:09 +00:00
|
|
|
const nsIntRect *aRect);
|
2006-06-16 21:07:47 +00:00
|
|
|
NS_IMETHOD OnStopDecode(imgIRequest *aRequest, nsresult status,
|
|
|
|
const PRUnichar *statusArg);
|
|
|
|
// imgIContainerObserver (override nsStubImageDecoderObserver)
|
2012-01-06 12:32:38 +00:00
|
|
|
NS_IMETHOD FrameChanged(imgIRequest *aRequest,
|
|
|
|
imgIContainer *aContainer,
|
2010-08-14 04:09:48 +00:00
|
|
|
const nsIntRect *dirtyRect);
|
2001-03-22 01:38:35 +00:00
|
|
|
|
|
|
|
void SetFrame(nsImageFrame *frame) { mFrame = frame; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsImageFrame *mFrame;
|
|
|
|
};
|
|
|
|
|
2010-06-09 05:28:14 +00:00
|
|
|
#define IMAGE_SIZECONSTRAINED NS_FRAME_STATE_BIT(20)
|
|
|
|
#define IMAGE_GOTINITIALREFLOW NS_FRAME_STATE_BIT(21)
|
2003-02-24 22:20:26 +00:00
|
|
|
|
2001-11-01 15:31:13 +00:00
|
|
|
#define ImageFrameSuper nsSplittableFrame
|
1999-04-13 21:50:25 +00:00
|
|
|
|
2011-04-26 06:52:19 +00:00
|
|
|
class nsImageFrame : public ImageFrameSuper {
|
1999-04-13 21:50:25 +00:00
|
|
|
public:
|
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
|
|
|
|
|
2006-03-26 21:30:36 +00:00
|
|
|
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
|
|
|
|
2009-12-24 05:21:15 +00:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot);
|
2006-03-09 18:55:21 +00:00
|
|
|
NS_IMETHOD Init(nsIContent* aContent,
|
1999-04-13 21:50:25 +00:00
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow);
|
2006-01-26 02:29:17 +00:00
|
|
|
NS_IMETHOD BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists);
|
2011-04-08 01:04:40 +00:00
|
|
|
virtual nscoord GetMinWidth(nsRenderingContext *aRenderingContext);
|
|
|
|
virtual nscoord GetPrefWidth(nsRenderingContext *aRenderingContext);
|
2010-09-14 20:20:32 +00:00
|
|
|
virtual IntrinsicSize GetIntrinsicSize();
|
2007-06-12 18:27:09 +00:00
|
|
|
virtual nsSize GetIntrinsicRatio();
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD Reflow(nsPresContext* aPresContext,
|
1999-04-13 21:50:25 +00:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
2001-08-29 22:59:09 +00:00
|
|
|
|
2011-09-26 20:55:04 +00:00
|
|
|
NS_IMETHOD GetContentForEvent(nsEvent* aEvent,
|
2000-02-11 01:24:59 +00:00
|
|
|
nsIContent** aContent);
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD HandleEvent(nsPresContext* aPresContext,
|
1999-04-13 21:50:25 +00:00
|
|
|
nsGUIEvent* aEvent,
|
1999-11-24 06:03:41 +00:00
|
|
|
nsEventStatus* aEventStatus);
|
2004-12-30 21:56:11 +00:00
|
|
|
NS_IMETHOD GetCursor(const nsPoint& aPoint,
|
|
|
|
nsIFrame::Cursor& aCursor);
|
2005-09-07 16:49:21 +00:00
|
|
|
NS_IMETHOD AttributeChanged(PRInt32 aNameSpaceID,
|
1999-04-13 21:50:25 +00:00
|
|
|
nsIAtom* aAttribute,
|
2003-07-11 21:16:12 +00:00
|
|
|
PRInt32 aModType);
|
2001-05-17 23:52:32 +00:00
|
|
|
|
2001-08-17 03:13:07 +00:00
|
|
|
#ifdef ACCESSIBILITY
|
2010-06-28 12:02:03 +00:00
|
|
|
virtual already_AddRefed<nsAccessible> CreateAccessible();
|
2001-08-17 03:13:07 +00:00
|
|
|
#endif
|
2001-05-17 23:52:32 +00:00
|
|
|
|
2003-10-31 20:19:18 +00:00
|
|
|
virtual nsIAtom* GetType() const;
|
2007-02-24 18:33:33 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual bool IsFrameOfType(PRUint32 aFlags) const
|
2007-02-24 18:33:33 +00:00
|
|
|
{
|
|
|
|
return ImageFrameSuper::IsFrameOfType(aFlags & ~(nsIFrame::eReplaced));
|
|
|
|
}
|
|
|
|
|
2001-10-31 04:43:48 +00:00
|
|
|
#ifdef DEBUG
|
2005-05-09 17:46:06 +00:00
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const;
|
2005-09-06 21:34:50 +00:00
|
|
|
NS_IMETHOD List(FILE* out, PRInt32 aIndent) const;
|
2001-10-31 04:43:48 +00:00
|
|
|
#endif
|
|
|
|
|
2007-03-20 00:58:20 +00:00
|
|
|
virtual PRIntn GetSkipSides() const;
|
|
|
|
|
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
|
|
|
|
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);
|
|
|
|
|
2011-04-08 01:04:40 +00:00
|
|
|
void DisplayAltFeedback(nsRenderingContext& aRenderingContext,
|
2007-03-20 00:58:20 +00:00
|
|
|
const nsRect& aDirtyRect,
|
2006-01-26 02:29:17 +00:00
|
|
|
imgIRequest* aRequest,
|
|
|
|
nsPoint aPt);
|
|
|
|
|
|
|
|
nsRect GetInnerArea() const;
|
|
|
|
|
2012-03-15 20:16:02 +00:00
|
|
|
/**
|
|
|
|
* Return a map element associated with this image.
|
|
|
|
*/
|
|
|
|
mozilla::dom::Element* GetMapElement() const
|
|
|
|
{
|
|
|
|
nsAutoString usemap;
|
|
|
|
if (mContent->GetAttr(kNameSpaceID_None, nsGkAtoms::usemap, usemap)) {
|
|
|
|
return mContent->OwnerDoc()->FindImageMap(usemap);
|
|
|
|
}
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
2011-04-08 01:04:40 +00:00
|
|
|
virtual void AddInlineMinWidth(nsRenderingContext *aRenderingContext,
|
2007-12-03 09:24:49 +00:00
|
|
|
InlineMinWidthData *aData);
|
|
|
|
|
2011-10-29 10:44:50 +00:00
|
|
|
void DisconnectMap();
|
1999-04-13 21:50:25 +00:00
|
|
|
protected:
|
|
|
|
virtual ~nsImageFrame();
|
|
|
|
|
2010-09-08 20:40:38 +00:00
|
|
|
void EnsureIntrinsicSizeAndRatio(nsPresContext* aPresContext);
|
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
|
|
|
|
2011-04-08 01:04:40 +00:00
|
|
|
virtual nsSize ComputeSize(nsRenderingContext *aRenderingContext,
|
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
|
|
|
nsSize aCBSize, nscoord aAvailableWidth,
|
|
|
|
nsSize aMargin, nsSize aBorder, nsSize aPadding,
|
2012-03-16 18:01:05 +00:00
|
|
|
PRUint32 aFlags) MOZ_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
|
|
|
|
*/
|
|
|
|
nscoord MeasureString(const PRUnichar* aString,
|
|
|
|
PRInt32 aLength,
|
|
|
|
nscoord aMaxWidth,
|
|
|
|
PRUint32& aMaxFit,
|
2011-04-08 01:04:40 +00:00
|
|
|
nsRenderingContext& aContext);
|
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);
|
|
|
|
|
2011-04-08 01:04:40 +00:00
|
|
|
void PaintImage(nsRenderingContext& aRenderingContext, nsPoint aPt,
|
2009-09-12 22:44:18 +00:00
|
|
|
const nsRect& aDirtyRect, imgIContainer* aImage,
|
|
|
|
PRUint32 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;
|
2003-03-19 03:47:09 +00:00
|
|
|
nsresult OnStartContainer(imgIRequest *aRequest, imgIContainer *aImage);
|
2011-09-29 06:19:26 +00:00
|
|
|
nsresult OnDataAvailable(imgIRequest *aRequest, bool aCurrentFrame,
|
2009-01-15 03:27:09 +00:00
|
|
|
const nsIntRect *rect);
|
2003-03-19 03:47:09 +00:00
|
|
|
nsresult OnStopDecode(imgIRequest *aRequest,
|
|
|
|
nsresult aStatus,
|
|
|
|
const PRUnichar *aStatusArg);
|
2012-01-06 12:32:38 +00:00
|
|
|
nsresult FrameChanged(imgIRequest *aRequest,
|
|
|
|
imgIContainer *aContainer,
|
2010-08-14 04:09:48 +00:00
|
|
|
const nsIntRect *aDirtyRect);
|
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
|
|
|
/**
|
|
|
|
* Helper functions to check whether the request or image container
|
|
|
|
* corresponds to a load we don't care about. Most of the decoder
|
|
|
|
* observer methods will bail early if these return true.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsPendingLoad(imgIRequest* aRequest) const;
|
|
|
|
bool IsPendingLoad(imgIContainer* aContainer) 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
|
|
|
|
|
|
|
nsImageMap* mImageMap;
|
|
|
|
|
|
|
|
nsCOMPtr<imgIDecoderObserver> mListener;
|
2001-10-06 05:08:16 +00:00
|
|
|
|
2001-03-22 01:38:35 +00:00
|
|
|
nsSize mComputedSize;
|
2010-09-08 20:40:38 +00:00
|
|
|
nsIFrame::IntrinsicSize mIntrinsicSize;
|
|
|
|
nsSize mIntrinsicRatio;
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mDisplayingIcon;
|
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,
|
2003-03-19 03:47:09 +00:00
|
|
|
imgIRequest **aRequest);
|
|
|
|
|
2009-08-12 14:23:38 +00:00
|
|
|
class IconLoad : public nsIObserver,
|
|
|
|
public imgIDecoderObserver {
|
|
|
|
// 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
|
2009-08-12 14:23:38 +00:00
|
|
|
NS_DECL_IMGICONTAINEROBSERVER
|
|
|
|
NS_DECL_IMGIDECODEROBSERVER
|
|
|
|
|
|
|
|
void AddIconObserver(nsImageFrame *frame) {
|
2009-10-16 22:49:30 +00:00
|
|
|
NS_ABORT_IF_FALSE(!mIconObservers.Contains(frame),
|
2009-08-12 14:23:38 +00:00
|
|
|
"Observer shouldn't aleady be in array");
|
|
|
|
mIconObservers.AppendElement(frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RemoveIconObserver(nsImageFrame *frame) {
|
2010-07-11 12:47:45 +00:00
|
|
|
#ifdef DEBUG
|
2011-09-29 06:19:26 +00:00
|
|
|
bool rv =
|
2010-07-11 12:47:45 +00:00
|
|
|
#endif
|
|
|
|
mIconObservers.RemoveElement(frame);
|
2009-08-12 14:23:38 +00:00
|
|
|
NS_ABORT_IF_FALSE(rv, "Observer not in array");
|
|
|
|
}
|
2001-11-07 05:02:42 +00:00
|
|
|
|
2004-02-03 20:30:02 +00:00
|
|
|
private:
|
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:
|
2004-02-03 20:30:02 +00:00
|
|
|
nsCOMPtr<imgIRequest> mLoadingImage;
|
|
|
|
nsCOMPtr<imgIRequest> 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.
|
|
|
|
*/
|
|
|
|
class nsDisplayImage : public nsDisplayItem {
|
|
|
|
public:
|
2011-04-26 06:04:18 +00:00
|
|
|
typedef mozilla::layers::ImageContainer ImageContainer;
|
|
|
|
typedef mozilla::layers::ImageLayer ImageLayer;
|
|
|
|
typedef mozilla::layers::LayerManager LayerManager;
|
|
|
|
|
2011-01-17 21:47:18 +00:00
|
|
|
nsDisplayImage(nsDisplayListBuilder* aBuilder, nsImageFrame* aFrame,
|
|
|
|
imgIContainer* aImage)
|
|
|
|
: nsDisplayItem(aBuilder, aFrame), mImage(aImage) {
|
|
|
|
MOZ_COUNT_CTOR(nsDisplayImage);
|
|
|
|
}
|
|
|
|
virtual ~nsDisplayImage() {
|
|
|
|
MOZ_COUNT_DTOR(nsDisplayImage);
|
|
|
|
}
|
|
|
|
virtual void Paint(nsDisplayListBuilder* aBuilder,
|
2011-04-08 01:04:40 +00:00
|
|
|
nsRenderingContext* aCtx);
|
2011-01-17 21:47:18 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an ImageContainer for this image if the image type
|
|
|
|
* supports it (TYPE_RASTER only).
|
|
|
|
*/
|
2012-02-01 02:18:30 +00:00
|
|
|
already_AddRefed<ImageContainer> GetContainer();
|
2011-01-17 21:47:18 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Configure an ImageLayer for this display item.
|
|
|
|
* Set the required filter and scaling transform.
|
|
|
|
*/
|
|
|
|
void ConfigureLayer(ImageLayer* aLayer);
|
|
|
|
|
|
|
|
NS_DISPLAY_DECL_NAME("Image", TYPE_IMAGE)
|
|
|
|
private:
|
|
|
|
nsCOMPtr<imgIContainer> mImage;
|
|
|
|
};
|
|
|
|
|
1999-04-13 21:50:25 +00:00
|
|
|
#endif /* nsImageFrame_h___ */
|