home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / mozil06.zip / bin / chrome / messenger.jar / content / messenger / SearchDialog.xul < prev    next >
Extensible Markup Language  |  2001-02-14  |  3KB  |  91 lines

  1. <?xml version="1.0"?>
  2.  
  3.  
  4. <!--
  5. The contents of this file are subject to the Netscape Public
  6. License Version 1.1 (the "License"); you may not use this file
  7. except in compliance with the License. You may obtain a copy of
  8. the License at http://www.mozilla.org/NPL/
  9.  
  10. Software distributed under the License is distributed on an "AS
  11. IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  12. implied. See the License for the specific language governing
  13. rights and limitations under the License.
  14.  
  15. The Original Code is Mozilla Communicator client code, released
  16. March 31, 1998.
  17.  
  18. The Initial Developer of the Original Code is Netscape
  19. Communications Corporation. Portions created by Netscape are
  20.  Copyright (C) 1998-1999 Netscape Communications Corporation. All
  21. Rights Reserved.
  22. -->
  23.  
  24. <?xml-stylesheet href="chrome://messenger/skin/messenger.css" type="text/css"?>
  25. <?xul-overlay href="chrome://messenger/content/threadPane.xul"?>
  26. <?xul-overlay href="chrome://messenger/content/searchTermOverlay.xul"?>
  27. <?xul-overlay href="chrome://messenger/content/msgFolderPickerOverlay.xul"?>
  28. <?xul-overlay href="chrome://messenger/content/mailWindowOverlay.xul"?>
  29. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
  30.  
  31. <!DOCTYPE window SYSTEM "chrome://messenger/locale/SearchDialog.dtd" >
  32.  
  33. <window xmlns:html="http://www.w3.org/1999/xhtml"
  34.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  35.     onload="searchOnLoad();"
  36.     onunload="searchOnUnload();"
  37.     title="&searchDialogTitle.label;"
  38.     width="640" height="470"
  39.     persist="screenX screenY width height"
  40.     class="color-dialog"
  41.     orient="vertical">
  42.  
  43.   <keyset id="keyset"/>
  44.   
  45.   <script src="chrome://global/content/strres.js"/>
  46.   <script src="chrome://messenger/content/mailWindow.js"/>
  47.   <script src="chrome://messenger/content/SearchDialog.js"/>
  48.  
  49.   <dummy class="usesMailWidgets"/>
  50.   <box flex="1" orient="vertical">
  51.     
  52.     <titledbox value="&conditions.label;" orient="vertical" class="dialog box-padded" flex="1">
  53.  
  54.       <box autostretch="never">
  55.         <text class="label" value="&searchHeading.label;"/>
  56.         <menulist id="searchableFolders" flex="2"
  57.                 oncommand="onChooseFolder(event)"/>
  58.         <spring flex="1"/>
  59.           <checkbox id="checkSearchSubFolders" value="&searchSubfolders.label;" checked="true"/>
  60.       </box>
  61.       <separator/>
  62.       <text class="label" value="&conditionDesc.label;"/>
  63.  
  64.       <box flex="1">
  65.         <box id="searchTermListBox" flex="1"/>
  66.         
  67.         <box orient="vertical">
  68.            <spring flex="1"/>
  69.            <button value="&searchButton.label;" oncommand="onSearch(event)"/>
  70.            <button value="&resetButton.label;" oncommand="onReset(event)"/>
  71.            <spring flex="1"/>
  72.          </box>
  73.       </box>
  74.     </titledbox>
  75.     
  76.     <splitter id="gray_horizontal_splitter" collapse="after"  persist="state"/>
  77.     
  78.     <titledbox value="&results.label;" orient="vertical" class="dialog box-padded" flex="1">
  79.        <box id="searchTermListBox" orient="vertical" flex="1">
  80.             <tree id="threadTree" flex="1" context="threadPaneContext"/>
  81.        </box>
  82.     </titledbox>
  83.     
  84.     <box autostretch="never" align="right">
  85.       <button value="&closeButton.label;" onclick="window.close();"/>
  86.     </box>
  87.   
  88.   </box>
  89.   <statusbar id="status-bar"/>
  90.   
  91. </window>