2006-02-07 01:12:56 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2006-02-07 01:14:50 +00:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
2006-02-07 01:12:08 +00:00
|
|
|
*
|
2006-02-07 01:14:50 +00:00
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
2006-02-07 01:12:08 +00:00
|
|
|
*
|
2006-02-07 01:12:56 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
2006-02-07 01:12:08 +00:00
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2006-02-07 01:14:50 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
2006-02-07 01:12:56 +00:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2000
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
2006-02-07 01:12:08 +00:00
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Don Cone <dcone@netscape.com>
|
2006-02-07 01:13:09 +00:00
|
|
|
* Jessica Blanco <jblanco@us.ibm.com>
|
2006-02-07 01:12:56 +00:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2006-02-07 01:14:50 +00:00
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
2006-02-07 01:12:56 +00:00
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
2006-02-07 01:14:50 +00:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2006-02-07 01:12:56 +00:00
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
2006-02-07 01:14:50 +00:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2006-02-07 01:12:56 +00:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
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
|
|
|
|
2006-02-07 01:12:18 +00:00
|
|
|
%{ C++
|
2006-02-07 01:15:19 +00:00
|
|
|
struct nsFont;
|
2006-02-07 01:12:18 +00:00
|
|
|
%}
|
2006-02-07 01:12:08 +00:00
|
|
|
|
2006-02-07 01:13:09 +00:00
|
|
|
interface nsISimpleEnumerator;
|
|
|
|
|
2006-02-07 01:12:20 +00:00
|
|
|
/**
|
|
|
|
* Native types
|
|
|
|
*/
|
2006-02-07 01:15:19 +00:00
|
|
|
[ref] native nsNativeFontRef(nsFont);
|
2006-02-07 01:12:20 +00:00
|
|
|
|
2006-02-07 01:12:08 +00:00
|
|
|
/**
|
2006-02-07 01:14:34 +00:00
|
|
|
* Print options interface
|
2006-02-07 01:12:28 +00:00
|
|
|
*
|
2006-02-07 01:14:34 +00:00
|
|
|
* Do not attempt to freeze this API - it still needs lots of work. Consult
|
|
|
|
* John Keiser <jkeiser@netscape.com> and Roland Mainz
|
|
|
|
* <roland.mainz@informatik.med.uni-giessen.de> for futher details.
|
2006-02-07 01:12:08 +00:00
|
|
|
*/
|
2006-02-07 01:15:14 +00:00
|
|
|
[scriptable, uuid(d9948a4d-f49c-4456-938a-acda2c8d7741)]
|
2006-02-07 01:12:08 +00:00
|
|
|
|
|
|
|
interface nsIPrintOptions : nsISupports
|
|
|
|
{
|
2006-02-07 01:12:18 +00:00
|
|
|
/**
|
|
|
|
* Show Native Print Options dialog, this may not be supported on all platforms
|
|
|
|
*/
|
2006-02-07 01:13:25 +00:00
|
|
|
void ShowPrintSetupDialog(in nsIPrintSettings aThePrintSettings);
|
2006-02-07 01:12:08 +00:00
|
|
|
|
2006-02-07 01:13:12 +00:00
|
|
|
/**
|
|
|
|
* Creates a new PrintSettnigs Object
|
|
|
|
* and initializes it from prefs
|
|
|
|
*/
|
|
|
|
nsIPrintSettings CreatePrintSettings();
|
|
|
|
|
2006-02-07 01:13:37 +00:00
|
|
|
/**
|
|
|
|
* available Printers
|
2006-02-07 01:14:34 +00:00
|
|
|
* It returns an enumerator object or throws an exception on error cases
|
|
|
|
* like if internal setup failed and/or no printers are available.
|
2006-02-07 01:13:37 +00:00
|
|
|
*/
|
|
|
|
nsISimpleEnumerator availablePrinters ();
|
2006-02-07 01:12:18 +00:00
|
|
|
|
2006-02-07 01:14:00 +00:00
|
|
|
/**
|
|
|
|
* Get a prefixed integer pref
|
|
|
|
*/
|
2006-02-07 01:15:14 +00:00
|
|
|
PRInt32 getPrinterPrefInt(in nsIPrintSettings aPrintSettings, in wstring
|
|
|
|
aPrefName);
|
2006-02-07 01:14:00 +00:00
|
|
|
|
2006-02-07 01:13:37 +00:00
|
|
|
/**
|
|
|
|
* display Printer Job Properties dialog
|
|
|
|
*/
|
2006-02-07 01:15:14 +00:00
|
|
|
void displayJobProperties (in wstring aPrinter, in nsIPrintSettings
|
|
|
|
aPrintSettings, out boolean aDisplayed);
|
2006-02-07 01:13:10 +00:00
|
|
|
|
2006-02-07 01:12:20 +00:00
|
|
|
|
2006-02-07 01:15:14 +00:00
|
|
|
void setFontNamePointSize(in AString aName, in PRInt32 aPointSize);
|
|
|
|
// no script methods
|
2006-02-07 01:13:37 +00:00
|
|
|
[noscript] void SetDefaultFont(in nsNativeFontRef aFont);
|
2006-02-07 01:12:20 +00:00
|
|
|
/* Purposely made this an "in" arg */
|
2006-02-07 01:13:37 +00:00
|
|
|
[noscript] void GetDefaultFont(in nsNativeFontRef aFont);
|
2006-02-07 01:12:18 +00:00
|
|
|
|
2006-02-07 01:13:01 +00:00
|
|
|
/**
|
|
|
|
* Native data constants
|
|
|
|
*/
|
|
|
|
const short kNativeDataPrintRecord = 0;
|
|
|
|
|
|
|
|
[noscript] voidPtr GetNativeData(in short aDataType);
|
2006-02-07 01:13:09 +00:00
|
|
|
};
|
2006-02-07 01:13:01 +00:00
|
|
|
|
2006-02-07 01:13:09 +00:00
|
|
|
[scriptable, uuid(a6cf9128-15b3-11d2-932e-00805f8add32)]
|
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
|
|
|
/**
|
|
|
|
* The name of the default printer
|
|
|
|
* This name must be in the list of printer names returned by
|
|
|
|
* "availablePrinters"
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
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
|
|
|
/**
|
2006-02-07 01:13:12 +00:00
|
|
|
* Returns an array of the names of all installed printers.
|
2006-02-07 01:13:09 +00:00
|
|
|
*
|
|
|
|
* @param aCount returns number of printers returned
|
|
|
|
* @param aResult returns array of names
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
void enumeratePrinters(out PRUint32 aCount,[retval, array, size_is(aCount)] out wstring aResult);
|
|
|
|
|
|
|
|
/* takes printer selected and will display job properties dlg for that printer
|
|
|
|
* returns true if dialog displays
|
|
|
|
*/
|
2006-02-07 01:13:12 +00:00
|
|
|
void displayPropertiesDlg(in wstring aPrinter, in nsIPrintSettings aPrintSettings);
|
|
|
|
|
2006-02-07 01:12:08 +00:00
|
|
|
};
|
2006-02-07 01:13:09 +00:00
|
|
|
|