2017-10-27 17:33:53 +00: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 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/. */
|
2018-12-05 18:44:03 +00:00
|
|
|
|
2002-08-21 12:01:05 +00:00
|
|
|
#ifndef nsIDocumentViewerPrint_h___
|
|
|
|
#define nsIDocumentViewerPrint_h___
|
|
|
|
|
|
|
|
#include "nsISupports.h"
|
2018-03-29 11:15:46 +00:00
|
|
|
#include "mozilla/UniquePtr.h"
|
2002-08-21 12:01:05 +00:00
|
|
|
|
2016-02-24 07:01:11 +00:00
|
|
|
namespace mozilla {
|
2019-04-16 02:47:26 +00:00
|
|
|
class PresShell;
|
2018-03-29 11:15:46 +00:00
|
|
|
class ServoStyleSet;
|
2016-02-24 07:01:11 +00:00
|
|
|
} // namespace mozilla
|
2009-12-11 04:02:13 +00:00
|
|
|
class nsPresContext;
|
2013-01-05 03:12:24 +00:00
|
|
|
class nsViewManager;
|
2002-08-21 12:01:05 +00:00
|
|
|
|
2009-12-11 04:02:13 +00:00
|
|
|
// {c6f255cf-cadd-4382-b57f-cd2a9874169b}
|
2002-08-21 12:01:05 +00:00
|
|
|
#define NS_IDOCUMENT_VIEWER_PRINT_IID \
|
2018-11-30 10:46:48 +00:00
|
|
|
{ \
|
2009-12-11 04:02:13 +00:00
|
|
|
0xc6f255cf, 0xcadd, 0x4382, { \
|
|
|
|
0xb5, 0x7f, 0xcd, 0x2a, 0x98, 0x74, 0x16, 0x9b \
|
|
|
|
} \
|
|
|
|
}
|
2002-08-21 12:01:05 +00:00
|
|
|
|
|
|
|
/**
|
2006-12-10 08:05:05 +00:00
|
|
|
* A DocumentViewerPrint is an INTERNAL Interface used for interaction
|
2017-12-04 17:44:17 +00:00
|
|
|
* between the DocumentViewer and nsPrintJob.
|
2002-08-21 12:01:05 +00:00
|
|
|
*/
|
|
|
|
class nsIDocumentViewerPrint : public nsISupports {
|
|
|
|
public:
|
2005-11-11 14:36:26 +00:00
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOCUMENT_VIEWER_PRINT_IID)
|
2002-08-21 12:01:05 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual void SetIsPrinting(bool aIsPrinting) = 0;
|
|
|
|
virtual bool GetIsPrinting() = 0;
|
2002-08-21 12:01:05 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual void SetIsPrintPreview(bool aIsPrintPreview) = 0;
|
|
|
|
virtual bool GetIsPrintPreview() = 0;
|
2002-08-21 12:01:05 +00:00
|
|
|
|
2018-01-08 16:59:31 +00:00
|
|
|
/**
|
|
|
|
* This is used by nsPagePrintTimer to make nsDocumentViewer::Destroy()
|
|
|
|
* a no-op until printing is finished. That prevents the nsDocumentViewer
|
|
|
|
* and its document, presshell and prescontext from going away.
|
|
|
|
*/
|
|
|
|
virtual void IncrementDestroyBlockedCount() = 0;
|
|
|
|
virtual void DecrementDestroyBlockedCount() = 0;
|
2002-08-21 12:01:05 +00:00
|
|
|
|
|
|
|
virtual void OnDonePrinting() = 0;
|
|
|
|
|
2009-12-11 04:02:13 +00:00
|
|
|
/**
|
2011-10-17 14:59:28 +00:00
|
|
|
* Returns true is InitializeForPrintPreview() has been called.
|
2009-12-11 04:02:13 +00:00
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual bool IsInitializedForPrintPreview() = 0;
|
2009-12-11 04:02:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Marks this viewer to be used for print preview.
|
|
|
|
*/
|
|
|
|
virtual void InitializeForPrintPreview() = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Replaces the current presentation with print preview presentation.
|
|
|
|
*/
|
2013-01-05 03:12:24 +00:00
|
|
|
virtual void SetPrintPreviewPresentation(nsViewManager* aViewManager,
|
2009-12-11 04:02:13 +00:00
|
|
|
nsPresContext* aPresContext,
|
2019-04-16 02:47:26 +00:00
|
|
|
mozilla::PresShell* aPresShell) = 0;
|
2002-08-21 12:01:05 +00:00
|
|
|
};
|
|
|
|
|
2005-11-11 14:36:26 +00:00
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDocumentViewerPrint,
|
|
|
|
NS_IDOCUMENT_VIEWER_PRINT_IID)
|
|
|
|
|
2002-10-08 13:17:56 +00:00
|
|
|
/* Use this macro when declaring classes that implement this interface. */
|
|
|
|
#define NS_DECL_NSIDOCUMENTVIEWERPRINT \
|
2016-02-29 23:09:13 +00:00
|
|
|
void SetIsPrinting(bool aIsPrinting) override; \
|
|
|
|
bool GetIsPrinting() override; \
|
|
|
|
void SetIsPrintPreview(bool aIsPrintPreview) override; \
|
|
|
|
bool GetIsPrintPreview() override; \
|
2018-01-08 16:59:31 +00:00
|
|
|
void IncrementDestroyBlockedCount() override; \
|
|
|
|
void DecrementDestroyBlockedCount() override; \
|
2016-02-29 23:09:13 +00:00
|
|
|
void OnDonePrinting() override; \
|
|
|
|
bool IsInitializedForPrintPreview() override; \
|
|
|
|
void InitializeForPrintPreview() override; \
|
|
|
|
void SetPrintPreviewPresentation(nsViewManager* aViewManager, \
|
|
|
|
nsPresContext* aPresContext, \
|
2019-04-16 02:47:26 +00:00
|
|
|
mozilla::PresShell* aPresShell) override;
|
2002-10-08 13:17:56 +00:00
|
|
|
|
2002-08-21 12:01:05 +00:00
|
|
|
#endif /* nsIDocumentViewerPrint_h___ */
|