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/. */
|
2014-02-18 12:58:22 +04:00
|
|
|
#ifndef nsSimplePageSequenceFrame_h___
|
|
|
|
#define nsSimplePageSequenceFrame_h___
|
1998-11-05 02:21:50 +03:00
|
|
|
|
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"
|
2013-08-22 22:32:52 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class HTMLCanvasElement;
|
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
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:
|
2013-07-24 15:48:55 +04:00
|
|
|
// This object a shared by all the nsPageFrames
|
|
|
|
// parented to a SimplePageSequenceFrame
|
2014-02-04 06:12:13 +04:00
|
|
|
nsSharedPageData() : mShrinkToFitRatio(1.0f) {}
|
2001-11-03 17:59:39 +03:00
|
|
|
|
2013-07-24 15:48:54 +04:00
|
|
|
nsString mDateTimeStr;
|
2013-07-24 15:48:54 +04:00
|
|
|
nsString mPageNumFormat;
|
|
|
|
nsString mPageNumAndTotalsFormat;
|
2013-07-24 15:48:37 +04:00
|
|
|
nsString mDocTitle;
|
|
|
|
nsString mDocURL;
|
2013-07-24 15:48:55 +04:00
|
|
|
nsFont mHeadFootFont;
|
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;
|
2002-09-20 01:45:07 +04:00
|
|
|
|
2014-02-04 06:12:13 +04: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 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
|
2017-04-30 18:30:08 +03:00
|
|
|
class nsSimplePageSequenceFrame final
|
|
|
|
: public nsContainerFrame
|
|
|
|
, public nsIPageSequenceFrame
|
|
|
|
{
|
1998-11-05 02:21:50 +03:00
|
|
|
public:
|
2014-05-25 02:20:40 +04:00
|
|
|
friend nsSimplePageSequenceFrame* 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
|
2017-01-18 03:27:03 +03:00
|
|
|
void Reflow(nsPresContext* aPresContext,
|
|
|
|
ReflowOutput& aDesiredSize,
|
|
|
|
const ReflowInput& aMaxSize,
|
|
|
|
nsReflowStatus& aStatus) override;
|
1998-11-05 02:21:50 +03:00
|
|
|
|
2017-01-18 03:27:03 +03:00
|
|
|
void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists) 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;}
|
2015-03-21 19:28:04 +03: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-15 02:18:09 +03:00
|
|
|
|
2002-09-20 01:45:07 +04:00
|
|
|
// For Shrink To Fit
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD GetSTFPercent(float& aSTFPercent) override;
|
2002-02-15 02:18:09 +03:00
|
|
|
|
2001-03-27 15:56:03 +04:00
|
|
|
// Async Printing
|
2013-07-24 15:48:37 +04:00
|
|
|
NS_IMETHOD StartPrint(nsPresContext* aPresContext,
|
2002-05-07 16:03:37 +04:00
|
|
|
nsIPrintSettings* aPrintSettings,
|
2013-07-24 15:48:37 +04:00
|
|
|
const nsAString& aDocTitle,
|
2015-03-21 19:28:04 +03: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 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
|
2017-01-18 03:27:03 +03:00
|
|
|
bool HonorPrintBackgroundSettings() override { return false; }
|
2011-06-10 14:07:26 +04:00
|
|
|
|
2017-01-18 03:27:03 +03:00
|
|
|
bool HasTransformGetter() const override { return true; }
|
2012-10-03 09:55:50 +04:00
|
|
|
|
2014-01-06 03:31:14 +04:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2017-01-18 03:27:03 +03:00
|
|
|
nsresult GetFrameName(nsAString& aResult) const override;
|
1999-11-02 01:12:45 +03:00
|
|
|
#endif
|
1998-12-07 06:43:02 +03:00
|
|
|
|
|
|
|
protected:
|
2014-09-01 07:36:37 +04:00
|
|
|
explicit 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
|
2013-07-24 15:48:54 +04:00
|
|
|
void SetDateTimeStr(const nsAString& aDateTimeStr);
|
2013-07-24 15:48:54 +04:00
|
|
|
void SetPageNumberFormat(const nsAString& 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.
|
2016-07-21 13:36:38 +03:00
|
|
|
void SetDesiredSize(ReflowOutput& aDesiredSize,
|
2016-07-21 13:36:39 +03:00
|
|
|
const ReflowInput& aReflowInput,
|
2011-06-10 14:07:26 +04:00
|
|
|
nscoord aWidth, nscoord aHeight);
|
|
|
|
|
2014-10-08 05:37:50 +04: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 15:48:55 +04:00
|
|
|
void DetermineWhetherToPrintPage();
|
|
|
|
nsIFrame* GetCurrentPageFrame();
|
2012-08-31 04:24:35 +04:00
|
|
|
|
2001-01-27 17:09:34 +03:00
|
|
|
nsMargin mMargin;
|
2009-05-12 14:13:09 +04:00
|
|
|
|
|
|
|
nsSize mSize;
|
|
|
|
nsSharedPageData* mPageData; // data shared by all the nsPageFrames
|
2001-03-27 15:56:03 +04:00
|
|
|
|
|
|
|
// Asynch Printing
|
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;
|
2015-10-18 08:24:48 +03:00
|
|
|
nsTArray<RefPtr<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
|
|
|
};
|
|
|
|
|
2014-02-18 12:58:22 +04:00
|
|
|
#endif /* nsSimplePageSequenceFrame_h___ */
|
1998-11-05 02:21:50 +03:00
|
|
|
|