2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-18 14:30:37 +00:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1998-04-13 20:24:54 +00:00
|
|
|
*
|
2004-04-18 14:30:37 +00:00
|
|
|
* 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/
|
1998-04-13 20:24:54 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00: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.
|
1998-04-13 20:24:54 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2004-04-18 14:30:37 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-28 20:14:13 +00:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 03:40:37 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-18 14:30:37 +00:00
|
|
|
* 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"),
|
2001-09-28 20:14:13 +00:00
|
|
|
* 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
|
2004-04-18 14:30:37 +00:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-28 20:14:13 +00:00
|
|
|
* 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
|
2004-04-18 14:30:37 +00:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-28 20:14:13 +00:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1998-04-13 20:24:54 +00:00
|
|
|
#ifndef nsPageFrame_h___
|
|
|
|
#define nsPageFrame_h___
|
|
|
|
|
2001-01-27 14:09:34 +00:00
|
|
|
#include "nsContainerFrame.h"
|
2002-03-17 21:35:08 +00:00
|
|
|
#include "nsLeafFrame.h"
|
1998-04-13 20:24:54 +00:00
|
|
|
|
2001-11-03 14:59:39 +00:00
|
|
|
class nsSharedPageData;
|
|
|
|
|
1998-11-04 23:21:50 +00:00
|
|
|
// Page frame class used by the simple page sequence frame
|
1998-05-28 02:37:37 +00:00
|
|
|
class nsPageFrame : public nsContainerFrame {
|
2001-11-03 14:59:39 +00:00
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
public:
|
2006-03-26 21:30:36 +00:00
|
|
|
friend nsIFrame* NS_NewPageFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
1999-02-18 22:23:36 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD Reflow(nsPresContext* aPresContext,
|
1998-10-01 04:46:11 +00:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
1998-10-02 04:10:00 +00:00
|
|
|
const nsHTMLReflowState& aMaxSize,
|
1998-05-25 17:31:49 +00:00
|
|
|
nsReflowStatus& aStatus);
|
2001-01-27 14:09:34 +00:00
|
|
|
|
2006-01-26 02:29:17 +00:00
|
|
|
NS_IMETHOD BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists);
|
2001-01-27 14:09:34 +00:00
|
|
|
|
2004-03-12 04:40:17 +00:00
|
|
|
virtual PRBool IsContainingBlock() const;
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1999-02-14 03:47:33 +00:00
|
|
|
/**
|
|
|
|
* Get the "type" of the frame
|
|
|
|
*
|
2007-01-30 00:06:41 +00:00
|
|
|
* @see nsGkAtoms::pageFrame
|
1999-02-14 03:47:33 +00:00
|
|
|
*/
|
2003-10-31 20:19:18 +00:00
|
|
|
virtual nsIAtom* GetType() const;
|
1999-02-14 03:47:33 +00:00
|
|
|
|
2001-04-12 13:04:29 +00:00
|
|
|
#ifdef NS_DEBUG
|
2001-11-14 01:33:42 +00:00
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const;
|
1999-11-01 22:12:45 +00:00
|
|
|
#endif
|
1999-02-18 22:23:36 +00:00
|
|
|
|
2001-01-27 14:09:34 +00:00
|
|
|
//////////////////
|
|
|
|
// For Printing
|
|
|
|
//////////////////
|
|
|
|
|
|
|
|
// Tell the page which page number it is out of how many
|
|
|
|
virtual void SetPageNumInfo(PRInt32 aPageNumber, PRInt32 aTotalPages);
|
|
|
|
|
2002-09-19 21:45:07 +00:00
|
|
|
virtual void SetSharedPageData(nsSharedPageData* aPD);
|
2001-01-27 14:09:34 +00:00
|
|
|
|
2006-01-26 02:29:17 +00:00
|
|
|
void PaintPrintPreviewBackground(nsIRenderingContext& aRenderingContext,
|
|
|
|
nsPoint aPt);
|
|
|
|
void PaintHeaderFooter(nsIRenderingContext& aRenderingContext,
|
|
|
|
nsPoint aPt);
|
2007-02-07 07:46:44 +00:00
|
|
|
void PaintPageContent(nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
nsPoint aPt);
|
|
|
|
|
1999-02-18 22:23:36 +00:00
|
|
|
protected:
|
2006-03-26 21:30:36 +00:00
|
|
|
nsPageFrame(nsStyleContext* aContext);
|
2001-01-27 14:09:34 +00:00
|
|
|
virtual ~nsPageFrame();
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
eHeader,
|
|
|
|
eFooter
|
|
|
|
} nsHeaderFooterEnum;
|
|
|
|
|
|
|
|
nscoord GetXPosition(nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aRect,
|
|
|
|
PRInt32 aJust,
|
|
|
|
const nsString& aStr);
|
|
|
|
|
2006-07-14 03:02:37 +00:00
|
|
|
void DrawHeaderFooter(nsIRenderingContext& aRenderingContext,
|
2001-01-27 14:09:34 +00:00
|
|
|
nsHeaderFooterEnum aHeaderFooter,
|
|
|
|
PRInt32 aJust,
|
|
|
|
const nsString& sStr,
|
|
|
|
const nsRect& aRect,
|
|
|
|
nscoord aHeight,
|
2001-10-30 22:58:00 +00:00
|
|
|
nscoord aAscent,
|
2001-09-26 14:01:26 +00:00
|
|
|
nscoord aWidth);
|
|
|
|
|
2006-07-14 03:02:37 +00:00
|
|
|
void DrawHeaderFooter(nsIRenderingContext& aRenderingContext,
|
2001-09-26 14:01:26 +00:00
|
|
|
nsHeaderFooterEnum aHeaderFooter,
|
2006-07-14 03:02:37 +00:00
|
|
|
const nsString& aStrLeft,
|
|
|
|
const nsString& aStrRight,
|
|
|
|
const nsString& aStrCenter,
|
2001-09-26 14:01:26 +00:00
|
|
|
const nsRect& aRect,
|
2001-10-30 22:58:00 +00:00
|
|
|
nscoord aAscent,
|
2001-09-26 14:01:26 +00:00
|
|
|
nscoord aHeight);
|
2001-01-27 14:09:34 +00:00
|
|
|
|
2001-09-26 14:01:26 +00:00
|
|
|
void ProcessSpecialCodes(const nsString& aStr, nsString& aNewStr);
|
2001-01-27 14:09:34 +00:00
|
|
|
|
|
|
|
PRInt32 mPageNum;
|
|
|
|
PRInt32 mTotNumPages;
|
|
|
|
|
2001-11-03 14:59:39 +00:00
|
|
|
nsSharedPageData* mPD;
|
1998-04-13 20:24:54 +00:00
|
|
|
};
|
|
|
|
|
2002-03-17 21:35:08 +00:00
|
|
|
|
|
|
|
class nsPageBreakFrame : public nsLeafFrame {
|
|
|
|
|
2006-03-26 21:30:36 +00:00
|
|
|
nsPageBreakFrame(nsStyleContext* aContext);
|
2002-03-17 21:35:08 +00:00
|
|
|
~nsPageBreakFrame();
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD Reflow(nsPresContext* aPresContext,
|
2002-03-17 21:35:08 +00:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
2003-10-31 20:19:18 +00:00
|
|
|
virtual nsIAtom* GetType() const;
|
2002-03-17 21:35:08 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
virtual nscoord GetIntrinsicWidth();
|
|
|
|
|
2002-03-17 21:35:08 +00:00
|
|
|
PRBool mHaveReflowed;
|
|
|
|
|
2006-03-26 21:30:36 +00:00
|
|
|
friend nsIFrame* NS_NewPageBreakFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
2002-03-17 21:35:08 +00:00
|
|
|
};
|
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
#endif /* nsPageFrame_h___ */
|
|
|
|
|