home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2005 October / Gamestar_77_2005-10_dvd.iso / Programy / nsb-install-8-0.exe / chrome / toolkit.jar / content / mozapps / autofill / datacardSaveNewDialog.xul < prev    next >
Extensible Markup Language  |  2005-07-29  |  1KB  |  39 lines

  1. <?xml version="1.0"?> 
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3. <dialog id="datacardSaveNewDialog"
  4.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  5.         title="Save New DataCard"
  6.         style="width: 250px;"
  7.         persist="screenX screenY"
  8.         onload="initSaveNewDialog();" 
  9.         buttons="accept,cancel"
  10.         ondialogaccept="return onSaveNewAccept();"
  11.         ondialogcancel="">
  12.  
  13. <script type="application/x-javascript"
  14.         src="chrome://mozapps/content/autofill/datacardDialogs.js"/>
  15. <script type="application/x-javascript"
  16.         src="chrome://mozapps/content/autofill/masterpassword.js" />
  17.  
  18. <description>Do you want to save the data in this form?</description>
  19.  
  20. <radiogroup id="datacardChoice" oncommand="enableDisable();">
  21.  
  22.     <radio id="saveNew" value="saveNew" label="Save a New DataCard"/>
  23.     <vbox style="margin-left: 20px;">
  24.         <hbox align="center">
  25.             <label value="DataCard Name:"/>
  26.             <textbox id="datacardName" maxlength="20"/>
  27.         </hbox>
  28.         <checkbox id="passwordProtect"
  29.                   label="Password Protect Sensitive Data"
  30.                   oncommand="onPasswordProtect(this.checked);"/>
  31.     </vbox>
  32.  
  33.     <!--<radio value="doNotSave" label="Do not save the data in this form."/>-->
  34.  
  35.     <radio value="neverForThisSite" label="Never save form data for this site."/>
  36.  
  37. </radiogroup>
  38.  
  39. </dialog>