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

  1. <?xml version="1.0"?> <!-- -*- Mode: HTML -*- -->
  2.  
  3. <!--
  4. The contents of this file are subject to the Netscape Public
  5. License Version 1.1 (the "License"); you may not use this file
  6. except in compliance with the License. You may obtain a copy of
  7. the License at http://www.mozilla.org/NPL/
  8.  
  9. Software distributed under the License is distributed on an "AS
  10. IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  11. implied. See the License for the specific language governing
  12. rights and limitations under the License.
  13.  
  14. The Original Code is Mozilla Communicator client code, released
  15. March 31, 1998.
  16.  
  17. The Initial Developer of the Original Code is Netscape
  18. Communications Corporation. Portions created by Netscape are
  19. Copyright (C) 1998-1999 Netscape Communications Corporation. All
  20. Rights Reserved.
  21.  
  22. Contributor(s): Stuart Parmenter <pavlov@netscape.com>
  23.                 Simon Fraser <sfraser@netscape.com>
  24.                 Bill Law <law@netscape.com>
  25.                 Ben Goodger <rgoodger@ihug.co.nz>
  26.                 Blake Ross <BlakeR1234@aol.com>
  27.         Dan Rosen <dr@netscape.com>
  28. -->
  29.  
  30. <?xml-stylesheet href="chrome://navigator/skin/" type="text/css"?>
  31.  
  32. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
  33.  
  34. <!DOCTYPE window SYSTEM "chrome://global/locale/finddialog.dtd">
  35.  
  36. <window xmlns:html="http://www.w3.org/1999/xhtml"
  37.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  38.   id="findDialog"
  39.   onload="onLoad();"
  40.   onunload="onUnload();"
  41.   title="&findDialog.title;"
  42.   debug="false"
  43.   class="dialog"
  44.   align="vertical"
  45.   persist="screenX screenY"
  46.   screenX="24" screenY="24">
  47.  
  48.   <html:script language="JavaScript" src="chrome://global/content/finddialog.js"/>
  49.  
  50.   <box>
  51.   
  52.     <!-- hack. we seem to need this separator to get it to render -->
  53.     <separator orient="vertical" class="thin"/>
  54.  
  55.     <box orient="vertical">
  56.       <text class="label" value="&findField.label;"/>
  57.     </box>
  58.     
  59.     <box orient="vertical">
  60.       <textfield id="dialog.findKey" oninput="return onTyping();"/>
  61.       <box orient="vertical" autostretch="never">
  62.         <checkbox id="dialog.caseSensitive" value="&caseSensitiveCheckbox.label;"/>
  63.         <checkbox id="dialog.wrap" value="&wrapCheckbox.label;"/>
  64.         <checkbox id="dialog.searchBackwards" value="&backwardsCheckbox.label;"/>
  65.       </box>
  66.     </box>
  67.   </box>
  68.  
  69.   <!-- used to store the find text -->
  70.   <foo style="display:none;" id="fBLT" value="&findButton.label;"/>
  71.  
  72.   <separator/>
  73.  
  74.   <!-- Places to overlay common dialog buttons and keyset -->
  75.   <box id="okCancelButtons"/>
  76.   <keyset id="keyset"/>
  77.  
  78. </window>
  79.