2012-05-21 11:12:37 +00:00
|
|
|
/* 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/. */
|
|
|
|
|
2007-06-15 18:01:25 +00:00
|
|
|
function closeWindow(aClose, aPromptFunction)
|
2002-10-11 20:01:37 +00:00
|
|
|
{
|
2009-07-13 17:37:29 +00:00
|
|
|
# Closing the last window doesn't quit the application on OS X.
|
|
|
|
#ifndef XP_MACOSX
|
2003-12-01 05:40:41 +00:00
|
|
|
var windowCount = 0;
|
2007-06-22 21:36:32 +00:00
|
|
|
var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
|
|
|
|
.getService(Components.interfaces.nsIWindowMediator);
|
2003-12-01 05:40:41 +00:00
|
|
|
var e = wm.getEnumerator(null);
|
|
|
|
|
|
|
|
while (e.hasMoreElements()) {
|
|
|
|
var w = e.getNext();
|
2005-02-25 09:07:58 +00:00
|
|
|
if (++windowCount == 2)
|
2003-12-01 05:40:41 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-08-19 09:38:09 +00:00
|
|
|
var inPrivateBrowsing = false;
|
|
|
|
try {
|
2012-05-04 18:05:40 +00:00
|
|
|
if (["@mozilla.org/privatebrowsing;1"] in Components.classes) {
|
|
|
|
var pbSvc = Components.classes["@mozilla.org/privatebrowsing;1"]
|
|
|
|
.getService(Components.interfaces.nsIPrivateBrowsingService);
|
|
|
|
inPrivateBrowsing = pbSvc.privateBrowsingEnabled;
|
|
|
|
}
|
2009-08-19 09:38:09 +00:00
|
|
|
} catch(e) {
|
|
|
|
// safe to ignore
|
2009-07-17 18:38:22 +00:00
|
|
|
}
|
|
|
|
|
2003-12-01 05:40:41 +00:00
|
|
|
// If we're down to the last window and someone tries to shut down, check to make sure we can!
|
2011-02-08 01:50:37 +00:00
|
|
|
if (windowCount == 1 && !canQuitApplication("lastwindow"))
|
2003-12-01 05:40:41 +00:00
|
|
|
return false;
|
2009-08-19 09:38:09 +00:00
|
|
|
else if (windowCount != 1 || inPrivateBrowsing)
|
2005-02-20 22:58:48 +00:00
|
|
|
#endif
|
2007-06-22 21:36:32 +00:00
|
|
|
if (typeof(aPromptFunction) == "function" && !aPromptFunction())
|
|
|
|
return false;
|
2003-12-01 05:40:41 +00:00
|
|
|
|
|
|
|
if (aClose)
|
|
|
|
window.close();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-02-08 01:50:37 +00:00
|
|
|
function canQuitApplication(aData)
|
2003-12-01 05:40:41 +00:00
|
|
|
{
|
2005-02-25 09:07:58 +00:00
|
|
|
var os = Components.classes["@mozilla.org/observer-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIObserverService);
|
|
|
|
if (!os) return true;
|
|
|
|
|
|
|
|
try {
|
|
|
|
var cancelQuit = Components.classes["@mozilla.org/supports-PRBool;1"]
|
|
|
|
.createInstance(Components.interfaces.nsISupportsPRBool);
|
2011-02-08 01:50:37 +00:00
|
|
|
os.notifyObservers(cancelQuit, "quit-application-requested", aData || null);
|
2005-02-25 09:07:58 +00:00
|
|
|
|
|
|
|
// Something aborted the quit process.
|
|
|
|
if (cancelQuit.data)
|
|
|
|
return false;
|
2002-10-11 20:01:37 +00:00
|
|
|
}
|
2005-02-25 09:07:58 +00:00
|
|
|
catch (ex) { }
|
2003-12-01 05:40:41 +00:00
|
|
|
return true;
|
|
|
|
}
|
2002-10-11 20:01:37 +00:00
|
|
|
|
2003-12-01 05:40:41 +00:00
|
|
|
function goQuitApplication()
|
|
|
|
{
|
|
|
|
if (!canQuitApplication())
|
2005-03-10 19:33:25 +00:00
|
|
|
return false;
|
|
|
|
|
2004-12-01 17:26:48 +00:00
|
|
|
var appStartup = Components.classes['@mozilla.org/toolkit/app-startup;1'].
|
|
|
|
getService(Components.interfaces.nsIAppStartup);
|
2002-10-11 20:01:37 +00:00
|
|
|
|
2004-12-01 17:26:48 +00:00
|
|
|
appStartup.quit(Components.interfaces.nsIAppStartup.eAttemptQuit);
|
2002-10-11 20:01:37 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-02-14 23:55:20 +00:00
|
|
|
//
|
|
|
|
// Command Updater functions
|
|
|
|
//
|
|
|
|
function goUpdateCommand(aCommand)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
var controller = top.document.commandDispatcher
|
|
|
|
.getControllerForCommand(aCommand);
|
|
|
|
|
2006-09-18 19:47:49 +00:00
|
|
|
var enabled = false;
|
2007-02-14 23:55:20 +00:00
|
|
|
if (controller)
|
|
|
|
enabled = controller.isCommandEnabled(aCommand);
|
|
|
|
|
|
|
|
goSetCommandEnabled(aCommand, enabled);
|
|
|
|
}
|
|
|
|
catch (e) {
|
2009-04-26 10:38:22 +00:00
|
|
|
Components.utils.reportError("An error occurred updating the " +
|
|
|
|
aCommand + " command: " + e);
|
2007-02-14 23:55:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function goDoCommand(aCommand)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
var controller = top.document.commandDispatcher
|
|
|
|
.getControllerForCommand(aCommand);
|
|
|
|
if (controller && controller.isCommandEnabled(aCommand))
|
|
|
|
controller.doCommand(aCommand);
|
|
|
|
}
|
|
|
|
catch (e) {
|
2009-04-26 10:38:22 +00:00
|
|
|
Components.utils.reportError("An error occurred executing the " +
|
|
|
|
aCommand + " command: " + e);
|
2007-02-14 23:55:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function goSetCommandEnabled(aID, aEnabled)
|
|
|
|
{
|
|
|
|
var node = document.getElementById(aID);
|
|
|
|
|
|
|
|
if (node) {
|
|
|
|
if (aEnabled)
|
|
|
|
node.removeAttribute("disabled");
|
2002-10-11 20:01:37 +00:00
|
|
|
else
|
2007-02-14 23:55:20 +00:00
|
|
|
node.setAttribute("disabled", "true");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function goSetMenuValue(aCommand, aLabelAttribute)
|
|
|
|
{
|
|
|
|
var commandNode = top.document.getElementById(aCommand);
|
|
|
|
if (commandNode) {
|
|
|
|
var label = commandNode.getAttribute(aLabelAttribute);
|
|
|
|
if (label)
|
|
|
|
commandNode.setAttribute("label", label);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function goSetAccessKey(aCommand, aValueAttribute)
|
|
|
|
{
|
|
|
|
var commandNode = top.document.getElementById(aCommand);
|
|
|
|
if (commandNode) {
|
|
|
|
var value = commandNode.getAttribute(aValueAttribute);
|
|
|
|
if (value)
|
|
|
|
commandNode.setAttribute("accesskey", value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// this function is used to inform all the controllers attached to a node that an event has occurred
|
|
|
|
// (e.g. the tree controllers need to be informed of blur events so that they can change some of the
|
|
|
|
// menu items back to their default values)
|
2007-03-04 21:35:03 +00:00
|
|
|
function goOnEvent(aNode, aEvent)
|
2007-02-14 23:55:20 +00:00
|
|
|
{
|
|
|
|
var numControllers = aNode.controllers.getControllerCount();
|
|
|
|
var controller;
|
|
|
|
|
|
|
|
for (var controllerIndex = 0; controllerIndex < numControllers; controllerIndex++) {
|
|
|
|
controller = aNode.controllers.getControllerAt(controllerIndex);
|
|
|
|
if (controller)
|
|
|
|
controller.onEvent(aEvent);
|
|
|
|
}
|
|
|
|
}
|
2002-10-11 20:01:37 +00:00
|
|
|
|
2003-10-19 15:18:15 +00:00
|
|
|
function visitLink(aEvent) {
|
|
|
|
var node = aEvent.target;
|
|
|
|
while (node.nodeType != Node.ELEMENT_NODE)
|
|
|
|
node = node.parentNode;
|
|
|
|
var url = node.getAttribute("link");
|
2006-08-25 16:34:34 +00:00
|
|
|
if (!url)
|
|
|
|
return;
|
|
|
|
|
2006-08-27 00:42:55 +00:00
|
|
|
var protocolSvc = Components.classes["@mozilla.org/uriloader/external-protocol-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIExternalProtocolService);
|
|
|
|
var ioService = Components.classes["@mozilla.org/network/io-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIIOService);
|
|
|
|
var uri = ioService.newURI(url, null, null);
|
|
|
|
|
|
|
|
// if the scheme is not an exposed protocol, then opening this link
|
|
|
|
// should be deferred to the system's external protocol handler
|
|
|
|
if (protocolSvc.isExposedProtocol(uri.scheme)) {
|
|
|
|
var win = window.top;
|
|
|
|
if (win instanceof Components.interfaces.nsIDOMChromeWindow) {
|
|
|
|
while (win.opener && !win.opener.closed)
|
|
|
|
win = win.opener;
|
|
|
|
}
|
|
|
|
win.open(uri.spec);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
protocolSvc.loadUrl(uri);
|
2003-10-19 15:18:15 +00:00
|
|
|
}
|
|
|
|
|
2002-10-11 20:01:37 +00:00
|
|
|
function setTooltipText(aID, aTooltipText)
|
|
|
|
{
|
|
|
|
var element = document.getElementById(aID);
|
|
|
|
if (element)
|
|
|
|
element.setAttribute("tooltiptext", aTooltipText);
|
|
|
|
}
|
|
|
|
|
2008-03-13 19:25:49 +00:00
|
|
|
__defineGetter__("NS_ASSERT", function() {
|
|
|
|
delete this.NS_ASSERT;
|
|
|
|
var tmpScope = {};
|
|
|
|
Components.utils.import("resource://gre/modules/debug.js", tmpScope);
|
|
|
|
return this.NS_ASSERT = tmpScope.NS_ASSERT;
|
|
|
|
});
|