home *** CD-ROM | disk | FTP | other *** search
/ PC User 2004 November / PCU1104CD1.iso / software / security / files / spoofire.xpi / chrome / spoofstick.jar / content / options.xul < prev    next >
Encoding:
Extensible Markup Language  |  2004-06-12  |  1.5 KB  |  56 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4.    - SpoofStick Options Window
  5.    -
  6.    - Copyright (C) 2004 CoreStreet, Ltd.
  7.    -
  8.    - Author: Mark Ayzenshtat
  9.   -->
  10.  
  11. <!DOCTYPE dialog>
  12. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  13.  
  14. <dialog id="spoofstick-options-window"
  15.     xmlns:html="http://www.w3.org/1999/xhtml"
  16.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  17.     title="Preferences"
  18.     onload="loadOptions();"
  19.     buttons="accept,cancel"
  20.     ondialogaccept="saveOptionsAndClose();"
  21.     ondialogcancel="window.close();"    
  22.     align="stretch">
  23.  
  24.     <script src="options.js"/>
  25.  
  26.     <vbox>
  27.         <hbox align="center">
  28.             <vbox>
  29.                 <checkbox id="youareon-cb" label="Show 'You're on'"/>
  30.                 <checkbox id="optionsbutton-cb" label="Show 'Options' button"/>
  31.                 <checkbox id="fullhostname-cb" label="Show full host name"/>
  32.             </vbox>
  33.         </hbox>
  34.  
  35.         <groupbox>
  36.             <caption label="Display Size"/>
  37.             <radiogroup id="size-rg" orient="vertical">
  38.                 <radio id="radio-size-1" group="size-rg" label="Small" value="1"/>
  39.                 <radio id="radio-size-2" group="size-rg" label="Medium" value="2"/>
  40.                 <radio id="radio-size-3" group="size-rg" label="Large" value="3"/>
  41.             </radiogroup>
  42.         </groupbox>
  43.  
  44.         <hbox pack="center">
  45.             <description value="Display Color:"/><colorpicker id="display-color" type="button"/>            
  46.         </hbox>
  47.         
  48.         <hbox pack="center">
  49.             <html:p>        
  50.                 <html:a onclick="openAboutWindow();"
  51.                             href=""
  52.                             style="color: blue; text-decoration: underline;">About SpoofStick</html:a>
  53.             </html:p>
  54.         </hbox>
  55.     </vbox>
  56. </dialog>