home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 15018 / 15018.xpi / chrome / TChanger.jar / content / TChanger / options.xul < prev    next >
Encoding:
Extensible Markup Language  |  2009-11-19  |  2.7 KB  |  88 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3.  
  4. <prefwindow
  5.      title="Throbber Select"
  6.      xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  7.      
  8. <script type="application/x-javascript" 
  9.         src="chrome://TChanger/content/TChangerOverlay.js">
  10. </script>
  11.  
  12.  
  13. <tabbox id="myTabList" selectedIndex="0">
  14.  <tabs>
  15.    <tab label="16x16px animation"/>
  16.    <tab label="20x20px animation"/>
  17.    <tab label="20x20px static image"/>
  18.    <tab label="Misc. Options"/>
  19.  </tabs>
  20.   
  21.   <tabpanels>
  22.   
  23.     <tabpanel>
  24.    
  25.      <vbox flex="5" 
  26.            pack="center" 
  27.            align="center">
  28.       <label value="Change throbber that is visible in Tabs" 
  29.              control=""/> 
  30.       <spacer height="5"/>   
  31.       <image src="chrome://TChanger/skin/tabthrobber.png" />
  32.       <spacer height="10"/>
  33.       <button label="  Select Image  " 
  34.               oncommand="com.TChanger.TChangerP.ThrobberT();" 
  35.               style="list-style-image: url('chrome://TChanger/skin/tick.png')"/>
  36.      </vbox>
  37.  
  38.     </tabpanel>
  39.     
  40.     <tabpanel>
  41.      <vbox  flex="5" 
  42.             pack="center" 
  43.             align="center">
  44.       <label value="Change throbber that is visible in Toolbar" 
  45.              control=""/> 
  46.       <spacer height="5"/> 
  47.       <image src="chrome://TChanger/skin/toolthrobber.png"/>
  48.       <spacer height="5"/>
  49.       <button label="  Select Image  " 
  50.               oncommand="com.TChanger.TChangerP.ThrobberA();"
  51.               style="list-style-image: url('chrome://TChanger/skin/tick.png')" />
  52.      </vbox>
  53.     </tabpanel>
  54.     
  55.     <tabpanel>
  56.      <vbox  flex="5" 
  57.             pack="center" 
  58.             align="center">
  59.       <label value="Change Image displayed when webpage has loaded" 
  60.              control=""/>
  61.       <spacer height="5"/>
  62.       <image src="chrome://TChanger/skin/toolstatic.png"/>
  63.       <spacer height="5"/>
  64.       <button label="  Select Image  " 
  65.               oncommand="com.TChanger.TChangerP.ThrobberS();" 
  66.               style="list-style-image: url('chrome://TChanger/skin/tick.png')"/>
  67.      </vbox>
  68.     </tabpanel>
  69.     
  70.     <tabpanel>
  71.      <vbox flex="5" 
  72.            pack="center" 
  73.            align="center">
  74.       <button label="    Restart Firefox   " 
  75.               oncommand="com.TChanger.TChangerP.restartFF();" 
  76.               style="list-style-image: url('chrome://TChanger/skin/Refresh.png')"/> 
  77.       <spacer height="5"/>
  78.       <button label="  Remove Modifications" 
  79.               oncommand="com.TChanger.TChangerP.deleteall();" 
  80.               style="list-style-image: url('chrome://TChanger/skin/cancel.png')" /> 
  81.      </vbox>
  82.     </tabpanel>
  83.     
  84.   </tabpanels>
  85. </tabbox>
  86.  
  87. </prefwindow>
  88.