home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / mozil06.zip / bin / chrome / messenger.jar / content / messenger / fieldMapImport.xul < prev    next >
Extensible Markup Language  |  2001-02-14  |  3KB  |  84 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/fieldMapImport.css" type="text/css"?>
  23.  
  24. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
  25.  
  26.  
  27. <!DOCTYPE window SYSTEM "chrome://messenger/locale/fieldMapImport.dtd">
  28.  
  29.  
  30. <window xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  31.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  32.         title="&fieldMapImport.title;"
  33.         class="dialog"
  34.         onload="OnLoadFieldMapImport()"
  35.         align="vertical">
  36.  
  37. <script src="chrome://global/content/strres.js"/>
  38. <script src="chrome://messenger/content/fieldMapImport.js"/>
  39.  
  40.     <keyset id="keyset"/>
  41.  
  42.     <!-- field list -->
  43.     <box id="fieldList-box" align="vertical">
  44.         <tree    id="fieldList" flex="1"
  45.                 ondragover="return DragOverTree(event);"
  46.                 ondraggesture="return BeginDrag( event);"
  47.                 ondragdrop="return DropOnTree( event);">
  48.       <treecolgroup>
  49.               <treecol flex="35" style="width:0px"/>
  50.               <treecol flex="65" id="dataColumn" style="width:0px"/>
  51.       </treecolgroup>
  52.  
  53.             <treehead>
  54.                 <treerow id="headRow">
  55.                     <treecell id="fieldNameHeader" value="&fieldMapImport.fieldListTitle;"/>
  56.                     <treecell id="sampleDataHeader" value="&fieldMapImport.dataTitle;"/>
  57.                 </treerow>
  58.             </treehead>
  59.  
  60.             <treechildren id="fieldBody" flex="1"/>
  61.         </tree>
  62.     </box>
  63.     
  64.     <spring style="height: .5em"/>
  65.  
  66.     <box align="horizontal">
  67.         <spring flex="50%"/>
  68.         <button class="dialog" id="previous" oncommand="OnPreviousRecord()" value="&fieldMapImport.previous;"/>
  69.         <spring style="width: 2em"/>
  70.         <text value="&fieldMapImport.recordNumber;"/>
  71.         <spring style="width: 1em"/>
  72.         <text id="recordNumber"/>
  73.         <spring style="width: 2em"/>
  74.         <button class="dialog" id="next" oncommand="OnNextRecord()" value="&fieldMapImport.next;"/>
  75.         <spring flex="50%"/>        
  76.     </box>
  77.  
  78.     <spring style="height: 2em"/>
  79.  
  80.     <!-- OK & Cancel buttons -->
  81.     <box id="okCancelButtons"/>
  82.  
  83. </window>
  84.