oeschger%netscape.com af2aac813f adding help buttons to form manager, r=morse, sr=alecf, a=asa/drivers, bug=131254
git-svn-id: svn://10.0.0.236/trunk@116932 18797224-902f-48f8-a5cc-f745e15eee43
2002-03-20 01:24:03 +00:00

67 lines
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="620" 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>