对接面板在xul

时间:2011-07-14 10:41:22

标签: javascript xul docking

如何在xul中制作对接面板。它应该像firebug一样工作。我试过这样的事情:

myWindow = window.open("chrome://project/content/myWindow.xul", "someRandomName", "chrome");

和myWindow.xul是:

<?xml version="1.0" encoding="utd-8"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>

<?xul-overlay href="chrome://project/content/myPanel.xul"?>

    <window id="dockedPanel" title="my super extension" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:html="http://www.w3.org/1999/xhtml">
        <hbox flex="1">
            <vbox id="myPanel"/>
        </hbox>
    </window>

myPanel.xul是我的面板,myPanel是myPanel.xul中vbox的id

当我打开这样的窗口时,它看起来很像我想要的,但所有按钮/其他组件都不起作用。例如,如果我在myPanel.xul中有按钮:

<button id="myButton" label="button" onclick = "jsScriptFromOtherFile.someFunction()"/>

如果我单击myWindow上的那个按钮,则不会调用someFunction。我不知道为什么,以及如何让它发挥作用。

1 个答案:

答案 0 :(得分:0)

我猜你的问题是你希望所有的Windows共享JavaScript代码/状态/范围,无论你怎么称呼它;在'myWindow.xul'或'myPanel.xul'中加载的任何脚本中都没有定义'jsScriptFromOtherFile',它是在调用window.open的父窗口中定义的。

每个“窗口”(或制表符,iframe等)都有自己的全局对象。要从不同的“窗口”访问变量,首先必须获得该窗口的句柄。请参阅Working with windows in chrome code