Files
Mozilla/mozilla/editor/ui/dialogs/content/EdImageMapHotSpot.xul
brade%netscape.com 0339e92841 submitted by Dan Haddix and Brian King
git-svn-id: svn://10.0.0.236/trunk@58607 18797224-902f-48f8-a5cc-f745e15eee43
2000-01-25 15:44:28 +00:00

131 lines
3.6 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 (dan6992@hotmail.com)
-->
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://navigator/skin/" type="text/css"?>
<?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/TR/REC-html40"
onload = "Startup()"
align="vertical">
<!-- Methods common to all editor dialogs -->
<html:script language="JavaScript" src="chrome://editor/content/EdDialogCommon.js" />
<html:script language="JavaScript" src="chrome://global/content/dialogOverlay.js" />
<html:script language="JavaScript" src="chrome://editor/content/EdImageMapHotSpot.js" />
<broadcaster id="args" value=""/>
<html:table>
<html:tr>
<html:td>
<html:label for="urlInput" id="urlLabel">&urlFieldset.label;</html:label>
<html:br/>
<html:td valign="left">
<html:input
type="text"
id="urlInput"
size="30"/>
</html:td>
<html:td valign="right">
<titledbutton
class = "push dialog"
id = "Browse"
onclick = "chooseFile()"
value = "&browseButton.label;"/>
</html:td>
</html:td>
</html:tr>
<html:tr>
<html:td>
<html:label for="titleInput" id="titleLabel">&titleFieldset.label;</html:label>
<html:br/>
<html:input type="text" id="titleInput" size="30"/>
</html:td>
</html:tr>
<html:tr>
<html:td>
<html:fieldset>
<html:legend
class = "dialog"
id = "targetLabel"
align = "left">
&targetFieldset.label;
</html:legend>
<html:label for="targetInput" id="targetLabel">&target.label;</html:label>
<html:br/>
<html:input type="text" id="targetInput" size="20"/>
</html:fieldset>
</html:td>
<html:td>
<html:fieldset>
<html:legend
class = "dialog"
id = "commonLabel"
align = "center">
&commonFieldset.label;
</html:legend>
<html:select name="common_targets" id="commonInput" size="4">
<html:option selected="true">Same Frame</html:option>
<html:option>Whole Page</html:option>
<html:option>New Window</html:option>
<html:option>Parent Frame</html:option>
</html:select>
</html:fieldset>
</html:td>
</html:tr>
</html:table>
<box align="horizontal">
<!-- from global dialogOverlay -->
<box id="okCancelButtons"/>
</box>
</window>