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/. */
|
1998-11-05 02:21:50 +03:00
|
|
|
#ifndef nsSimplePageSequence_h___
|
|
|
|
#define nsSimplePageSequence_h___
|
|
|
|
|
2012-09-14 20:10:08 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
1998-12-07 06:43:02 +03:00
|
|
|
#include "nsIPageSequenceFrame.h"
|
2001-01-27 17:09:34 +03:00
|
|
|
#include "nsContainerFrame.h"
|
2002-01-01 15:58:53 +03:00
|
|
|
#include "nsIPrintSettings.h"
|
2001-01-27 17:09:34 +03:00
|
|
|
#include "nsIPrintOptions.h"
|
2004-02-16 08:31:25 +03:00
|
|
|
#include "nsIDateTimeFormat.h"
|
2013-01-04 09:16:14 +04:00
|
|
|
#include "mozilla/dom/HTMLCanvasElement.h"
|
1998-11-05 02:21:50 +03:00
|
|
|
|
2001-11-03 17:59:39 +03:00
|
|
|
//-----------------------------------------------
|
|
|
|
// This class maintains all the data that
|
|
|
|
// is used by all the page frame
|
|
|
|
// It lives while the nsSimplePageSequenceFrame lives
|
|
|
|
class nsSharedPageData {
|
|
|
|
public:
|
|
|
|
nsSharedPageData();
|
|
|
|
~nsSharedPageData();
|
|
|
|
|
|
|
|
PRUnichar * mDateTimeStr;
|
|
|
|
nsFont * mHeadFootFont;
|
|
|
|
PRUnichar * mPageNumFormat;
|
|
|
|
PRUnichar * mPageNumAndTotalsFormat;
|
2002-05-07 16:03:37 +04:00
|
|
|
PRUnichar * mDocTitle;
|
|
|
|
PRUnichar * mDocURL;
|
2001-11-03 17:59:39 +03:00
|
|
|
|
2006-03-30 04:27:42 +04:00
|
|
|
nsSize mReflowSize;
|
2001-11-03 17:59:39 +03:00
|
|
|
nsMargin mReflowMargin;
|
2006-04-11 05:48:48 +04:00
|
|
|
// Margin for headers and footers; it defaults to 4/100 of an inch on UNIX
|
|
|
|
// and 0 elsewhere; I think it has to do with some inconsistency in page size
|
|
|
|
// computations
|
|
|
|
nsMargin mEdgePaperMargin;
|
2001-11-03 17:59:39 +03:00
|
|
|
|
2002-01-01 15:58:53 +03:00
|
|
|
nsCOMPtr<nsIPrintSettings> mPrintSettings;
|
2001-11-03 17:59:39 +03:00
|
|
|
nsCOMPtr<nsIPrintOptions> mPrintOptions;
|
2002-09-20 01:45:07 +04:00
|
|
|
|
2002-09-26 15:25:04 +04:00
|
|
|
nscoord mPageContentXMost; // xmost size from Reflow(width)
|
|
|
|
nscoord mPageContentSize; // constrained size (width)
|
2001-11-03 17:59:39 +03:00
|
|
|
};
|
|
|
|
|
1998-11-05 02:21:50 +03:00
|
|
|
// Simple page sequence frame class. Used when we're in paginated mode
|
1998-12-07 06:43:02 +03:00
|
|
|
class nsSimplePageSequenceFrame : public nsContainerFrame,
|
|
|
|
public nsIPageSequenceFrame {
|
1998-11-05 02:21:50 +03:00
|
|
|
public:
|
2006-03-27 01:30:36 +04:00
|
|
|
friend nsIFrame* NS_NewSimplePageSequenceFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
1999-05-12 02:03:29 +04:00
|
|
|
|
2009-01-12 22:20:59 +03:00
|
|
|
NS_DECL_QUERYFRAME
|
2009-09-12 20:49:24 +04:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
1998-12-07 06:43:02 +03:00
|
|
|
|
2006-01-26 05:29:17 +03:00
|
|
|
// nsIFrame
|
2004-08-01 03:15:21 +04:00
|
|
|
NS_IMETHOD Reflow(nsPresContext* aPresContext,
|
1998-11-05 02:21:50 +03:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aMaxSize,
|
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
2013-02-14 15:12:27 +04:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists) MOZ_OVERRIDE;
|
2006-01-26 05:29:17 +03:00
|
|
|
|
1998-12-07 06:43:02 +03:00
|
|
|
// nsIPageSequenceFrame
|
2012-08-22 19:56:38 +04:00
|
|
|
NS_IMETHOD SetPageNo(int32_t aPageNo) { return NS_OK;}
|
2012-09-14 20:10:08 +04:00
|
|
|
NS_IMETHOD SetSelectionHeight(nscoord aYOffset, nscoord aHeight) MOZ_OVERRIDE { mYSelOffset = aYOffset; mSelectionHeight = aHeight; return NS_OK; }
|
|
|
|
NS_IMETHOD SetTotalNumPages(int32_t aTotal) MOZ_OVERRIDE { mTotalPages = aTotal; return NS_OK; }
|
2002-02-15 02:18:09 +03:00
|
|
|
|
2002-09-20 01:45:07 +04:00
|
|
|
// For Shrink To Fit
|
2012-09-14 20:10:08 +04:00
|
|
|
NS_IMETHOD GetSTFPercent(float& aSTFPercent) MOZ_OVERRIDE;
|
2002-02-15 02:18:09 +03:00
|
|
|
|
2001-03-27 15:56:03 +04:00
|
|
|
// Async Printing
|
2004-08-01 03:15:21 +04:00
|
|
|
NS_IMETHOD StartPrint(nsPresContext* aPresContext,
|
2002-05-07 16:03:37 +04:00
|
|
|
nsIPrintSettings* aPrintSettings,
|
|
|
|
PRUnichar* aDocTitle,
|
|
|
|
PRUnichar* aDocURL);
|
2012-09-14 20:10:08 +04:00
|
|
|
NS_IMETHOD PrePrintNextPage(nsITimerCallback* aCallback, bool* aDone) MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD PrintNextPage() MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD ResetPrintCanvasList() MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD GetCurrentPageNum(int32_t* aPageNum) MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD GetNumPages(int32_t* aNumPages) MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD IsDoingPrintRange(bool* aDoing) MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD GetPrintRange(int32_t* aFromPage, int32_t* aToPage) MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD DoPageEnd() MOZ_OVERRIDE;
|
2001-04-12 17:04:29 +04:00
|
|
|
|
2011-06-10 14:07:26 +04:00
|
|
|
// We must allow Print Preview UI to have a background, no matter what the
|
|
|
|
// user's settings
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual bool HonorPrintBackgroundSettings() { return false; }
|
2011-06-10 14:07:26 +04:00
|
|
|
|
2012-10-03 09:55:50 +04:00
|
|
|
virtual bool HasTransformGetter() const MOZ_OVERRIDE { return true; }
|
|
|
|
|
2002-03-04 15:55:20 +03:00
|
|
|
/**
|
|
|
|
* Get the "type" of the frame
|
|
|
|
*
|
2007-01-30 03:06:41 +03:00
|
|
|
* @see nsGkAtoms::sequenceFrame
|
2002-03-04 15:55:20 +03:00
|
|
|
*/
|
2003-10-31 23:19:18 +03:00
|
|
|
virtual nsIAtom* GetType() const;
|
2012-08-31 04:24:35 +04:00
|
|
|
|
2012-06-25 23:59:42 +04:00
|
|
|
#ifdef 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-07 06:43:02 +03:00
|
|
|
|
|
|
|
protected:
|
2006-03-27 01:30:36 +04:00
|
|
|
nsSimplePageSequenceFrame(nsStyleContext* aContext);
|
2001-01-27 17:09:34 +03:00
|
|
|
virtual ~nsSimplePageSequenceFrame();
|
1998-12-07 06:43:02 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
void SetPageNumberFormat(const char* aPropName, const char* aDefPropVal, bool aPageNumOnly);
|
2001-09-26 18:01:26 +04:00
|
|
|
|
2001-11-03 17:59:39 +03:00
|
|
|
// SharedPageData Helper methods
|
|
|
|
void SetDateTimeStr(PRUnichar * aDateTimeStr);
|
2011-09-29 10:19:26 +04:00
|
|
|
void SetPageNumberFormat(PRUnichar * aFormatStr, bool aForPageNumOnly);
|
2001-11-03 17:59:39 +03:00
|
|
|
|
2011-06-10 14:07:26 +04:00
|
|
|
// Sets the frame desired size to the size of the viewport, or the given
|
|
|
|
// nscoords, whichever is larger. Print scaling is applied in this function.
|
|
|
|
void SetDesiredSize(nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nscoord aWidth, nscoord aHeight);
|
|
|
|
|
2012-08-31 04:24:35 +04:00
|
|
|
void DetermineWhetherToPrintPage();
|
|
|
|
|
2001-01-27 17:09:34 +03:00
|
|
|
nsMargin mMargin;
|
2009-05-12 14:13:09 +04:00
|
|
|
|
|
|
|
// I18N date formatter service which we'll want to cache locally.
|
|
|
|
nsCOMPtr<nsIDateTimeFormat> mDateFormatter;
|
|
|
|
|
|
|
|
nsSize mSize;
|
|
|
|
nsSharedPageData* mPageData; // data shared by all the nsPageFrames
|
2001-03-27 15:56:03 +04:00
|
|
|
|
|
|
|
// Asynch Printing
|
2009-05-12 14:13:09 +04:00
|
|
|
nsIFrame * mCurrentPageFrame;
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t mPageNum;
|
|
|
|
int32_t mTotalPages;
|
|
|
|
int32_t mPrintRangeType;
|
|
|
|
int32_t mFromPageNum;
|
|
|
|
int32_t mToPageNum;
|
|
|
|
nsTArray<int32_t> mPageRanges;
|
2013-01-04 09:16:14 +04:00
|
|
|
nsTArray<nsRefPtr<mozilla::dom::HTMLCanvasElement> > mCurrentCanvasList;
|
2001-11-03 17:59:39 +03:00
|
|
|
|
|
|
|
// Selection Printing Info
|
|
|
|
nscoord mSelectionHeight;
|
|
|
|
nscoord mYSelOffset;
|
|
|
|
|
2009-05-12 14:13:09 +04:00
|
|
|
// Asynch Printing
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mPrintThisPage;
|
|
|
|
bool mDoingPageRange;
|
2004-02-16 08:31:25 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mIsPrintingSelection;
|
2012-08-31 04:24:35 +04:00
|
|
|
|
|
|
|
bool mCalledBeginPage;
|
|
|
|
|
|
|
|
bool mCurrentCanvasListSetup;
|
1998-11-05 02:21:50 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsSimplePageSequence_h___ */
|
|
|
|
|