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 / EdImageProps.xul < prev    next >
Extensible Markup Language  |  2003-06-08  |  3KB  |  88 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.    -   Pete Collins
  23.    -   Brian King
  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/EdImageOverlay.xul"?> 
  31. <?xul-overlay href="chrome://editor/content/EdDialogOverlay.xul"?> 
  32. <?xul-overlay href="chrome://global/content/globalOverlay.xul"?>
  33. <?xul-overlay href="chrome://communicator/content/utilityOverlay.xul"?> 
  34.  
  35. <!DOCTYPE window SYSTEM "chrome://editor/locale/EditorImageProperties.dtd">
  36.  
  37.  
  38. <!-- dialog containing a control requiring initial setup -->
  39. <dialog id="imageDlg" title="&windowTitle.label;"
  40.     xmlns ="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  41.     onload = "Startup()"
  42.     buttons="accept,cancel,help"
  43.     ondialogaccept="return onAccept();"
  44.     ondialogcancel="return onCancel();"
  45.     ondialoghelp="return doHelpButton();">
  46.   
  47.   <script type="application/x-javascript" src="chrome://editor/content/editorUtilities.js"/>
  48.   <script type="application/x-javascript" src="chrome://editor/content/EdDialogCommon.js"/>
  49.   <script type="application/x-javascript" src="chrome://editor/content/EdImageProps.js"/>
  50.   <script type="application/x-javascript" src="chrome://global/content/globalOverlay.js"/>
  51.   <script type="application/x-javascript" src="chrome://help/content/contextHelp.js"/>
  52.  
  53.   <spacer id="location" offsetY="50" persist="offsetX offsetY"/>
  54.   <broadcaster id="args" value=""/>
  55.  
  56.   <tabbox id="TabBox">
  57.     <tabs flex="1">
  58.       <tab id="imageLocationTab"/>
  59.       <tab id="imageDimensionsTab"/>
  60.       <tab id="imageAppearanceTab"/>
  61.       <tab id="imageLinkTab"/>
  62.     </tabs>
  63.     <tabpanels>
  64.       <!-- panels overlayed from EdImageOverlay.xul -->
  65.       <vbox id="imageLocation"/>
  66.       <vbox id="imageDimensions"/>
  67.       <hbox id="imageAppearance"/>
  68.       <vbox>
  69.         <spacer class="spacer"/>
  70.         <vbox id="LinkLocationBox"/>
  71.         <spacer class="spacer"/>
  72.         <checkbox id="showLinkBorder"
  73.                   label="&showImageLinkBorder.label;"
  74.                   accesskey="&showImageLinkBorder.accessKey;"
  75.                   oncommand="ToggleShowLinkBorder();"/>
  76.       </vbox>
  77.     </tabpanels>
  78.   </tabbox>
  79.  
  80.   <hbox align="end">
  81.     <groupbox id="imagePreview"/>
  82.  
  83.     <!-- from EdDialogOverlay -->
  84.     <vbox id="AdvancedEdit"/>
  85.   </hbox>
  86.  
  87. </dialog>
  88.