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 / EdInsertChars.xul < prev    next >
Extensible Markup Language  |  2003-06-08  |  3KB  |  73 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.  
  24. <?xml-stylesheet href="chrome://editor/skin/" type="text/css"?>
  25. <?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>
  26.  
  27. <?xul-overlay href="chrome://editor/content/EdDialogOverlay.xul"?> 
  28.  
  29. <!DOCTYPE window SYSTEM "chrome://editor/locale/EditorInsertChars.dtd">
  30.  
  31. <dialog id="insertCharsDlg" title="&windowTitle.label;"
  32.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  33.         onload = "Startup()"
  34.         onfocus = "onFocus()"
  35.         ondialogaccept = "return onAccept();"
  36.         ondialogcancel = "return onClose();">
  37.  
  38.   <!-- Methods common to all editor dialogs -->
  39.   <script type="application/x-javascript" src="chrome://editor/content/editorUtilities.js"/>
  40.   <script type="application/x-javascript" src="chrome://editor/content/EdDialogCommon.js"/>
  41.   <script type="application/x-javascript" src="chrome://editor/content/EdInsertChars.js"/>
  42.  
  43.   <spacer id="location" offsetY="50" persist="offsetX offsetY"/>
  44.   <broadcaster id="args" value=""/>
  45.  
  46.   <groupbox><caption label="&category.label;"/>
  47.     <radiogroup id="CatGrp" persist="category letter_index char_index">
  48.       <radio id="AccentUpper" label="&accentUpper.label;"   oncommand="ChangeCategory(this.id)"/>
  49.       <radio id="AccentLower" label="&accentLower.label;"   oncommand="ChangeCategory(this.id)"/>
  50.       <radio id="Upper"       label="&otherUpper.label;"    oncommand="ChangeCategory(this.id)"/>
  51.       <radio id="Lower"       label="&otherLower.label;"    oncommand="ChangeCategory(this.id)"/>
  52.       <radio id="Symbol"      label="&commonSymbols.label;" oncommand="ChangeCategory(this.id)"/>
  53.     </radiogroup> 
  54.     <spacer class="spacer"/>
  55.   </groupbox>
  56.   <hbox equalsize="always">
  57.     <vbox flex="1">
  58.       <!-- value is set in JS from editor.properties strings -->
  59.       <label id="LatinL_Label" control="LatinL" value="&letter.label;" accesskey="&letter.accessKey;"/>
  60.       <menulist class="larger" flex="1" id="LatinL" oncommand="SelectLatinLetter()">
  61.         <menupopup/>
  62.       </menulist>
  63.     </vbox>
  64.     <vbox flex="1">
  65.       <label id="LatinM_Label" control="LatinM" value="&character.label;" accesskey="&character.accessKey;"/>
  66.       <menulist class="larger" flex="1" id="LatinM" oncommand="SelectLatinModifier()">
  67.         <menupopup/>
  68.       </menulist>
  69.     </vbox>
  70.   </hbox>
  71.   <separator class="groove"/>
  72. </dialog>
  73.