gecko-dev/editor/ui/dialogs/content/EdImageMapHotSpot.xul

102 строки
3.5 KiB
Plaintext
Исходник Обычный вид История

1999-10-27 01:27:05 +04:00
<?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
2000-01-25 18:44:28 +03:00
- Copyright (C) 1999-2000 Netscape Communications Corporation. All
1999-10-27 01:27:05 +04:00
- Rights Reserved.
-
- Contributor(s):
- Brian King
- Dan Haddix
1999-10-27 01:27:05 +04:00
-->
2000-04-26 06:27:56 +04:00
<?xml-stylesheet href="chrome://editor/skin/" type="text/css"?>
1999-10-27 01:27:05 +04:00
2000-01-25 18:44:28 +03:00
<?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
<?xul-overlay href="chrome://editor/content/EdDialogOverlay.xul"?>
1999-10-27 01:27:05 +04:00
<!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"
1999-10-27 01:27:05 +04:00
onload = "Startup()"
orient="vertical"
>
1999-10-27 01:27:05 +04:00
<!-- Methods common to all editor dialogs -->
<script type="text/javascript" src="chrome://editor/content/EdDialogCommon.js"/>
<script type="text/javascript" src="chrome://global/content/dialogOverlay.js"/>
<script type="text/javascript" src="chrome://editor/content/EdImageMapHotSpot.js"/>
<spring id="location" offsetY="50" persist="offsetX offsetY"/>
<broadcaster id="args" value=""/>
<titledbox orient="vertical" flex="1">
<title id="titleInput" value="&link.label;"/>
<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" 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 id="targetLabel" value="&targetFieldset.label;"/>
<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" oncommand="changeTarget()">
<menupopup valign="middle">
<menuitem class="middle" data="" value="&none.value;"/>
<menuitem class="middle" data="_self" value="&same.value;"/>
<menuitem class="middle" data="_top" value="&whole.value;"/>
<menuitem class="middle" data="_blank" value="&new.value;"/>
<menuitem class="middle" data="_parent" value="&parent.value;"/>
</menupopup>
</menulist>
</row>
</rows>
</grid>
</titledbox>
<!-- from global dialogOverlay -->
<box id="okCancelButtons"/>
</window>