michael@0: /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ michael@0: /* ex: set tabstop=8 softtabstop=4 shiftwidth=4 expandtab: */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef nsPSPrinters_h___ michael@0: #define nsPSPrinters_h___ michael@0: michael@0: #include "nsString.h" michael@0: #include "nsTArray.h" michael@0: michael@0: class nsCUPSShim; michael@0: michael@0: class nsPSPrinterList { michael@0: public: michael@0: nsPSPrinterList(); michael@0: michael@0: /** michael@0: * Is the PostScript module enabled or disabled? michael@0: * @return true if enabled, michael@0: * false if not. michael@0: */ michael@0: bool Enabled(); michael@0: michael@0: /** michael@0: * Obtain a list of printers (print destinations) supported by the michael@0: * PostScript module, Each entry will be in the form /, michael@0: * where is a printer type string, and is the actual michael@0: * printer name. michael@0: * michael@0: * @param aList Upon return, this is populated with the list of michael@0: * printer names as described above, replacing any michael@0: * previous contents. Each entry is a UTF8 string. michael@0: * There should always be at least one entry. The michael@0: * first entry is the default print destination. michael@0: */ michael@0: void GetPrinterList(nsTArray& aList); michael@0: michael@0: enum PrinterType { michael@0: kTypeUnknown, // Not actually handled by the PS module michael@0: kTypePS, // Generic postscript module printer michael@0: kTypeCUPS // CUPS printer michael@0: }; michael@0: michael@0: /** michael@0: * Identify a printer's type from its name. michael@0: * @param aName The printer's full name as a UTF8 string, including michael@0: * the portion as described for GetPrinterList(). michael@0: * @return The PrinterType value for this name. michael@0: */ michael@0: static PrinterType GetPrinterType(const nsACString& aName); michael@0: }; michael@0: michael@0: #endif /* nsPSPrinters_h___ */