2010-10-07 12:19:33 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2010-10-07 12:19:33 -07:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef nsDeviceContextSpecQt_h___
|
|
|
|
#define nsDeviceContextSpecQt_h___
|
|
|
|
|
|
|
|
#include "nsIDeviceContextSpec.h"
|
|
|
|
#include "nsIPrintSettings.h"
|
|
|
|
#include "nsIPrintOptions.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
|
|
|
|
#include "nsCRT.h" /* should be <limits.h>? */
|
|
|
|
|
|
|
|
class nsDeviceContextSpecQt : public nsIDeviceContextSpec
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsDeviceContextSpecQt();
|
|
|
|
virtual ~nsDeviceContextSpecQt();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
NS_IMETHOD GetSurfaceForPrinter(gfxASurface** surface);
|
|
|
|
|
|
|
|
NS_IMETHOD Init(nsIWidget* aWidget,
|
|
|
|
nsIPrintSettings* aPS,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aIsPrintPreview);
|
2013-07-24 04:48:37 -07:00
|
|
|
NS_IMETHOD BeginDocument(const nsAString& aTitle,
|
2014-01-04 07:02:17 -08:00
|
|
|
char16_t* aPrintToFileName,
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t aStartPage,
|
|
|
|
int32_t aEndPage);
|
2010-10-07 12:19:33 -07:00
|
|
|
NS_IMETHOD EndDocument();
|
|
|
|
NS_IMETHOD BeginPage() { return NS_OK; }
|
|
|
|
NS_IMETHOD EndPage() { return NS_OK; }
|
|
|
|
|
|
|
|
NS_IMETHOD GetPath (const char** aPath);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
nsCOMPtr<nsIPrintSettings> mPrintSettings;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mToPrinter : 1; /* If true, print to printer */
|
|
|
|
bool mIsPPreview : 1; /* If true, is print preview */
|
2011-10-17 07:59:28 -07:00
|
|
|
char mPath[PATH_MAX]; /* If toPrinter = false, dest file */
|
2010-10-07 12:19:33 -07:00
|
|
|
char mPrinter[256]; /* Printer name */
|
2012-06-05 19:08:30 -07:00
|
|
|
nsCString mSpoolName;
|
|
|
|
nsCOMPtr<nsIFile> mSpoolFile;
|
2010-10-07 12:19:33 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
class nsPrinterEnumeratorQt : public nsIPrinterEnumerator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsPrinterEnumeratorQt();
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIPRINTERENUMERATOR
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* !nsDeviceContextSpecQt_h___ */
|