2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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/. */
|
2014-02-18 08:58:22 +00:00
|
|
|
#ifndef nsSimplePageSequenceFrame_h___
|
|
|
|
#define nsSimplePageSequenceFrame_h___
|
1998-11-04 23:21:50 +00:00
|
|
|
|
2012-09-14 16:10:08 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
1998-12-07 03:43:02 +00:00
|
|
|
#include "nsIPageSequenceFrame.h"
|
2001-01-27 14:09:34 +00:00
|
|
|
#include "nsContainerFrame.h"
|
2002-01-01 12:58:53 +00:00
|
|
|
#include "nsIPrintSettings.h"
|
2001-01-27 14:09:34 +00:00
|
|
|
#include "nsIPrintOptions.h"
|
2013-08-22 18:32:52 +00:00
|
|
|
|
|
|
|
class nsIDateTimeFormat;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class HTMLCanvasElement;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
1998-11-04 23:21:50 +00:00
|
|
|
|
2001-11-03 14:59:39 +00: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 11:48:55 +00:00
|
|
|
// This object a shared by all the nsPageFrames
|
|
|
|
// parented to a SimplePageSequenceFrame
|
2014-02-04 02:12:13 +00:00
|
|
|
nsSharedPageData() : mShrinkToFitRatio(1.0f) {}
|
2001-11-03 14:59:39 +00:00
|
|
|
|
2013-07-24 11:48:54 +00:00
|
|
|
nsString mDateTimeStr;
|
2013-07-24 11:48:54 +00:00
|
|
|
nsString mPageNumFormat;
|
|
|
|
nsString mPageNumAndTotalsFormat;
|
2013-07-24 11:48:37 +00:00
|
|
|
nsString mDocTitle;
|
|
|
|
nsString mDocURL;
|
2013-07-24 11:48:55 +00:00
|
|
|
nsFont mHeadFootFont;
|
2001-11-03 14:59:39 +00:00
|
|
|
|
2006-03-30 00:27:42 +00:00
|
|
|
nsSize mReflowSize;
|
2001-11-03 14:59:39 +00:00
|
|
|
nsMargin mReflowMargin;
|
2006-04-11 01:48:48 +00: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 14:59:39 +00:00
|
|
|
|
2002-01-01 12:58:53 +00:00
|
|
|
nsCOMPtr<nsIPrintSettings> mPrintSettings;
|
2001-11-03 14:59:39 +00:00
|
|
|
nsCOMPtr<nsIPrintOptions> mPrintOptions;
|
2002-09-19 21:45:07 +00:00
|
|
|
|
2014-02-04 02:12:13 +00:00
|
|
|
// The scaling ratio we need to apply to make all pages fit horizontally. It's
|
|
|
|
// the minimum "ComputedWidth / OverflowWidth" ratio of all page content frames
|
|
|
|
// that overflowed. It's 1.0 if none overflowed horizontally.
|
|
|
|
float mShrinkToFitRatio;
|
2001-11-03 14:59:39 +00:00
|
|
|
};
|
|
|
|
|
1998-11-04 23:21:50 +00:00
|
|
|
// Simple page sequence frame class. Used when we're in paginated mode
|
1998-12-07 03:43:02 +00:00
|
|
|
class nsSimplePageSequenceFrame : public nsContainerFrame,
|
|
|
|
public nsIPageSequenceFrame {
|
1998-11-04 23:21:50 +00:00
|
|
|
public:
|
2014-05-24 22:20:40 +00:00
|
|
|
friend nsSimplePageSequenceFrame* NS_NewSimplePageSequenceFrame(nsIPresShell* aPresShell,
|
|
|
|
nsStyleContext* aContext);
|
1999-05-11 22:03:29 +00:00
|
|
|
|
2009-01-12 19:20:59 +00:00
|
|
|
NS_DECL_QUERYFRAME
|
2009-09-12 16:49:24 +00:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
1998-12-07 03:43:02 +00:00
|
|
|
|
2006-01-26 02:29:17 +00:00
|
|
|
// nsIFrame
|
2014-05-13 00:47:52 +00:00
|
|
|
virtual void Reflow(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aMaxSize,
|
2015-03-21 16:28:04 +00:00
|
|
|
nsReflowStatus& aStatus) override;
|
1998-11-04 23:21:50 +00:00
|
|
|
|
2013-02-14 11:12:27 +00:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
2015-03-21 16:28:04 +00:00
|
|
|
const nsDisplayListSet& aLists) override;
|
2006-01-26 02:29:17 +00:00
|
|
|
|
1998-12-07 03:43:02 +00:00
|
|
|
// nsIPageSequenceFrame
|
2012-08-22 15:56:38 +00:00
|
|
|
NS_IMETHOD SetPageNo(int32_t aPageNo) { return NS_OK;}
|
2015-03-21 16:28:04 +00:00
|
|
|
NS_IMETHOD SetSelectionHeight(nscoord aYOffset, nscoord aHeight) override { mYSelOffset = aYOffset; mSelectionHeight = aHeight; return NS_OK; }
|
|
|
|
NS_IMETHOD SetTotalNumPages(int32_t aTotal) override { mTotalPages = aTotal; return NS_OK; }
|
2002-02-14 23:18:09 +00:00
|
|
|
|
2002-09-19 21:45:07 +00:00
|
|
|
// For Shrink To Fit
|
2015-03-21 16:28:04 +00:00
|
|
|
NS_IMETHOD GetSTFPercent(float& aSTFPercent) override;
|
2002-02-14 23:18:09 +00:00
|
|
|
|
2001-03-27 11:56:03 +00:00
|
|
|
// Async Printing
|
2013-07-24 11:48:37 +00:00
|
|
|
NS_IMETHOD StartPrint(nsPresContext* aPresContext,
|
2002-05-07 12:03:37 +00:00
|
|
|
nsIPrintSettings* aPrintSettings,
|
2013-07-24 11:48:37 +00:00
|
|
|
const nsAString& aDocTitle,
|
2015-03-21 16:28:04 +00:00
|
|
|
const nsAString& aDocURL) override;
|
|
|
|
NS_IMETHOD PrePrintNextPage(nsITimerCallback* aCallback, bool* aDone) override;
|
|
|
|
NS_IMETHOD PrintNextPage() override;
|
|
|
|
NS_IMETHOD ResetPrintCanvasList() override;
|
|
|
|
NS_IMETHOD GetCurrentPageNum(int32_t* aPageNum) override;
|
|
|
|
NS_IMETHOD GetNumPages(int32_t* aNumPages) override;
|
|
|
|
NS_IMETHOD IsDoingPrintRange(bool* aDoing) override;
|
|
|
|
NS_IMETHOD GetPrintRange(int32_t* aFromPage, int32_t* aToPage) override;
|
|
|
|
NS_IMETHOD DoPageEnd() override;
|
2001-04-12 13:04:29 +00:00
|
|
|
|
2011-06-10 10:07:26 +00:00
|
|
|
// We must allow Print Preview UI to have a background, no matter what the
|
|
|
|
// user's settings
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual bool HonorPrintBackgroundSettings() override { return false; }
|
2011-06-10 10:07:26 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual bool HasTransformGetter() const override { return true; }
|
2012-10-03 05:55:50 +00:00
|
|
|
|
2002-03-04 12:55:20 +00:00
|
|
|
/**
|
|
|
|
* Get the "type" of the frame
|
|
|
|
*
|
2007-01-30 00:06:41 +00:00
|
|
|
* @see nsGkAtoms::sequenceFrame
|
2002-03-04 12:55:20 +00:00
|
|
|
*/
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nsIAtom* GetType() const override;
|
2012-08-31 00:24:35 +00:00
|
|
|
|
2014-01-05 23:31:14 +00:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const override;
|
1999-11-01 22:12:45 +00:00
|
|
|
#endif
|
1998-12-07 03:43:02 +00:00
|
|
|
|
|
|
|
protected:
|
2014-09-01 03:36:37 +00:00
|
|
|
explicit nsSimplePageSequenceFrame(nsStyleContext* aContext);
|
2001-01-27 14:09:34 +00:00
|
|
|
virtual ~nsSimplePageSequenceFrame();
|
1998-12-07 03:43:02 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
void SetPageNumberFormat(const char* aPropName, const char* aDefPropVal, bool aPageNumOnly);
|
2001-09-26 14:01:26 +00:00
|
|
|
|
2001-11-03 14:59:39 +00:00
|
|
|
// SharedPageData Helper methods
|
2013-07-24 11:48:54 +00:00
|
|
|
void SetDateTimeStr(const nsAString& aDateTimeStr);
|
2013-07-24 11:48:54 +00:00
|
|
|
void SetPageNumberFormat(const nsAString& aFormatStr, bool aForPageNumOnly);
|
2001-11-03 14:59:39 +00:00
|
|
|
|
2011-06-10 10:07:26 +00: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);
|
|
|
|
|
2014-10-08 01:37:50 +00:00
|
|
|
// Helper function to compute the offset needed to center a child
|
|
|
|
// page-frame's margin-box inside our content-box.
|
|
|
|
nscoord ComputeCenteringMargin(nscoord aContainerContentBoxWidth,
|
|
|
|
nscoord aChildPaddingBoxWidth,
|
|
|
|
const nsMargin& aChildPhysicalMargin);
|
|
|
|
|
|
|
|
|
2013-07-24 11:48:55 +00:00
|
|
|
void DetermineWhetherToPrintPage();
|
|
|
|
nsIFrame* GetCurrentPageFrame();
|
2012-08-31 00:24:35 +00:00
|
|
|
|
2001-01-27 14:09:34 +00:00
|
|
|
nsMargin mMargin;
|
2009-05-12 10:13:09 +00: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 11:56:03 +00:00
|
|
|
|
|
|
|
// Asynch Printing
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t mPageNum;
|
|
|
|
int32_t mTotalPages;
|
|
|
|
int32_t mPrintRangeType;
|
|
|
|
int32_t mFromPageNum;
|
|
|
|
int32_t mToPageNum;
|
|
|
|
nsTArray<int32_t> mPageRanges;
|
2013-01-04 05:16:14 +00:00
|
|
|
nsTArray<nsRefPtr<mozilla::dom::HTMLCanvasElement> > mCurrentCanvasList;
|
2001-11-03 14:59:39 +00:00
|
|
|
|
|
|
|
// Selection Printing Info
|
|
|
|
nscoord mSelectionHeight;
|
|
|
|
nscoord mYSelOffset;
|
|
|
|
|
2009-05-12 10:13:09 +00:00
|
|
|
// Asynch Printing
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mPrintThisPage;
|
|
|
|
bool mDoingPageRange;
|
2004-02-16 05:31:25 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mIsPrintingSelection;
|
2012-08-31 00:24:35 +00:00
|
|
|
|
|
|
|
bool mCalledBeginPage;
|
|
|
|
|
|
|
|
bool mCurrentCanvasListSetup;
|
1998-11-04 23:21:50 +00:00
|
|
|
};
|
|
|
|
|
2014-02-18 08:58:22 +00:00
|
|
|
#endif /* nsSimplePageSequenceFrame_h___ */
|
1998-11-04 23:21:50 +00:00
|
|
|
|