2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef nsPrintOptionsX_h_
|
|
|
|
#define nsPrintOptionsX_h_
|
|
|
|
|
|
|
|
#include "nsPrintOptionsImpl.h"
|
|
|
|
|
|
|
|
class nsPrintOptionsX : public nsPrintOptions
|
|
|
|
{
|
|
|
|
public:
|
2008-09-24 19:26:58 -07:00
|
|
|
nsPrintOptionsX();
|
|
|
|
virtual ~nsPrintOptionsX();
|
2007-03-22 10:30:00 -07:00
|
|
|
protected:
|
2008-09-24 19:26:58 -07:00
|
|
|
nsresult _CreatePrintSettings(nsIPrintSettings **_retval);
|
2012-08-22 08:56:38 -07:00
|
|
|
nsresult ReadPrefs(nsIPrintSettings* aPS, const nsAString& aPrinterName, uint32_t aFlags);
|
|
|
|
nsresult WritePrefs(nsIPrintSettings* aPS, const nsAString& aPrinterName, uint32_t aFlags);
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsPrintOptionsX_h_
|