2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04: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 22:29:03 +04:00
|
|
|
|
|
|
|
/* rendering object for list-item bullets */
|
|
|
|
|
1998-12-01 19:13:49 +03:00
|
|
|
#ifndef nsBulletFrame_h___
|
|
|
|
#define nsBulletFrame_h___
|
|
|
|
|
1999-04-14 01:49:58 +04:00
|
|
|
#include "nsFrame.h"
|
2003-02-22 03:32:13 +03:00
|
|
|
#include "nsStyleContext.h"
|
1998-12-01 19:13:49 +03:00
|
|
|
|
2001-08-10 00:22:39 +04:00
|
|
|
#include "imgIRequest.h"
|
|
|
|
#include "imgIDecoderObserver.h"
|
2011-12-24 12:28:23 +04:00
|
|
|
#include "nsStubImageDecoderObserver.h"
|
2001-08-10 00:22:39 +04:00
|
|
|
|
2011-11-24 06:48:23 +04: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 12:28:23 +04: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 16:32:38 +04:00
|
|
|
NS_IMETHOD FrameChanged(imgIRequest *aRequest,
|
|
|
|
imgIContainer *aContainer,
|
2011-12-24 12:28:23 +04:00
|
|
|
const nsIntRect *dirtyRect);
|
|
|
|
|
|
|
|
void SetFrame(nsBulletFrame *frame) { mFrame = frame; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsBulletFrame *mFrame;
|
|
|
|
};
|
|
|
|
|
1998-12-01 19:13:49 +03: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 20:49:24 +04:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2011-11-24 06:48:23 +04:00
|
|
|
nsBulletFrame(nsStyleContext* aContext)
|
|
|
|
: nsFrame(aContext)
|
|
|
|
{
|
|
|
|
}
|
1998-12-01 19:13:49 +03:00
|
|
|
virtual ~nsBulletFrame();
|
|
|
|
|
|
|
|
// nsIFrame
|
2009-12-24 08:21:15 +03:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot);
|
2006-01-26 05:29:17 +03:00
|
|
|
NS_IMETHOD BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists);
|
2003-10-31 23:19:18 +03:00
|
|
|
virtual nsIAtom* GetType() const;
|
2008-10-26 13:11:34 +03:00
|
|
|
virtual void DidSetStyleContext(nsStyleContext* aOldStyleContext);
|
1999-11-02 01:12:45 +03:00
|
|
|
#ifdef NS_DEBUG
|
2001-11-14 04:33:42 +03:00
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const;
|
1999-11-02 01:12:45 +03:00
|
|
|
#endif
|
1998-12-01 19:13:49 +03:00
|
|
|
|
|
|
|
// nsIHTMLReflow
|
2004-08-01 03:15:21 +04:00
|
|
|
NS_IMETHOD Reflow(nsPresContext* aPresContext,
|
1998-12-01 19:13:49 +03:00
|
|
|
nsHTMLReflowMetrics& aMetrics,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
2011-04-08 05:04:40 +04:00
|
|
|
virtual nscoord GetMinWidth(nsRenderingContext *aRenderingContext);
|
|
|
|
virtual nscoord GetPrefWidth(nsRenderingContext *aRenderingContext);
|
1998-12-01 19:13:49 +03:00
|
|
|
|
|
|
|
// nsBulletFrame
|
2011-09-29 10:19:26 +04:00
|
|
|
PRInt32 SetListItemOrdinal(PRInt32 aNextOrdinal, bool* aChanged);
|
1998-12-01 19:13:49 +03:00
|
|
|
|
2001-08-10 00:22:39 +04:00
|
|
|
|
2003-02-26 08:51:32 +03:00
|
|
|
NS_IMETHOD OnStartContainer(imgIRequest *aRequest, imgIContainer *aImage);
|
|
|
|
NS_IMETHOD OnDataAvailable(imgIRequest *aRequest,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aCurrentFrame,
|
2009-01-15 06:27:09 +03:00
|
|
|
const nsIntRect *aRect);
|
2003-02-26 08:51:32 +03:00
|
|
|
NS_IMETHOD OnStopDecode(imgIRequest *aRequest,
|
|
|
|
nsresult aStatus,
|
|
|
|
const PRUnichar *aStatusArg);
|
2011-11-10 01:39:16 +04:00
|
|
|
NS_IMETHOD OnImageIsAnimated(imgIRequest *aRequest);
|
2012-01-06 16:32:38 +04:00
|
|
|
NS_IMETHOD FrameChanged(imgIRequest *aRequest,
|
|
|
|
imgIContainer *aContainer,
|
2010-08-14 08:09:48 +04:00
|
|
|
const nsIntRect *aDirtyRect);
|
2001-08-10 00:22:39 +04:00
|
|
|
|
2005-04-02 03:07:00 +04:00
|
|
|
/* get list item text, without '.' */
|
2011-09-29 10:19:26 +04:00
|
|
|
static bool AppendCounterText(PRInt32 aListStyleType,
|
2005-04-02 03:07:00 +04:00
|
|
|
PRInt32 aOrdinal,
|
|
|
|
nsString& aResult);
|
2004-06-04 23:28:36 +04:00
|
|
|
|
2005-04-02 03:07:00 +04:00
|
|
|
/* get list item text, with '.' */
|
2011-09-29 10:19:26 +04:00
|
|
|
bool GetListItemText(const nsStyleList& aStyleList,
|
2005-04-02 03:07:00 +04:00
|
|
|
nsString& aResult);
|
2006-01-26 05:29:17 +03:00
|
|
|
|
2011-04-08 05:04:40 +04:00
|
|
|
void PaintBullet(nsRenderingContext& aRenderingContext, nsPoint aPt,
|
2007-03-20 03:58:20 +03:00
|
|
|
const nsRect& aDirtyRect);
|
2008-03-12 03:46:18 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual bool IsEmpty();
|
|
|
|
virtual bool IsSelfEmpty();
|
2010-08-31 22:54:44 +04:00
|
|
|
virtual nscoord GetBaseline() const;
|
2004-06-04 23:28:36 +04:00
|
|
|
|
2011-11-24 06:48:23 +04:00
|
|
|
float GetFontSizeInflation() const;
|
|
|
|
bool HasFontSizeInflation() const {
|
|
|
|
return (GetStateBits() & BULLET_FRAME_HAS_FONT_INFLATION) != 0;
|
|
|
|
}
|
|
|
|
void SetFontSizeInflation(float aInflation);
|
|
|
|
|
1998-12-01 19:13:49 +03:00
|
|
|
protected:
|
2004-08-01 03:15:21 +04:00
|
|
|
void GetDesiredSize(nsPresContext* aPresContext,
|
2011-04-08 05:04:40 +04:00
|
|
|
nsRenderingContext *aRenderingContext,
|
2011-11-24 06:48:23 +04:00
|
|
|
nsHTMLReflowMetrics& aMetrics,
|
|
|
|
float aFontSizeInflation);
|
1998-12-01 19:13:49 +03:00
|
|
|
|
2004-08-01 03:15:21 +04:00
|
|
|
void GetLoadGroup(nsPresContext *aPresContext, nsILoadGroup **aLoadGroup);
|
1999-04-14 01:49:58 +04:00
|
|
|
|
1998-12-01 19:13:49 +03:00
|
|
|
nsMargin mPadding;
|
2001-08-10 00:22:39 +04:00
|
|
|
nsCOMPtr<imgIRequest> mImageRequest;
|
2011-12-24 12:28:23 +04:00
|
|
|
nsRefPtr<nsBulletListener> mListener;
|
2001-08-10 00:22:39 +04:00
|
|
|
|
|
|
|
nsSize mIntrinsicSize;
|
|
|
|
nsSize mComputedSize;
|
2009-05-12 14:13:09 +04:00
|
|
|
PRInt32 mOrdinal;
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mTextIsRTL;
|
2011-11-10 01:39:16 +04: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 19:13:49 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsBulletFrame_h___ */
|