home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / mozil06.zip / bin / chrome / messenger.jar / content / messenger / addressbook / abListOverlay.xul < prev    next >
Extensible Markup Language  |  2001-02-14  |  3KB  |  95 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. <!DOCTYPE window SYSTEM "chrome://messenger/locale/addressbook/abMailListDialog.dtd">
  23.  
  24.  
  25. <overlay id="editListOverlay"
  26.          xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  27.  
  28. <script language="JavaScript" src="chrome://messenger/content/addressbook/abMailListDialog.js"/>
  29.  
  30.  
  31. <box id="editlist" align="vertical">
  32.  
  33.     <box align="vertical" style="width:100%">
  34.         <box orient="horizontal">
  35.             <spring flex="1"/>
  36.             <text for="ListName" value="&ListName.label;" class="CardEditLabel"/>
  37.             <box class="CardEditWidth">
  38.                 <textfield id="ListName" flex="1"/>
  39.             </box>
  40.         </box>
  41.         <box orient="horizontal">
  42.             <spring flex="1"/>
  43.             <text for="ListNickName" value="&ListNickName.label;" class="CardEditLabel"/>
  44.             <box class="CardEditWidth">
  45.                 <textfield id="ListNickName" flex="1"/>
  46.             </box>
  47.         </box>
  48.         <box orient="horizontal">
  49.             <spring flex="1"/>
  50.             <text for="ListDescription" value="&ListDescription.label;" class="CardEditLabel"/>
  51.             <box class="CardEditWidth">
  52.                 <textfield id="ListDescription" flex="1"/>
  53.             </box>
  54.         </box>
  55.     </box>
  56.  
  57.     <spring style="height:1em"/>
  58.         
  59.     <text value="&AddressTitle.label;"/>
  60.     <spring style="height:0.1em"/>
  61.     <box orient="horizontal"  flex="100%">
  62.         <box orient="vertical" flex="80%">
  63.             <tree id="addressListTree"        
  64.                   rows="8"
  65.                   onclick="awClickEmptySpace(event.target, true)"
  66.                   style="border:solid black 1px">
  67.  
  68.                 <treecolgroup>
  69.                 <treecol flex="1"/>
  70.                 </treecolgroup>
  71.  
  72.                 <treechildren flex="1" id="addressList">
  73.                     <treeitem>
  74.                         <treerow>
  75.                             <treecell allowevents="true">
  76.                                 <textfield id="address#1"
  77.                                             flex="100%"
  78.                                             onkeypress="handleKeyPress(this, event);"
  79.                                             onclick="awNotAnEmptyArea(event);"
  80.                                             autocomplete="true"
  81.                                             timeout="300"
  82.                                             searchSessionType="addrbook"
  83.                                             />
  84.                             </treecell>
  85.                         </treerow>
  86.                     </treeitem>
  87.                 </treechildren>
  88.             </tree>
  89.         </box>
  90.     </box>
  91. </box>
  92.  
  93. </overlay>
  94.  
  95.