home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 July & August / PCWorld_2005-07-08_cd.bin / komunikace / netscape / nsb-install-8-0.exe / chrome / toolkit.jar / content / global / printPreviewProgress.js < prev    next >
Text File  |  2004-11-25  |  4KB  |  151 lines

  1.  
  2. // dialog is just an array we'll use to store various properties from the dialog document...
  3. var dialog;
  4.  
  5. // the printProgress is a nsIPrintProgress object
  6. var printProgress = null; 
  7.  
  8. // random global variables...
  9. var targetFile;
  10.  
  11. var docTitle = "";
  12. var docURL   = "";
  13. var progressParams = null;
  14.  
  15. function elipseString(aStr, doFront)
  16. {
  17.   if (aStr.length > 3 && (aStr.substr(0, 3) == "..." || aStr.substr(aStr.length-4, 3) == "..."))
  18.     return aStr;
  19.  
  20.   var fixedLen = 64;
  21.   if (aStr.length <= fixedLen)
  22.     return aStr;
  23.  
  24.   if (doFront)
  25.     return "..." + aStr.substr(aStr.length-fixedLen, fixedLen);
  26.   
  27.   return aStr.substr(0, fixedLen) + "...";
  28. }
  29.  
  30. // all progress notifications are done through the nsIWebProgressListener implementation...
  31. var progressListener = {
  32.  
  33.   onStateChange: function (aWebProgress, aRequest, aStateFlags, aStatus)
  34.   {
  35.     if (aStateFlags & Components.interfaces.nsIWebProgressListener.STATE_STOP)
  36.       window.close();
  37.   },
  38.   
  39.   onProgressChange: function (aWebProgress, aRequest, aCurSelfProgress, aMaxSelfProgress, aCurTotalProgress, aMaxTotalProgress)
  40.   {
  41.     if (!progressParams)
  42.       return;
  43.     var docTitleStr = elipseString(progressParams.docTitle, false);
  44.     if (docTitleStr != docTitle) {
  45.       docTitle = docTitleStr;
  46.       dialog.title.value = docTitle;
  47.     }
  48.     var docURLStr = elipseString(progressParams.docURL, true);
  49.     if (docURLStr != docURL && dialog.title != null) {
  50.       docURL = docURLStr;
  51.       if (docTitle == "")
  52.         dialog.title.value = docURLStr;
  53.     }
  54.   },
  55.  
  56.   onLocationChange: function (aWebProgress, aRequest, aLocation) {},
  57.   onSecurityChange: function (aWebProgress, aRequest, state) {},
  58.  
  59.   onStatusChange: function (aWebProgress, aRequest, aStatus, aMessage)
  60.   {
  61.     if (aMessage)
  62.       dialog.title.setAttribute("value", aMessage);
  63.   },
  64.  
  65.   QueryInterface: function (iid)
  66.   {
  67.     if (iid.equals(Components.interfaces.nsIWebProgressListener) || iid.equals(Components.interfaces.nsISupportsWeakReference))
  68.       return this;   
  69.     throw Components.results.NS_NOINTERFACE;
  70.   }
  71. }
  72.  
  73. function onLoad() {
  74.   // Set global variables.
  75.   printProgress = window.arguments[0];
  76.   if (window.arguments[1]) {
  77.     progressParams = window.arguments[1].QueryInterface(Components.interfaces.nsIPrintProgressParams)
  78.     if (progressParams) {
  79.       docTitle = elipseString(progressParams.docTitle, false);
  80.       docURL   = elipseString(progressParams.docURL, true);
  81.     }
  82.   }
  83.  
  84.   if (!printProgress) {
  85.     dump( "Invalid argument to printPreviewProgress.xul\n" );
  86.     window.close()
  87.     return;
  88.   }
  89.  
  90.   dialog         = new Object;
  91.   dialog.strings = new Array;
  92.   dialog.title   = document.getElementById("dialog.title");
  93.   dialog.titleLabel = document.getElementById("dialog.titleLabel");
  94.  
  95.   dialog.title.value = docTitle;
  96.  
  97.   // set our web progress listener on the helper app launcher
  98.   printProgress.registerListener(progressListener);
  99.   moveToAlertPosition();
  100.  
  101.   //We need to delay the set title else dom will overwrite it
  102.   window.setTimeout(doneIniting, 100);
  103. }
  104.  
  105. function onUnload() 
  106. {
  107.   if (!printProgress)
  108.     return;
  109.   try {
  110.     printProgress.unregisterListener(progressListener);
  111.     printProgress = null;
  112.   }
  113.   catch(e) {}
  114. }
  115.  
  116. function getString (stringId) {
  117.   // Check if we've fetched this string already.
  118.   if (!(stringId in dialog.strings)) {
  119.     // Try to get it.
  120.     var elem = document.getElementById( "dialog.strings."+stringId);
  121.     try {
  122.       if (elem && elem.childNodes && elem.childNodes[0] &&
  123.           elem.childNodes[0].nodeValue)
  124.         dialog.strings[stringId] = elem.childNodes[0].nodeValue;
  125.       // If unable to fetch string, use an empty string.
  126.       else
  127.         dialog.strings[stringId] = "";
  128.     } catch (e) { dialog.strings[stringId] = ""; }
  129.   }
  130.   return dialog.strings[stringId];
  131. }
  132.  
  133. // If the user presses cancel, tell the app launcher and close the dialog...
  134. function onCancel () 
  135. {
  136.   // Cancel app launcher.
  137.   try {
  138.     printProgress.processCanceledByUser = true;
  139.   }
  140.   catch(e) {return true;}
  141.     
  142.   // don't Close up dialog by returning false, the backend will close the dialog when everything will be aborted.
  143.   return false;
  144. }
  145.  
  146. function doneIniting() 
  147. {
  148.   // called by function timeout in onLoad
  149.   printProgress.doneIniting();
  150. }
  151.