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 / askViewZoom.xul < prev    next >
Extensible Markup Language  |  2003-06-08  |  2KB  |  58 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4.    - The contents of this file are subject to the Mozilla Public
  5.    - License Version 1.1 (the "License"); you may not use this file
  6.    - except in compliance with the License. You may obtain a copy of
  7.    - the License at http://www.mozilla.org/MPL/
  8.    - 
  9.    - Software distributed under the License is distributed on an "AS
  10.    - IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  11.    - implied. See the License for the specific language governing
  12.    - rights and limitations under the License.
  13.    - 
  14.    - The Original Code is this file as it was released on
  15.    - September 7, 2000.
  16.    - 
  17.    - The Initial Developer of the Original Code is Peter Annema.
  18.    - Portions created by Peter Annema are Copyright (C) 2000
  19.    - Peter Annema.  All Rights Reserved.
  20.    - 
  21.    - Contributor(s):
  22.    -   Peter Annema <disttsc@bart.nl> (Original Author)
  23.    - 
  24.    - Alternatively, the contents of this file may be used under the
  25.    - terms of the GNU General Public License Version 2 or later (the
  26.    - "GPL"), in which case the provisions of the GPL are applicable 
  27.    - instead of those above.  If you wish to allow use of your 
  28.    - version of this file only under the terms of the GPL and not to
  29.    - allow others to use your version of this file under the MPL,
  30.    - indicate your decision by deleting the provisions above and
  31.    - replace them with the notice and other provisions required by
  32.    - the GPL.  If you do not delete the provisions above, a recipient
  33.    - may use your version of this file under either the MPL or the
  34.    - GPL.
  35.   -->
  36.  
  37. <?xml-stylesheet href="chrome://navigator/skin/navigator.css" type="text/css"?>
  38.  
  39. <!DOCTYPE dialog SYSTEM "chrome://communicator/locale/askViewZoom.dtd">
  40.  
  41. <dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  42.   id="askViewZoom"
  43.   title="&askViewZoom.title;"
  44.   ondialogaccept="return onAccept();"
  45.   onload="onLoad();">
  46.  
  47.   <script type="application/x-javascript" src="chrome://communicator/content/askViewZoom.js"/>
  48.  
  49.   <hbox>
  50.     <label value="&selectZoom.label;"/>
  51.   </hbox>
  52.  
  53.   <hbox>
  54.     <textbox id="zoomValue" oninput="doEnabling();"/>
  55.   </hbox>
  56.  
  57. </dialog>
  58.