aboutsummaryrefslogtreecommitdiff
path: root/chrome/js/browserOverlay.js
blob: cc29a2ad1dad5797ea9e970cda0fad32be732789 (plain) (blame)
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
Components.utils.import("chrome://redirector/content/js/redirectorprefs.js");
Components.utils.import("chrome://redirector/content/js/redirector.js");

var RedirectorOverlay = {

	strings 	: null,
	prefs		: null,

	onLoad : function(event) {
		try {

			this.strings = document.getElementById("redirector-strings");
			this.prefs = new RedirectorPrefs();
			this.changedPrefs(this.prefs);
			this.prefs.addListener(this); 
			document.addEventListener('keypress', function(event) {
				if ((RedirectorOverlay.prefs.enableShortcutKey) && (event.charCode == 114) && event.altKey) { //alt+r
					RedirectorOverlay.toggleEnabled();
				}
			}, true);			
		} catch(e) {
			if (this.strings) {
				alert(this.strings.getString("initError") + "\n\n" + e);
			} else {
				alert(e);
			}
		}
	},
	
	onUnload : function(event) {
		this.prefs.dispose();
		Redirector.debug("Finished cleanup");
	},

	changedPrefs : function(prefs) {
		var toolbarImg = document.getElementById('redirector-toolbar-img');

		if (toolbarImg) {
			if (prefs.enabled) {
				toolbarImg.setAttribute('image', 'chrome://redirector/content/images/statusactive.png');
				toolbarImg.setAttribute('tooltiptext', this.strings.getString('enabledTooltip'));
			} else {
				toolbarImg.setAttribute('image', 'chrome://redirector/content/images/statusinactive.png');
				toolbarImg.setAttribute('tooltiptext', this.strings.getString('disabledTooltip'));
			}
		}
	},
			
	onMenuItemCommand: function(event) {
		this.openSettings();
	},

	toggleEnabled : function(event) {
		this.prefs.enabled = !this.prefs.enabled;
	},

	openSettings : function() {
		gBrowser.selectedTab = gBrowser.addTab("chrome://redirector/content/redirector.html");	
	},
	
	toolBarClick : function(event) {
		var LEFT = 0, RIGHT = 2;

		if (event.button == LEFT) {
			RedirectorOverlay.toggleEnabled();
		} else if (event.button == RIGHT) {
			this.openSettings();
		}
	}

};
window.addEventListener("load", function(event) { RedirectorOverlay.onLoad(event); }, false);
window.addEventListener("unload", function(event) { RedirectorOverlay.onUnload(event); }, false);