home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / Internet / NVU 0.50 for Windows / nvu-0.50-win32-installer-full.exe / {app} / chrome / comm.jar / content / editor / EditableArea.xul < prev    next >
Encoding:
Extensible Markup Language  |  2004-03-24  |  2.1 KB  |  58 lines

  1. <?xml-stylesheet href="chrome://editor/skin/editor.css" type="text/css"?>
  2. <?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>
  3.  
  4. <?xul-overlay href="chrome://global/content/globalOverlay.xul"?>
  5. <?xul-overlay href="chrome://editor/content/EdDialogOverlay.xul"?> 
  6.  
  7. <!DOCTYPE dialog SYSTEM "chrome://editor/locale/editableArea.dtd">
  8.  
  9. <dialog id="insertEditableAreaDlg" title="&window.title;"
  10.    xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  11.    buttons="accept,cancel"
  12.    onload="Startup();"
  13.    ondialogaccept="return onAccept();"
  14.    ondialogcancel="return onCancel();">
  15.  
  16.   <script type="application/x-javascript" src="chrome://editor/content/editorUtilities.js"/>
  17.   <script type="application/x-javascript" src="chrome://editor/content/editableArea.js"/>
  18.   <script type="application/x-javascript" src="chrome://editor/content/EdDialogCommon.js"/>
  19.  
  20.   <broadcaster id="args" value=""/>
  21.   <spacer id="location" offsetY="50" persist="offsetX offsetY"/>
  22.  
  23.   <vbox>
  24.     <groupbox>
  25.       <caption label="&areaName.label;"/>
  26.       <vbox>
  27.         <label value="&provideId.label;"
  28.                control="editableAreaId"/>
  29.         <textbox id="editableAreaId"
  30.                  oninput="ControlAreaId(this)"/>
  31.         <hbox>
  32.           <label value=" "/>
  33.           <label value="&warning.label;"
  34.                  id="warning" hidden="true"
  35.                  style="color: red"/>
  36.         </hbox>
  37.       </vbox>
  38.     </groupbox>
  39.     <groupbox id="areaType">
  40.       <caption label="&areaType.label;"/>
  41.       <vbox>
  42.         <radiogroup orient="vertical" id="typeRadio">
  43.           <radio value="flow"  label="&flowAreaRadio.label;" selected="true"/>
  44.           <radio value="block" label="&blockAreaRadio.label;"/>
  45.         </radiogroup>
  46.       </vbox>
  47.     </groupbox>
  48.     <groupbox id="areaOptions">
  49.       <caption label="&options.label;"/>
  50.       <vbox>
  51.         <checkbox label="&optionalAreaCheckbox.label;" id="optionalCheckbox"/>
  52.         <checkbox label="&repeatableAreaCheckbox.label;" id="repeatableCheckbox"/>
  53.         <checkbox label="&movableAreaCheckbox.label;" id="movableCheckbox"/>
  54.       </vbox>
  55.     </groupbox>
  56.   </vbox>
  57. </dialog>
  58.