2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
1998-04-13 20:24:54 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* The contents of this file are subject to the Netscape 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/NPL/
|
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.
|
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* 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.
|
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
|
|
|
|
* either 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 NPL, 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 NPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** 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"
|
|
|
|
#include "nsIPrintOptions.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:
|
1999-12-04 23:49:50 +00:00
|
|
|
friend nsresult NS_NewPageFrame(nsIPresShell* aPresShell, nsIFrame** aResult);
|
1999-02-18 22:23:36 +00:00
|
|
|
|
2001-01-27 14:09:34 +00:00
|
|
|
// nsIFrame
|
2001-11-03 14:59:39 +00:00
|
|
|
NS_IMETHOD SetInitialChildList(nsIPresContext* aPresContext,
|
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aChildList);
|
|
|
|
|
1999-11-24 06:03:41 +00:00
|
|
|
NS_IMETHOD Reflow(nsIPresContext* 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
|
|
|
|
|
|
|
NS_IMETHOD Paint(nsIPresContext* aPresContext,
|
|
|
|
nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aDirtyRect,
|
2001-09-19 12:35:19 +00:00
|
|
|
nsFramePaintLayer aWhichLayer,
|
|
|
|
PRUint32 aFlags = 0);
|
2001-01-27 14:09:34 +00:00
|
|
|
|
1999-03-05 04:28:07 +00:00
|
|
|
NS_IMETHOD IsPercentageBase(PRBool& aBase) const;
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1999-02-14 03:47:33 +00:00
|
|
|
/**
|
|
|
|
* Get the "type" of the frame
|
|
|
|
*
|
|
|
|
* @see nsLayoutAtoms::pageFrame
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetFrameType(nsIAtom** aType) const;
|
|
|
|
|
2001-04-12 13:04:29 +00:00
|
|
|
#ifdef NS_DEBUG
|
1998-04-13 20:24:54 +00:00
|
|
|
// Debugging
|
2001-11-14 01:33:42 +00:00
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const;
|
2001-04-12 13:04:29 +00:00
|
|
|
void SetDebugFD(FILE* aFD) { mDebugFD = aFD; }
|
|
|
|
FILE * mDebugFD;
|
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);
|
|
|
|
|
2001-04-12 13:04:29 +00:00
|
|
|
virtual void SuppressHeadersAndFooters(PRBool aDoSup) { mSupressHF = aDoSup; }
|
|
|
|
virtual void SetClipRect(nsRect* aClipRect) { mClipRect = *aClipRect; }
|
|
|
|
|
2001-11-03 21:49:38 +00:00
|
|
|
virtual void SetSharedPageData(nsSharedPageData* aPD) { mPD = aPD; }
|
2001-01-27 14:09:34 +00:00
|
|
|
|
1999-02-18 22:23:36 +00:00
|
|
|
protected:
|
|
|
|
nsPageFrame();
|
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);
|
|
|
|
|
|
|
|
void DrawHeaderFooter(nsIRenderingContext& aRenderingContext,
|
|
|
|
nsIFrame * aFrame,
|
|
|
|
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);
|
|
|
|
|
|
|
|
void DrawHeaderFooter(nsIRenderingContext& aRenderingContext,
|
|
|
|
nsIFrame * aFrame,
|
|
|
|
nsHeaderFooterEnum aHeaderFooter,
|
|
|
|
PRInt32 aJust,
|
|
|
|
const nsString& aStr1,
|
|
|
|
const nsString& aStr2,
|
|
|
|
const nsString& aStr3,
|
|
|
|
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
|
|
|
|
|
|
|
nsCOMPtr<nsIPrintOptions> mPrintOptions;
|
|
|
|
PRInt32 mPageNum;
|
|
|
|
PRInt32 mTotNumPages;
|
|
|
|
nsMargin mMargin;
|
|
|
|
|
2001-04-12 13:04:29 +00:00
|
|
|
PRPackedBool mSupressHF;
|
|
|
|
nsRect mClipRect;
|
|
|
|
|
2001-11-03 14:59:39 +00:00
|
|
|
nsSharedPageData* mPD;
|
2001-01-27 14:09:34 +00:00
|
|
|
|
2001-12-04 22:46:41 +00:00
|
|
|
private:
|
|
|
|
void DrawBackground(nsIPresContext* aPresContext,
|
|
|
|
nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aDirtyRect);
|
1998-04-13 20:24:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsPageFrame_h___ */
|
|
|
|
|