home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 January / 01_02.iso / software / netscape62win / mail.xpi / bin / chrome / messenger.jar / content / messenger / fieldMapImport.xul < prev    next >
Extensible Markup Language  |  2001-08-31  |  3KB  |  83 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/dialogs.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.         orient="vertical">
  36.  
  37.   <script type="application/x-javascript" src="chrome://messenger/content/fieldMapImport.js"/>
  38.  
  39.   <keyset id="dialogKeys"/>
  40.  
  41.   <!-- field list -->
  42.   <vbox id="fieldList-box">
  43.     <tree id="fieldList" flex="1"
  44.         ondragover="return DragOverTree(event);"
  45.         ondraggesture="return BeginDrag( event);"
  46.         ondragdrop="return DropOnTree( event);">
  47.       <treecolgroup>
  48.         <treecol flex="35" style="width:0px"/>
  49.         <treecol flex="65" id="dataColumn" style="width:0px"/>
  50.       </treecolgroup>
  51.  
  52.       <treehead>
  53.         <treerow id="headRow">
  54.           <treecell id="fieldNameHeader" label="&fieldMapImport.fieldListTitle;"/>
  55.           <treecell id="sampleDataHeader" label="&fieldMapImport.dataTitle;"/>
  56.         </treerow>
  57.       </treehead>
  58.  
  59.       <treechildren id="fieldBody" flex="1"/>
  60.     </tree>
  61.   </vbox>
  62.   
  63.   <spring style="height: .5em"/>
  64.  
  65.   <hbox>
  66.     <spring flex="50%"/>
  67.     <button class="dialog" id="previous" oncommand="OnPreviousRecord()" label="&fieldMapImport.previous;"/>
  68.     <spring style="width: 2em"/>
  69.     <text value="&fieldMapImport.recordNumber;"/>
  70.     <spring style="width: 1em"/>
  71.     <text id="recordNumber"/>
  72.     <spring style="width: 2em"/>
  73.     <button class="dialog" id="next" oncommand="OnNextRecord()" label="&fieldMapImport.next;"/>
  74.     <spring flex="50%"/>    
  75.   </hbox>
  76.  
  77.   <spring style="height: 2em"/>
  78.  
  79.   <!-- OK & Cancel buttons -->
  80.   <hbox id="okCancelButtons"/>
  81.  
  82. </window>
  83.