home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 January / 01_02.iso / software / netscape62win / browser.xpi / bin / chrome / comm.jar / content / editor / EdInsertChars.xul < prev    next >
Encoding:
Extensible Markup Language  |  2001-08-30  |  3.4 KB  |  74 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://global/content/dialogOverlay.xul"?> 
  28. <?xul-overlay href="chrome://editor/content/EdDialogOverlay.xul"?> 
  29. <?xul-overlay href="chrome://global/content/globalOverlay.xul"?>
  30.  
  31. <!DOCTYPE window SYSTEM "chrome://editor/locale/EditorInsertChars.dtd">
  32. <window class="dialog" title="&windowTitle.label;"
  33.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  34.     xmlns:html="http://www.w3.org/1999/xhtml"
  35.     onload = "Startup()"
  36.     onunload = "Unload()"
  37.     orient="vertical">
  38.  
  39.   <!-- Methods common to all editor dialogs -->
  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.   <script type="application/x-javascript" src="chrome://global/content/dialogOverlay.js" />
  43.  
  44.   <spring id="location" offsetY="50" persist="offsetX offsetY"/>
  45.   <keyset id="dialogKeys"/>
  46.   <broadcaster id="args" value=""/>
  47.  
  48.   <groupbox orient="vertical"><label value="&category.label;"/>
  49.     <radiogroup id="CatGrp" orient="vertical" persist="category letter_index char_index">
  50.       <radio group="CatGrp" id="AccentUpper" label="&accentUpper.label;"   oncommand="ChangeCategory(this.id)"/>
  51.       <radio group="CatGrp" id="AccentLower" label="&accentLower.label;"   oncommand="ChangeCategory(this.id)"/>
  52.       <radio group="CatGrp" id="Upper"       label="&otherUpper.label;"    oncommand="ChangeCategory(this.id)"/>
  53.       <radio group="CatGrp" id="Lower"       label="&otherLower.label;"    oncommand="ChangeCategory(this.id)"/>
  54.       <radio group="CatGrp" id="Symbol"      label="&commonSymbols.label;" oncommand="ChangeCategory(this.id)"/>
  55.     </radiogroup> 
  56.     <spring class="spacer"/>
  57.   </groupbox>
  58.   <hbox>
  59.     <vbox flex="1">
  60.       <!-- value is set in JS from editor.properties strings -->
  61.       <text class="label" id="LatinL_Label" value="&letter.label;"/>
  62.       <menulist class="larger" flex="1" id="LatinL" oncommand="SelectLatinLetter()"/>
  63.     </vbox>
  64.     <vbox flex="1">
  65.       <text class="label" id="LatinM_Label" value="&character.label;"/>
  66.       <menulist class="larger" flex="1" id="LatinM" oncommand="SelectLatinModifier()"/>
  67.     </vbox>
  68.   </hbox>
  69.  
  70.   <separator class="groove"/>
  71.   <!-- from global dialogOverlay -->
  72.   <hbox id="okCancelButtonsRight"/>
  73. </window>
  74.