home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / mozil06.zip / bin / chrome / messenger.jar / content / messenger / importDialog.xul < prev    next >
Extensible Markup Language  |  2001-02-14  |  4KB  |  107 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-1999 Netscape Communications Corporation. All
  19. Rights Reserved.
  20. --> 
  21.  
  22. <?xml-stylesheet href="chrome://messenger/skin/" type="text/css"?> 
  23.  
  24. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
  25.  
  26. <!DOCTYPE window [
  27. <!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
  28. %brandDTD;
  29. <!ENTITY % importDTD SYSTEM "chrome://messenger/locale/importDialog.dtd" >
  30. %importDTD;
  31. ]>
  32.  
  33. <window xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  34.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  35.         onload="OnLoadImportDialog()" class="color-dialog"
  36.         orient="vertical" style="width: 40em;"
  37.         title="&importDialog.windowTitle;">
  38.  
  39. <script src="chrome://global/content/strres.js"/>
  40. <script src="chrome://messenger/content/importDialog.js"/>
  41.  
  42.     <keyset id="keyset"/>
  43.     
  44.   <box class="box-header" id="header"
  45.        title="&importTitle.label;"
  46.        description="&importDesc.label;"/>
  47.  
  48.   <deck id="stateDeck" index="0">
  49.     <box class="wizard-box" orient="vertical">
  50.       <html>&importDescription.label;</html>
  51.       <html>&importDescription2.label;</html>
  52.       <separator/>
  53.       <html>&select.label;</html>
  54.       <separator class="thin"/>
  55.       <radiogroup id="importFields" orient="vertical" class="indent" autostretch="never">
  56.             <radio group="importFields" data="addressbook" id="addressbookRadio" value="&importDialog.addressbookTitle;"/>
  57.             <radio group="importFields" data="mail" id="mailRadio" value="&importDialog.mailTitle;"/>
  58.             <radio group="importFields" data="settings" id="settingsRadio" value="&importDialog.settingsTitle;"/>
  59.       </radiogroup>
  60.     </box>
  61.     <box class="wizard-box" orient="vertical">
  62.           <html>&selectDescription.label;</html>
  63.       <tree class="inset" id="moduleList" flex="3" onselect="ImportSelectionChanged(); enableAdvance();" 
  64.             style="height: 0px;">
  65.         <treecolgroup>
  66.           <treecol flex="1"/>
  67.         </treecolgroup>
  68.         <treechildren id="bucketBody" flex="1"/>
  69.       </tree>
  70.       <html id="description" class="box-padded" flex="1"/>
  71.         </box>
  72.     <box class="wizard-box" orient="vertical">
  73.       <spring flex="1"/>
  74.       <titledbox orient="vertical">
  75.         <title id="progressTitle" value="Title"/>
  76.           <text class="label indent" id="progressStatus" value="Processing"/>
  77.         <box class="box-padded" orient="vertical">
  78.           <progressmeter id="progressMeter" mode="normal" value="5"/>
  79.         </box>
  80.       </titledbox>
  81.     </box>
  82.     <box class="wizard-box" orient="vertical">
  83.       <html id="status"/>
  84.       <box style="overflow: auto" class="inset color-window" flex="1">
  85.         <html id="results" flex="1"/>
  86.       </box>
  87.     </box>
  88.     </deck>
  89.  
  90.   <separator/>
  91.   
  92.   <separator class="groove"/>
  93.   
  94.   <box class="box-padded">
  95.     <spring flex="1"/>
  96.     <button id="back" value="&back.label;" disabled="true"
  97.             oncommand="back();"/>
  98.     <button id="forward" value="&forward.label;" nextval="&forward.label;" finishedval="&finish.label;" 
  99.             oncommand="next();"/>
  100.     <separator orient="vertical"/>
  101.     <button id="cancel" value="&cancel.label;"
  102.             oncommand="close();"/>
  103.   </box>
  104.     
  105.  
  106. </window>
  107.