home *** CD-ROM | disk | FTP | other *** search
/ ftp.swcp.com / ftp.swcp.com.zip / ftp.swcp.com / mac / mozilla-macos9-1.3.1.sea.bin / Mozilla1.3.1 / Chrome / comm.jar / content / communicator / pref / pref-appearance.xul < prev    next >
Extensible Markup Language  |  2003-06-08  |  3KB  |  87 lines

  1. <?xml version="1.0"?> 
  2.  
  3. <!--
  4.    The contents of this file are subject to the Netscape Public
  5.    License Version 1.1 (the "License"); you may not use this file
  6.    except in compliance with the License. You may obtain a copy of
  7.    the License at http://www.mozilla.org/NPL/
  8.     
  9.    Software distributed under the License is distributed on an "AS
  10.    IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  11.    implied. See the License for the specific language governing
  12.    rights and limitations under the License.
  13.     
  14.    The Original Code is Mozilla Communicator client code, released
  15.    March 31, 1998.
  16.    
  17.    The Initial Developer of the Original Code is Netscape
  18.    Communications Corporation. Portions created by Netscape are
  19.    Copyright (C) 1998-1999 Netscape Communications Corporation. All
  20.    Rights Reserved.
  21.    
  22.    Contributor(s): 
  23.   -->
  24.  
  25. <?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
  26.  
  27. <!DOCTYPE page [
  28. <!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
  29. %brandDTD;
  30. <!ENTITY % prefAppearanceDTD SYSTEM "chrome://communicator/locale/pref/pref-appearance.dtd" >
  31. %prefAppearanceDTD;
  32. ]>
  33. <page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  34.       onload="parent.initPanel(panel);"
  35.       headertitle="&lHeader;">
  36.  
  37.   <script type="application/x-javascript">
  38.   <![CDATA[
  39.     var panel = "chrome://communicator/content/pref/pref-appearance.xul";
  40.     var _elementIDs = [
  41.       "generalStartupBrowser", "toolbarStyle", "showHideTooltips",
  42.       "useSiteIcons", "enableAutomaticImageResizing"
  43.     ];
  44.   ]]>
  45.   </script>
  46.           
  47.   <groupbox id="generalStartupPreferences" align="start">
  48.     <caption label="&onStartLegend.label;"/>
  49.     <!-- XXX remove when navigator overlays.rdf works -->
  50.     <checkbox id="generalStartupBrowser"
  51.               label="&navCheck.label;" accesskey="&navCheck.accesskey;"
  52.               prefstring="general.startup.browser"/>
  53.     <!-- XXX -->
  54.   </groupbox>
  55.   
  56.   <groupbox id="toolbarStyleBox">
  57.     <caption label="&showToolsLegend.label;"/>
  58.     <radiogroup id="toolbarStyle" align="start"
  59.                 prefstring="browser.chrome.toolbar_style">
  60.       <radio group="toolbarStyle" value="2" label="&picsNtextRadio.label;" accesskey="&picsNtextRadio.accesskey;"/>
  61.       <radio group="toolbarStyle" value="0" label="&picsOnlyRadio.label;" accesskey="&picsOnlyRadio.accesskey;"/>
  62.       <radio group="toolbarStyle" value="1" label="&textonlyRadio.label;" accesskey="&textonlyRadio.accesskey;"/>
  63.     </radiogroup>
  64.   </groupbox>
  65.  
  66.   <vbox class="box-padded" align="start">
  67.     <separator class="thin" />
  68.  
  69.     <checkbox id="showHideTooltips" label="&showHideTooltips.label;"
  70.               accesskey="&showHideTooltips.accesskey;"
  71.               prefstring="browser.chrome.toolbar_tips"/>
  72.     
  73.     <checkbox id="useSiteIcons" label="&useSiteIcons.label;"
  74.               accesskey="&useSiteIcons.accesskey;"
  75.               prefstring="browser.chrome.site_icons"/>
  76.  
  77.     <checkbox id="enableAutomaticImageResizing"
  78.               label="&enableAutomaticImageResizing.label;"
  79.               accesskey="&enableAutomaticImageResizing.accesskey;"
  80.               prefstring="browser.enable_automatic_image_resizing"/>
  81.  
  82.     <separator/>
  83.  
  84.   </vbox> 
  85. </page>
  86.  
  87.