aboutsummaryrefslogtreecommitdiff
path: root/chrome/content/code/browserOverlay.xul.js
blob: 19a37df5f4479b9a0f4fa199485f521db2bd5873 (plain)
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
//// $Id$

var Redirector = Components.classes["@einaregilsson.com/redirector;1"].getService(Components.interfaces.rdIRedirector);

var RedirectorOverlay = {

	strings 	: null,
	prefs		: null,

	onLoad : function(event) {
		try {

			// initialization code
			document.getElementById('contentAreaContextMenu')
				.addEventListener("popupshowing", function(e) { RedirectorOverlay.showContextMenu(e); }, false);
			
			this.strings = document.getElementById("redirector-strings");
			this.prefs = new RedirectorPrefs();
			this.changedPrefs(this.prefs);
			this.prefs.addListener(this);
		} 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 statusImg = document.getElementById('redirector-statusbar-img');

		if (prefs.enabled) {
			statusImg.src = 'chrome://redirector/skin/statusactive.png'
			statusImg.setAttribute('tooltiptext', this.strings.getString('enabledTooltip'));
		} else {
			statusImg.src = 'chrome://redirector/skin/statusinactive.png'
			statusImg.setAttribute('tooltiptext', this.strings.getString('disabledTooltip'));
		}

		document.getElementById('redirector-status').hidden = !prefs.showStatusBarIcon;
		document.getElementById('redirector-context').hidden = !prefs.showContextMenu;
	},
	
	showContextMenu : function(event) {
		if (gContextMenu.onLink) {
			document.getElementById("redirector-context").label = this.strings.getString('addLinkUrl');
		} else {
			document.getElementById("redirector-context").label = this.strings.getString('addCurrentUrl');
		}
	},

	onContextMenuCommand: function(event) {
		var redirect = new Redirect(window.content.location.href, window.content.location.href);
		if (gContextMenu.onLink) {
			redirect.redirectUrl = gContextMenu.link.toString();
		}

		var args = { saved : false, 'redirect' : redirect };
		window.openDialog("chrome://redirector/content/ui/editRedirect.xul", "redirect", "chrome,dialog,modal,centerscreen", args);
		if (args.saved) {
			Redirector.addRedirect(args.redirect);
		}
	},
		
	onMenuItemCommand: function(event) {
		this.openSettings();
	},

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

	openSettings : function() {
		var windowName = "redirectorSettings";
		var windowsMediator = Components.classes["@mozilla.org/appshell/window-mediator;1"].getService(Components.interfaces.nsIWindowMediator);
		var win = windowsMediator.getMostRecentWindow(windowName);
		if (win) {
			win.focus();
		} else {
			window.openDialog("chrome://redirector/content/ui/settings.xul",
					windowName,
					"chrome,dialog,resizable=yes,centerscreen", this);
		}
	
	},
	
	statusBarClick : 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);