gecko-dev/extensions/wallet/editor/WalletViewer.xul

67 строки
2.1 KiB
XML

<?xml version="1.0"?>
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
<?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
<?xul-overlay href="chrome://communicator/content/wallet/WalletTree.xul"?>
<!DOCTYPE window SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd" >
<window id="walletViewer"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
title="&windowtitle.label;"
class="dialog"
persist="screenX screenY width height"
screenX="24" screenY="24"
onload="Startup();"
width="720" height="470">
<script>
<![CDATA[
var hWalletViewer = null;
/** General startup routine for form-manager dialog.
**/
function Startup()
{
hWalletViewer = new nsWalletViewer('panelFrame');
if( !hWalletViewer )
throw "failed to create walletviewer";
hWalletViewer.init();
// If this call worked, we could center the window here:
// centerWindowOnScreen();
}
]]>
</script>
<script type="application/x-javascript" src="chrome://communicator/content/wallet/WalletViewer.js"/>
<script type="application/x-javascript" src="chrome://global/content/strres.js" />
<script type="application/x-javascript" src="chrome://help/content/contextHelp.js"/>
<keyset id="dialogKeys"/>
<hbox flex="1">
<!-- tree sidebar -->
<vbox style="width: 17em">
<tree id="panelTree" style="width: 0px" flex="1"/>
<button id="clearButton" label="&removeall.label;" oncommand="ClearAll()"/>
</vbox>
<iframe id="panelFrame" name="panelFrame" style="width:0px" flex="1"/>
</hbox>
<separator/>
<hbox id="okCancelHelpButtonsRight" />
<script type="application/x-javascript">
<![CDATA[
document.getElementById("panelFrame").setAttribute("src", "chrome://communicator-region/locale/wallet/WalletName.xul");
document.getElementById("panelFrame").setAttribute("tag", "" );
]]>
</script>
</window>