2006-02-07 01:12:56 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
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/. */
|
2006-02-07 01:12:08 +00:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
2006-02-07 01:13:05 +00:00
|
|
|
#include "nsIPrintSettings.idl"
|
2006-02-07 01:12:08 +00:00
|
|
|
|
2007-05-06 11:29:41 +00:00
|
|
|
interface nsIStringEnumerator;
|
2006-02-07 01:12:20 +00:00
|
|
|
|
2007-05-06 11:29:41 +00:00
|
|
|
[scriptable, uuid(5e738fff-404c-4c94-9189-e8f2cce93e94)]
|
2006-02-07 01:15:14 +00:00
|
|
|
|
2006-02-07 01:13:09 +00:00
|
|
|
interface nsIPrinterEnumerator : nsISupports
|
|
|
|
{
|
2006-02-07 01:13:32 +00:00
|
|
|
/**
|
2007-05-06 11:29:41 +00:00
|
|
|
* The name of the system default printer. This name should also be
|
|
|
|
* present in printerNameList below. This is not necessarily gecko's
|
|
|
|
* default printer; see nsIPrintSettingsService.defaultPrinterName
|
|
|
|
* for that.
|
2006-02-07 01:13:32 +00:00
|
|
|
*/
|
|
|
|
readonly attribute wstring defaultPrinterName;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
void initPrintSettingsFromPrinter(in wstring aPrinterName, in nsIPrintSettings aPrintSettings);
|
|
|
|
|
2006-02-07 01:13:09 +00:00
|
|
|
/**
|
2007-05-06 11:29:41 +00:00
|
|
|
* The list of printer names
|
2006-02-07 01:13:09 +00:00
|
|
|
*/
|
2007-05-06 11:29:41 +00:00
|
|
|
readonly attribute nsIStringEnumerator printerNameList;
|
2006-02-07 01:12:08 +00:00
|
|
|
};
|
2006-02-07 01:13:09 +00:00
|
|
|
|