home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Complet / thunderbird / chrome / mail.jar / content / editor / EdListProps.xul < prev    next >
Encoding:
Extensible Markup Language  |  2003-03-17  |  3.4 KB  |  81 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.    -   Charles Manske (cmanske@netscape.com)
  23.    -   Ryan Cassin (rcassin@supernova.org)
  24.    -   Neil Rashbrook <neil@parkwaycc.co.uk>
  25.   -->
  26.  
  27. <?xml-stylesheet href="chrome://editor/skin/editor.css" type="text/css"?>
  28. <?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>
  29.  
  30. <?xul-overlay href="chrome://editor/content/EdDialogOverlay.xul"?> 
  31.  
  32. <!DOCTYPE dialog SYSTEM "chrome://editor/locale/EditorListProperties.dtd">
  33. <dialog title="&windowTitle.label;"
  34.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  35.     onload = "Startup()"
  36.     ondialogaccept="return onAccept();"
  37.     ondialogcancel="return onCancel();">
  38.  
  39.   <!-- Methods common to all editor dialogs -->
  40.   <script type="application/x-javascript" src="chrome://editor/content/editorUtilities.js"/>
  41.   <script type="application/x-javascript" src="chrome://editor/content/EdDialogCommon.js"/>
  42.   <script type="application/x-javascript" src="chrome://editor/content/EdListProps.js"/>
  43.  
  44.   <broadcaster id="args" value=""/>
  45.   <spacer id="location" offsetY="50" persist="offsetX offsetY"/>
  46.  
  47.   <groupbox flex="1"><caption label="&ListType.label;"/>
  48.     <menulist id="ListType" oncommand="SelectListType()">
  49.       <menupopup>
  50.         <menuitem label="&none.value;"/>
  51.         <menuitem value="ul" label="&bulletList.value;"/>
  52.         <menuitem value="ol" label="&numberList.value;"/>
  53.         <menuitem value="dl" label="&definitionList.value;"/>
  54.       </menupopup>
  55.     </menulist>
  56.   </groupbox>
  57.   <spacer class="spacer"/>
  58.  
  59.   <!-- message text and list items are set in JS 
  60.        text value should be identical to string with id=BulletStyle in editor.properties 
  61.   -->
  62.   <groupbox flex="1"><caption id="BulletStyleLabel" label="&bulletStyle.label;"/>
  63.     <menulist class="MinWidth10em" id="BulletStyle" oncommand="SelectBulletStyle()">
  64.       <menupopup/>
  65.     </menulist>
  66.     <spacer class="spacer"/>
  67.     <hbox>
  68.       <label id="StartingNumberLabel" control="StartingNumber"
  69.              value="&startingNumber.label;" accesskey="&startingNumber.accessKey;"/>
  70.       <textbox class="narrow" id="StartingNumber"/>
  71.       <spacer/>
  72.     </hbox>
  73.   </groupbox>
  74.   <radiogroup id="RadioGroup" index="0" persist="index">
  75.     <radio id="ChangeAll"      label="&changeEntireListRadio.label;" accesskey="&changeEntireListRadio.accessKey;"/>
  76.     <radio id="ChangeSelected" label="&changeSelectedRadio.label;"   accesskey="&changeSelectedRadio.accessKey;"/>
  77.   </radiogroup>
  78.   <!-- from EdDialogOverlay -->
  79.   <vbox id="AdvancedEdit"/>
  80. </dialog>
  81.