home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 January / 01_02.iso / software / netscape62win / browser.xpi / bin / chrome / comm.jar / content / editor / EdImageMapHotSpot.xul < prev    next >
Encoding:
Extensible Markup Language  |  2001-07-09  |  3.7 KB  |  102 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) 1999-2000 Netscape Communications Corporation. All
  19.    - Rights Reserved.
  20.    - 
  21.    - Contributor(s): 
  22.    -   Brian King
  23.    -   Dan Haddix
  24.   -->
  25. <?xml-stylesheet href="chrome://editor/skin/" type="text/css"?>
  26.  
  27. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
  28. <?xul-overlay href="chrome://editor/content/EdDialogOverlay.xul"?>
  29.  
  30. <!DOCTYPE window SYSTEM "chrome://editor/locale/EditorImageMapHotSpot.dtd">
  31.  
  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.     orient="vertical"
  37.   >
  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://global/content/dialogOverlay.js"/>
  42.  
  43.   <script type="application/x-javascript" src="chrome://editor/content/EdImageMapHotSpot.js"/>
  44.  
  45.   <spring id="location" offsetY="50" persist="offsetX offsetY"/>
  46.   <broadcaster id="args" value=""/>
  47.  
  48.   <groupbox orient="vertical" flex="1">
  49.     <label id="titleInput" value="&link.label;"/>
  50.  
  51.     <grid>
  52.       <columns><column/><column/><column/></columns>
  53.       <rows>
  54.         <row>
  55.           <text class="label" for="urlInput" value="&urlFieldset.label;" align="right"/>
  56.  
  57.           <textbox id="urlInput" class="MinWidth20em" value="http://"/>
  58.  
  59.           <button class="dialog" id="Browse" oncommand="chooseFile()" label="&browseButton.label;"/>
  60.         </row>
  61.       
  62.         <row>
  63.           <text class="label" for="altInput" value="&altFieldset.label;" align="right"/>
  64.  
  65.           <textbox class="MinWidth20em" id="altInput"/>
  66.         </row>
  67.       </rows>
  68.     </grid>
  69.   </groupbox>
  70.  
  71.   <groupbox orient="vertical" flex="1">
  72.     <label id="targetLabel" value="&targetFieldset.label;"/>
  73.     <grid>
  74.       <columns><column/><column/><column/></columns>
  75.       <rows>
  76.         <row>
  77.           <text class="label" for="targetInput" value="&target.label;" align="right" />
  78.         </row>
  79.         <row>
  80.           <textbox class="MinWidth20em" id="targetInput"/>
  81.  
  82.           <text class="label" id="commonLabel" value="&commonFieldset.label;"/>
  83.  
  84.           <menulist id="commonInput" oncommand="changeTarget()">
  85.             <menupopup valign="middle">
  86.               <menuitem class="middle" value="" label="&none.value;"/>
  87.               <menuitem class="middle" value="_self" label="&same.value;"/>
  88.               <menuitem class="middle" value="_top" label="&whole.value;"/>
  89.               <menuitem class="middle" value="_blank" label="&new.value;"/>
  90.               <menuitem class="middle" value="_parent" label="&parent.value;"/>
  91.             </menupopup>
  92.           </menulist>
  93.  
  94.         </row>
  95.       </rows>
  96.     </grid>
  97.   </groupbox>
  98.  
  99.   <!-- from global dialogOverlay -->
  100.   <hbox id="okCancelButtons"/>
  101. </window>
  102.