2017-10-27 20:33:53 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
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/. */
|
2017-12-04 20:44:17 +03:00
|
|
|
#ifndef nsPrintJob_h
|
|
|
|
#define nsPrintJob_h
|
2002-08-21 16:01:05 +04:00
|
|
|
|
2011-12-16 23:42:07 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2017-01-03 14:10:11 +03:00
|
|
|
#include "mozilla/UniquePtr.h"
|
2011-12-16 23:42:07 +04:00
|
|
|
|
2004-01-28 14:17:14 +03:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
|
2002-08-21 16:01:05 +04:00
|
|
|
#include "nsPrintObject.h"
|
|
|
|
#include "nsPrintData.h"
|
2011-08-25 00:54:29 +04:00
|
|
|
#include "nsFrameList.h"
|
2017-01-09 11:26:31 +03:00
|
|
|
#include "nsIFrame.h"
|
2012-09-04 17:29:27 +04:00
|
|
|
#include "nsIWebProgress.h"
|
2013-01-04 09:16:14 +04:00
|
|
|
#include "mozilla/dom/HTMLCanvasElement.h"
|
2012-09-04 17:29:27 +04:00
|
|
|
#include "nsIWebProgressListener.h"
|
|
|
|
#include "nsWeakReference.h"
|
2002-08-21 16:01:05 +04:00
|
|
|
|
|
|
|
// Interfaces
|
|
|
|
#include "nsIObserver.h"
|
|
|
|
|
|
|
|
// Classes
|
|
|
|
class nsPagePrintTimer;
|
2014-01-07 02:34:15 +04:00
|
|
|
class nsIDocShell;
|
2006-12-10 11:05:05 +03:00
|
|
|
class nsIDocumentViewerPrint;
|
|
|
|
class nsPrintObject;
|
|
|
|
class nsIDocShell;
|
2019-05-22 15:01:33 +03:00
|
|
|
class nsPageSequenceFrame;
|
2002-08-21 16:01:05 +04:00
|
|
|
|
2019-01-02 16:05:23 +03:00
|
|
|
namespace mozilla {
|
2019-04-16 10:25:10 +03:00
|
|
|
class PresShell;
|
2019-01-02 16:05:23 +03:00
|
|
|
namespace dom {
|
|
|
|
class Document;
|
|
|
|
}
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2017-12-04 20:44:17 +03:00
|
|
|
/**
|
|
|
|
* A print job may be instantiated either for printing to an actual physical
|
|
|
|
* printer, or for creating a print preview.
|
|
|
|
*/
|
|
|
|
class nsPrintJob final : public nsIObserver,
|
|
|
|
public nsIWebProgressListener,
|
|
|
|
public nsSupportsWeakReference {
|
2002-08-21 16:01:05 +04:00
|
|
|
public:
|
2017-12-06 15:47:19 +03:00
|
|
|
static nsresult GetGlobalPrintSettings(nsIPrintSettings** aPrintSettings);
|
|
|
|
static void CloseProgressDialog(nsIWebProgressListener* aWebProgressListener);
|
|
|
|
|
2017-12-06 13:12:44 +03:00
|
|
|
nsPrintJob() = default;
|
|
|
|
|
2002-08-21 16:01:05 +04:00
|
|
|
// nsISupports interface...
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
// nsIObserver
|
|
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
|
2012-09-04 17:29:27 +04:00
|
|
|
NS_DECL_NSIWEBPROGRESSLISTENER
|
|
|
|
|
2019-05-10 01:26:59 +03:00
|
|
|
/**
|
|
|
|
* Initialize for printing, or for creating a print preview document.
|
|
|
|
*
|
|
|
|
* aDocViewerPrint owns us.
|
|
|
|
*
|
|
|
|
* When called in preparation for printing, aOriginalDoc is aDocViewerPrint's
|
|
|
|
* document. The document/viewer may be for a sub-document (an iframe).
|
|
|
|
*
|
|
|
|
* When called in preparation for print preview, aOriginalDoc belongs to a
|
|
|
|
* different docViewer, in a different docShell, in a different TabGroup.
|
|
|
|
* In this case our aDocViewerPrint is the docViewer for the about:blank
|
|
|
|
* document in a new tab that the Firefox frontend code has created in
|
|
|
|
* preparation for PrintPreview to generate a print preview document in it.
|
|
|
|
*
|
|
|
|
* NOTE: In the case we're called for print preview, aOriginalDoc actually
|
|
|
|
* may not be the original document that the user selected to print. It
|
|
|
|
* is not the actual original document in the case when the user chooses to
|
|
|
|
* display a simplified version of a print preview document. In that
|
|
|
|
* instance the Firefox frontend code creates a second print preview tab,
|
|
|
|
* with a new docViewer and nsPrintJob, and passes the previous print preview
|
|
|
|
* document as aOriginalDoc (it doesn't want to pass the actual original
|
|
|
|
* document since it may have mutated)!
|
|
|
|
*/
|
|
|
|
nsresult Initialize(nsIDocumentViewerPrint* aDocViewerPrint,
|
|
|
|
nsIDocShell* aDocShell,
|
|
|
|
mozilla::dom::Document* aOriginalDoc, float aScreenDPI);
|
|
|
|
|
|
|
|
// Our nsIWebBrowserPrint implementation (nsDocumentViewer) defers to the
|
|
|
|
// following methods.
|
|
|
|
|
|
|
|
/**
|
|
|
|
* May be called immediately after initialization, or after one or more
|
|
|
|
* PrintPreview calls.
|
|
|
|
*/
|
2019-12-11 15:18:00 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT_BOUNDARY nsresult
|
|
|
|
Print(mozilla::dom::Document* aSourceDoc, nsIPrintSettings* aPrintSettings,
|
|
|
|
nsIWebProgressListener* aWebProgressListener);
|
2019-05-10 01:26:59 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generates a new print preview document and replaces our docViewer's
|
|
|
|
* document with it. (Note that this breaks the normal invariant that a
|
|
|
|
* Document and its nsDocumentViewer have an unchanging 1:1 relationship.)
|
|
|
|
*
|
|
|
|
* This may be called multiple times on the same instance in order to
|
|
|
|
* recreate the print preview document to take account of settings that the
|
|
|
|
* user has changed in the print preview interface. In this case aSourceDoc
|
|
|
|
* is actually our docViewer's current document!
|
|
|
|
*/
|
2019-12-11 15:18:00 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT_BOUNDARY nsresult PrintPreview(
|
|
|
|
mozilla::dom::Document* aSourceDoc, nsIPrintSettings* aPrintSettings,
|
|
|
|
nsIWebProgressListener* aWebProgressListener);
|
2019-05-10 01:26:59 +03:00
|
|
|
|
2019-04-12 16:53:26 +03:00
|
|
|
bool IsDoingPrint() const { return mIsDoingPrinting; }
|
|
|
|
bool IsDoingPrintPreview() const { return mIsDoingPrintPreview; }
|
|
|
|
bool IsIFrameSelected();
|
|
|
|
bool IsRangeSelection();
|
|
|
|
/// If the returned value is not greater than zero, an error occurred.
|
|
|
|
int32_t GetPrintPreviewNumPages();
|
|
|
|
already_AddRefed<nsIPrintSettings> GetCurrentPrintSettings();
|
2006-03-30 04:27:42 +04:00
|
|
|
|
2019-06-04 19:03:35 +03:00
|
|
|
// The setters here also update the DocViewer
|
|
|
|
void SetIsPrinting(bool aIsPrinting);
|
|
|
|
bool GetIsPrinting() { return mIsDoingPrinting; }
|
|
|
|
void SetIsPrintPreview(bool aIsPrintPreview);
|
|
|
|
bool GetIsPrintPreview() { return mIsDoingPrintPreview; }
|
|
|
|
bool GetIsCreatingPrintPreview() { return mIsCreatingPrintPreview; }
|
|
|
|
|
|
|
|
nsresult GetSeqFrameAndCountPages(nsIFrame*& aSeqFrame, int32_t& aCount);
|
|
|
|
|
|
|
|
void TurnScriptingOn(bool aDoTurnOn);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks to see if the document this print engine is associated with has any
|
|
|
|
* canvases that have a mozPrintCallback.
|
|
|
|
* https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement#Properties
|
|
|
|
*/
|
|
|
|
bool HasPrintCallbackCanvas() { return mHasMozPrintCallback; }
|
|
|
|
bool PrePrintPage();
|
|
|
|
bool PrintPage(nsPrintObject* aPOect, bool& aInRange);
|
|
|
|
bool DonePrintingPages(nsPrintObject* aPO, nsresult aResult);
|
|
|
|
|
|
|
|
nsresult CleanupOnFailure(nsresult aResult, bool aIsPrinting);
|
|
|
|
// If FinishPrintPreview() fails, caller may need to reset the state of the
|
|
|
|
// object, for example by calling CleanupOnFailure().
|
2019-12-11 15:18:00 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT_BOUNDARY nsresult FinishPrintPreview();
|
2019-06-04 19:03:35 +03:00
|
|
|
void FirePrintingErrorEvent(nsresult aPrintError);
|
|
|
|
bool CheckBeforeDestroy() const { return mPrt && mPrt->mPreparingForPrint; }
|
|
|
|
|
|
|
|
mozilla::PresShell* GetPrintPreviewPresShell() {
|
|
|
|
return mPrtPreview->mPrintObject->mPresShell;
|
|
|
|
}
|
|
|
|
|
|
|
|
float GetPrintPreviewScale() {
|
|
|
|
return mPrtPreview->mPrintObject->mPresContext->GetPrintPreviewScale();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult Cancel();
|
2002-08-21 16:01:05 +04:00
|
|
|
void Destroy();
|
2002-09-10 05:57:09 +04:00
|
|
|
void DestroyPrintingData();
|
2002-08-21 16:01:05 +04:00
|
|
|
|
2019-06-04 19:03:35 +03:00
|
|
|
private:
|
|
|
|
nsPrintJob& operator=(const nsPrintJob& aOther) = delete;
|
2006-12-10 11:05:05 +03:00
|
|
|
|
2019-06-04 19:03:35 +03:00
|
|
|
~nsPrintJob();
|
2002-08-21 16:01:05 +04:00
|
|
|
|
2019-12-11 15:18:00 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT nsresult DocumentReadyForPrinting();
|
|
|
|
MOZ_CAN_RUN_SCRIPT nsresult SetupToPrintContent();
|
2002-08-21 16:01:05 +04:00
|
|
|
nsresult EnablePOsForPrinting();
|
2002-09-20 01:45:07 +04:00
|
|
|
nsPrintObject* FindSmallestSTF();
|
2002-08-21 16:01:05 +04:00
|
|
|
|
2017-03-06 11:28:20 +03:00
|
|
|
bool PrintDocContent(const mozilla::UniquePtr<nsPrintObject>& aPO,
|
|
|
|
nsresult& aStatus);
|
|
|
|
nsresult DoPrint(const mozilla::UniquePtr<nsPrintObject>& aPO);
|
2002-08-21 16:01:05 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
void SetPrintPO(nsPrintObject* aPO, bool aPrint);
|
2002-08-21 16:01:05 +04:00
|
|
|
|
2019-05-17 01:16:11 +03:00
|
|
|
/**
|
|
|
|
* Filters out certain user events while Print Preview is open to prevent
|
|
|
|
* the user from interacting with the Print Preview document and breaking
|
|
|
|
* printing invariants.
|
|
|
|
*/
|
|
|
|
void SuppressPrintPreviewUserEvents();
|
2002-08-21 16:01:05 +04:00
|
|
|
|
2017-03-06 11:28:20 +03:00
|
|
|
nsresult ReflowDocList(const mozilla::UniquePtr<nsPrintObject>& aPO,
|
|
|
|
bool aSetPixelScale);
|
2002-08-21 16:01:05 +04:00
|
|
|
|
2019-04-13 15:43:57 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT_BOUNDARY
|
2017-03-06 11:28:20 +03:00
|
|
|
nsresult ReflowPrintObject(const mozilla::UniquePtr<nsPrintObject>& aPO);
|
2006-03-30 04:27:42 +04:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
void CalcNumPrintablePages(int32_t& aNumPages);
|
2011-09-29 10:19:26 +04:00
|
|
|
void ShowPrintProgress(bool aIsForPrinting, bool& aDoNotify);
|
2019-05-02 12:41:14 +03:00
|
|
|
void SetURLAndTitleOnProgressParams(
|
|
|
|
const mozilla::UniquePtr<nsPrintObject>& aPO,
|
|
|
|
nsIPrintProgressParams* aParams);
|
2013-07-24 15:48:37 +04:00
|
|
|
void EllipseLongString(nsAString& aStr, const uint32_t aLen, bool aDoFront);
|
2002-08-21 16:01:05 +04:00
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
bool IsThereARangeSelection(nsPIDOMWindowOuter* aDOMWin);
|
2002-08-21 16:01:05 +04:00
|
|
|
|
2017-03-06 11:28:20 +03:00
|
|
|
nsresult StartPagePrintTimer(const mozilla::UniquePtr<nsPrintObject>& aPO);
|
2002-08-21 16:01:05 +04:00
|
|
|
|
2019-04-12 16:53:26 +03:00
|
|
|
bool IsWindowsInOurSubTree(nsPIDOMWindowOuter* aDOMWindow) const;
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsThereAnIFrameSelected(nsIDocShell* aDocShell,
|
2016-01-30 20:05:36 +03:00
|
|
|
nsPIDOMWindowOuter* aDOMWin,
|
|
|
|
bool& aIsParentFrameSet);
|
2002-08-21 16:01:05 +04:00
|
|
|
|
|
|
|
// get the currently infocus frame for the document viewer
|
2019-04-12 16:53:26 +03:00
|
|
|
already_AddRefed<nsPIDOMWindowOuter> FindFocusedDOMWindow() const;
|
2002-08-21 16:01:05 +04:00
|
|
|
|
2020-03-03 23:08:53 +03:00
|
|
|
/// Customizes the behaviour of GetDisplayTitleAndURL.
|
|
|
|
enum class DocTitleDefault : uint32_t { eDocURLElseFallback, eFallback };
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the title and URL of the document for display in save-to-PDF dialogs,
|
|
|
|
* print spooler lists and page headers/footers. This will get the title/URL
|
|
|
|
* from the PrintSettings, if set, otherwise it will get them from the
|
|
|
|
* document.
|
|
|
|
*
|
|
|
|
* For the title specifically, if a value is not provided by the settings
|
|
|
|
* object or the document then, if eDocURLElseFallback is passed, the document
|
|
|
|
* URL will be returned as the title if it's non-empty (which should always be
|
|
|
|
* the case). Otherwise a non-empty fallback title will be returned.
|
|
|
|
*/
|
|
|
|
static void GetDisplayTitleAndURL(mozilla::dom::Document& aDoc,
|
|
|
|
nsIPrintSettings* aSettings,
|
|
|
|
DocTitleDefault aTitleDefault,
|
|
|
|
nsAString& aTitle, nsAString& aURLStr);
|
2004-02-01 15:10:57 +03:00
|
|
|
|
2019-12-11 15:18:00 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT nsresult
|
|
|
|
CommonPrint(bool aIsPrintPreview, nsIPrintSettings* aPrintSettings,
|
|
|
|
nsIWebProgressListener* aWebProgressListener,
|
|
|
|
mozilla::dom::Document* aSourceDoc);
|
2007-02-23 06:58:36 +03:00
|
|
|
|
2019-12-11 15:18:00 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT nsresult
|
|
|
|
DoCommonPrint(bool aIsPrintPreview, nsIPrintSettings* aPrintSettings,
|
|
|
|
nsIWebProgressListener* aWebProgressListener,
|
|
|
|
mozilla::dom::Document* aSourceDoc);
|
2007-02-23 06:58:36 +03:00
|
|
|
|
2002-08-21 16:01:05 +04:00
|
|
|
void FirePrintCompletionEvent();
|
2006-03-30 04:27:42 +04:00
|
|
|
|
2017-01-03 14:10:11 +03:00
|
|
|
void DisconnectPagePrintTimer();
|
|
|
|
|
2019-04-26 13:43:15 +03:00
|
|
|
/**
|
|
|
|
* This method is called to resume printing after all outstanding resources
|
|
|
|
* referenced by the static clone have finished loading. (It is possibly
|
|
|
|
* called synchronously if there are no resources to load.) While a static
|
|
|
|
* clone will generally just be able to reference the (already loaded)
|
|
|
|
* resources that the original document references, the static clone may
|
|
|
|
* reference additional resources that have not previously been loaded
|
|
|
|
* (if it has a 'print' style sheet, for example).
|
|
|
|
*/
|
2019-12-11 15:18:00 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT nsresult
|
|
|
|
ResumePrintAfterResourcesLoaded(bool aCleanupOnError);
|
2017-12-04 20:44:17 +03:00
|
|
|
|
|
|
|
nsresult SetRootView(nsPrintObject* aPO, bool& aDoReturn,
|
|
|
|
bool& aDocumentIsTopLevel, nsSize& aAdjSize);
|
|
|
|
nsView* GetParentViewForRoot();
|
|
|
|
bool DoSetPixelScale();
|
|
|
|
void UpdateZoomRatio(nsPrintObject* aPO, bool aSetPixelScale);
|
2019-12-11 15:18:00 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT nsresult ReconstructAndReflow(bool aDoSetPixelScale);
|
2020-03-13 18:46:13 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT_BOUNDARY nsresult UpdateSelectionAndShrinkPrintObject(
|
|
|
|
nsPrintObject* aPO, bool aDocumentIsTopLevel);
|
2019-12-11 15:18:00 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT nsresult InitPrintDocConstruction(bool aHandleError);
|
2017-12-04 20:44:17 +03:00
|
|
|
void FirePrintPreviewUpdateEvent();
|
|
|
|
|
|
|
|
void PageDone(nsresult aResult);
|
|
|
|
|
2019-05-10 01:26:59 +03:00
|
|
|
// The document that we were originally created for in order to print it or
|
|
|
|
// create a print preview of it. This may belong to mDocViewerPrint or may
|
|
|
|
// belong to a different docViewer in a different docShell. In reality, this
|
|
|
|
// also may not be the original document that the user selected to print (see
|
|
|
|
// the comment documenting Initialize() above).
|
|
|
|
RefPtr<mozilla::dom::Document> mOriginalDoc;
|
2017-12-06 13:12:44 +03:00
|
|
|
|
2019-05-10 01:26:59 +03:00
|
|
|
// The docViewer that owns us, and its docShell.
|
|
|
|
nsCOMPtr<nsIDocumentViewerPrint> mDocViewerPrint;
|
2019-05-08 16:54:26 +03:00
|
|
|
nsWeakPtr mDocShell;
|
2019-05-10 01:26:59 +03:00
|
|
|
|
2017-12-06 13:12:44 +03:00
|
|
|
WeakFrame mPageSeqFrame;
|
2017-03-06 10:35:39 +03:00
|
|
|
|
2017-05-09 11:08:20 +03:00
|
|
|
// We are the primary owner of our nsPrintData member vars. These vars
|
|
|
|
// are refcounted so that functions (e.g. nsPrintData methods) can create
|
|
|
|
// temporary owning references when they need to fire a callback that
|
2017-12-04 20:44:17 +03:00
|
|
|
// could conceivably destroy this nsPrintJob owner object and all its
|
2017-05-09 11:08:20 +03:00
|
|
|
// member-data.
|
|
|
|
RefPtr<nsPrintData> mPrt;
|
2002-08-21 16:01:05 +04:00
|
|
|
|
2019-12-09 16:36:55 +03:00
|
|
|
// The nsPrintData for our last print preview (replaced every time the
|
|
|
|
// user changes settings in the print preview window).
|
|
|
|
// Note: Our new print preview nsPrintData is stored in mPtr until we move it
|
|
|
|
// to mPrtPreview once we've finish creating the print preview.
|
2017-12-25 06:07:43 +03:00
|
|
|
RefPtr<nsPrintData> mPrtPreview;
|
2017-12-06 13:12:44 +03:00
|
|
|
|
2017-12-06 13:12:44 +03:00
|
|
|
nsPagePrintTimer* mPagePrintTimer = nullptr;
|
|
|
|
|
|
|
|
float mScreenDPI = 115.0f;
|
|
|
|
int32_t mLoadCounter = 0;
|
2002-08-21 16:01:05 +04:00
|
|
|
|
2017-12-06 13:12:44 +03:00
|
|
|
bool mIsCreatingPrintPreview = false;
|
|
|
|
bool mIsDoingPrinting = false;
|
|
|
|
bool mIsDoingPrintPreview = false;
|
|
|
|
bool mProgressDialogIsShown = false;
|
|
|
|
bool mDidLoadDataForPrinting = false;
|
|
|
|
bool mIsDestroying = false;
|
|
|
|
bool mDisallowSelectionPrint = false;
|
2019-05-10 16:52:25 +03:00
|
|
|
bool mIsForModalWindow = false;
|
|
|
|
bool mHasMozPrintCallback = false;
|
2002-08-21 16:01:05 +04:00
|
|
|
};
|
|
|
|
|
2017-12-04 20:44:17 +03:00
|
|
|
#endif // nsPrintJob_h
|