2006-02-07 04:12:56 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 15:12:37 +04: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/. */
|
2006-02-07 04:12:08 +03:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
2020-07-05 22:00:43 +03:00
|
|
|
#include "nsIPrinter.idl"
|
2006-02-07 04:13:05 +03:00
|
|
|
#include "nsIPrintSettings.idl"
|
2006-02-07 04:12:08 +03:00
|
|
|
|
2007-05-06 15:29:41 +04:00
|
|
|
[scriptable, uuid(5e738fff-404c-4c94-9189-e8f2cce93e94)]
|
2020-07-05 22:00:43 +03:00
|
|
|
interface nsIPrinterList : nsISupports
|
2006-02-07 04:13:09 +03:00
|
|
|
{
|
2006-02-07 04:13:32 +03:00
|
|
|
/**
|
|
|
|
* Initializes certain settings from the native printer into the PrintSettings
|
|
|
|
* These settings include, but are not limited to:
|
|
|
|
* Page Orientation
|
|
|
|
* Page Size
|
|
|
|
* Number of Copies
|
|
|
|
*/
|
2017-10-09 02:08:09 +03:00
|
|
|
void initPrintSettingsFromPrinter(in AString aPrinterName,
|
|
|
|
in nsIPrintSettings aPrintSettings);
|
2006-02-07 04:13:32 +03:00
|
|
|
|
2006-02-07 04:13:09 +03:00
|
|
|
/**
|
2020-07-10 22:00:17 +03:00
|
|
|
* The system default printer name. This is not necessarily gecko's
|
2020-07-05 22:00:43 +03:00
|
|
|
* default printer; see nsIPrintSettingsService.lastUsedPrinterName
|
|
|
|
* for that.
|
|
|
|
*/
|
2020-07-10 22:00:17 +03:00
|
|
|
readonly attribute AString systemDefaultPrinterName;
|
2020-07-05 22:00:43 +03:00
|
|
|
|
2020-08-20 14:59:46 +03:00
|
|
|
/**
|
|
|
|
* Returns a promise that resolves to the printer of a given name, or is
|
|
|
|
* rejected if there is no such printer.
|
|
|
|
*/
|
2020-09-16 00:23:27 +03:00
|
|
|
[implicit_jscontext] Promise getPrinterByName(in AString aPrinterName);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a promise that resolves to the printer of a given system name, or
|
|
|
|
* is rejected if there is no such printer.
|
|
|
|
* This may be more efficient than using getNamedPrinter, but requires the
|
|
|
|
* caller to know the system name of the printer they want to find.
|
|
|
|
*/
|
|
|
|
[implicit_jscontext] Promise getPrinterBySystemName(in AString aPrinterName);
|
2020-08-20 14:59:46 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a promise that resolves to the printer of the given name, or
|
|
|
|
* the default system printer, or is rejected if there are no printers
|
|
|
|
* available.
|
|
|
|
*/
|
|
|
|
[implicit_jscontext] Promise getNamedOrDefaultPrinter(in AString aPrinterName);
|
|
|
|
|
2020-07-05 22:00:43 +03:00
|
|
|
/**
|
2020-08-10 01:05:57 +03:00
|
|
|
* Returns a promise that resolves to an array of printers.
|
2006-02-07 04:13:09 +03:00
|
|
|
*/
|
2020-08-10 01:05:57 +03:00
|
|
|
[implicit_jscontext] readonly attribute Promise printers;
|
2020-08-26 14:10:32 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a Promise that resolves to an array of nsIPaper instances
|
|
|
|
* for common paper sizes suitable to be supported for Save to PDF.
|
|
|
|
*/
|
|
|
|
[implicit_jscontext] readonly attribute Promise fallbackPaperList;
|
2006-02-07 04:12:08 +03:00
|
|
|
};
|