2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
#ifndef nsSimplePageSequence_h___
|
|
|
|
#define nsSimplePageSequence_h___
|
|
|
|
|
2012-09-14 09:10:08 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIPageSequenceFrame.h"
|
|
|
|
#include "nsContainerFrame.h"
|
|
|
|
#include "nsIPrintSettings.h"
|
|
|
|
#include "nsIPrintOptions.h"
|
2013-08-22 11:32:52 -07:00
|
|
|
|
|
|
|
class nsIDateTimeFormat;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class HTMLCanvasElement;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
//-----------------------------------------------
|
|
|
|
// This class maintains all the data that
|
|
|
|
// is used by all the page frame
|
|
|
|
// It lives while the nsSimplePageSequenceFrame lives
|
|
|
|
class nsSharedPageData {
|
|
|
|
public:
|
2013-07-24 04:48:55 -07:00
|
|
|
// This object a shared by all the nsPageFrames
|
|
|
|
// parented to a SimplePageSequenceFrame
|
|
|
|
nsSharedPageData() :
|
|
|
|
mPageContentXMost(0),
|
|
|
|
mPageContentSize(0)
|
|
|
|
{
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-07-24 04:48:54 -07:00
|
|
|
nsString mDateTimeStr;
|
2013-07-24 04:48:54 -07:00
|
|
|
nsString mPageNumFormat;
|
|
|
|
nsString mPageNumAndTotalsFormat;
|
2013-07-24 04:48:37 -07:00
|
|
|
nsString mDocTitle;
|
|
|
|
nsString mDocURL;
|
2013-07-24 04:48:55 -07:00
|
|
|
nsFont mHeadFootFont;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsSize mReflowSize;
|
|
|
|
nsMargin mReflowMargin;
|
|
|
|
// 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;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIPrintSettings> mPrintSettings;
|
|
|
|
nsCOMPtr<nsIPrintOptions> mPrintOptions;
|
|
|
|
|
|
|
|
nscoord mPageContentXMost; // xmost size from Reflow(width)
|
|
|
|
nscoord mPageContentSize; // constrained size (width)
|
|
|
|
};
|
|
|
|
|
|
|
|
// Simple page sequence frame class. Used when we're in paginated mode
|
|
|
|
class nsSimplePageSequenceFrame : public nsContainerFrame,
|
|
|
|
public nsIPageSequenceFrame {
|
|
|
|
public:
|
|
|
|
friend nsIFrame* NS_NewSimplePageSequenceFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
|
|
|
|
2009-01-12 11:20:59 -08:00
|
|
|
NS_DECL_QUERYFRAME
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// nsIFrame
|
|
|
|
NS_IMETHOD Reflow(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aMaxSize,
|
2013-05-14 09:33:23 -07:00
|
|
|
nsReflowStatus& aStatus) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-02-14 03:12:27 -08:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// nsIPageSequenceFrame
|
2012-08-22 08:56:38 -07:00
|
|
|
NS_IMETHOD SetPageNo(int32_t aPageNo) { return NS_OK;}
|
2012-09-14 09:10:08 -07: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; }
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// For Shrink To Fit
|
2012-09-14 09:10:08 -07:00
|
|
|
NS_IMETHOD GetSTFPercent(float& aSTFPercent) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Async Printing
|
2013-07-24 04:48:37 -07:00
|
|
|
NS_IMETHOD StartPrint(nsPresContext* aPresContext,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIPrintSettings* aPrintSettings,
|
2013-07-24 04:48:37 -07:00
|
|
|
const nsAString& aDocTitle,
|
|
|
|
const nsAString& aDocURL) MOZ_OVERRIDE;
|
2012-09-14 09:10:08 -07: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;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-06-10 03:07:26 -07:00
|
|
|
// We must allow Print Preview UI to have a background, no matter what the
|
|
|
|
// user's settings
|
2013-05-14 09:33:23 -07:00
|
|
|
virtual bool HonorPrintBackgroundSettings() MOZ_OVERRIDE { return false; }
|
2011-06-10 03:07:26 -07:00
|
|
|
|
2012-10-02 22:55:50 -07:00
|
|
|
virtual bool HasTransformGetter() const MOZ_OVERRIDE { return true; }
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
|
|
|
* Get the "type" of the frame
|
|
|
|
*
|
|
|
|
* @see nsGkAtoms::sequenceFrame
|
|
|
|
*/
|
2013-05-14 09:33:23 -07:00
|
|
|
virtual nsIAtom* GetType() const MOZ_OVERRIDE;
|
2012-08-30 17:24:35 -07:00
|
|
|
|
2012-06-25 12:59:42 -07:00
|
|
|
#ifdef DEBUG
|
2013-05-14 09:33:23 -07:00
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
protected:
|
|
|
|
nsSimplePageSequenceFrame(nsStyleContext* aContext);
|
|
|
|
virtual ~nsSimplePageSequenceFrame();
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
void SetPageNumberFormat(const char* aPropName, const char* aDefPropVal, bool aPageNumOnly);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// SharedPageData Helper methods
|
2013-07-24 04:48:54 -07:00
|
|
|
void SetDateTimeStr(const nsAString& aDateTimeStr);
|
2013-07-24 04:48:54 -07:00
|
|
|
void SetPageNumberFormat(const nsAString& aFormatStr, bool aForPageNumOnly);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-06-10 03:07:26 -07: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);
|
|
|
|
|
2013-07-24 04:48:55 -07:00
|
|
|
void DetermineWhetherToPrintPage();
|
|
|
|
nsIFrame* GetCurrentPageFrame();
|
2012-08-30 17:24:35 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsMargin mMargin;
|
2009-05-12 03:13:09 -07: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
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Asynch Printing
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t mPageNum;
|
|
|
|
int32_t mTotalPages;
|
|
|
|
int32_t mPrintRangeType;
|
|
|
|
int32_t mFromPageNum;
|
|
|
|
int32_t mToPageNum;
|
|
|
|
nsTArray<int32_t> mPageRanges;
|
2013-01-03 21:16:14 -08:00
|
|
|
nsTArray<nsRefPtr<mozilla::dom::HTMLCanvasElement> > mCurrentCanvasList;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Selection Printing Info
|
|
|
|
nscoord mSelectionHeight;
|
|
|
|
nscoord mYSelOffset;
|
|
|
|
|
2009-05-12 03:13:09 -07:00
|
|
|
// Asynch Printing
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mPrintThisPage;
|
|
|
|
bool mDoingPageRange;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mIsPrintingSelection;
|
2012-08-30 17:24:35 -07:00
|
|
|
|
|
|
|
bool mCalledBeginPage;
|
|
|
|
|
|
|
|
bool mCurrentCanvasListSetup;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsSimplePageSequence_h___ */
|
|
|
|
|