home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 May / PCWorld_2003-05_cd.bin / Komunik / phoenix / chrome / toolkit.jar / content / global / printProgress.xul < prev    next >
Extensible Markup Language  |  2002-07-09  |  3KB  |  88 lines

  1. <?xml version="1.0"?> 
  2.  
  3. <!-- The contents of this file are subject to the Netscape 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/NPL/
  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.   Scott MacGregor <mscott@netscape.com>
  23.   Jean-Francois Ducarroz <ducarroz@netscape.com>
  24.   Rod Spears <rods@netscape.com>
  25.  
  26.  -->
  27.  
  28. <?xml-stylesheet href="chrome://communicator/skin/dialogs.css" type="text/css"?>
  29.  
  30. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
  31.  
  32. <!DOCTYPE window SYSTEM "chrome://global/locale/printProgress.dtd">
  33.  
  34. <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  35.         class="dialog"
  36.         title="&printWindow.title;"
  37.         style="width: 36em;"
  38.         onload="onLoad()"
  39.         onunload="onUnload()">
  40.  
  41.   <script type="application/x-javascript" src="chrome://global/content/printProgress.js"/>
  42.  
  43.     <!-- This is non-visible content that simply adds translatable string
  44.          into the document so that it is accessible to JS code.
  45.          
  46.          XXX-TODO: 
  47.           convert to use string bundles. 
  48.     -->
  49.   
  50.     <data id="dialog.strings.dialogCloseLabel">&dialogClose.label;</data>
  51.     <data id="dialog.strings.printComplete">&printComplete;</data>
  52.     <data id="dialog.strings.progressText">&percentPrint;</data>
  53.     <data id="dialog.strings.progressLabel">&progress;</data>
  54.     <data id="dialog.strings.preparing">&preparing;</data>
  55.  
  56.     <grid flex="1">
  57.       <columns>
  58.         <column/>
  59.         <column/>
  60.         <column/>
  61.       </columns>
  62.       
  63.       <rows>
  64.         <row>
  65.           <hbox pack="end">
  66.             <label id="dialog.titleLabel" value="&title;"/>
  67.           </hbox>
  68.             <label id="dialog.title"/>
  69.         </row>
  70.         <row class="thin-separator">             
  71.           <hbox pack="end">
  72.             <label id="dialog.progressLabel" value="&progress;"/>
  73.           </hbox>
  74.             <label id="dialog.tempLabel" value="&preparing;"/>
  75.             <progressmeter id="dialog.progress" mode="normal" value="0"/>
  76.           <hbox pack="end" style="min-width: 2.5em;">
  77.             <label id="dialog.progressText"/>
  78.           </hbox>
  79.         </row>
  80.       </rows>
  81.     </grid>
  82.     <separator/>
  83.     <hbox id="CancelButton" pack="end">
  84.       <button id="cancel" label="&dialogCancel.label;" 
  85.         oncommand="doCancelButton()"/>
  86.     </hbox>
  87. </window>
  88.