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 / editor / pref-composer.xul < prev    next >
Extensible Markup Language  |  2003-06-08  |  5KB  |  181 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-2000 Netscape Communications Corporation. All
  19.    Rights Reserved.
  20.    
  21.    Contributor(s): 
  22.      Ryan Cassin (rcassin@supernova.org)
  23.   -->
  24.  
  25. <?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
  26. <?xul-overlay href="chrome://global/content/globalOverlay.xul"?>
  27.  
  28. <!DOCTYPE window SYSTEM "chrome://editor/locale/pref-composer.dtd" >
  29.  
  30. <page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  31.       onload="parent.initPanel('chrome://editor/content/pref-composer.xul');"
  32.       headertitle="&lHeader;">
  33.  
  34.   <script type="application/x-javascript">
  35.   <!-- Add "shouldAutoSave", "autoSaveAmount" to _elementIDs when implemented -->
  36.   <![CDATA[
  37.     var _elementIDs = ["maintainTableStructure", "preserveFormatting", "saveAssociatedFiles", "showPublishDialog", "recentFiles", "useCSS"];
  38.   ]]>
  39.   </script>        
  40.   <script type="application/x-javascript" src="chrome://editor/content/EdDialogCommon.js"/>
  41.   <script type="application/x-javascript" src="chrome://editor/content/editorUtilities.js"/>
  42.         
  43.   <!-- Recent files menu -->
  44.   <groupbox>
  45.     <caption label="&recentFiles.title;"/>
  46.     <hbox align="center">
  47.       <label value="&documentsInMenu;"/>
  48.       <textbox
  49.         id="recentFiles"
  50.         name="recent string" 
  51.         size="3" 
  52.         value="10" 
  53.         preftype="int" 
  54.         prefstring="editor.history.url_maximum"
  55.         oninput=" ValidateNumber(this, null, 0, 99); LimitStringLength('recentFiles',2);"
  56.       />
  57.     </hbox>
  58.   </groupbox>
  59.  
  60. <!-- HTML formatting on output -->
  61.   <groupbox>
  62.     <caption label="&savingFiles.title;"/>
  63.     <spacer class="spacer"/>
  64.     <radiogroup
  65.       id            = "preserveFormatting"
  66.       preftype      = "bool"
  67.       prefstring    = "editor.prettyprint">
  68.       <radio 
  69.         value       = "false"
  70.         label      = "&preserveExistingFormatting;" 
  71.         accesskey  = "&preserveExistingFormatting.accesskey;"
  72.         tooltiptext= "&preserveExistingFormatting.tooltip;"
  73.       />
  74.       <radio 
  75.         value       = "true"
  76.         label      = "&reformat.label;" 
  77.         accesskey  = "&reformat.accesskey;"
  78.         tooltiptext= "&reformat.tooltip;"
  79.       />
  80.     </radiogroup>
  81.     <separator class="thin"/>
  82.     <checkbox 
  83.       label      = "&saveAssociatedFiles.label;"
  84.       id         = "saveAssociatedFiles"
  85.       preftype   = "bool" 
  86.       prefindex  = "0" 
  87.       prefstring = "editor.save_associated_files"
  88.     />
  89.     <checkbox 
  90.       label      = "&showPublishDialog.label;"
  91.       id         = "showPublishDialog"
  92.       preftype   = "bool" 
  93.       prefindex  = "0" 
  94.       prefstring = "editor.always_show_publish_dialog"
  95.     />
  96.   </groupbox>
  97.   
  98.   <groupbox align="start">
  99.     <caption label="&tableEditing.label;"/>
  100.     <checkbox 
  101.       label     = "&maintainTableStructure.label;"
  102.       id        = "maintainTableStructure" 
  103.       accesskey = "&maintainStructure.accesskey;"
  104.       tooltiptext="&maintainTableStructure.tooltip;"
  105.       prefstring= "editor.table.maintain_structure"
  106.     />
  107.     <separator class = "thin"/>
  108.   </groupbox>
  109.  
  110. <!-- Take out Auto-Save; not supported at this time
  111.   <groupbox>
  112.     <caption label="&saving;"/>
  113.     <hbox align="center">
  114.       <checkbox 
  115.         label      = "&AutoSaveCheck;"
  116.         id         = "shouldAutoSave"
  117.         prefstring = "editor.auto_save"
  118.         name       = "autosave" 
  119.       />
  120.       <textbox
  121.         id="autoSaveAmount"
  122.         name="time" 
  123.         size="3" 
  124.         value="5" 
  125.         preftype="int" 
  126.         prefstring="editor.auto_save_delay"
  127.       />
  128.       <label value="&minText;" />
  129.     </hbox>
  130.   </groupbox>
  131. -->
  132.  
  133. <!-- External Editors are not supported at this time
  134.     <groupbox>
  135.       <caption label="&exterLegend.label;"/> 
  136.     <hbox>
  137.       <checkbox 
  138.         name       = "htmlSourceEditorCheckbox"
  139.         label      = "&htmlSource;"
  140.         preftype   = "int" 
  141.         prefindex  = "0" 
  142.         prefstring = "editor.use_html_editor"
  143.       />
  144.       <textbox
  145.         name = "&chooseButton.label;"
  146.         preftype   = "string" 
  147.       />
  148.       <button 
  149.         name  = ""
  150.         label = "&chooseButton.label;"
  151.       />
  152.     </hbox>
  153.  
  154.     <hbox>
  155.       <checkbox 
  156.         name  = "htmlImageEditorCheckbox" 
  157.         label = "&imageeditor;"
  158.         preftype   = "int" 
  159.         prefindex  = "0" 
  160.         prefstring ="editor.use_image_editor"
  161.       />
  162.  
  163.       <textbox
  164.         name="chooseButton.label" 
  165.         prefstring = "editor.image_editor"
  166.       />
  167.       <button label="&chooseButton.label;" />
  168.     </hbox> 
  169.  
  170.   </groupbox>
  171.   -->
  172.   <groupbox>
  173.     <caption label="&cssEditing.label;"/>
  174.     <checkbox
  175.       label     = "&useCSS.label;"
  176.       id        = "useCSS"
  177.       prefstring= "editor.use_css"
  178.     />
  179.   </groupbox>
  180. </page>
  181.