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/. */
|
2000-03-31 07:02:06 +00:00
|
|
|
#ifndef nsImageBoxFrame_h___
|
|
|
|
#define nsImageBoxFrame_h___
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2012-09-14 16:10:08 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2000-03-31 07:02:06 +00:00
|
|
|
#include "nsLeafBoxFrame.h"
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2001-03-19 23:44:55 +00:00
|
|
|
#include "imgILoader.h"
|
|
|
|
#include "imgIRequest.h"
|
|
|
|
#include "imgIContainer.h"
|
2012-10-12 16:11:22 +00:00
|
|
|
#include "imgINotificationObserver.h"
|
2013-03-16 02:53:25 +00:00
|
|
|
#include "imgIOnloadBlocker.h"
|
2001-03-19 23:44:55 +00:00
|
|
|
|
2012-10-12 12:43:01 +00:00
|
|
|
class imgRequestProxy;
|
2001-03-19 23:44:55 +00:00
|
|
|
class nsImageBoxFrame;
|
|
|
|
|
2012-09-24 20:29:14 +00:00
|
|
|
class nsDisplayXULImage;
|
|
|
|
|
2013-03-16 02:53:25 +00:00
|
|
|
class nsImageBoxListener : public imgINotificationObserver,
|
|
|
|
public imgIOnloadBlocker
|
2001-03-19 23:44:55 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsImageBoxListener();
|
|
|
|
virtual ~nsImageBoxListener();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
2012-10-12 16:11:22 +00:00
|
|
|
NS_DECL_IMGINOTIFICATIONOBSERVER
|
2013-03-16 02:53:25 +00:00
|
|
|
NS_DECL_IMGIONLOADBLOCKER
|
2001-03-19 23:44:55 +00:00
|
|
|
|
|
|
|
void SetFrame(nsImageBoxFrame *frame) { mFrame = frame; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsImageBoxFrame *mFrame;
|
|
|
|
};
|
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
class nsImageBoxFrame : public nsLeafBoxFrame
|
2000-02-16 23:00:52 +00:00
|
|
|
{
|
|
|
|
public:
|
2012-11-28 02:34:45 +00:00
|
|
|
typedef mozilla::layers::LayerManager LayerManager;
|
|
|
|
|
2012-09-24 20:29:14 +00:00
|
|
|
friend class nsDisplayXULImage;
|
2009-09-12 16:49:24 +00:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2013-05-14 16:33:23 +00:00
|
|
|
virtual nsSize GetPrefSize(nsBoxLayoutState& aBoxLayoutState) MOZ_OVERRIDE;
|
|
|
|
virtual nsSize GetMinSize(nsBoxLayoutState& aBoxLayoutState) MOZ_OVERRIDE;
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual nscoord GetBoxAscent(nsBoxLayoutState& aBoxLayoutState) MOZ_OVERRIDE;
|
|
|
|
virtual void MarkIntrinsicWidthsDirty() MOZ_OVERRIDE;
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2012-10-12 16:11:22 +00:00
|
|
|
nsresult Notify(imgIRequest *aRequest, int32_t aType, const nsIntRect* aData);
|
|
|
|
|
2006-03-26 21:30:36 +00:00
|
|
|
friend nsIFrame* NS_NewImageBoxFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2013-03-20 01:47:48 +00:00
|
|
|
virtual void Init(nsIContent* aContent,
|
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIFrame* asPrevInFlow) MOZ_OVERRIDE;
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
NS_IMETHOD AttributeChanged(int32_t aNameSpaceID,
|
2000-02-16 23:00:52 +00:00
|
|
|
nsIAtom* aAttribute,
|
2012-09-14 16:10:08 +00:00
|
|
|
int32_t aModType) MOZ_OVERRIDE;
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual void DidSetStyleContext(nsStyleContext* aOldStyleContext) MOZ_OVERRIDE;
|
2000-03-31 07:02:06 +00:00
|
|
|
|
2013-05-14 16:33:23 +00:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot) MOZ_OVERRIDE;
|
2000-03-31 07:02:06 +00:00
|
|
|
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual nsIAtom* GetType() const MOZ_OVERRIDE;
|
2014-01-05 23:31:14 +00:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2012-09-14 16:10:08 +00:00
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const MOZ_OVERRIDE;
|
2001-09-15 00:45:54 +00:00
|
|
|
#endif
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2004-07-31 07:42:12 +00:00
|
|
|
/**
|
2004-08-04 03:23:37 +00:00
|
|
|
* Update mUseSrcAttr from appropriate content attributes or from
|
|
|
|
* style, throw away the current image, and load the appropriate
|
|
|
|
* image.
|
2004-02-19 18:56:13 +00:00
|
|
|
* */
|
2004-08-04 03:23:37 +00:00
|
|
|
void UpdateImage();
|
2004-02-19 18:56:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Update mLoadFlags from content attributes. Does not attempt to reload the
|
|
|
|
* image using the new load flags.
|
|
|
|
*/
|
2001-11-07 06:40:04 +00:00
|
|
|
void UpdateLoadFlags();
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2013-02-14 11:12:27 +00:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists) MOZ_OVERRIDE;
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2000-04-11 23:55:15 +00:00
|
|
|
virtual ~nsImageBoxFrame();
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2011-04-08 01:04:40 +00:00
|
|
|
void PaintImage(nsRenderingContext& aRenderingContext,
|
2004-02-19 18:56:13 +00:00
|
|
|
const nsRect& aDirtyRect,
|
2012-08-22 15:56:38 +00:00
|
|
|
nsPoint aPt, uint32_t aFlags);
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2012-11-28 02:34:45 +00:00
|
|
|
already_AddRefed<mozilla::layers::ImageContainer> GetContainer(LayerManager* aManager);
|
2006-01-26 02:29:17 +00:00
|
|
|
protected:
|
2006-03-26 21:30:36 +00:00
|
|
|
nsImageBoxFrame(nsIPresShell* aShell, nsStyleContext* aContext);
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2004-02-19 18:56:13 +00:00
|
|
|
virtual void GetImageSize();
|
2000-02-16 23:00:52 +00:00
|
|
|
|
|
|
|
private:
|
2012-10-12 16:11:22 +00:00
|
|
|
nsresult OnStartContainer(imgIRequest *request, imgIContainer *image);
|
2012-10-12 16:11:22 +00:00
|
|
|
nsresult OnStopDecode(imgIRequest *request);
|
|
|
|
nsresult OnStopRequest(imgIRequest *request, nsresult status);
|
2012-10-12 16:11:22 +00:00
|
|
|
nsresult OnImageIsAnimated(imgIRequest* aRequest);
|
|
|
|
nsresult FrameChanged(imgIRequest *aRequest);
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2009-05-12 10:13:09 +00:00
|
|
|
nsRect mSubRect; ///< If set, indicates that only the portion of the image specified by the rect should be used.
|
|
|
|
nsSize mIntrinsicSize;
|
|
|
|
nsSize mImageSize;
|
|
|
|
|
2011-11-09 21:39:16 +00:00
|
|
|
// Boolean variable to determine if the current image request has been
|
|
|
|
// registered with the refresh driver.
|
|
|
|
bool mRequestRegistered;
|
|
|
|
|
2012-10-12 12:43:01 +00:00
|
|
|
nsRefPtr<imgRequestProxy> mImageRequest;
|
2012-10-12 16:11:22 +00:00
|
|
|
nsCOMPtr<imgINotificationObserver> mListener;
|
2001-03-19 23:44:55 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t mLoadFlags;
|
2001-03-19 23:44:55 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mUseSrcAttr; ///< Whether or not the image src comes from an attribute.
|
|
|
|
bool mSuppressStyleCheck;
|
2013-03-16 02:53:25 +00:00
|
|
|
bool mFireEventOnDecode;
|
2000-03-31 07:02:06 +00:00
|
|
|
}; // class nsImageBoxFrame
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2012-09-24 20:29:14 +00:00
|
|
|
class nsDisplayXULImage : public nsDisplayImageContainer {
|
|
|
|
public:
|
|
|
|
nsDisplayXULImage(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsImageBoxFrame* aFrame) :
|
|
|
|
nsDisplayImageContainer(aBuilder, aFrame) {
|
|
|
|
MOZ_COUNT_CTOR(nsDisplayXULImage);
|
|
|
|
}
|
|
|
|
#ifdef NS_BUILD_REFCNT_LOGGING
|
|
|
|
virtual ~nsDisplayXULImage() {
|
|
|
|
MOZ_COUNT_DTOR(nsDisplayXULImage);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-11-28 02:34:45 +00:00
|
|
|
virtual already_AddRefed<ImageContainer> GetContainer(LayerManager* aManager,
|
|
|
|
nsDisplayListBuilder* aBuilder) MOZ_OVERRIDE;
|
2012-09-24 20:29:14 +00:00
|
|
|
virtual void ConfigureLayer(ImageLayer* aLayer, const nsIntPoint& aOffset) MOZ_OVERRIDE;
|
2013-05-14 16:33:23 +00:00
|
|
|
virtual nsRect GetBounds(nsDisplayListBuilder* aBuilder, bool* aSnap) MOZ_OVERRIDE
|
2012-11-13 19:56:47 +00:00
|
|
|
{
|
|
|
|
*aSnap = true;
|
2013-04-19 12:02:13 +00:00
|
|
|
return nsRect(ToReferenceFrame(), Frame()->GetSize());
|
2012-11-13 19:56:47 +00:00
|
|
|
}
|
2013-06-26 16:43:27 +00:00
|
|
|
virtual void ComputeInvalidationRegion(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsDisplayItemGeometry* aGeometry,
|
|
|
|
nsRegion* aInvalidRegion) MOZ_OVERRIDE;
|
2012-09-24 20:29:14 +00:00
|
|
|
// Doesn't handle HitTest because nsLeafBoxFrame already creates an
|
|
|
|
// event receiver for us
|
|
|
|
virtual void Paint(nsDisplayListBuilder* aBuilder,
|
2013-05-14 16:33:23 +00:00
|
|
|
nsRenderingContext* aCtx) MOZ_OVERRIDE;
|
2012-09-24 20:29:14 +00:00
|
|
|
NS_DISPLAY_DECL_NAME("XULImage", TYPE_XUL_IMAGE)
|
|
|
|
};
|
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
#endif /* nsImageBoxFrame_h___ */
|