2007-08-27 17:10:25 -07:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2008-02-21 12:49:56 -08:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
2007-08-27 17:10:25 -07:00
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Shawn Wilsher <me@shawnwilsher.com>.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2007
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//// Constants
|
|
|
|
|
|
|
|
const Cc = Components.classes;
|
|
|
|
const Ci = Components.interfaces;
|
|
|
|
const Cr = Components.results;
|
|
|
|
const DOWNLOAD_MANAGER_URL = "chrome://mozapps/content/downloads/downloads.xul";
|
|
|
|
const PREF_FLASH_COUNT = "browser.download.manager.flashCount";
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//// nsDownloadManagerUI class
|
|
|
|
|
|
|
|
function nsDownloadManagerUI() {}
|
|
|
|
|
|
|
|
nsDownloadManagerUI.prototype = {
|
|
|
|
classID: Components.ID("7dfdf0d1-aff6-4a34-bad1-d0fe74601642"),
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//// nsIDownloadManagerUI
|
|
|
|
|
2008-04-02 20:05:22 -07:00
|
|
|
show: function show(aWindowContext, aID, aReason)
|
2007-08-27 17:10:25 -07:00
|
|
|
{
|
2008-04-02 20:05:22 -07:00
|
|
|
if (!aReason)
|
|
|
|
aReason = Ci.nsIDownloadManagerUI.REASON_USER_INTERACTED;
|
|
|
|
|
2007-08-27 17:10:25 -07:00
|
|
|
// First we see if it is already visible
|
2008-04-02 20:05:22 -07:00
|
|
|
let window = this.recentWindow;
|
|
|
|
if (window) {
|
|
|
|
window.focus();
|
|
|
|
|
|
|
|
// If we are being asked to show again, with a user interaction reason,
|
|
|
|
// set the appropriate variable.
|
|
|
|
if (aReason == Ci.nsIDownloadManagerUI.REASON_USER_INTERACTED)
|
|
|
|
window.gUserInteracted = true;
|
2007-08-27 17:10:25 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-04-02 20:05:22 -07:00
|
|
|
let parent = null;
|
2008-01-29 15:43:31 -08:00
|
|
|
// We try to get a window to use as the parent here. If we don't have one,
|
|
|
|
// the download manager will close immediately after opening if the pref
|
|
|
|
// browser.download.manager.closeWhenDone is set to true.
|
2007-08-27 17:10:25 -07:00
|
|
|
try {
|
|
|
|
if (aWindowContext)
|
2008-04-02 20:05:22 -07:00
|
|
|
parent = aWindowContext.getInterface(Ci.nsIDOMWindow);
|
2007-08-27 17:10:25 -07:00
|
|
|
} catch (e) { /* it's OK to not have a parent window */ }
|
|
|
|
|
2007-09-17 11:43:32 -07:00
|
|
|
// We pass the download manager and the nsIDownload we want selected (if any)
|
2007-08-27 17:10:25 -07:00
|
|
|
var params = Cc["@mozilla.org/array;1"].createInstance(Ci.nsIMutableArray);
|
2007-09-17 11:43:32 -07:00
|
|
|
|
|
|
|
// Don't fail if our passed in ID is invalid
|
|
|
|
var download = null;
|
|
|
|
try {
|
2008-04-02 20:05:22 -07:00
|
|
|
let dm = Cc["@mozilla.org/download-manager;1"].
|
|
|
|
getService(Ci.nsIDownloadManager);
|
2007-09-17 11:43:32 -07:00
|
|
|
download = dm.getDownload(aID);
|
|
|
|
} catch (ex) {}
|
|
|
|
params.appendElement(download, false);
|
2007-08-27 17:10:25 -07:00
|
|
|
|
2008-04-02 20:05:22 -07:00
|
|
|
// Pass in the reason as well
|
|
|
|
let reason = Cc["@mozilla.org/supports-PRInt16;1"].
|
|
|
|
createInstance(Ci.nsISupportsPRInt16);
|
|
|
|
reason.data = aReason;
|
|
|
|
params.appendElement(reason, false);
|
|
|
|
|
2007-08-27 17:10:25 -07:00
|
|
|
var ww = Cc["@mozilla.org/embedcomp/window-watcher;1"].
|
|
|
|
getService(Ci.nsIWindowWatcher);
|
2008-04-02 20:05:22 -07:00
|
|
|
ww.openWindow(parent,
|
2007-08-27 17:10:25 -07:00
|
|
|
DOWNLOAD_MANAGER_URL,
|
2008-01-18 23:04:59 -08:00
|
|
|
"Download:Manager",
|
2007-08-27 17:10:25 -07:00
|
|
|
"chrome,dialog=no,resizable",
|
|
|
|
params);
|
|
|
|
},
|
|
|
|
|
|
|
|
get visible() {
|
|
|
|
return (null != this.recentWindow);
|
|
|
|
},
|
|
|
|
|
|
|
|
getAttention: function getAttention()
|
|
|
|
{
|
|
|
|
if (!this.visible)
|
|
|
|
throw Cr.NS_ERROR_UNEXPECTED;
|
|
|
|
|
|
|
|
var prefs = Cc["@mozilla.org/preferences-service;1"].
|
|
|
|
getService(Ci.nsIPrefBranch);
|
2008-02-08 14:22:35 -08:00
|
|
|
// This preference may not be set, so defaulting to two.
|
|
|
|
let flashCount = 2;
|
|
|
|
try {
|
|
|
|
flashCount = prefs.getIntPref(PREF_FLASH_COUNT);
|
|
|
|
} catch (e) { }
|
2007-08-27 17:10:25 -07:00
|
|
|
|
2007-08-29 18:51:12 -07:00
|
|
|
var win = this.recentWindow.QueryInterface(Ci.nsIDOMChromeWindow);
|
2007-08-27 17:10:25 -07:00
|
|
|
win.getAttentionWithCycleCount(flashCount);
|
|
|
|
},
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//// nsDownloadManagerUI
|
|
|
|
|
|
|
|
get recentWindow() {
|
|
|
|
var wm = Cc["@mozilla.org/appshell/window-mediator;1"].
|
|
|
|
getService(Ci.nsIWindowMediator);
|
|
|
|
return wm.getMostRecentWindow("Download:Manager");
|
|
|
|
},
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//// nsISupports
|
|
|
|
|
|
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsIDownloadManagerUI])
|
|
|
|
};
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//// Module
|
|
|
|
|
|
|
|
let components = [nsDownloadManagerUI];
|
2010-06-22 09:59:15 -07:00
|
|
|
var NSGetFactory = XPCOMUtils.generateNSGetFactory(components);
|
2007-08-27 17:10:25 -07:00
|
|
|
|