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 / pref / pref-calibrate-screen.xul < prev    next >
Extensible Markup Language  |  2003-06-08  |  2KB  |  72 lines

  1. <?xml version="1.0"?> 
  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 Mozilla Communicator client code, released
  14.    March 31, 1998.
  15.    
  16.    The Initial Developer of the Original Code is Netscape
  17.    Communications Corporation. Portions created by Netscape are
  18.    Copyright (C) 1998-2000 Netscape Communications Corporation. All
  19.    Rights Reserved.
  20.    
  21.    Contributor(s): 
  22.   -->
  23.   
  24. <?xml-stylesheet href="chrome://navigator/skin/" type="text/css"?>
  25.  
  26. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
  27.  
  28. <!DOCTYPE window SYSTEM "chrome://communicator/locale/pref/pref-fonts.dtd" >
  29.  
  30. <window id="calibrateScreen"
  31.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  32.         title="&calibrateDialog.title;"
  33.         class="dialog" 
  34.         onload="Init();"
  35.         persist="screenX screenY">
  36.  
  37.   <script type="application/x-javascript" 
  38.           src="chrome://communicator/content/pref/pref-fonts.js"/>
  39.  
  40.   <vbox align="center">
  41.  
  42.     <vbox id="horizRuler" width="300" height="30" style="margin: 10px; margin-bottom: 0px">
  43.       <hbox height="10px" style="border-bottom: 1px solid black; border-left: 1px solid black; border-right: 1px solid black;"/>
  44.       <hbox height="10px" style="border-top: 1px solid black; border-left: 1px solid black; border-right: 1px solid black;"/>
  45.     </vbox>
  46.  
  47.     <hbox align="center">
  48.       <label value="&calibrate.instructions;"/>
  49.     </hbox>
  50.       
  51.     <separator class="thin"/>
  52.       
  53.     <hbox align="center">
  54.       <textbox id="horizSize" size="5"/>
  55.       <menulist id="units" persist="value">
  56.         <menupopup>
  57.           <menuitem value="centimetres" label="&units.centimetres;"/>
  58.           <menuitem value="inches" label="&units.inches;"/>
  59.         </menupopup>
  60.       </menulist>              
  61.  
  62.     </hbox>
  63.     
  64.     <separator/>
  65.  
  66.     <keyset id="dialogKeys"/>
  67.     <hbox id="okCancelButtonsRight"/>
  68.  
  69.   </vbox>
  70.   
  71. </window>
  72.