home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2005 October / Gamestar_77_2005-10_dvd.iso / Programy / nsb-install-8-0.exe / chrome / browser.jar / content / browser / clearHistoriesDecisionDialog.xul < prev    next >
Encoding:
Extensible Markup Language  |  2005-07-29  |  1.1 KB  |  33 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://browser/skin/" type="text/css"?>
  3. <?xml-stylesheet href="chrome://global/skin/groupbox.css" type="text/css"?>
  4. <?xml-stylesheet href="chrome://browser/content/browser.css" type="text/css"?> 
  5.  
  6. <!DOCTYPE window [
  7. <!ENTITY % clearHistoriesDecisionDialogDTD SYSTEM "chrome://browser/locale/clearHistoriesDecisionDialog.dtd" >
  8. %clearHistoriesDecisionDialogDTD;
  9. ]>
  10.  
  11. <dialog xmlns:html="http://www.w3.org/1999/xhtml"
  12.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  13.         id="clearHistoriesDecisionDialog"
  14.         buttons="accept,cancel"
  15.         onload="initClearHistoriesDialog();"
  16.         ondialogaccept="setDialogPref();"
  17.         ondialogcancel="cancelAction();"
  18.         title="&clearHistoriesDecisionDialog.title;"
  19.         style="width: 299px">
  20.  
  21.     <script type="application/x-javascript" src="chrome://browser/content/clearHistoriesDecisionDialog.js"/>
  22.     
  23.     <vbox>
  24.         <groupbox class="groupbox-body">
  25.             <description id="clearHistoriesinfoblurb"/>
  26.         </groupbox>
  27.  
  28.         <checkbox id="clearHistoriescheckbox"
  29.                   prefstring="clearhistories.button.dialog" 
  30.                   label="&checkBoxMsg.label;"/>
  31.     </vbox>
  32. </dialog>
  33.