mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
74 lines
2.1 KiB
JavaScript
74 lines
2.1 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
"use strict";
|
|
|
|
this.EXPORTED_SYMBOLS = [ "WebConsolePanel" ];
|
|
|
|
const Cu = Components.utils;
|
|
const Ci = Components.interfaces;
|
|
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
|
Cu.import("resource:///modules/devtools/EventEmitter.jsm");
|
|
|
|
XPCOMUtils.defineLazyModuleGetter(this, "HUDService",
|
|
"resource:///modules/HUDService.jsm");
|
|
|
|
/**
|
|
* A DevToolPanel that controls the Web Console.
|
|
*/
|
|
function WebConsolePanel(iframeWindow, toolbox) {
|
|
this._frameWindow = iframeWindow;
|
|
this._toolbox = toolbox;
|
|
new EventEmitter(this);
|
|
|
|
let tab = this._toolbox._getHostTab();
|
|
let parentDoc = iframeWindow.document.defaultView.parent.document;
|
|
let iframe = parentDoc.getElementById("toolbox-panel-iframe-webconsole");
|
|
this.hud = HUDService.activateHUDForContext(tab, iframe, toolbox.target);
|
|
|
|
let hudId = this.hud.hudId;
|
|
let onOpen = function _onWebConsoleOpen(aSubject)
|
|
{
|
|
aSubject.QueryInterface(Ci.nsISupportsString);
|
|
if (hudId == aSubject.data) {
|
|
Services.obs.removeObserver(onOpen, "web-console-created");
|
|
this.setReady();
|
|
}
|
|
}.bind(this);
|
|
|
|
Services.obs.addObserver(onOpen, "web-console-created", false);
|
|
}
|
|
|
|
WebConsolePanel.prototype = {
|
|
get target() this._toolbox.target,
|
|
|
|
_isReady: false,
|
|
get isReady() this._isReady,
|
|
|
|
destroy: function WCP_destroy()
|
|
{
|
|
let hudId = this.hud.hudId;
|
|
|
|
let onClose = function _onWebConsoleClose(aSubject)
|
|
{
|
|
aSubject.QueryInterface(Ci.nsISupportsString);
|
|
if (hudId == aSubject.data) {
|
|
Services.obs.removeObserver(onClose, "web-console-destroyed");
|
|
this.emit("destroyed");
|
|
}
|
|
}.bind(this);
|
|
|
|
Services.obs.addObserver(onClose, "web-console-destroyed", false);
|
|
HUDService.deactivateHUDForContext(this.hud.tab, false);
|
|
},
|
|
|
|
setReady: function WCP_setReady()
|
|
{
|
|
this._isReady = true;
|
|
this.emit("ready");
|
|
},
|
|
};
|