Mozilla/mozilla/editor/ui/dialogs/content/EdImageMapHotSpot.xul

103 lines
3.5 KiB
XML

<?xml version="1.0"?>
<!--
- The contents of this file are subject to the Netscape Public
- License Version 1.1 (the "License"); you may not use this file
- except in compliance with the License. You may obtain a copy of
- the License at http://www.mozilla.org/NPL/
-
- Software distributed under the License is distributed on an "AS
- IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
- implied. See the License for the specific language governing
- rights and limitations under the License.
-
- The Original Code is Mozilla Communicator client code, released
- March 31, 1998.
-
- The Initial Developer of the Original Code is Netscape
- Communications Corporation. Portions created by Netscape are
- Copyright (C) 1999-2000 Netscape Communications Corporation. All
- Rights Reserved.
-
- Contributor(s):
- Brian King
- Dan Haddix
-->
<?xml-stylesheet href="chrome://editor/skin/" type="text/css"?>
<?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
<?xul-overlay href="chrome://editor/content/EdDialogOverlay.xul"?>
<!DOCTYPE window SYSTEM "chrome://editor/locale/EditorImageMapHotSpot.dtd">
<window class="dialog" title="&windowTitle.label;"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
xmlns:html="http://www.w3.org/1999/xhtml"
onload = "Startup()"
persist="screenX screenY"
orient="vertical"
>
<!-- Methods common to all editor dialogs -->
<script language="JavaScript" src="chrome://editor/content/EdDialogCommon.js"/>
<script language="JavaScript" src="chrome://global/content/dialogOverlay.js"/>
<script language="JavaScript" src="chrome://editor/content/EdImageMapHotSpot.js"/>
<broadcaster id="args" value=""/>
<titledbox orient="vertical" flex="1">
<title><text id="titleInput" value="&link.label;"/></title>
<grid>
<columns><column/><column/><column/></columns>
<rows>
<row>
<text class = "label" for="urlInput" value="&urlFieldset.label;" align = "right"/>
<textfield id="urlInput" class="MinWidth20em" value="http://"/>
<button class="dialog dialog" id="Browse" oncommand = "chooseFile()" value="&browseButton.label;"/>
</row>
<row>
<text class="label" for="altInput" value="&altFieldset.label;" align = "right"/>
<textfield class="MinWidth20em" id="altInput"/>
</row>
</rows>
</grid>
</titledbox>
<titledbox orient="vertical" flex="1">
<title><text id="targetLabel" value="&targetFieldset.label;"/></title>
<grid>
<columns><column/><column/><column/></columns>
<rows>
<row>
<text class="label" for="targetInput" value="&target.label;" align = "right" />
</row>
<row>
<textfield class="MinWidth20em" id="targetInput"/>
<text class="label" id="commonLabel" value="&commonFieldset.label;"/>
<menulist id = "commonInput" onchange ="changeTarget()">
<menupopup valign="middle">
<menuitem class="middle" value="_self"><text class="label" value = "&same.value;"/></menuitem>
<menuitem class="middle" value="_top"><text class="label" value = "&whole.value;"/></menuitem>
<menuitem class="middle" value="_blank"><text class="label" value = "&new.value;"/></menuitem>
<menuitem class="middle" value="_parent"><text class="label" value = "&parent.value;"/></menuitem>
</menupopup>
</menulist>
</row>
</rows>
</grid>
</titledbox>
<!-- from global dialogOverlay -->
<box id="okCancelButtons"/>
</window>