home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / mozil06.zip / bin / chrome / messenger.jar / content / messenger / fieldMapExport.xul < prev    next >
Extensible Markup Language  |  2001-02-14  |  4KB  |  113 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/messenger.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.         align="vertical">
  38.  
  39. <html:script src="chrome://global/content/strres.js"/>
  40. <html:script src="chrome://messenger/content/fieldMapExport.js"/>
  41. <!--html:script language="JavaScript" src="resource:/res/samples/DumpDOM.js"/-->
  42.  
  43.     <keyset id="keyset"/>
  44.  
  45.     <box align="horizontal">
  46.     
  47.         <spring style="width:3em"/>
  48.         
  49.         <!-- field list -->
  50.         <box align="vertical">
  51.             <spring style="height:1em"/>
  52.             <html:div id="fieldLabel">Ye old fields</html:div>
  53.             <spring style="height:.5em"/>
  54.                 
  55.             <box align="vertical" style="border: 1px inset white">
  56.                 <html:div style="width:10em; height:200px" flex="1">
  57.                     <tree id="fieldList" style="width:100%; height:100%" onselect="FieldSelectionChanged()">
  58.                                                 <treecolgroup>
  59.                           <treecol flex="1"/>
  60.                                                 </treecolgroup>
  61.                         <treechildren id="fieldBody" flex="1"/>
  62.                     </tree>
  63.                 </html:div>
  64.             </box>
  65.                         
  66.             <spring style="height:1.5em"/>
  67.             
  68.         </box>
  69.         
  70.         <spring style="width: 1em"/>
  71.  
  72.         <box align="vertical" style="height:270px">
  73.             <spring flex="50%"/>
  74.             <titledbutton class="dialog push" onclick="OnAddExport()" value="&fieldMapExport.add;"/>
  75.             <titledbutton class="dialog push" onclick="OnAddAllExport()" value="&fieldMapExport.addAll;"/>
  76.             <spring flex="50%"/>
  77.         </box>
  78.  
  79.         <spring style="width:1em"/>
  80.  
  81.         <!-- export list -->
  82.         <box align="vertical">
  83.             <spring style="height:1em"/>
  84.             <html:div id="exportLabel">Export fields</html:div>
  85.             <spring style="height:.5em"/>
  86.                 
  87.             <box align="vertical" style="border: 1px inset white">
  88.                 <html:div style="width:10em; height:200px" flex="1">
  89.                     <tree    id="exportList" style="width:100%; height:100%" 
  90.                             onselect="ExportSelectionChanged()"
  91.                             onkeyup="if (event.keyCode == 8) return( DeleteExportItems());"
  92.                             ondragover="return DragOverTree(event);"
  93.                             ondraggesture="return BeginDrag( event, true);"
  94.                             ondragdrop="return DropOnTree( event);">
  95.                         <treecol style="width:100%"/>
  96.                         <treechildren id="exportBody"/>
  97.                     </tree>
  98.                 </html:div>
  99.             </box>
  100.                         
  101.             <spring style="height:1.5em"/>
  102.             
  103.         </box>
  104.     
  105.         <spring style="width:3em"/>
  106.  
  107.     </box>
  108.  
  109.     <!-- OK & Cancel buttons -->
  110.     <box id="okCancelButtons"/>
  111.  
  112. </window>
  113.