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___
|
|
|
|
|
2011-04-17 05:22:41 +04:00
|
|
|
#include "nsISupports.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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-11-14 05:05:13 +03:00
|
|
|
#define NS_IDEVICE_CONTEXT_SPEC_IID \
|
2016-01-05 13:08:57 +03:00
|
|
|
{ 0xf407cfba, 0xbe28, 0x46c9, \
|
|
|
|
{ 0x8a, 0xba, 0x04, 0x2d, 0xae, 0xbb, 0x4f, 0x23 } }
|
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)
|
2006-02-10 23:40:54 +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.
|
|
|
|
*/
|
|
|
|
NS_IMETHOD Init(nsIWidget *aWidget,
|
|
|
|
nsIPrintSettings* aPrintSettings,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aIsPrintPreview) = 0;
|
2006-12-09 20:18:56 +03:00
|
|
|
|
2016-06-03 13:27:31 +03:00
|
|
|
virtual already_AddRefed<PrintTarget> MakePrintTarget() = 0;
|
2006-11-30 02:40:16 +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;
|
|
|
|
}
|
|
|
|
|
2016-01-05 13:08:57 +03:00
|
|
|
/**
|
|
|
|
* Override to return something other than the default.
|
|
|
|
*
|
|
|
|
* @return DPI for printing.
|
|
|
|
*/
|
|
|
|
virtual float GetDPI() { return 72.0f; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Override to return something other than the default.
|
|
|
|
*
|
|
|
|
* @return the printing scale to be applied to the context for printing.
|
|
|
|
*/
|
|
|
|
virtual float GetPrintingScale() { return 1.0f; }
|
|
|
|
|
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;
|
2006-11-30 02:40:16 +03:00
|
|
|
|
|
|
|
NS_IMETHOD EndDocument() = 0;
|
2016-01-05 13:08:57 +03:00
|
|
|
NS_IMETHOD AbortDocument() { return EndDocument(); }
|
2007-01-27 07:06:59 +03:00
|
|
|
NS_IMETHOD BeginPage() = 0;
|
|
|
|
NS_IMETHOD EndPage() = 0;
|
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
|