home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 March / PCWorld_2007-03_cd.bin / komunikace / nvu / nvu-1.0-cs-CZ.win32.installer.exe / chrome / toolkit.jar / content / global / commonDialog.js < prev    next >
Text File  |  2004-08-13  |  10KB  |  313 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 Communicator client 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.  *  Alec Flett  <alecf@netscape.com>
  23.  *  Ben Goodger <ben@netscape.com>
  24.  *  Blake Ross  <blakeross@telocity.com>
  25.  *  Joe Hewitt <hewitt@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. // parameters to gCommonDialogParam.Get() are defined in nsPIPromptService.idl
  42. var gCommonDialogParam = 
  43.   window.arguments[0].QueryInterface(Components.interfaces.nsIDialogParamBlock);
  44.   
  45. function showControls()
  46. {
  47.   // This is called before onload fires, so we can't be certain that any elements
  48.   // in the document have their bindings ready, so don't call any methods/properties
  49.   // here on xul elements that come from xbl bindings.
  50.   
  51.   // show the required textboxes and set their initial values
  52.   var nTextBoxes = gCommonDialogParam.GetInt(3);
  53.   if (nTextBoxes == 2) {
  54.     if (gCommonDialogParam.GetInt(4) == 1) {
  55.       initTextbox("password1", 4, 6, false);
  56.       initTextbox("password2", 5, 7, false);
  57.     }
  58.     else {
  59.       initTextbox("login", 4, 6, false);
  60.       initTextbox("password1", 5, 7, false);
  61.     }
  62.   } else if (nTextBoxes == 1) {
  63.     if (gCommonDialogParam.GetInt(4) == 1)
  64.       initTextbox("password1", -1, 6, true);
  65.     else
  66.       initTextbox("login", 4, 6, true);
  67.   }
  68. }
  69.  
  70. function setLabelForNode(aNode, aLabel, aIsLabelFlag)
  71. {
  72.   // This is for labels with possible accesskeys
  73.   var accessKeyIndex;
  74.   if (/^\&[^\&]/.test(aLabel)) { // access key is at the start
  75.    accessKeyIndex = 0;
  76.   } else {
  77.     accessKeyIndex = aLabel.search(/[^\&]\&[^\&]/) + 1;
  78.     if (accessKeyIndex == 0) {
  79.       accessKeyIndex = -1; // magic value for no accesskey
  80.     }
  81.   }
  82.  
  83.   // If a character has an & before it, then it should become an accesskey
  84.   if (accessKeyIndex >= 0 && accessKeyIndex < aLabel.length - 1) {
  85.     // This will also cause the accesskey attribute to be set via xbl
  86.     aNode.accessKey = aLabel.charAt(accessKeyIndex + 1);
  87.     // Set the label to the string without the &
  88.     aLabel = aLabel.substr(0, accessKeyIndex) + 
  89.              aLabel.substr(accessKeyIndex + 1);
  90.   }
  91.   aLabel = aLabel.replace(/\&\&/g, "&");
  92.   if (aIsLabelFlag) {    // Set text for <label> element
  93.     aNode.setAttribute("value", aLabel);
  94.   } else {    // Set text for other xul elements
  95.     aNode.label = aLabel;
  96.   }
  97. }
  98.  
  99. function commonDialogOnLoad()
  100. {
  101.   // set the window title
  102.   window.title = gCommonDialogParam.GetString(12);
  103.  
  104.   // set the number of command buttons
  105.   var nButtons = gCommonDialogParam.GetInt(2);
  106.   var dialog = document.documentElement;
  107.   switch (nButtons) {
  108.     case 1:
  109.       dialog.getButton("cancel").hidden = true;
  110.       break;
  111.     case 4:
  112.       dialog.getButton("extra2").hidden = false;
  113.     case 3:
  114.       dialog.getButton("extra1").hidden = false;
  115.   }
  116.  
  117.   // display the main text
  118.   var messageText = gCommonDialogParam.GetString(0);
  119.   var messageParent = document.getElementById("info.box");
  120.   var messageParagraphs = messageText.split("\n");
  121.  
  122.   for (var i = 0; i < messageParagraphs.length; i++) {
  123.     var descriptionNode = document.createElement("description");
  124.     var text = document.createTextNode(messageParagraphs[i]);
  125.     descriptionNode.appendChild(text);
  126.     messageParent.appendChild(descriptionNode);
  127.   }
  128.  
  129.   setElementText("info.header", gCommonDialogParam.GetString(3), true);
  130.  
  131.   // set the icon
  132.   var iconElement = document.getElementById("info.icon");
  133.   var iconClass = gCommonDialogParam.GetString(2);
  134.   if (!iconClass)
  135.     iconClass = "message-icon";
  136.   iconElement.setAttribute("class", iconElement.getAttribute("class") + " " + iconClass);
  137.  
  138.   switch (nButtons) {
  139.     case 4:
  140.       setLabelForNode(document.documentElement.getButton("extra2"), gCommonDialogParam.GetString(11));
  141.       // fall through
  142.     case 3:
  143.       setLabelForNode(document.documentElement.getButton("extra1"), gCommonDialogParam.GetString(10));
  144.       // fall through
  145.     default:
  146.     case 2:
  147.       var string = gCommonDialogParam.GetString(9);
  148.       if (string)
  149.         setLabelForNode(document.documentElement.getButton("cancel"), string);
  150.       // fall through
  151.     case 1:
  152.       string = gCommonDialogParam.GetString(8);
  153.       if (string)
  154.         setLabelForNode(document.documentElement.getButton("accept"), string);
  155.       break;
  156.   }
  157.  
  158.   // set default result to cancelled
  159.   gCommonDialogParam.SetInt(0, 1); 
  160.  
  161.   // initialize the checkbox
  162.   setCheckbox(gCommonDialogParam.GetString(1), gCommonDialogParam.GetInt(1));
  163.  
  164.   if (gCommonDialogParam.GetInt(3) == 0) // If no text fields
  165.   {
  166.     var dButton;
  167.     var defaultButton = gCommonDialogParam.GetInt(5);
  168.     switch (defaultButton) {
  169.       case 3:
  170.         dButton = document.documentElement.getButton("extra2");
  171.         break;
  172.       case 2:
  173.         dButton = document.documentElement.getButton("extra1");
  174.         break;
  175.       case 1:
  176.         dButton = document.documentElement.getButton("cancel");
  177.         break;
  178.       default:
  179.       case 0:
  180.         dButton = document.documentElement.getButton("accept");
  181.         break;
  182.     }
  183.     // move the default attribute and focus from the accept button
  184.     // to the one specified in the dialog params
  185.     document.documentElement.getButton("accept").setAttribute("default",false);
  186.     dButton.setAttribute("default", true);
  187.     dButton.focus();
  188.   }
  189.  
  190.   if (gCommonDialogParam.GetInt(6) != 0) // delay button enable
  191.   {
  192.     var delayInterval = 2000;
  193.     try {
  194.       var prefs = Components.classes["@mozilla.org/preferences-service;1"]
  195.                   .getService(Components.interfaces.nsIPrefBranch);
  196.       delayInterval = prefs.getIntPref("security.dialog_enable_delay");
  197.     } catch (e) {}
  198.  
  199.     document.documentElement.getButton("accept").disabled = true;
  200.     document.documentElement.getButton("extra1").disabled = true;
  201.     document.documentElement.getButton("extra2").disabled = true;
  202.  
  203.     setTimeout(commonDialogReenableButtons, delayInterval);
  204.   }
  205.  
  206.   getAttention();
  207. }
  208.  
  209. function commonDialogReenableButtons()
  210. {
  211.   document.documentElement.getButton("accept").disabled = false;
  212.   document.documentElement.getButton("extra1").disabled = false;
  213.   document.documentElement.getButton("extra2").disabled = false;
  214. }
  215.  
  216. function initTextbox(aName, aLabelIndex, aValueIndex, aAlwaysLabel)
  217. {
  218.   unHideElementById(aName+"Container");
  219.  
  220.   var label = aLabelIndex < 0 ? "" : gCommonDialogParam.GetString(aLabelIndex);
  221.   if (label || aAlwaysLabel && !label)
  222.     setElementText(aName+"Label", label);
  223.     
  224.   var value = aValueIndex < 0 ? "" : gCommonDialogParam.GetString(aValueIndex);
  225.   var textbox = document.getElementById(aName + "Textbox");
  226.   textbox.setAttribute("value", value);
  227. }
  228.  
  229. function setElementText(aElementID, aValue, aChildNodeFlag)
  230. {
  231.   var element = document.getElementById(aElementID);
  232.   if (!aChildNodeFlag && element) {
  233.     setLabelForNode(element, aValue, true);
  234.   } else if (aChildNodeFlag && element) {
  235.     element.appendChild(document.createTextNode(aValue));
  236.   }
  237. }
  238.  
  239. function setCheckbox(aChkMsg, aChkValue)
  240. {
  241.   if (aChkMsg) {
  242.     // XXX Would love to use hidden instead of collapsed, but the checkbox
  243.     // fails to size itself properly when I do this.
  244.     document.getElementById("checkboxContainer").removeAttribute("collapsed");
  245.     
  246.     var checkboxElement = document.getElementById("checkbox");
  247.     setLabelForNode(checkboxElement, aChkMsg);
  248.     checkboxElement.checked = aChkValue > 0;
  249.   }
  250. }
  251.  
  252. function unHideElementById(aElementID)
  253. {
  254.   var element = document.getElementById(aElementID);
  255.   element.hidden = false;
  256. }
  257.  
  258. function hideElementById(aElementID)
  259. {
  260.   var element = document.getElementById(aElementID)
  261.   element.hidden = true;
  262. }
  263.  
  264. function isVisible(aElementId)
  265. {
  266.   return document.getElementById(aElementId).hasAttribute("hidden");
  267. }
  268.  
  269. function onCheckboxClick(aCheckboxElement)
  270. {
  271.   gCommonDialogParam.SetInt(1, aCheckboxElement.checked);
  272. }
  273.  
  274. function commonDialogOnAccept()
  275. {
  276.   gCommonDialogParam.SetInt(0, 0); // say that ok was pressed
  277.  
  278.   var numTextBoxes = gCommonDialogParam.GetInt(3);
  279.   var textboxIsPassword1 = gCommonDialogParam.GetInt(4) == 1;
  280.   
  281.   if (numTextBoxes >= 1) {
  282.     var editField1;
  283.     if (textboxIsPassword1)
  284.       editField1 = document.getElementById("password1Textbox");
  285.     else
  286.       editField1 = document.getElementById("loginTextbox");
  287.     gCommonDialogParam.SetString(6, editField1.value);
  288.   }
  289.  
  290.   if (numTextBoxes == 2) {
  291.     var editField2;
  292.     if (textboxIsPassword1)
  293.       // we had two password fields
  294.       editField2 = document.getElementById("password2Textbox");
  295.     else
  296.       // we only had one password field (and one login field)
  297.       editField2 = document.getElementById("password1Textbox");
  298.     gCommonDialogParam.SetString(7, editField2.value);
  299.   }
  300. }
  301.  
  302. function commonDialogOnExtra1()
  303. {
  304.   gCommonDialogParam.SetInt(0, 2);
  305.   window.close();
  306. }
  307.  
  308. function commonDialogOnExtra2()
  309. {
  310.   gCommonDialogParam.SetInt(0, 3);
  311.   window.close();
  312. }
  313.