2007-01-11 21:54:29 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
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/. */
|
2007-01-11 21:54:29 +00:00
|
|
|
|
2007-01-18 06:34:07 +00:00
|
|
|
#ifndef nsPrintOptionsX_h_
|
|
|
|
#define nsPrintOptionsX_h_
|
2007-01-11 21:54:29 +00:00
|
|
|
|
|
|
|
#include "nsPrintOptionsImpl.h"
|
|
|
|
|
|
|
|
class nsPrintOptionsX : public nsPrintOptions
|
|
|
|
{
|
|
|
|
public:
|
2008-09-25 02:26:58 +00:00
|
|
|
nsPrintOptionsX();
|
|
|
|
virtual ~nsPrintOptionsX();
|
2007-01-11 21:54:29 +00:00
|
|
|
protected:
|
2008-09-25 02:26:58 +00:00
|
|
|
nsresult _CreatePrintSettings(nsIPrintSettings **_retval);
|
|
|
|
nsresult ReadPrefs(nsIPrintSettings* aPS, const nsAString& aPrinterName, PRUint32 aFlags);
|
|
|
|
nsresult WritePrefs(nsIPrintSettings* aPS, const nsAString& aPrinterName, PRUint32 aFlags);
|
2007-01-11 21:54:29 +00:00
|
|
|
};
|
|
|
|
|
2007-01-18 06:34:07 +00:00
|
|
|
#endif // nsPrintOptionsX_h_
|