home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 January / 01_02.iso / software / netscape62win / mail.xpi / bin / chrome / messenger.jar / content / messenger / fieldMapExport.xul < prev    next >
Extensible Markup Language  |  2001-08-31  |  4KB  |  112 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/fieldMapExport.dtd">
  28.  
  29.  
  30. <window xmlns:html="http://www.w3.org/1999/xhtml"
  31.     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  32.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  33.         title="&fieldMapExport.title;"
  34.     class="dialog"
  35.         style="padding:0px"
  36.         onload="OnLoadFieldMapExport()"
  37.         orient="vertical">
  38.  
  39. <html:script src="chrome://messenger/content/fieldMapExport.js"/>
  40. <!--html:script type="application/x-javascript" src="resource:/res/samples/DumpDOM.js"/-->
  41.  
  42.   <keyset id="dialogKeys"/>
  43.  
  44.   <hbox>
  45.   
  46.     <spring style="width:3em"/>
  47.     
  48.     <!-- field list -->
  49.     <vbox>
  50.       <spring style="height:1em"/>
  51.       <html:div id="fieldLabel">Ye old fields</html:div>
  52.       <spring style="height:.5em"/>
  53.         
  54.       <vbox style="border: 1px inset white">
  55.         <html:div style="width:10em; height:200px" flex="1">
  56.           <tree id="fieldList" style="width:100%; height:100%" onselect="FieldSelectionChanged()">
  57.                                                 <treecolgroup>
  58.               <treecol flex="1"/>
  59.                                                 </treecolgroup>
  60.             <treechildren id="fieldBody" flex="1"/>
  61.           </tree>
  62.         </html:div>
  63.       </vbox>
  64.             
  65.       <spring style="height:1.5em"/>
  66.       
  67.     </vbox>
  68.     
  69.     <spring style="width: 1em"/>
  70.  
  71.     <vbox style="height:270px">
  72.       <spring flex="50%"/>
  73.       <button class="dialog push" onclick="OnAddExport()" label="&fieldMapExport.add;"/>
  74.       <button class="dialog push" onclick="OnAddAllExport()" label="&fieldMapExport.addAll;"/>
  75.       <spring flex="50%"/>
  76.     </vbox>
  77.  
  78.     <spring style="width:1em"/>
  79.  
  80.     <!-- export list -->
  81.     <vbox>
  82.       <spring style="height:1em"/>
  83.       <html:div id="exportLabel">Export fields</html:div>
  84.       <spring style="height:.5em"/>
  85.         
  86.       <vbox style="border: 1px inset white">
  87.         <html:div style="width:10em; height:200px" flex="1">
  88.           <tree id="exportList" style="width:100%; height:100%" 
  89.               onselect="ExportSelectionChanged()"
  90.               onkeyup="if (event.keyCode == 8) return( DeleteExportItems());"
  91.               ondragover="return DragOverTree(event);"
  92.               ondraggesture="return BeginDrag( event, true);"
  93.               ondragdrop="return DropOnTree( event);">
  94.             <treecol style="width:100%"/>
  95.             <treechildren id="exportBody"/>
  96.           </tree>
  97.         </html:div>
  98.       </vbox>
  99.             
  100.       <spring style="height:1.5em"/>
  101.       
  102.     </vbox>
  103.   
  104.     <spring style="width:3em"/>
  105.  
  106.   </hbox>
  107.  
  108.   <!-- OK & Cancel buttons -->
  109.   <hbox id="okCancelButtons"/>
  110.  
  111. </window>
  112.