mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
68 lines
1.8 KiB
XML
68 lines
1.8 KiB
XML
<?xml version="1.0"?>
|
|
<?xml-stylesheet href="../../chrome/global/skin/default/xul.css" type="text/css"?>
|
|
<?xml-stylesheet href="progress.css" type="text/css"?>
|
|
|
|
<!DOCTYPE window
|
|
[
|
|
<!ENTITY downloadWindow.title "XPInstall Progress">
|
|
<!ENTITY status "Status:">
|
|
<!ENTITY cancelButtonTitle "Cancel">
|
|
]
|
|
>
|
|
|
|
<window xmlns:html="http://www.w3.org/TR/REC-html40"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
title="XPInstall Progress"
|
|
width="425"
|
|
height="225">
|
|
|
|
<data>
|
|
<broadcaster id="data.canceled" type="string" value="false"/>
|
|
</data>
|
|
|
|
|
|
<html:script>
|
|
|
|
function cancelInstall()
|
|
{
|
|
var cancelData = document.getElementById("data.canceled");
|
|
cancelData.setAttribute( "value", "true");
|
|
}
|
|
|
|
</html:script>
|
|
|
|
<html:center>
|
|
<html:table style="width:100%;">
|
|
|
|
<html:tr>
|
|
<html:td align="center">
|
|
<html:input id="dialog.uiPackageName" readonly="" style="background-color:lightgray;width:300px;"/>
|
|
</html:td>
|
|
</html:tr>
|
|
|
|
<html:tr>
|
|
<html:td nowrap="" style="border: 1px rgb(192,192,192);" align="center">
|
|
<html:input id="dialog.currentAction" readonly="" style="background-color:lightgray;width:450px;"/>
|
|
</html:td>
|
|
</html:tr>
|
|
|
|
|
|
<html:tr>
|
|
<html:td align="center" width="15%" nowrap="" style="border: 1px rgb(192,192,192);">
|
|
<progressmeter id="dialog.progress" mode="undetermined" style="width:300px;height:16px;">
|
|
</progressmeter>
|
|
</html:td>
|
|
</html:tr>
|
|
|
|
<html:tr>
|
|
<html:td align="center" width="3%" nowrap="" style="border: 1px rgb(192,192,192);">
|
|
<html:button onclick="cancelInstall()" height="12">
|
|
&cancelButtonTitle;
|
|
</html:button>
|
|
</html:td>
|
|
</html:tr>
|
|
</html:table>
|
|
|
|
</html:center>
|
|
</window>
|