home *** CD-ROM | disk | FTP | other *** search
/ ftp.swcp.com / ftp.swcp.com.zip / ftp.swcp.com / mac / mozilla-macos9-1.3.1.sea.bin / Mozilla1.3.1 / Chrome / comm.jar / content / communicator / printing.js < prev    next >
Text File  |  2003-06-08  |  6KB  |  151 lines

  1. /* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3.  * Version: NPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Netscape Public License
  6.  * Version 1.1 (the "License"); you may not use this file except in
  7.  * compliance with the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/NPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is mozilla.org code.
  16.  *
  17.  * The Initial Developer of the Original Code is 
  18.  * Netscape Communications Corporation.
  19.  * Portions created by the Initial Developer are Copyright (C) 1998
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  *   Blake Ross <blakeross@telocity.com>
  24.  *   Peter Annema <disttsc@bart.nl>
  25.  *   Samir Gehani <sgehani@netscape.com>
  26.  *
  27.  * Alternatively, the contents of this file may be used under the terms of
  28.  * either the GNU General Public License Version 2 or later (the "GPL"), or 
  29.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  30.  * in which case the provisions of the GPL or the LGPL are applicable instead
  31.  * of those above. If you wish to allow use of your version of this file only
  32.  * under the terms of either the GPL or the LGPL, and not to allow others to
  33.  * use your version of this file under the terms of the NPL, indicate your
  34.  * decision by deleting the provisions above and replace them with the notice
  35.  * and other provisions required by the GPL or the LGPL. If you do not delete
  36.  * the provisions above, a recipient may use your version of this file under
  37.  * the terms of any one of the NPL, the GPL or the LGPL.
  38.  *
  39.  * ***** END LICENSE BLOCK ***** */
  40.  
  41. var gPrintSettings = null;
  42.  
  43. function setPrinterDefaultsForSelectedPrinter(aPrintService)
  44. {
  45.   if (gPrintSettings.printerName == "") {
  46.     gPrintSettings.printerName = aPrintService.defaultPrinterName;
  47.   }
  48.  
  49.   // First get any defaults from the printer 
  50.   aPrintService.initPrintSettingsFromPrinter(gPrintSettings.printerName, gPrintSettings);
  51.  
  52.   // now augment them with any values from last time
  53.   aPrintService.initPrintSettingsFromPrefs(gPrintSettings, true, gPrintSettings.kInitSaveAll);
  54. }
  55.  
  56.  
  57. function GetPrintSettings()
  58. {
  59.   var prevPS = gPrintSettings;
  60.   try {
  61.     if (gPrintSettings == null) {
  62.       var pref = Components.classes["@mozilla.org/preferences-service;1"]
  63.                            .getService(Components.interfaces.nsIPrefBranch);
  64.       if (pref) {
  65.         gPrintSettingsAreGlobal = pref.getBoolPref("print.use_global_printsettings", false);
  66.         gSavePrintSettings = pref.getBoolPref("print.save_print_settings", false);
  67.       }
  68.  
  69.       var printService = Components.classes["@mozilla.org/gfx/printsettings-service;1"]
  70.                                         .getService(Components.interfaces.nsIPrintSettingsService);
  71.       if (gPrintSettingsAreGlobal) {
  72.         gPrintSettings = printService.globalPrintSettings;
  73.         setPrinterDefaultsForSelectedPrinter(printService);
  74.       } else {
  75.         gPrintSettings = printService.newPrintSettings;
  76.       }
  77.     }
  78.   } catch (e) {
  79.     dump("GetPrintSettings() "+e+"\n");
  80.   }
  81.  
  82.   return gPrintSettings;
  83. }
  84.  
  85. function goPageSetup(domwin, printSettings)
  86. {
  87.   try {
  88.     if (printSettings == null) {
  89.       dump("***************** PrintSettings arg is null!");
  90.       return false;
  91.     }
  92.  
  93.     // This code calls the printoptions service to bring up the printoptions
  94.     // dialog.  This will be an xp dialog if the platform did not override
  95.     // the ShowPrintSetupDialog method.
  96.     var printingPromptService = Components.classes["@mozilla.org/embedcomp/printingprompt-service;1"]
  97.                                              .getService(Components.interfaces.nsIPrintingPromptService);
  98.     printingPromptService.showPageSetup(domwin, printSettings, null);
  99.     return true;
  100.   } catch(e) {
  101.     return false; 
  102.   }
  103.   return true;
  104. }
  105.  
  106. function NSPrintSetup()
  107. {
  108.   var didOK = false;
  109.   try {
  110.     gPrintSettings = GetPrintSettings();
  111.  
  112.     var webBrowserPrint = null;
  113.     if (_content) {
  114.       var ifreq = _content.QueryInterface(Components.interfaces.nsIInterfaceRequestor);
  115.       webBrowserPrint = ifreq.getInterface(Components.interfaces.nsIWebBrowserPrint);
  116.     }
  117.  
  118.     didOK = goPageSetup(window, gPrintSettings);  // from printing.js
  119.     if (didOK) {
  120.  
  121.       if (webBrowserPrint) {
  122.         if (gPrintSettingsAreGlobal && gSavePrintSettings) {
  123.           var psService = Components.classes["@mozilla.org/gfx/printsettings-service;1"]
  124.                                             .getService(Components.interfaces.nsIPrintSettingsService);
  125.           psService.savePrintSettingsToPrefs(gPrintSettings, false, gPrintSettings.kInitSaveNativeData);
  126.         }
  127.       }
  128.     }
  129.   } catch (e) {
  130.     dump("BrowserPrintSetup "+e);
  131.   }
  132.   return didOK;
  133. }
  134.  
  135. function NSPrint()
  136. {
  137.   try {
  138.     var ifreq = _content.QueryInterface(Components.interfaces.nsIInterfaceRequestor);
  139.     var webBrowserPrint = ifreq.getInterface(Components.interfaces.nsIWebBrowserPrint);     
  140.     if (webBrowserPrint) {
  141.       gPrintSettings = GetPrintSettings();
  142.       webBrowserPrint.print(gPrintSettings, null);
  143.     }
  144.   } catch (e) {
  145.     // Pressing cancel is expressed as an NS_ERROR_ABORT return value,
  146.     // causing an exception to be thrown which we catch here.
  147.     // Unfortunately this will also consume helpful failures, so add a
  148.     // dump(e); // if you need to debug
  149.   }
  150. }
  151.