-
Notifications
You must be signed in to change notification settings - Fork 1
/
bootstrap.js
68 lines (54 loc) · 2.12 KB
/
bootstrap.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
const { classes: Cc, interfaces: Ci, utils: Cu } = Components;
Cu.import('resource://gre/modules/Services.jsm');
var startupData;
function loadIntoWindow(window) {
try {
window.require.setRequirePath("focusmode/", "chrome://focusmode/content/");
window.require("focusmode/focusmode").register();
} catch (e) {
Cu.reportError("Exception while registering Focus Mode");
Cu.reportError(e);
}
}
function unloadFromWindow(window) {
}
var windowListener = {
onOpenWindow: function(aWindow) {
// Wait for the window to finish loading
let domWindow = aWindow.QueryInterface(Ci.nsIInterfaceRequestor).getInterface(Ci.nsIDOMWindowInternal || Ci.nsIDOMWindow);
domWindow.addEventListener("komodo-ui-started", function onLoad() {
domWindow.removeEventListener("komodo-ui-started", onLoad, false);
// Let dependencies load first
var timers = domWindow.require("sdk/timers");
timers.setTimeout(function() { loadIntoWindow(domWindow); }, 0);
}, false);
},
onCloseWindow: function(aWindow) {},
onWindowTitleChange: function(aWindow, aTitle) {}
};
function startup(data, reason) {
startupData = data;
// Load into any existing windows
let windows = Services.wm.getEnumerator("Komodo");
while (windows.hasMoreElements()) {
let domWindow = windows.getNext().QueryInterface(Ci.nsIDOMWindow);
loadIntoWindow(domWindow);
}
// Load into any new windows
Services.wm.addListener(windowListener);
}
function shutdown(data, reason) {
// When the application is shutting down we normally don't have to clean
// up any UI changes made
if (reason == APP_SHUTDOWN) return;
// Stop listening for new windows
Services.wm.removeListener(windowListener);
// Unload from any existing windows
let windows = Services.wm.getEnumerator("Komodo");
while (windows.hasMoreElements()) {
let domWindow = windows.getNext().QueryInterface(Ci.nsIDOMWindow);
unloadFromWindow(domWindow);
}
}
function install(data, reason) {}
function uninstall(data, reason) {}