home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2005 October / Gamestar_77_2005-10_dvd.iso / Programy / nsb-install-8-0.exe / chrome / toolkit.jar / content / global / alerts / alert.js next >
Text File  |  2005-07-29  |  5KB  |  145 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: NPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Netscape Public License
  5.  * Version 1.1 (the "License"); you may not use this file except in
  6.  * compliance with the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/NPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is mozilla.org code.
  15.  *
  16.  * The Initial Developer of the Original Code is 
  17.  * Netscape Communications Corporation.
  18.  * Portions created by the Initial Developer are Copyright (C) 1998
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *  Scott MacGregor <mscott@netscape.com>
  23.  *
  24.  * Alternatively, the contents of this file may be used under the terms of
  25.  * either the GNU General Public License Version 2 or later (the "GPL"), or 
  26.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.  * in which case the provisions of the GPL or the LGPL are applicable instead
  28.  * of those above. If you wish to allow use of your version of this file only
  29.  * under the terms of either the GPL or the LGPL, and not to allow others to
  30.  * use your version of this file under the terms of the NPL, indicate your
  31.  * decision by deleting the provisions above and replace them with the notice
  32.  * and other provisions required by the GPL or the LGPL. If you do not delete
  33.  * the provisions above, a recipient may use your version of this file under
  34.  * the terms of any one of the NPL, the GPL or the LGPL.
  35.  *
  36.  * ***** END LICENSE BLOCK ***** */
  37.  
  38. var gCurrentHeight = 0;
  39. var gFinalHeight = 50;
  40. var gSlideIncrement = 1;
  41. var gSlideTime = 10;
  42. var gOpenTime = 3000; // total time the alert should stay up once we are done animating.
  43.  
  44. var gAlertListener = null;
  45. var gAlertTextClickable = false;
  46. var gAlertCookie = "";
  47.  
  48. function prefillAlertInfo()
  49. {
  50.   // unwrap all the args....
  51.   // arguments[0] --> the image src url
  52.   // arguments[1] --> the alert title
  53.   // arguments[2] --> the alert text
  54.   // arguments[3] --> is the text clickable? 
  55.   // arguments[4] --> the alert cookie to be passed back to the listener
  56.   // arguments[5] --> an optional callback listener (nsIAlertListener)
  57.  
  58.   document.getElementById('alertImage').setAttribute('src', window.arguments[0]);
  59.   document.getElementById('alertTitleLabel').setAttribute('value', window.arguments[1]);
  60.   gAlertTextClickable = window.arguments[3];
  61.   // JMC: Hack to support multi-line alerts
  62.   // Delimited by |
  63.   var textArray = window.arguments[2].split("|");
  64.   for (var i =0; i < textArray.length; i++) {
  65.       var newLabel = document.createElement("description");    
  66.       newLabel.setAttribute('class', "alertText");
  67.       if (gAlertTextClickable)
  68.         newLabel.setAttribute('clickable', 'true');
  69.       var parsedText = document.createTextNode(textArray[i]);
  70.       newLabel.appendChild(parsedText);
  71.       document.getElementById('alertTextLabel').appendChild(newLabel); //JMC: allow word wrap
  72.     }
  73.  
  74.   if (gAlertTextClickable)
  75.   {
  76.     document.getElementById('alertTextLabel').setAttribute('clickable', 'true');
  77.       document.getElementById('alertTextLabel').setAttribute('onclick', "onAlertClick();");      
  78.   }
  79.   gAlertCookie = window.arguments[4];
  80.  
  81.   
  82.   // the 5th argument is optional
  83.   if (window.arguments[5])
  84.     gAlertListener = window.arguments[5].QueryInterface(Components.interfaces.nsIAlertListener);
  85. }
  86.  
  87. function onAlertLoad()
  88. {
  89.   // read out our initial settings from prefs.
  90.   try 
  91.   {
  92.     var prefService = Components.classes["@mozilla.org/preferences-service;1"].getService();
  93.     prefService = prefService.QueryInterface(Components.interfaces.nsIPrefService);
  94.     var prefBranch = prefService.getBranch(null);
  95.     gSlideIncrement = prefBranch.getIntPref("alerts.slideIncrement");
  96.     gSlideTime = prefBranch.getIntPref("alerts.slideIncrementTime");
  97.     gOpenTime = prefBranch.getIntPref("alerts.totalOpenTime");
  98.   } catch (ex) {}
  99.  
  100.   sizeToContent();
  101.   gFinalHeight = window.outerHeight;
  102.   window.outerHeight = 0;
  103.   // be sure to offset the alert by 10 pixels from the far right edge of the screen
  104.   window.moveTo( (screen.availLeft + screen.availWidth - window.outerWidth) - 10, screen.availTop + screen.availHeight - window.outerHeight);
  105.   setTimeout(animateAlert, gSlideTime);
  106. }
  107.  
  108. function animateAlert()
  109. {
  110.   if (gCurrentHeight < gFinalHeight)
  111.   {
  112.     gCurrentHeight += gSlideIncrement;
  113.  
  114.     window.screenY -= gSlideIncrement;
  115.     window.outerHeight += gSlideIncrement;
  116.     setTimeout(animateAlert, gSlideTime);
  117.   }
  118.   else
  119.    setTimeout(closeAlert, gOpenTime);  
  120. }
  121.  
  122. function closeAlert()
  123. {
  124.   if (gCurrentHeight)
  125.   {
  126.     gCurrentHeight -= gSlideIncrement;
  127.  
  128.     window.screenY += gSlideIncrement;
  129.     window.outerHeight -= gSlideIncrement;
  130.     setTimeout(closeAlert, gSlideTime);
  131.   }
  132.   else
  133.   {
  134.     if (gAlertListener)
  135.       gAlertListener.onAlertFinished(gAlertCookie); 
  136.     window.close(); 
  137.   }
  138. }
  139.  
  140. function onAlertClick()
  141. {
  142.   if (gAlertListener && gAlertTextClickable)
  143.     gAlertListener.onAlertClickCallback(gAlertCookie);
  144. }
  145.