1999-04-14 01:50:25 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* The contents of this file are subject to the Netscape 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/NPL/
|
1999-04-14 01:50:25 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03: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-14 01:50:25 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-04-14 01:50:25 +04:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 06:40:37 +03:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1999-04-14 01:50:25 +04:00
|
|
|
*/
|
|
|
|
#ifndef nsImageFrame_h___
|
|
|
|
#define nsImageFrame_h___
|
|
|
|
|
|
|
|
#include "nsLeafFrame.h"
|
|
|
|
#include "nsString.h"
|
2001-04-15 06:13:49 +04:00
|
|
|
#include "nsAReadableString.h"
|
1999-04-14 01:50:25 +04:00
|
|
|
#include "nsIPresContext.h"
|
2001-02-20 00:50:04 +03:00
|
|
|
#include "nsIImageFrame.h"
|
1999-04-14 01:50:25 +04:00
|
|
|
|
2001-03-22 04:38:35 +03:00
|
|
|
#include "nsTransform2D.h"
|
|
|
|
#include "imgIRequest.h"
|
|
|
|
#include "imgIDecoderObserver.h"
|
|
|
|
#include "imgIContainerObserver.h"
|
|
|
|
|
1999-04-14 01:50:25 +04:00
|
|
|
class nsIFrame;
|
|
|
|
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;
|
|
|
|
struct nsHTMLReflowMetrics;
|
|
|
|
struct nsSize;
|
|
|
|
|
2001-03-22 04:38:35 +03:00
|
|
|
class nsImageFrame;
|
|
|
|
|
|
|
|
class nsImageListener : imgIDecoderObserver
|
|
|
|
{
|
|
|
|
public:
|
2001-04-15 06:13:49 +04:00
|
|
|
nsImageListener(nsImageFrame *aFrame);
|
2001-03-22 04:38:35 +03:00
|
|
|
virtual ~nsImageListener();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_IMGIDECODEROBSERVER
|
|
|
|
NS_DECL_IMGICONTAINEROBSERVER
|
|
|
|
|
|
|
|
void SetFrame(nsImageFrame *frame) { mFrame = frame; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsImageFrame *mFrame;
|
|
|
|
};
|
|
|
|
|
1999-04-14 01:50:25 +04:00
|
|
|
#define ImageFrameSuper nsLeafFrame
|
|
|
|
|
2001-02-20 00:50:04 +03:00
|
|
|
class nsImageFrame : public ImageFrameSuper, public nsIImageFrame {
|
1999-04-14 01:50:25 +04:00
|
|
|
public:
|
2000-04-19 18:00:11 +04:00
|
|
|
nsImageFrame();
|
|
|
|
|
2001-02-20 00:50:04 +03:00
|
|
|
// nsISupports
|
|
|
|
NS_IMETHOD QueryInterface(const nsIID& aIID, void** aInstancePtr);
|
|
|
|
|
1999-11-24 09:03:41 +03:00
|
|
|
NS_IMETHOD Destroy(nsIPresContext* aPresContext);
|
|
|
|
NS_IMETHOD Init(nsIPresContext* aPresContext,
|
1999-04-14 01:50:25 +04:00
|
|
|
nsIContent* aContent,
|
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIStyleContext* aContext,
|
|
|
|
nsIFrame* aPrevInFlow);
|
1999-11-24 09:03:41 +03:00
|
|
|
NS_IMETHOD Paint(nsIPresContext* aPresContext,
|
1999-04-14 01:50:25 +04:00
|
|
|
nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
nsFramePaintLayer aWhichLayer);
|
1999-11-24 09:03:41 +03:00
|
|
|
NS_IMETHOD Reflow(nsIPresContext* aPresContext,
|
1999-04-14 01:50:25 +04:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
2000-02-11 04:24:59 +03:00
|
|
|
NS_IMETHOD GetContentForEvent(nsIPresContext* aPresContext,
|
|
|
|
nsEvent* aEvent,
|
|
|
|
nsIContent** aContent);
|
2001-02-20 00:50:04 +03:00
|
|
|
NS_IMETHOD HandleEvent(nsIPresContext* aPresContext,
|
1999-04-14 01:50:25 +04:00
|
|
|
nsGUIEvent* aEvent,
|
1999-11-24 09:03:41 +03:00
|
|
|
nsEventStatus* aEventStatus);
|
|
|
|
NS_IMETHOD GetCursor(nsIPresContext* aPresContext,
|
1999-04-14 01:50:25 +04:00
|
|
|
nsPoint& aPoint,
|
|
|
|
PRInt32& aCursor);
|
|
|
|
NS_IMETHOD AttributeChanged(nsIPresContext* aPresContext,
|
|
|
|
nsIContent* aChild,
|
1999-10-16 03:16:45 +04:00
|
|
|
PRInt32 aNameSpaceID,
|
1999-04-14 01:50:25 +04:00
|
|
|
nsIAtom* aAttribute,
|
|
|
|
PRInt32 aHint);
|
1999-08-31 07:09:40 +04:00
|
|
|
NS_IMETHOD GetFrameType(nsIAtom** aResult) const;
|
2000-01-04 06:06:13 +03:00
|
|
|
NS_IMETHOD GetIntrinsicImageSize(nsSize& aSize);
|
2000-09-09 02:52:05 +04:00
|
|
|
|
|
|
|
NS_IMETHOD GetNaturalImageSize(PRUint32* naturalWidth,
|
|
|
|
PRUint32 *naturalHeight);
|
|
|
|
|
2000-01-07 02:41:14 +03:00
|
|
|
NS_IMETHOD IsImageComplete(PRBool* aComplete);
|
2000-01-04 06:06:13 +03:00
|
|
|
|
1999-09-01 05:02:16 +04:00
|
|
|
#ifdef DEBUG
|
1999-08-31 07:09:40 +04:00
|
|
|
NS_IMETHOD SizeOf(nsISizeOfHandler* aHandler, PRUint32* aResult) const;
|
1999-09-01 05:02:16 +04:00
|
|
|
#endif
|
1999-04-14 01:50:25 +04:00
|
|
|
|
2001-03-22 04:38:35 +03:00
|
|
|
NS_IMETHOD OnStartDecode(imgIRequest *aRequest, nsIPresContext *aCX);
|
|
|
|
NS_IMETHOD OnStartContainer(imgIRequest *aRequest, nsIPresContext *aCX, imgIContainer *aImage);
|
|
|
|
NS_IMETHOD OnStartFrame(imgIRequest *aRequest, nsIPresContext *aCX, gfxIImageFrame *aFrame);
|
|
|
|
NS_IMETHOD OnDataAvailable(imgIRequest *aRequest, nsIPresContext *aCX, gfxIImageFrame *aFrame, const nsRect * rect);
|
|
|
|
NS_IMETHOD OnStopFrame(imgIRequest *aRequest, nsIPresContext *aCX, gfxIImageFrame *aFrame);
|
|
|
|
NS_IMETHOD OnStopContainer(imgIRequest *aRequest, nsIPresContext *aCX, imgIContainer *aImage);
|
|
|
|
NS_IMETHOD OnStopDecode(imgIRequest *aRequest, nsIPresContext *aCX, nsresult aStatus, const PRUnichar *aStatusArg);
|
|
|
|
NS_IMETHOD FrameChanged(imgIContainer *aContainer, nsIPresContext *aCX, gfxIImageFrame *aNewframe, nsRect *aDirtyRect);
|
|
|
|
|
1999-04-14 01:50:25 +04:00
|
|
|
protected:
|
2001-02-20 00:50:04 +03:00
|
|
|
// nsISupports
|
|
|
|
NS_IMETHOD_(nsrefcnt) AddRef(void);
|
|
|
|
NS_IMETHOD_(nsrefcnt) Release(void);
|
|
|
|
|
1999-04-14 01:50:25 +04:00
|
|
|
virtual ~nsImageFrame();
|
|
|
|
|
|
|
|
virtual void GetDesiredSize(nsIPresContext* aPresContext,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize);
|
|
|
|
|
2000-08-18 10:27:42 +04:00
|
|
|
nsImageMap* GetImageMap(nsIPresContext* aPresContext);
|
1999-04-14 01:50:25 +04:00
|
|
|
|
1999-11-24 09:03:41 +03:00
|
|
|
void TriggerLink(nsIPresContext* aPresContext,
|
1999-04-14 01:50:25 +04:00
|
|
|
const nsString& aURLSpec,
|
|
|
|
const nsString& aTargetSpec,
|
|
|
|
PRBool aClick);
|
|
|
|
|
|
|
|
PRBool IsServerImageMap();
|
|
|
|
|
1999-11-24 09:03:41 +03:00
|
|
|
void TranslateEventCoords(nsIPresContext* aPresContext,
|
1999-07-08 23:38:08 +04:00
|
|
|
const nsPoint& aPoint,
|
|
|
|
nsPoint& aResult);
|
|
|
|
|
2001-04-11 12:12:10 +04:00
|
|
|
PRBool GetAnchorHREFAndTarget(nsString& aHref, nsString& aTarget);
|
1999-07-08 23:38:08 +04:00
|
|
|
|
1999-04-14 01:50:25 +04:00
|
|
|
PRIntn GetSuppress();
|
|
|
|
|
|
|
|
void MeasureString(const PRUnichar* aString,
|
|
|
|
PRInt32 aLength,
|
|
|
|
nscoord aMaxWidth,
|
|
|
|
PRUint32& aMaxFit,
|
|
|
|
nsIRenderingContext& aContext);
|
|
|
|
|
1999-11-24 09:03:41 +03:00
|
|
|
void DisplayAltText(nsIPresContext* aPresContext,
|
1999-04-14 01:50:25 +04:00
|
|
|
nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsString& aAltText,
|
|
|
|
const nsRect& aRect);
|
|
|
|
|
1999-11-24 09:03:41 +03:00
|
|
|
void DisplayAltFeedback(nsIPresContext* aPresContext,
|
1999-04-14 01:50:25 +04:00
|
|
|
nsIRenderingContext& aRenderingContext,
|
|
|
|
PRInt32 aIconId);
|
|
|
|
|
|
|
|
void GetInnerArea(nsIPresContext* aPresContext,
|
|
|
|
nsRect& aInnerArea) const;
|
|
|
|
|
2001-03-22 04:38:35 +03:00
|
|
|
|
2001-05-04 10:29:59 +04:00
|
|
|
nsresult LoadImage(const nsAReadableString& aSpec, nsIPresContext *aPresContext, imgIRequest **aRequest);
|
|
|
|
|
|
|
|
inline PRBool CanLoadImage(nsIURI *aURI);
|
2001-04-15 06:13:49 +04:00
|
|
|
|
|
|
|
inline void GetURI(const nsAReadableString& aSpec, nsIURI **aURI);
|
2001-05-04 10:29:59 +04:00
|
|
|
inline void GetRealURI(const nsAReadableString& aSpec, nsIURI **aURI);
|
|
|
|
|
2001-04-15 06:13:49 +04:00
|
|
|
inline void GetBaseURI(nsIURI **uri);
|
|
|
|
inline void GetLoadGroup(nsIPresContext *aPresContext, nsILoadGroup **aLoadGroup);
|
1999-04-14 01:50:25 +04:00
|
|
|
|
2000-04-19 18:00:11 +04:00
|
|
|
nsImageMap* mImageMap;
|
2001-03-22 04:38:35 +03:00
|
|
|
|
|
|
|
nsCOMPtr<imgIRequest> mImageRequest;
|
|
|
|
nsCOMPtr<imgIRequest> mLowImageRequest;
|
|
|
|
|
|
|
|
nsCOMPtr<imgIDecoderObserver> mListener;
|
|
|
|
|
|
|
|
nsSize mComputedSize;
|
|
|
|
nsSize mIntrinsicSize;
|
|
|
|
|
|
|
|
nsTransform2D mTransform;
|
|
|
|
|
2001-05-04 10:29:59 +04:00
|
|
|
PRPackedBool mSizeConstrained;
|
|
|
|
PRPackedBool mGotInitialReflow;
|
2000-04-19 18:00:11 +04:00
|
|
|
PRPackedBool mInitialLoadCompleted;
|
2000-09-08 01:03:26 +04:00
|
|
|
PRPackedBool mCanSendLoadEvent;
|
2001-05-04 10:29:59 +04:00
|
|
|
|
2000-04-19 18:00:11 +04:00
|
|
|
nsMargin mBorderPadding;
|
2001-03-06 03:47:46 +03:00
|
|
|
PRUint32 mNaturalImageWidth,
|
|
|
|
mNaturalImageHeight;
|
1999-04-14 01:50:25 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsImageFrame_h___ */
|