home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2005 August / PCpro_2005_08.ISO / files / firefox / ieview.xpi / chrome / ieview.jar / content / ieviewsettings.xul < prev    next >
Encoding:
Extensible Markup Language  |  2005-04-17  |  2.1 KB  |  82 lines

  1. <?xml version="1.0"?> 
  2. <?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
  3. <!DOCTYPE window SYSTEM "chrome://ieview/locale/ieview.dtd" >
  4.  
  5. <dialog xmlns:html="http://www.w3.org/1999/xhtml"
  6.       xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  7.       xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  8.       onload="IeView.initPath();"
  9.       ondialogaccept="IeView.setIeviewOptions();"
  10.       title="&ieview.prefdialogtitle;">
  11.  
  12. <html:script language="javascript" src="chrome://ieview/content/ieviewOverlay.js" />
  13.  
  14. <!-- r@bitwaste.com : mark that we want to save the search option into 
  15.      the preferences -->
  16. <script type="application/x-javascript">
  17.   <![CDATA[
  18.     var panel = "chrome://ieview/content/ieviewsettings.xul";
  19.     var _elementIDs = [ "ieloc" ];
  20.   ]]>
  21. </script>
  22.  
  23.  
  24. <vbox>
  25.     <groupbox>
  26.         <caption label="&ieview.prefdialoglocgroup;" />
  27.  
  28.         <description>
  29.             &ieview.prefdialoglocdesc1;
  30.         </description>
  31.         <description>
  32.             &ieview.prefdialoglocdesc2;
  33.         </description>
  34.     
  35.         <hbox align="center"> 
  36.             <label control="ieloc" value="&ieview.prefdialogloclabel;"/>
  37.             
  38.             <textbox id="ieloc" 
  39.                 pref="true"
  40.                 preftype="string"
  41.                 prefstring="ieview.ieapp"
  42.                 size="50"
  43.              /> 
  44.         
  45.             <button class="" 
  46.              label="&ieview.prefdialoglocchoose;" 
  47.              disabled="false"
  48.              oncommand="IeView.pickIe();"/>
  49.         </hbox>
  50.     </groupbox>
  51.  
  52.     <groupbox>
  53.         <caption label="&ieview.prefdialogpatgroup;" />
  54.  
  55.         <description>
  56.             &ieview.prefdialogpatdesc;
  57.         </description>
  58.  
  59.         <hbox align="center">
  60.             <listbox id="patlist" flex="1" disableKeyNavigation="true" seltype="multiple" onselect="IeView.updateDelButtonStatus();" />
  61.             <button id="delpat" class="" label="&ieview.prefdialogdeletebutton;" disabled="true" oncommand="IeView.deleteSelected();" />
  62.         </hbox>
  63.  
  64.         <hbox align="center"> 
  65.             <label control="newpat" value="&ieview.prefdialogpatlabel;"/>
  66.         
  67.             <textbox id="newpat" pref="false" size="50" oninput="IeView.updateButtonStatus();" /> 
  68.     
  69.             <button class="" id="addpat"
  70.                  label="&ieview.prefdialogaddbutton;" 
  71.                  disabled="true"
  72.                  oncommand="IeView.addNewPat();"/>
  73.         </hbox>
  74.     </groupbox>
  75.  
  76.  
  77. </vbox>           
  78.  
  79.  
  80. </dialog>
  81.  
  82.