gecko-dev/suite/common/pref/pref.xul

81 строка
2.5 KiB
Plaintext
Исходник Обычный вид История

1999-06-05 03:28:56 +04:00
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
2006-05-17 06:24:52 +04:00
<?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
2006-05-17 06:24:35 +04:00
<?xul-overlay href="chrome://communicator/content/pref/preftree.xul"?>
2006-05-17 06:24:35 +04:00
<!DOCTYPE window SYSTEM "chrome://communicator/locale/pref/pref.dtd" >
<!-- This dialog has a fixed size and is not resizable.
You MAY NOT increase the size of this dialog.
Questions, Comments -> ben@netscape.com -->
<window id="prefDialog"
xmlns:html="http://www.w3.org/1999/xhtml"
2006-05-17 06:24:52 +04:00
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
title="&prefWindow.title;"
orient="vertical" class="dialog"
style="width: 51em; height: 40em;"
onload="Startup();"
persist="screenX screenY">
2006-05-17 06:24:52 +04:00
2006-05-17 06:25:11 +04:00
<script>
<![CDATA[
var hPrefWindow = null;
/** General startup routine for preferences dialog.
* Place all necessary modifications to pref tree here.
**/
function Startup()
{
hPrefWindow = new nsPrefWindow('panelFrame');
if( !hPrefWindow )
throw "failed to create prefwindow";
hPrefWindow.init();
2006-05-17 06:26:16 +04:00
// If this call worked, we could center the window here:
// centerWindowOnScreen();
2006-05-17 06:25:11 +04:00
}
]]>
</script>
<script type="application/x-javascript" src="chrome://global/content/nsWidgetStateManager.js"/>
<script type="application/x-javascript" src="chrome://communicator/content/pref/nsPrefWindow.js"/>
<keyset id="dialogKeys"/>
<hbox flex="1">
<vbox flex="19">
<text class="label" value="&categoryHeader;"/>
<!-- tree sidebar -->
<tree class="inset" id="prefsTree" style="width: 0px" flex="1"/>
</vbox>
<iframe id="panelFrame" name="panelFrame" style="width:0px" flex="81"/>
<script type="application/x-javascript">
<![CDATA[
if( window.arguments && window.arguments[0] ) {
document.getElementById("panelFrame").setAttribute("src", window.arguments[0] );
2006-05-17 06:24:52 +04:00
document.getElementById("panelFrame").setAttribute("tag", window.arguments[0] );
}
else {
2006-05-17 06:24:35 +04:00
document.getElementById("panelFrame").setAttribute("src", "chrome://communicator/content/pref/pref-navigator.xul" );
2006-05-17 06:24:52 +04:00
document.getElementById("panelFrame").setAttribute("tag", "chrome://communicator/content/pref/pref-navigator.xul" );
}
]]>
</script>
</hbox>
<separator/>
2006-05-17 06:24:52 +04:00
<box id="okCancelButtonsRight" />
</window>