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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
//// $Id$
var Redirector = Components.classes["@einaregilsson.com/redirector;1"].getService(Components.interfaces.nsISupports).wrappedJSObject;
function $(id) {
return document.getElementById(id);
}
var RedirectorOverlay = {
id : "redirector@einaregilsson.com",
name : "Redirector",
initialized : false,
strings : null,
onLoad : function(event) {
try {
// initialization code
Redirector.debug("Initializing...");
$('contentAreaContextMenu')
.addEventListener("popupshowing", function(e) { RedirectorOverlay.showContextMenu(e); }, false);
if (!Redirector.getBoolPref('showContextMenu')) {
$('redirector-context').hidden = true;
}
if (!Redirector.getBoolPref('showStatusBarIcon')) {
$('redirector-status').hidden = true;
}
this.strings = document.getElementById("redirector-strings");
this.prefObserver.register();
this.setStatusBarImg();
Redirector.debug("Finished initialization");
this.initialized = true;
} catch(e) {
if (this.strings) {
alert(this.strings.getFormattedString("initError", [this.name]) + "\n\n" + e);
} else {
alert(e);
}
}
},
onUnload : function(event) {
RedirectorOverlay.prefObserver.unregister();
Redirector.debug("Finished cleanup");
},
showContextMenu : function(event) {
if (gContextMenu.onLink) {
$("redirector-context").label = this.strings.getString('addLinkUrl');
} else {
$("redirector-context").label = this.strings.getString('addCurrentUrl');
}
},
onContextMenuCommand: function(event) {
var item = { exampleUrl : window.content.location.href, pattern: window.content.location.href};
if (gContextMenu.onLink) {
item.redirectUrl = gContextMenu.link.toString();
}
window.openDialog("chrome://redirector/content/redirect.xul",
"redirect",
"chrome,dialog,modal,centerscreen", item);
if (item.saved) {
Redirector.addRedirect(item);
}
},
onMenuItemCommand: function(event) {
this.openSettings();
},
toggleEnabled : function(event) {
Redirector.setEnabled(!Redirector.enabled);
},
openSettings : function() {
var windowName = "redirectorSettings";
var windowsMediator = Cc["@mozilla.org/appshell/window-mediator;1"].getService(Ci.nsIWindowMediator);
var win = windowsMediator.getMostRecentWindow(windowName);
if (win) {
win.focus();
} else {
window.openDialog("chrome://redirector/content/redirectList.xul",
windowName,
"chrome,dialog,resizable=no,centerscreen", this);
}
},
statusBarClick : function(event) {
var LEFT = 0, RIGHT = 2;
if (event.button == LEFT) {
RedirectorOverlay.toggleEnabled();
} else if (event.button == RIGHT) {
this.openSettings();
//$('redirector-status-popup').showPopup();
}
},
setStatusBarImg : function() {
var statusImg = $('redirector-statusbar-img');
if (Redirector.enabled) {
statusImg.src = 'chrome://redirector/content/statusactive.PNG'
statusImg.setAttribute('tooltiptext', this.strings.getString('enabledTooltip'));
} else {
statusImg.src = 'chrome://redirector/content/statusinactive.PNG'
statusImg.setAttribute('tooltiptext', this.strings.getString('disabledTooltip'));
}
},
prefObserver : {
getService : function() {
return Cc["@mozilla.org/preferences-service;1"].getService(Ci.nsIPrefBranchInternal);
},
register: function() {
this.getService().addObserver('extensions.redirector', this, false);
},
unregister: function() {
this.getService().removeObserver('extensions.redirector', this);
},
observe : function(subject, topic, data) {
if (topic == 'nsPref:changed' && data == 'extensions.redirector.enabled') {
RedirectorOverlay.setStatusBarImg();
}
}
}
};
window.addEventListener("load", function(event) { RedirectorOverlay.onLoad(event); }, false);
window.addEventListener("unload", function(event) { RedirectorOverlay.onUnload(event); }, false);
|