Bug 417561, disable tagging of Talkback now we have prebuilt packages, r=rhelmer
[mozilla-1.9.git] / layout / generic / nsBulletFrame.h
blob19f4dce1b8fe77f1c6ff34a37855c3b0976ecb8f
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
15 * The Original Code is Mozilla Communicator client code.
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998
20 * the Initial Developer. All Rights Reserved.
22 * Contributor(s):
24 * Alternatively, the contents of this file may be used under the terms of
25 * either of the GNU General Public License Version 2 or later (the "GPL"),
26 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
36 * ***** END LICENSE BLOCK ***** */
38 /* rendering object for list-item bullets */
40 #ifndef nsBulletFrame_h___
41 #define nsBulletFrame_h___
43 #include "nsFrame.h"
44 #include "nsStyleContext.h"
46 #include "imgIRequest.h"
47 #include "imgIDecoderObserver.h"
48 class gfxIImageFrame;
50 /**
51 * A simple class that manages the layout and rendering of html bullets.
52 * This class also supports the CSS list-style properties.
54 class nsBulletFrame : public nsFrame {
55 public:
56 nsBulletFrame(nsStyleContext* aContext) : nsFrame(aContext) {}
57 virtual ~nsBulletFrame();
59 // nsIFrame
60 virtual void Destroy();
61 NS_IMETHOD BuildDisplayList(nsDisplayListBuilder* aBuilder,
62 const nsRect& aDirtyRect,
63 const nsDisplayListSet& aLists);
64 virtual nsIAtom* GetType() const;
65 NS_IMETHOD DidSetStyleContext();
66 #ifdef NS_DEBUG
67 NS_IMETHOD GetFrameName(nsAString& aResult) const;
68 #endif
70 // nsIHTMLReflow
71 NS_IMETHOD Reflow(nsPresContext* aPresContext,
72 nsHTMLReflowMetrics& aMetrics,
73 const nsHTMLReflowState& aReflowState,
74 nsReflowStatus& aStatus);
75 virtual nscoord GetMinWidth(nsIRenderingContext *aRenderingContext);
76 virtual nscoord GetPrefWidth(nsIRenderingContext *aRenderingContext);
78 // nsBulletFrame
79 PRInt32 SetListItemOrdinal(PRInt32 aNextOrdinal, PRBool* aChanged);
82 NS_IMETHOD OnStartContainer(imgIRequest *aRequest, imgIContainer *aImage);
83 NS_IMETHOD OnDataAvailable(imgIRequest *aRequest,
84 gfxIImageFrame *aFrame,
85 const nsRect * rect);
86 NS_IMETHOD OnStopDecode(imgIRequest *aRequest,
87 nsresult aStatus,
88 const PRUnichar *aStatusArg);
89 NS_IMETHOD FrameChanged(imgIContainer *aContainer,
90 gfxIImageFrame *aNewframe,
91 nsRect *aDirtyRect);
93 /* get list item text, without '.' */
94 static PRBool AppendCounterText(PRInt32 aListStyleType,
95 PRInt32 aOrdinal,
96 nsString& aResult);
98 /* get list item text, with '.' */
99 PRBool GetListItemText(const nsStyleList& aStyleList,
100 nsString& aResult);
102 void PaintBullet(nsIRenderingContext& aRenderingContext, nsPoint aPt,
103 const nsRect& aDirtyRect);
105 protected:
106 void GetDesiredSize(nsPresContext* aPresContext,
107 nsIRenderingContext *aRenderingContext,
108 nsHTMLReflowMetrics& aMetrics);
110 void GetLoadGroup(nsPresContext *aPresContext, nsILoadGroup **aLoadGroup);
112 PRInt32 mOrdinal;
113 nsMargin mPadding;
114 nsCOMPtr<imgIRequest> mImageRequest;
115 nsCOMPtr<imgIDecoderObserver> mListener;
117 nsSize mIntrinsicSize;
118 nsSize mComputedSize;
119 PRBool mTextIsRTL;
122 #endif /* nsBulletFrame_h___ */