Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ |
michael@0 | 2 | /* ex: set tabstop=8 softtabstop=4 shiftwidth=4 expandtab: */ |
michael@0 | 3 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 6 | |
michael@0 | 7 | #ifndef nsPSPrinters_h___ |
michael@0 | 8 | #define nsPSPrinters_h___ |
michael@0 | 9 | |
michael@0 | 10 | #include "nsString.h" |
michael@0 | 11 | #include "nsTArray.h" |
michael@0 | 12 | |
michael@0 | 13 | class nsCUPSShim; |
michael@0 | 14 | |
michael@0 | 15 | class nsPSPrinterList { |
michael@0 | 16 | public: |
michael@0 | 17 | nsPSPrinterList(); |
michael@0 | 18 | |
michael@0 | 19 | /** |
michael@0 | 20 | * Is the PostScript module enabled or disabled? |
michael@0 | 21 | * @return true if enabled, |
michael@0 | 22 | * false if not. |
michael@0 | 23 | */ |
michael@0 | 24 | bool Enabled(); |
michael@0 | 25 | |
michael@0 | 26 | /** |
michael@0 | 27 | * Obtain a list of printers (print destinations) supported by the |
michael@0 | 28 | * PostScript module, Each entry will be in the form <type>/<name>, |
michael@0 | 29 | * where <type> is a printer type string, and <name> is the actual |
michael@0 | 30 | * printer name. |
michael@0 | 31 | * |
michael@0 | 32 | * @param aList Upon return, this is populated with the list of |
michael@0 | 33 | * printer names as described above, replacing any |
michael@0 | 34 | * previous contents. Each entry is a UTF8 string. |
michael@0 | 35 | * There should always be at least one entry. The |
michael@0 | 36 | * first entry is the default print destination. |
michael@0 | 37 | */ |
michael@0 | 38 | void GetPrinterList(nsTArray<nsCString>& aList); |
michael@0 | 39 | |
michael@0 | 40 | enum PrinterType { |
michael@0 | 41 | kTypeUnknown, // Not actually handled by the PS module |
michael@0 | 42 | kTypePS, // Generic postscript module printer |
michael@0 | 43 | kTypeCUPS // CUPS printer |
michael@0 | 44 | }; |
michael@0 | 45 | |
michael@0 | 46 | /** |
michael@0 | 47 | * Identify a printer's type from its name. |
michael@0 | 48 | * @param aName The printer's full name as a UTF8 string, including |
michael@0 | 49 | * the <type> portion as described for GetPrinterList(). |
michael@0 | 50 | * @return The PrinterType value for this name. |
michael@0 | 51 | */ |
michael@0 | 52 | static PrinterType GetPrinterType(const nsACString& aName); |
michael@0 | 53 | }; |
michael@0 | 54 | |
michael@0 | 55 | #endif /* nsPSPrinters_h___ */ |