2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* 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/
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* 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"),
|
|
|
|
* 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
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* 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
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
//
|
|
|
|
// Eric Vaughan
|
|
|
|
// Netscape Communications
|
|
|
|
//
|
|
|
|
// See documentation in associated header file
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "nsImageBoxFrame.h"
|
|
|
|
#include "nsIDeviceContext.h"
|
|
|
|
#include "nsIFontMetrics.h"
|
|
|
|
#include "nsGkAtoms.h"
|
|
|
|
#include "nsStyleContext.h"
|
|
|
|
#include "nsStyleConsts.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsPresContext.h"
|
|
|
|
#include "nsBoxLayoutState.h"
|
|
|
|
|
|
|
|
#include "nsHTMLParts.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsLeafFrame.h"
|
|
|
|
#include "nsPresContext.h"
|
|
|
|
#include "nsIRenderingContext.h"
|
|
|
|
#include "nsIPresShell.h"
|
|
|
|
#include "nsIImage.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIHTMLDocument.h"
|
|
|
|
#include "nsStyleConsts.h"
|
|
|
|
#include "nsImageMap.h"
|
|
|
|
#include "nsILinkHandler.h"
|
|
|
|
#include "nsIURL.h"
|
|
|
|
#include "nsILoadGroup.h"
|
|
|
|
#include "nsHTMLContainerFrame.h"
|
|
|
|
#include "prprf.h"
|
|
|
|
#include "nsIFontMetrics.h"
|
|
|
|
#include "nsCSSRendering.h"
|
|
|
|
#include "nsIDOMHTMLImageElement.h"
|
|
|
|
#include "nsIDeviceContext.h"
|
|
|
|
#include "nsINameSpaceManager.h"
|
|
|
|
#include "nsTextFragment.h"
|
|
|
|
#include "nsIDOMHTMLMapElement.h"
|
|
|
|
#include "nsBoxLayoutState.h"
|
|
|
|
#include "nsIDOMDocument.h"
|
|
|
|
#include "nsTransform2D.h"
|
|
|
|
#include "nsITheme.h"
|
|
|
|
|
|
|
|
#include "nsIServiceManager.h"
|
|
|
|
#include "nsIURI.h"
|
|
|
|
#include "nsNetUtil.h"
|
|
|
|
#include "nsThreadUtils.h"
|
|
|
|
#include "nsGUIEvent.h"
|
|
|
|
#include "nsEventDispatcher.h"
|
|
|
|
#include "nsDisplayList.h"
|
|
|
|
|
|
|
|
#include "nsContentUtils.h"
|
|
|
|
|
|
|
|
#define ONLOAD_CALLED_TOO_EARLY 1
|
|
|
|
|
|
|
|
class nsImageBoxFrameEvent : public nsRunnable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsImageBoxFrameEvent(nsIContent *content, PRUint32 message)
|
|
|
|
: mContent(content), mMessage(message) {}
|
|
|
|
|
|
|
|
NS_IMETHOD Run();
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsCOMPtr<nsIContent> mContent;
|
|
|
|
PRUint32 mMessage;
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsImageBoxFrameEvent::Run()
|
|
|
|
{
|
|
|
|
nsIDocument* doc = mContent->GetOwnerDoc();
|
|
|
|
if (!doc) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-05-01 15:24:20 -07:00
|
|
|
nsIPresShell *pres_shell = doc->GetPrimaryShell();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!pres_shell) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsPresContext> pres_context = pres_shell->GetPresContext();
|
|
|
|
if (!pres_context) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsEventStatus status = nsEventStatus_eIgnore;
|
|
|
|
nsEvent event(PR_TRUE, mMessage);
|
|
|
|
|
|
|
|
event.flags |= NS_EVENT_FLAG_CANT_BUBBLE;
|
|
|
|
nsEventDispatcher::Dispatch(mContent, pres_context, &event, nsnull, &status);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fire off an event that'll asynchronously call the image elements
|
|
|
|
// onload handler once handled. This is needed since the image library
|
|
|
|
// can't decide if it wants to call it's observer methods
|
|
|
|
// synchronously or asynchronously. If an image is loaded from the
|
|
|
|
// cache the notifications come back synchronously, but if the image
|
|
|
|
// is loaded from the netswork the notifications come back
|
|
|
|
// asynchronously.
|
|
|
|
|
|
|
|
void
|
|
|
|
FireImageDOMEvent(nsIContent* aContent, PRUint32 aMessage)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(aMessage == NS_LOAD || aMessage == NS_LOAD_ERROR,
|
|
|
|
"invalid message");
|
|
|
|
|
|
|
|
nsCOMPtr<nsIRunnable> event = new nsImageBoxFrameEvent(aContent, aMessage);
|
|
|
|
if (NS_FAILED(NS_DispatchToCurrentThread(event)))
|
|
|
|
NS_WARNING("failed to dispatch image event");
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// NS_NewImageBoxFrame
|
|
|
|
//
|
|
|
|
// Creates a new image frame and returns it
|
|
|
|
//
|
|
|
|
nsIFrame*
|
|
|
|
NS_NewImageBoxFrame (nsIPresShell* aPresShell, nsStyleContext* aContext)
|
|
|
|
{
|
|
|
|
return new (aPresShell) nsImageBoxFrame (aPresShell, aContext);
|
|
|
|
} // NS_NewTitledButtonFrame
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsImageBoxFrame::AttributeChanged(PRInt32 aNameSpaceID,
|
|
|
|
nsIAtom* aAttribute,
|
|
|
|
PRInt32 aModType)
|
|
|
|
{
|
|
|
|
nsresult rv = nsLeafBoxFrame::AttributeChanged(aNameSpaceID, aAttribute,
|
|
|
|
aModType);
|
|
|
|
|
|
|
|
if (aAttribute == nsGkAtoms::src) {
|
|
|
|
UpdateImage();
|
2007-03-30 14:11:41 -07:00
|
|
|
PresContext()->PresShell()->
|
2007-05-06 12:16:51 -07:00
|
|
|
FrameNeedsReflow(this, nsIPresShell::eStyleChange, NS_FRAME_IS_DIRTY);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else if (aAttribute == nsGkAtoms::validate)
|
|
|
|
UpdateLoadFlags();
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsImageBoxFrame::nsImageBoxFrame(nsIPresShell* aShell, nsStyleContext* aContext):
|
|
|
|
nsLeafBoxFrame(aShell, aContext),
|
|
|
|
mIntrinsicSize(0,0),
|
2009-05-12 03:13:09 -07:00
|
|
|
mLoadFlags(nsIRequest::LOAD_NORMAL),
|
|
|
|
mUseSrcAttr(PR_FALSE),
|
|
|
|
mSuppressStyleCheck(PR_FALSE)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
MarkIntrinsicWidthsDirty();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsImageBoxFrame::~nsImageBoxFrame()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* virtual */ void
|
|
|
|
nsImageBoxFrame::MarkIntrinsicWidthsDirty()
|
|
|
|
{
|
|
|
|
SizeNeedsRecalc(mImageSize);
|
|
|
|
nsLeafBoxFrame::MarkIntrinsicWidthsDirty();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsImageBoxFrame::Destroy()
|
|
|
|
{
|
|
|
|
// Release image loader first so that it's refcnt can go to zero
|
|
|
|
if (mImageRequest)
|
2008-12-19 14:35:50 -08:00
|
|
|
mImageRequest->CancelAndForgetObserver(NS_ERROR_FAILURE);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (mListener)
|
2007-07-08 00:08:04 -07:00
|
|
|
reinterpret_cast<nsImageBoxListener*>(mListener.get())->SetFrame(nsnull); // set the frame to null so we don't send messages to a dead object.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsLeafBoxFrame::Destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsImageBoxFrame::Init(nsIContent* aContent,
|
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow)
|
|
|
|
{
|
|
|
|
if (!mListener) {
|
|
|
|
nsImageBoxListener *listener;
|
|
|
|
NS_NEWXPCOM(listener, nsImageBoxListener);
|
|
|
|
NS_ADDREF(listener);
|
|
|
|
listener->SetFrame(this);
|
|
|
|
listener->QueryInterface(NS_GET_IID(imgIDecoderObserver), getter_AddRefs(mListener));
|
|
|
|
NS_RELEASE(listener);
|
|
|
|
}
|
|
|
|
|
|
|
|
mSuppressStyleCheck = PR_TRUE;
|
|
|
|
nsresult rv = nsLeafBoxFrame::Init(aContent, aParent, aPrevInFlow);
|
|
|
|
mSuppressStyleCheck = PR_FALSE;
|
|
|
|
|
|
|
|
UpdateLoadFlags();
|
|
|
|
UpdateImage();
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsImageBoxFrame::UpdateImage()
|
|
|
|
{
|
|
|
|
if (mImageRequest) {
|
|
|
|
mImageRequest->Cancel(NS_ERROR_FAILURE);
|
|
|
|
mImageRequest = nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
// get the new image src
|
|
|
|
nsAutoString src;
|
|
|
|
mContent->GetAttr(kNameSpaceID_None, nsGkAtoms::src, src);
|
|
|
|
mUseSrcAttr = !src.IsEmpty();
|
|
|
|
if (mUseSrcAttr) {
|
|
|
|
nsIDocument* doc = mContent->GetDocument();
|
|
|
|
if (!doc) {
|
|
|
|
// No need to do anything here...
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
nsCOMPtr<nsIURI> baseURI = mContent->GetBaseURI();
|
|
|
|
nsCOMPtr<nsIURI> uri;
|
|
|
|
nsContentUtils::NewURIWithDocumentCharset(getter_AddRefs(uri),
|
|
|
|
src,
|
|
|
|
doc,
|
|
|
|
baseURI);
|
|
|
|
|
2007-07-03 11:45:39 -07:00
|
|
|
if (uri && nsContentUtils::CanLoadImage(uri, mContent, doc,
|
|
|
|
mContent->NodePrincipal())) {
|
|
|
|
nsContentUtils::LoadImage(uri, doc, mContent->NodePrincipal(),
|
|
|
|
doc->GetDocumentURI(), mListener, mLoadFlags,
|
2007-03-22 10:30:00 -07:00
|
|
|
getter_AddRefs(mImageRequest));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Only get the list-style-image if we aren't being drawn
|
|
|
|
// by a native theme.
|
|
|
|
PRUint8 appearance = GetStyleDisplay()->mAppearance;
|
|
|
|
if (!(appearance && nsBox::gTheme &&
|
|
|
|
nsBox::gTheme->ThemeSupportsWidget(nsnull, this, appearance))) {
|
|
|
|
// get the list-style-image
|
|
|
|
imgIRequest *styleRequest = GetStyleList()->mListStyleImage;
|
|
|
|
if (styleRequest) {
|
|
|
|
styleRequest->Clone(mListener, getter_AddRefs(mImageRequest));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mImageRequest) {
|
|
|
|
// We have no image, so size to 0
|
|
|
|
mIntrinsicSize.SizeTo(0, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsImageBoxFrame::UpdateLoadFlags()
|
|
|
|
{
|
|
|
|
static nsIContent::AttrValuesArray strings[] =
|
|
|
|
{&nsGkAtoms::always, &nsGkAtoms::never, nsnull};
|
|
|
|
switch (mContent->FindAttrValueIn(kNameSpaceID_None, nsGkAtoms::validate,
|
|
|
|
strings, eCaseMatters)) {
|
|
|
|
case 0:
|
|
|
|
mLoadFlags = nsIRequest::VALIDATE_ALWAYS;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
mLoadFlags = nsIRequest::VALIDATE_NEVER|nsIRequest::LOAD_FROM_CACHE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
mLoadFlags = nsIRequest::LOAD_NORMAL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class nsDisplayXULImage : public nsDisplayItem {
|
|
|
|
public:
|
|
|
|
nsDisplayXULImage(nsImageBoxFrame* aFrame) : nsDisplayItem(aFrame) {
|
|
|
|
MOZ_COUNT_CTOR(nsDisplayXULImage);
|
|
|
|
}
|
|
|
|
#ifdef NS_BUILD_REFCNT_LOGGING
|
|
|
|
virtual ~nsDisplayXULImage() {
|
|
|
|
MOZ_COUNT_DTOR(nsDisplayXULImage);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Doesn't handle HitTest because nsLeafBoxFrame already creates an
|
|
|
|
// event receiver for us
|
|
|
|
virtual void Paint(nsDisplayListBuilder* aBuilder, nsIRenderingContext* aCtx,
|
|
|
|
const nsRect& aDirtyRect);
|
|
|
|
NS_DISPLAY_DECL_NAME("XULImage")
|
|
|
|
};
|
|
|
|
|
|
|
|
void nsDisplayXULImage::Paint(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIRenderingContext* aCtx, const nsRect& aDirtyRect)
|
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsImageBoxFrame*>(mFrame)->
|
2007-03-22 10:30:00 -07:00
|
|
|
PaintImage(*aCtx, aDirtyRect, aBuilder->ToReferenceFrame(mFrame));
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsImageBoxFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists)
|
|
|
|
{
|
|
|
|
nsresult rv = nsLeafBoxFrame::BuildDisplayList(aBuilder, aDirtyRect, aLists);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if ((0 == mRect.width) || (0 == mRect.height)) {
|
|
|
|
// Do not render when given a zero area. This avoids some useless
|
|
|
|
// scaling work while we wait for our image dimensions to arrive
|
|
|
|
// asynchronously.
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!IsVisibleForPainting(aBuilder))
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
return aLists.Content()->AppendNewToTop(new (aBuilder) nsDisplayXULImage(this));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsImageBoxFrame::PaintImage(nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aDirtyRect, nsPoint aPt)
|
|
|
|
{
|
|
|
|
nsRect rect;
|
|
|
|
GetClientRect(rect);
|
|
|
|
|
|
|
|
rect += aPt;
|
|
|
|
|
|
|
|
if (!mImageRequest)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// don't draw if the image is not dirty
|
|
|
|
nsRect dirty;
|
|
|
|
if (!dirty.IntersectRect(aDirtyRect, rect))
|
|
|
|
return;
|
|
|
|
|
|
|
|
nsCOMPtr<imgIContainer> imgCon;
|
|
|
|
mImageRequest->GetImage(getter_AddRefs(imgCon));
|
|
|
|
|
|
|
|
if (imgCon) {
|
|
|
|
PRBool hasSubRect = !mUseSrcAttr && (mSubRect.width > 0 || mSubRect.height > 0);
|
2008-11-04 14:01:21 -08:00
|
|
|
nsLayoutUtils::DrawSingleImage(&aRenderingContext, imgCon,
|
2009-04-05 02:52:14 -07:00
|
|
|
nsLayoutUtils::GetGraphicsFilterForFrame(this),
|
2008-11-04 14:01:21 -08:00
|
|
|
rect, dirty, hasSubRect ? &mSubRect : nsnull);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// DidSetStyleContext
|
|
|
|
//
|
|
|
|
// When the style context changes, make sure that all of our image is up to date.
|
|
|
|
//
|
2008-10-13 15:03:28 -07:00
|
|
|
/* virtual */ void
|
2008-10-26 03:11:34 -07:00
|
|
|
nsImageBoxFrame::DidSetStyleContext(nsStyleContext* aOldStyleContext)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-10-26 03:11:34 -07:00
|
|
|
nsLeafBoxFrame::DidSetStyleContext(aOldStyleContext);
|
2008-10-13 15:03:28 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Fetch our subrect.
|
|
|
|
const nsStyleList* myList = GetStyleList();
|
|
|
|
mSubRect = myList->mImageRegion; // before |mSuppressStyleCheck| test!
|
|
|
|
|
|
|
|
if (mUseSrcAttr || mSuppressStyleCheck)
|
2008-10-13 15:03:28 -07:00
|
|
|
return; // No more work required, since the image isn't specified by style.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// If we're using a native theme implementation, we shouldn't draw anything.
|
|
|
|
const nsStyleDisplay* disp = GetStyleDisplay();
|
|
|
|
if (disp->mAppearance && nsBox::gTheme &&
|
|
|
|
nsBox::gTheme->ThemeSupportsWidget(nsnull, this, disp->mAppearance))
|
2008-10-13 15:03:28 -07:00
|
|
|
return;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// If list-style-image changes, we have a new image.
|
|
|
|
nsCOMPtr<nsIURI> oldURI, newURI;
|
|
|
|
if (mImageRequest)
|
|
|
|
mImageRequest->GetURI(getter_AddRefs(oldURI));
|
|
|
|
if (myList->mListStyleImage)
|
|
|
|
myList->mListStyleImage->GetURI(getter_AddRefs(newURI));
|
|
|
|
PRBool equal;
|
|
|
|
if (newURI == oldURI || // handles null==null
|
|
|
|
(newURI && oldURI &&
|
|
|
|
NS_SUCCEEDED(newURI->Equals(oldURI, &equal)) && equal))
|
2008-10-13 15:03:28 -07:00
|
|
|
return;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
UpdateImage();
|
|
|
|
} // DidSetStyleContext
|
|
|
|
|
|
|
|
void
|
|
|
|
nsImageBoxFrame::GetImageSize()
|
|
|
|
{
|
|
|
|
if (mIntrinsicSize.width > 0 && mIntrinsicSize.height > 0) {
|
|
|
|
mImageSize.width = mIntrinsicSize.width;
|
|
|
|
mImageSize.height = mIntrinsicSize.height;
|
|
|
|
} else {
|
|
|
|
mImageSize.width = 0;
|
|
|
|
mImageSize.height = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Ok return our dimensions
|
|
|
|
*/
|
|
|
|
nsSize
|
|
|
|
nsImageBoxFrame::GetPrefSize(nsBoxLayoutState& aState)
|
|
|
|
{
|
|
|
|
nsSize size(0,0);
|
|
|
|
DISPLAY_PREF_SIZE(this, size);
|
|
|
|
if (DoesNeedRecalc(mImageSize))
|
|
|
|
GetImageSize();
|
|
|
|
|
|
|
|
if (!mUseSrcAttr && (mSubRect.width > 0 || mSubRect.height > 0))
|
|
|
|
size = nsSize(mSubRect.width, mSubRect.height);
|
|
|
|
else
|
|
|
|
size = mImageSize;
|
|
|
|
AddBorderAndPadding(size);
|
|
|
|
nsIBox::AddCSSPrefSize(aState, this, size);
|
|
|
|
|
|
|
|
nsSize minSize = GetMinSize(aState);
|
2008-01-04 21:49:44 -08:00
|
|
|
nsSize maxSize = GetMaxSize(aState);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-01-04 21:49:44 -08:00
|
|
|
return BoundsCheck(minSize, size, maxSize);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsSize
|
|
|
|
nsImageBoxFrame::GetMinSize(nsBoxLayoutState& aState)
|
|
|
|
{
|
|
|
|
// An image can always scale down to (0,0).
|
|
|
|
nsSize size(0,0);
|
|
|
|
DISPLAY_MIN_SIZE(this, size);
|
|
|
|
AddBorderAndPadding(size);
|
|
|
|
nsIBox::AddCSSMinSize(aState, this, size);
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
nscoord
|
|
|
|
nsImageBoxFrame::GetBoxAscent(nsBoxLayoutState& aState)
|
|
|
|
{
|
|
|
|
return GetPrefSize(aState).height;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIAtom*
|
|
|
|
nsImageBoxFrame::GetType() const
|
|
|
|
{
|
|
|
|
return nsGkAtoms::imageBoxFrame;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsImageBoxFrame::GetFrameName(nsAString& aResult) const
|
|
|
|
{
|
|
|
|
return MakeFrameName(NS_LITERAL_STRING("ImageBox"), aResult);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsImageBoxFrame::OnStartContainer(imgIRequest *request,
|
|
|
|
imgIContainer *image)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(image);
|
|
|
|
|
|
|
|
// Ensure the animation (if any) is started
|
|
|
|
image->StartAnimation();
|
|
|
|
|
|
|
|
nscoord w, h;
|
|
|
|
image->GetWidth(&w);
|
|
|
|
image->GetHeight(&h);
|
|
|
|
|
|
|
|
mIntrinsicSize.SizeTo(nsPresContext::CSSPixelsToAppUnits(w),
|
|
|
|
nsPresContext::CSSPixelsToAppUnits(h));
|
|
|
|
|
2007-04-29 23:17:03 -07:00
|
|
|
if (!(GetStateBits() & NS_FRAME_FIRST_REFLOW)) {
|
|
|
|
PresContext()->PresShell()->
|
2007-05-06 12:16:51 -07:00
|
|
|
FrameNeedsReflow(this, nsIPresShell::eStyleChange, NS_FRAME_IS_DIRTY);
|
2007-04-29 23:17:03 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsImageBoxFrame::OnStopContainer(imgIRequest *request,
|
|
|
|
imgIContainer *image)
|
|
|
|
{
|
2007-03-30 14:11:41 -07:00
|
|
|
nsBoxLayoutState state(PresContext());
|
2007-03-22 10:30:00 -07:00
|
|
|
this->Redraw(state);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsImageBoxFrame::OnStopDecode(imgIRequest *request,
|
|
|
|
nsresult aStatus,
|
|
|
|
const PRUnichar *statusArg)
|
|
|
|
{
|
|
|
|
if (NS_SUCCEEDED(aStatus))
|
|
|
|
// Fire an onload DOM event.
|
|
|
|
FireImageDOMEvent(mContent, NS_LOAD);
|
|
|
|
else {
|
|
|
|
// Fire an onerror DOM event.
|
|
|
|
mIntrinsicSize.SizeTo(0, 0);
|
2007-03-30 14:11:41 -07:00
|
|
|
PresContext()->PresShell()->
|
2007-05-06 12:16:51 -07:00
|
|
|
FrameNeedsReflow(this, nsIPresShell::eStyleChange, NS_FRAME_IS_DIRTY);
|
2007-03-22 10:30:00 -07:00
|
|
|
FireImageDOMEvent(mContent, NS_LOAD_ERROR);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsImageBoxFrame::FrameChanged(imgIContainer *container,
|
|
|
|
gfxIImageFrame *newframe,
|
2009-01-14 19:27:09 -08:00
|
|
|
nsIntRect *dirtyRect)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2007-03-30 14:11:41 -07:00
|
|
|
nsBoxLayoutState state(PresContext());
|
2007-03-22 10:30:00 -07:00
|
|
|
this->Redraw(state);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS2(nsImageBoxListener, imgIDecoderObserver, imgIContainerObserver)
|
|
|
|
|
|
|
|
nsImageBoxListener::nsImageBoxListener()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsImageBoxListener::~nsImageBoxListener()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsImageBoxListener::OnStartContainer(imgIRequest *request,
|
|
|
|
imgIContainer *image)
|
|
|
|
{
|
|
|
|
if (!mFrame)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
return mFrame->OnStartContainer(request, image);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsImageBoxListener::OnStopContainer(imgIRequest *request,
|
|
|
|
imgIContainer *image)
|
|
|
|
{
|
|
|
|
if (!mFrame)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
return mFrame->OnStopContainer(request, image);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsImageBoxListener::OnStopDecode(imgIRequest *request,
|
|
|
|
nsresult status,
|
|
|
|
const PRUnichar *statusArg)
|
|
|
|
{
|
|
|
|
if (!mFrame)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
return mFrame->OnStopDecode(request, status, statusArg);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsImageBoxListener::FrameChanged(imgIContainer *container,
|
|
|
|
gfxIImageFrame *newframe,
|
2009-01-14 19:27:09 -08:00
|
|
|
nsIntRect *dirtyRect)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (!mFrame)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
return mFrame->FrameChanged(container, newframe, dirtyRect);
|
|
|
|
}
|
|
|
|
|