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"
|
2001-01-27 17:09:34 +03:00
|
|
|
#include "nsIPrintOptions.h"
|
2013-08-22 22:32:52 +04:00
|
|
|
|
|
|
|
class nsIDateTimeFormat;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class HTMLCanvasElement;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
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;
|
2001-11-03 17:59:39 +03:00
|
|
|
nsCOMPtr<nsIPrintOptions> mPrintOptions;
|
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
|
1998-12-07 06:43:02 +03:00
|
|
|
class nsSimplePageSequenceFrame : 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
|
2014-05-13 04:47:52 +04:00
|
|
|
virtual void Reflow(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aMaxSize,
|
|
|
|
nsReflowStatus& aStatus) MOZ_OVERRIDE;
|
1998-11-05 02:21:50 +03:00
|
|
|
|
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
|
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,
|
|
|
|
const nsAString& aDocURL) MOZ_OVERRIDE;
|
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
|
2013-05-14 20:33:23 +04:00
|
|
|
virtual bool HonorPrintBackgroundSettings() MOZ_OVERRIDE { 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
|
|
|
*/
|
2013-05-14 20:33:23 +04:00
|
|
|
virtual nsIAtom* GetType() const MOZ_OVERRIDE;
|
2012-08-31 04:24:35 +04:00
|
|
|
|
2014-01-06 03:31:14 +04:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2014-02-18 11:47:48 +04:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const MOZ_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.
|
|
|
|
void SetDesiredSize(nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
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
|
|
|
|
|
|
|
// 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
|
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
|
|
|
};
|
|
|
|
|
2014-02-18 12:58:22 +04:00
|
|
|
#endif /* nsSimplePageSequenceFrame_h___ */
|
1998-11-05 02:21:50 +03:00
|
|
|
|