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
|
|
|
|
|
|
|
/* rendering object for list-item bullets */
|
|
|
|
|
1998-12-01 16:13:49 +00:00
|
|
|
#ifndef nsBulletFrame_h___
|
|
|
|
#define nsBulletFrame_h___
|
|
|
|
|
1999-04-13 21:49:58 +00:00
|
|
|
#include "nsFrame.h"
|
2003-02-22 00:32:13 +00:00
|
|
|
#include "nsStyleContext.h"
|
1998-12-01 16:13:49 +00:00
|
|
|
|
2001-08-09 20:22:39 +00:00
|
|
|
#include "imgIRequest.h"
|
|
|
|
#include "imgIDecoderObserver.h"
|
2011-12-24 08:28:23 +00:00
|
|
|
#include "nsStubImageDecoderObserver.h"
|
2001-08-09 20:22:39 +00:00
|
|
|
|
2011-11-24 02:48:23 +00:00
|
|
|
#define BULLET_FRAME_IMAGE_LOADING NS_FRAME_STATE_BIT(63)
|
|
|
|
#define BULLET_FRAME_HAS_FONT_INFLATION NS_FRAME_STATE_BIT(62)
|
|
|
|
|
2011-12-24 08:28:23 +00:00
|
|
|
class nsBulletFrame;
|
|
|
|
|
|
|
|
class nsBulletListener : public nsStubImageDecoderObserver
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsBulletListener();
|
|
|
|
virtual ~nsBulletListener();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
// imgIDecoderObserver (override nsStubImageDecoderObserver)
|
|
|
|
NS_IMETHOD OnStartContainer(imgIRequest *aRequest, imgIContainer *aImage);
|
|
|
|
NS_IMETHOD OnDataAvailable(imgIRequest *aRequest, bool aCurrentFrame,
|
|
|
|
const nsIntRect *aRect);
|
|
|
|
NS_IMETHOD OnStopDecode(imgIRequest *aRequest, nsresult status,
|
|
|
|
const PRUnichar *statusArg);
|
|
|
|
NS_IMETHOD OnImageIsAnimated(imgIRequest *aRequest);
|
|
|
|
|
|
|
|
// imgIContainerObserver (override nsStubImageDecoderObserver)
|
2012-01-06 12:32:38 +00:00
|
|
|
NS_IMETHOD FrameChanged(imgIRequest *aRequest,
|
|
|
|
imgIContainer *aContainer,
|
2011-12-24 08:28:23 +00:00
|
|
|
const nsIntRect *dirtyRect);
|
|
|
|
|
|
|
|
void SetFrame(nsBulletFrame *frame) { mFrame = frame; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsBulletFrame *mFrame;
|
|
|
|
};
|
|
|
|
|
1998-12-01 16:13:49 +00:00
|
|
|
/**
|
|
|
|
* A simple class that manages the layout and rendering of html bullets.
|
|
|
|
* This class also supports the CSS list-style properties.
|
|
|
|
*/
|
|
|
|
class nsBulletFrame : public nsFrame {
|
|
|
|
public:
|
2009-09-12 16:49:24 +00:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2011-11-24 02:48:23 +00:00
|
|
|
nsBulletFrame(nsStyleContext* aContext)
|
|
|
|
: nsFrame(aContext)
|
|
|
|
{
|
|
|
|
}
|
1998-12-01 16:13:49 +00:00
|
|
|
virtual ~nsBulletFrame();
|
|
|
|
|
|
|
|
// nsIFrame
|
2009-12-24 05:21:15 +00:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot);
|
2006-01-26 02:29:17 +00:00
|
|
|
NS_IMETHOD BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists);
|
2003-10-31 20:19:18 +00:00
|
|
|
virtual nsIAtom* GetType() const;
|
2008-10-26 10:11:34 +00:00
|
|
|
virtual void DidSetStyleContext(nsStyleContext* aOldStyleContext);
|
2012-06-25 19:59:42 +00:00
|
|
|
#ifdef DEBUG
|
2001-11-14 01:33:42 +00:00
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const;
|
1999-11-01 22:12:45 +00:00
|
|
|
#endif
|
1998-12-01 16:13:49 +00:00
|
|
|
|
|
|
|
// nsIHTMLReflow
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD Reflow(nsPresContext* aPresContext,
|
1998-12-01 16:13:49 +00:00
|
|
|
nsHTMLReflowMetrics& aMetrics,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
2011-04-08 01:04:40 +00:00
|
|
|
virtual nscoord GetMinWidth(nsRenderingContext *aRenderingContext);
|
|
|
|
virtual nscoord GetPrefWidth(nsRenderingContext *aRenderingContext);
|
1998-12-01 16:13:49 +00:00
|
|
|
|
|
|
|
// nsBulletFrame
|
2011-09-29 06:19:26 +00:00
|
|
|
PRInt32 SetListItemOrdinal(PRInt32 aNextOrdinal, bool* aChanged);
|
1998-12-01 16:13:49 +00:00
|
|
|
|
2001-08-09 20:22:39 +00:00
|
|
|
|
2003-02-26 05:51:32 +00:00
|
|
|
NS_IMETHOD OnStartContainer(imgIRequest *aRequest, imgIContainer *aImage);
|
|
|
|
NS_IMETHOD OnDataAvailable(imgIRequest *aRequest,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aCurrentFrame,
|
2009-01-15 03:27:09 +00:00
|
|
|
const nsIntRect *aRect);
|
2003-02-26 05:51:32 +00:00
|
|
|
NS_IMETHOD OnStopDecode(imgIRequest *aRequest,
|
|
|
|
nsresult aStatus,
|
|
|
|
const PRUnichar *aStatusArg);
|
2011-11-09 21:39:16 +00:00
|
|
|
NS_IMETHOD OnImageIsAnimated(imgIRequest *aRequest);
|
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 *aDirtyRect);
|
2001-08-09 20:22:39 +00:00
|
|
|
|
2005-04-01 23:07:00 +00:00
|
|
|
/* get list item text, without '.' */
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool AppendCounterText(PRInt32 aListStyleType,
|
2005-04-01 23:07:00 +00:00
|
|
|
PRInt32 aOrdinal,
|
|
|
|
nsString& aResult);
|
2004-06-04 19:28:36 +00:00
|
|
|
|
2005-04-01 23:07:00 +00:00
|
|
|
/* get list item text, with '.' */
|
2011-09-29 06:19:26 +00:00
|
|
|
bool GetListItemText(const nsStyleList& aStyleList,
|
2005-04-01 23:07:00 +00:00
|
|
|
nsString& aResult);
|
2006-01-26 02:29:17 +00:00
|
|
|
|
2011-04-08 01:04:40 +00:00
|
|
|
void PaintBullet(nsRenderingContext& aRenderingContext, nsPoint aPt,
|
2007-03-20 00:58:20 +00:00
|
|
|
const nsRect& aDirtyRect);
|
2008-03-12 00:46:18 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual bool IsEmpty();
|
|
|
|
virtual bool IsSelfEmpty();
|
2010-08-31 18:54:44 +00:00
|
|
|
virtual nscoord GetBaseline() const;
|
2004-06-04 19:28:36 +00:00
|
|
|
|
2011-11-24 02:48:23 +00:00
|
|
|
float GetFontSizeInflation() const;
|
|
|
|
bool HasFontSizeInflation() const {
|
|
|
|
return (GetStateBits() & BULLET_FRAME_HAS_FONT_INFLATION) != 0;
|
|
|
|
}
|
|
|
|
void SetFontSizeInflation(float aInflation);
|
|
|
|
|
1998-12-01 16:13:49 +00:00
|
|
|
protected:
|
2004-07-31 23:15:21 +00:00
|
|
|
void GetDesiredSize(nsPresContext* aPresContext,
|
2011-04-08 01:04:40 +00:00
|
|
|
nsRenderingContext *aRenderingContext,
|
2011-11-24 02:48:23 +00:00
|
|
|
nsHTMLReflowMetrics& aMetrics,
|
|
|
|
float aFontSizeInflation);
|
1998-12-01 16:13:49 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
void GetLoadGroup(nsPresContext *aPresContext, nsILoadGroup **aLoadGroup);
|
1999-04-13 21:49:58 +00:00
|
|
|
|
1998-12-01 16:13:49 +00:00
|
|
|
nsMargin mPadding;
|
2001-08-09 20:22:39 +00:00
|
|
|
nsCOMPtr<imgIRequest> mImageRequest;
|
2011-12-24 08:28:23 +00:00
|
|
|
nsRefPtr<nsBulletListener> mListener;
|
2001-08-09 20:22:39 +00:00
|
|
|
|
|
|
|
nsSize mIntrinsicSize;
|
2009-05-12 10:13:09 +00:00
|
|
|
PRInt32 mOrdinal;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mTextIsRTL;
|
2011-11-09 21:39:16 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
// This is a boolean flag indicating whether or not the current image request
|
|
|
|
// has been registered with the refresh driver.
|
|
|
|
bool mRequestRegistered;
|
1998-12-01 16:13:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsBulletFrame_h___ */
|