home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / mozil06.zip / bin / chrome / comm.jar / content / navigator / askViewZoom.js next >
Text File  |  2001-02-14  |  3KB  |  90 lines

  1. /* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
  2.  
  3.  * The contents of this file are subject to the Mozilla Public
  4.  * License Version 1.1 (the "License"); you may not use this file
  5.  * except in compliance with the License. You may obtain a copy of
  6.  * the License at http://www.mozilla.org/MPL/
  7.  * 
  8.  * Software distributed under the License is distributed on an "AS
  9.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  10.  * implied. See the License for the specific language governing
  11.  * rights and limitations under the License.
  12.  * 
  13.  * The Original Code is this file as it was released upon
  14.  * September 7, 2000.
  15.  * 
  16.  * The Initial Developer of the Original Code is Peter Annema.
  17.  * Portions created by Peter Annema are Copyright (C) 2000
  18.  * Peter Annema. All Rights Reserved.
  19.  * 
  20.  * Contributor(s):
  21.  *   Peter Annema <disttsc@bart.nl> (Original Author)
  22.  * 
  23.  * Alternatively, the contents of this file may be used under the
  24.  * terms of the GNU General Public License Version 2 or later (the
  25.  * "GPL"), in which case the provisions of the GPL are applicable 
  26.  * instead of those above.  If you wish to allow use of your 
  27.  * version of this file only under the terms of the GPL and not to
  28.  * allow others to use your version of this file under the MPL,
  29.  * indicate your decision by deleting the provisions above and
  30.  * replace them with the notice and other provisions required by
  31.  * the GPL.  If you do not delete the provisions above, a recipient
  32.  * may use your version of this file under either the MPL or the
  33.  * GPL.
  34.  */
  35.  
  36. var dialog;
  37. var retvals;
  38. var zoomMin;
  39. var zoomMax;
  40.  
  41. function onLoad() {
  42.   retvals = window.arguments[0].retvals;
  43.   zoomMin = window.arguments[0].zoomMin;
  44.   zoomMax = window.arguments[0].zoomMax;
  45.  
  46.   dialog = new Object();
  47.   dialog.OKButton = document.getElementById("ok");
  48.   dialog.OKButton.setAttribute("disabled","true");
  49.  
  50.   dialog.input = document.getElementById("zoomValue");
  51.   dialog.input.value = retvals.zoom;
  52.   dialog.input.select();
  53.   doEnabling();
  54.  
  55.   retvals.zoomOK = false;
  56.   doSetOKCancel(onOK, onCancel);
  57. }
  58.  
  59. function onOK() {
  60.   var zoom = parseInt(dialog.input.value);
  61.   if (!isNaN(zoom) && zoom >= zoomMin && zoom <= zoomMax) {
  62.     retvals.zoom = zoom;
  63.     retvals.zoomOK = true;
  64.   }
  65.   return retvals.zoomOK;
  66. }
  67.  
  68. function onCancel() {
  69.   return true;
  70. }
  71.  
  72. function doEnabling() {
  73.   var enable = false;
  74.   if (dialog.input.value!="") {
  75.     var zoom = parseInt(dialog.input.value);
  76.     if (!isNaN(zoom) && zoom >= zoomMin && zoom <= zoomMax)
  77.       enable = true;
  78.   }
  79.  
  80.   if (enable) {
  81.     // enable OK
  82.     if (dialog.OKButton.getAttribute("disabled"))
  83.       dialog.OKButton.removeAttribute("disabled");
  84.   } else {
  85.     // disable OK
  86.     if (!dialog.OKButton.getAttribute("disabled"))
  87.       dialog.OKButton.setAttribute("disabled","true");
  88.   }
  89. }
  90.