2006-02-07 04:12:56 +03: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/. */
|
1998-11-14 05:05:13 +03:00
|
|
|
|
|
|
|
#ifndef nsIDeviceContextSpec_h___
|
|
|
|
#define nsIDeviceContextSpec_h___
|
|
|
|
|
2018-11-14 20:03:36 +03:00
|
|
|
#include "gfxPoint.h"
|
2011-04-17 05:22:41 +04:00
|
|
|
#include "nsISupports.h"
|
2020-09-11 14:37:40 +03:00
|
|
|
#include "mozilla/StaticPrefs_print.h"
|
2022-12-19 18:42:48 +03:00
|
|
|
#include "mozilla/gfx/PrintPromise.h"
|
2006-12-09 20:18:56 +03:00
|
|
|
|
|
|
|
class nsIWidget;
|
|
|
|
class nsIPrintSettings;
|
2006-02-10 23:40:54 +03:00
|
|
|
|
2016-01-05 13:08:57 +03:00
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
class DrawEventRecorder;
|
2016-06-03 13:27:31 +03:00
|
|
|
class PrintTarget;
|
2016-01-05 13:08:57 +03:00
|
|
|
} // namespace gfx
|
|
|
|
} // namespace mozilla
|
2018-11-30 13:46:48 +03:00
|
|
|
|
1998-11-14 05:05:13 +03:00
|
|
|
#define NS_IDEVICE_CONTEXT_SPEC_IID \
|
2018-11-30 13:46:48 +03:00
|
|
|
{ \
|
2016-01-05 13:08:57 +03:00
|
|
|
0xf407cfba, 0xbe28, 0x46c9, { \
|
|
|
|
0x8a, 0xba, 0x04, 0x2d, 0xae, 0xbb, 0x4f, 0x23 \
|
|
|
|
} \
|
|
|
|
}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
1998-11-14 05:05:13 +03:00
|
|
|
class nsIDeviceContextSpec : public nsISupports {
|
|
|
|
public:
|
2016-06-03 13:27:31 +03:00
|
|
|
typedef mozilla::gfx::PrintTarget PrintTarget;
|
|
|
|
|
2006-02-07 04:14:59 +03:00
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDEVICE_CONTEXT_SPEC_IID)
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2006-12-09 20:18:56 +03:00
|
|
|
/**
|
|
|
|
* Initialize the device context spec.
|
|
|
|
* @param aWidget A widget a dialog can be hosted in
|
|
|
|
* @param aPrintSettings Print settings for the print operation
|
|
|
|
* @param aIsPrintPreview True if creating Spec for PrintPreview
|
|
|
|
* @return NS_OK or a suitable error code.
|
|
|
|
*/
|
2022-05-23 22:34:40 +03:00
|
|
|
NS_IMETHOD Init(nsIPrintSettings* aPrintSettings, bool aIsPrintPreview) = 0;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2016-06-03 13:27:31 +03:00
|
|
|
virtual already_AddRefed<PrintTarget> MakePrintTarget() = 0;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2016-01-05 13:08:57 +03:00
|
|
|
/**
|
|
|
|
* If required override to return a recorder to record the print.
|
|
|
|
*
|
|
|
|
* @param aDrawEventRecorder out param for the recorder to use
|
|
|
|
* @return NS_OK or a suitable error code
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetDrawEventRecorder(
|
|
|
|
mozilla::gfx::DrawEventRecorder** aDrawEventRecorder) {
|
|
|
|
MOZ_ASSERT(aDrawEventRecorder);
|
|
|
|
*aDrawEventRecorder = nullptr;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2016-01-05 13:08:57 +03:00
|
|
|
/**
|
|
|
|
* @return DPI for printing.
|
|
|
|
*/
|
2022-05-20 20:33:23 +03:00
|
|
|
float GetDPI() { return mozilla::StaticPrefs::print_default_dpi(); }
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2016-01-05 13:08:57 +03:00
|
|
|
/**
|
|
|
|
* @return the printing scale to be applied to the context for printing.
|
|
|
|
*/
|
2022-05-20 20:33:23 +03:00
|
|
|
float GetPrintingScale();
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2018-03-29 03:13:10 +03:00
|
|
|
/**
|
|
|
|
* @return the point to translate the context to for printing.
|
|
|
|
*/
|
2022-05-20 20:33:23 +03:00
|
|
|
gfxPoint GetPrintingTranslate();
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2013-07-24 15:48:37 +04:00
|
|
|
NS_IMETHOD BeginDocument(const nsAString& aTitle,
|
2016-01-05 13:08:57 +03:00
|
|
|
const nsAString& aPrintToFileName,
|
2013-07-24 15:48:37 +04:00
|
|
|
int32_t aStartPage, int32_t aEndPage) = 0;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2022-12-19 18:42:48 +03:00
|
|
|
virtual RefPtr<mozilla::gfx::PrintEndDocumentPromise> EndDocument() = 0;
|
2007-01-27 07:06:59 +03:00
|
|
|
NS_IMETHOD BeginPage() = 0;
|
|
|
|
NS_IMETHOD EndPage() = 0;
|
2022-05-20 20:33:21 +03:00
|
|
|
|
|
|
|
protected:
|
2022-12-19 18:42:48 +03:00
|
|
|
static RefPtr<mozilla::gfx::PrintEndDocumentPromise>
|
|
|
|
EndDocumentPromiseFromResult(nsresult aResult, const char* aSite);
|
|
|
|
|
2022-05-20 20:33:21 +03:00
|
|
|
nsCOMPtr<nsIPrintSettings> mPrintSettings;
|
2022-05-20 20:33:22 +03:00
|
|
|
|
|
|
|
#ifdef MOZ_ENABLE_SKIA_PDF
|
|
|
|
// This variable is independant of nsIPrintSettings::kOutputFormatPDF (i.e.
|
|
|
|
// save-to-PDF). If set to true, then even when we print to a printer we
|
|
|
|
// output and send it PDF.
|
|
|
|
bool mPrintViaSkPDF = false;
|
|
|
|
#endif
|
1998-11-14 05:05:13 +03:00
|
|
|
};
|
|
|
|
|
2006-02-07 04:14:59 +03:00
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDeviceContextSpec, NS_IDEVICE_CONTEXT_SPEC_IID)
|
1998-11-14 05:05:13 +03:00
|
|
|
#endif
|