pjs/editor/ui/dialogs/content/EdNamedAnchorProps.xul

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

1999-06-23 00:19:38 +04:00
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/xul.css" type="text/css"?>
<?xml-stylesheet href="chrome://editordlgs/skin/EditorDialog.css" type="text/css"?>
<!DOCTYPE window>
<xul:window class="dialog" title="Target Properties"
1999-06-23 00:19:38 +04:00
xmlns:xul ="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
xmlns="http://www.w3.org/TR/REC-html40"
onload = "Startup()"
align="vertical">
1999-06-23 00:19:38 +04:00
<!-- Methods common to all editor dialogs -->
<script language="JavaScript" src="chrome://editordlgs/content/EdDialogCommon.js">
</script>
<script language="JavaScript" src="chrome://editordlgs/content/EdNamedAnchorProps.js">
</script>
<xul:broadcaster id="args" value=""/>
<table>
<tr>
<td>
<div class="spacedtext">
Enter a name for this target:
</div>
1999-06-23 00:19:38 +04:00
<input type="text" id="name" size="30"/>
</td>
</tr>
1999-07-06 04:19:40 +04:00
</table>
<!-- A classic case of box layout fighting what I want to do!
<xul:box>
<div class="spacedtext">
Enter a name for this target:
</div>
<input type="text" id="name" size="30"/>
</xul:box>
-->
1999-07-06 04:19:40 +04:00
<hr width="100%"/>
<xul:box>
<xul:titledbutton class="spaced" id="Advanced" onclick="onAdvanced()" value="More Attributes..."/>
<xul:spring flex="100%"/>
<xul:titledbutton class="spaced" id="OK" onclick="onOK()" value="OK"/>
<xul:titledbutton class="spaced" id="Cancel" onclick="onCancel()" value="Cancel"/>
</xul:box>
1999-06-23 00:19:38 +04:00
</xul:window>