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-debug.xul < prev    next >
Extensible Markup Language  |  2003-06-08  |  4KB  |  103 lines

  1. <?xml version="1.0"?> 
  2. <!--
  3.    The contents of this file are subject to the Netscape Public
  4.    License Version 1.1 (the "License"); you may not use this file
  5.    except in compliance with the License. You may obtain a copy of
  6.    the License at http://www.mozilla.org/NPL/
  7.     
  8.    Software distributed under the License is distributed on an "AS
  9.    IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  10.    implied. See the License for the specific language governing
  11.    rights and limitations under the License.
  12.     
  13.    The Original Code is Mozilla Communicator client code, released
  14.    March 31, 1998.
  15.    
  16.    The Initial Developer of the Original Code is Netscape
  17.    Communications Corporation. Portions created by Netscape are
  18.    Copyright (C) 1998-1999 Netscape Communications Corporation. All
  19.    Rights Reserved.
  20.    
  21.    Contributor(s): 
  22.   -->
  23. <?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
  24.  
  25. <!DOCTYPE page SYSTEM "chrome://communicator/locale/pref/pref-debug.dtd" >
  26.  
  27. <page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  28.       onload="parent.initPanel('chrome://communicator/content/pref/pref-debug.xul');"
  29.       headertitle="&lHeader;">
  30.  
  31.   <script type="application/x-javascript">
  32.   <![CDATA[
  33.     var _elementIDs = ["nglayoutUseNativePrintDialog", "printUseGlobalPrintSettings",
  34.                        "debugXULBoxes", "browserDOMWindowDumpEnabled", 
  35.                        "javascriptOptionsStrict", "javascriptOptionsShowInConsole", 
  36.                        "nglayoutDebugUseXBLForms",
  37.                        "acceleratorKeyValue", "menuAccessKeyValue"];
  38.   ]]>
  39.   </script>
  40.         
  41.   <groupbox align="start">
  42.     <caption label="&widgetRendering.label;"/>
  43.     <grid flex="1">
  44.       <columns>
  45.         <column/>
  46.         <column/>
  47.       </columns>
  48.  
  49.       <rows>
  50.         <row align="center">
  51.           <checkbox id="debugXULBoxes" label="&debugXULBox.label;"
  52.                     prefstring="xul.debug.box"/>
  53.         </row>
  54.       </rows>
  55.     </grid>
  56.   </groupbox>
  57.  
  58.   <!-- nothing on this page has accesskeys because this is a temporary debug
  59.        panel and you can damn well click the widgets! -->
  60.   <groupbox align="start">
  61.     <caption label="&debugMiscellaneous.label;"/>
  62.     <checkbox id="browserDOMWindowDumpEnabled" label="&debugEnableDump.label;"
  63.               prefstring="browser.dom.window.dump.enabled"/>
  64.     <checkbox id="javascriptOptionsStrict" label="&debugStrictJavascript.label;"
  65.               prefstring="javascript.options.strict"/>
  66.     <checkbox id="javascriptOptionsShowInConsole" label="&debugConsoleJavascript.label;"
  67.               prefstring="javascript.options.showInConsole"/>
  68.     <checkbox id="nglayoutDebugUseXBLForms" label="&debugUseXBLForms.label;"
  69.               prefstring="nglayout.debug.enable_xbl_forms"/>
  70.     <checkbox id="nglayoutUseNativePrintDialog" label="&useNativePrintDialog.label;"
  71.               prefstring="print.use_native_print_dialog"/>
  72.     <checkbox id="printUseGlobalPrintSettings" label="&printUseGlobalPrintSettings.label;"
  73.               prefstring="print.use_global_printsettings"/>
  74.   </groupbox>              
  75.  
  76.  
  77.   <groupbox>
  78.     <caption label="&accelerators.label;"/>
  79.     <description value="&acceleratorsBlurb.label;"/>
  80.  
  81.       <grid flex="1">
  82.         <columns>
  83.           <column/>
  84.           <column/>
  85.         </columns>
  86.         
  87.         <rows>
  88.           <row align="center">
  89.             <label value="&acceleratorKey.label;" for="acceleratorKeyValue"/>
  90.             <textbox id="acceleratorKeyValue"  preftype="int"
  91.               prefstring="ui.key.accelKey" size="5"/>
  92.             <label value="&menuAccessKey.label;" control="menuAccessKeyValue"/>
  93.             <textbox id="menuAccessKeyValue"  preftype="int"
  94.               prefstring="ui.key.menuAccessKey" size="5"/>
  95.           </row>
  96.         </rows>
  97.       </grid>
  98.  
  99.   </groupbox>
  100.  
  101. </page>
  102.  
  103.