mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00:00
1331 lines
39 KiB
JavaScript
1331 lines
39 KiB
JavaScript
// -*- Mode: js2; tab-width: 2; indent-tabs-mode: nil; js2-basic-offset: 2; js2-skip-preprocessor-directives: t; -*-
|
|
/* 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/. */
|
|
"use strict";
|
|
|
|
Cu.import("resource://gre/modules/devtools/dbg-server.jsm")
|
|
Cu.import("resource://gre/modules/WindowsPrefSync.jsm");
|
|
|
|
/**
|
|
* Constants
|
|
*/
|
|
|
|
// Devtools Messages
|
|
const debugServerStateChanged = "devtools.debugger.remote-enabled";
|
|
const debugServerPortChanged = "devtools.debugger.remote-port";
|
|
|
|
// delay when showing the tab bar briefly after a new foreground tab opens
|
|
const kForegroundTabAnimationDelay = 1000;
|
|
// delay when showing the tab bar after opening a new background tab opens
|
|
const kBackgroundTabAnimationDelay = 3000;
|
|
// delay before closing tab bar after closing or selecting a tab
|
|
const kChangeTabAnimationDelay = 500;
|
|
|
|
/**
|
|
* Cache of commonly used elements.
|
|
*/
|
|
|
|
let Elements = {};
|
|
[
|
|
["contentShowing", "bcast_contentShowing"],
|
|
["urlbarState", "bcast_urlbarState"],
|
|
["loadingState", "bcast_loadingState"],
|
|
["windowState", "bcast_windowState"],
|
|
["mainKeyset", "mainKeyset"],
|
|
["stack", "stack"],
|
|
["tabList", "tabs"],
|
|
["tabs", "tabs-container"],
|
|
["controls", "browser-controls"],
|
|
["panelUI", "panel-container"],
|
|
["tray", "tray"],
|
|
["toolbar", "toolbar"],
|
|
["browsers", "browsers"],
|
|
["navbar", "navbar"],
|
|
["autocomplete", "urlbar-autocomplete"],
|
|
["contextappbar", "contextappbar"],
|
|
["findbar", "findbar"],
|
|
["contentViewport", "content-viewport"],
|
|
["progress", "progress-control"],
|
|
["progressContainer", "progress-container"],
|
|
].forEach(function (aElementGlobal) {
|
|
let [name, id] = aElementGlobal;
|
|
XPCOMUtils.defineLazyGetter(Elements, name, function() {
|
|
return document.getElementById(id);
|
|
});
|
|
});
|
|
|
|
/**
|
|
* Cache of commonly used string bundles.
|
|
*/
|
|
|
|
var Strings = {};
|
|
[
|
|
["browser", "chrome://browser/locale/browser.properties"],
|
|
["brand", "chrome://branding/locale/brand.properties"]
|
|
].forEach(function (aStringBundle) {
|
|
let [name, bundle] = aStringBundle;
|
|
XPCOMUtils.defineLazyGetter(Strings, name, function() {
|
|
return Services.strings.createBundle(bundle);
|
|
});
|
|
});
|
|
|
|
var BrowserUI = {
|
|
get _edit() { return document.getElementById("urlbar-edit"); },
|
|
get _back() { return document.getElementById("cmd_back"); },
|
|
get _forward() { return document.getElementById("cmd_forward"); },
|
|
|
|
lastKnownGoodURL: "", // used when the user wants to escape unfinished url entry
|
|
ready: false, // used for tests to determine when delayed initialization is done
|
|
|
|
init: function() {
|
|
// start the debugger now so we can use it on the startup code as well
|
|
if (Services.prefs.getBoolPref(debugServerStateChanged)) {
|
|
this.runDebugServer();
|
|
}
|
|
Services.prefs.addObserver(debugServerStateChanged, this, false);
|
|
Services.prefs.addObserver(debugServerPortChanged, this, false);
|
|
Services.prefs.addObserver("app.crashreporter.autosubmit", this, false);
|
|
Services.prefs.addObserver("metro.private_browsing.enabled", this, false);
|
|
this.updatePrivateBrowsingUI();
|
|
|
|
Services.obs.addObserver(this, "handle-xul-text-link", false);
|
|
|
|
// listen content messages
|
|
messageManager.addMessageListener("DOMTitleChanged", this);
|
|
messageManager.addMessageListener("DOMWillOpenModalDialog", this);
|
|
messageManager.addMessageListener("DOMWindowClose", this);
|
|
|
|
messageManager.addMessageListener("Browser:OpenURI", this);
|
|
messageManager.addMessageListener("Browser:SaveAs:Return", this);
|
|
messageManager.addMessageListener("Content:StateChange", this);
|
|
|
|
// listening escape to dismiss dialog on VK_ESCAPE
|
|
window.addEventListener("keypress", this, true);
|
|
|
|
window.addEventListener("MozPrecisePointer", this, true);
|
|
window.addEventListener("MozImprecisePointer", this, true);
|
|
|
|
Services.prefs.addObserver("browser.cache.disk_cache_ssl", this, false);
|
|
|
|
// Init core UI modules
|
|
ContextUI.init();
|
|
PanelUI.init();
|
|
FlyoutPanelsUI.init();
|
|
PageThumbs.init();
|
|
NewTabUtils.init();
|
|
SettingsCharm.init();
|
|
NavButtonSlider.init();
|
|
SelectionHelperUI.init();
|
|
#ifdef NIGHTLY_BUILD
|
|
ShumwayUtils.init();
|
|
#endif
|
|
|
|
// We can delay some initialization until after startup. We wait until
|
|
// the first page is shown, then dispatch a UIReadyDelayed event.
|
|
messageManager.addMessageListener("pageshow", function onPageShow() {
|
|
if (getBrowser().currentURI.spec == "about:blank")
|
|
return;
|
|
|
|
messageManager.removeMessageListener("pageshow", onPageShow);
|
|
|
|
setTimeout(function() {
|
|
let event = document.createEvent("Events");
|
|
event.initEvent("UIReadyDelayed", true, false);
|
|
window.dispatchEvent(event);
|
|
BrowserUI.ready = true;
|
|
}, 0);
|
|
});
|
|
|
|
// Only load IndexedDB.js when we actually need it. A general fix will happen in bug 647079.
|
|
messageManager.addMessageListener("IndexedDB:Prompt", function(aMessage) {
|
|
return IndexedDB.receiveMessage(aMessage);
|
|
});
|
|
|
|
// hook up telemetry ping for UI data
|
|
try {
|
|
UITelemetry.addSimpleMeasureFunction("metro-ui",
|
|
BrowserUI._getMeasures.bind(BrowserUI));
|
|
} catch (ex) {
|
|
// swallow exception that occurs if metro-appbar measure is already set up
|
|
dump("Failed to addSimpleMeasureFunction in browser-ui: " + ex.message + "\n");
|
|
}
|
|
|
|
// Delay the panel UI and Sync initialization
|
|
window.addEventListener("UIReadyDelayed", function delayedInit(aEvent) {
|
|
Util.dumpLn("* delay load started...");
|
|
window.removeEventListener("UIReadyDelayed", delayedInit, false);
|
|
|
|
// Login Manager and Form History initialization
|
|
Cc["@mozilla.org/login-manager;1"].getService(Ci.nsILoginManager);
|
|
messageManager.addMessageListener("Browser:MozApplicationManifest", OfflineApps);
|
|
|
|
try {
|
|
MetroDownloadsView.init();
|
|
DialogUI.init();
|
|
FormHelperUI.init();
|
|
FindHelperUI.init();
|
|
#ifdef NIGHTLY_BUILD
|
|
PdfJs.init();
|
|
#endif
|
|
} catch(ex) {
|
|
Util.dumpLn("Exception in delay load module:", ex.message);
|
|
}
|
|
|
|
// check for left over crash reports and submit them if found.
|
|
BrowserUI.startupCrashCheck();
|
|
|
|
Util.dumpLn("* delay load complete.");
|
|
}, false);
|
|
|
|
#ifndef MOZ_OFFICIAL_BRANDING
|
|
setTimeout(function() {
|
|
let startup = Cc["@mozilla.org/toolkit/app-startup;1"].getService(Ci.nsIAppStartup).getStartupInfo();
|
|
for (let name in startup) {
|
|
if (name != "process")
|
|
Services.console.logStringMessage("[timing] " + name + ": " + (startup[name] - startup.process) + "ms");
|
|
}
|
|
}, 3000);
|
|
#endif
|
|
},
|
|
|
|
uninit: function() {
|
|
messageManager.removeMessageListener("DOMTitleChanged", this);
|
|
messageManager.removeMessageListener("DOMWillOpenModalDialog", this);
|
|
messageManager.removeMessageListener("DOMWindowClose", this);
|
|
|
|
messageManager.removeMessageListener("Browser:OpenURI", this);
|
|
messageManager.removeMessageListener("Browser:SaveAs:Return", this);
|
|
messageManager.removeMessageListener("Content:StateChange", this);
|
|
|
|
messageManager.removeMessageListener("Browser:MozApplicationManifest", OfflineApps);
|
|
|
|
Services.prefs.removeObserver(debugServerStateChanged, this);
|
|
Services.prefs.removeObserver(debugServerPortChanged, this);
|
|
Services.prefs.removeObserver("app.crashreporter.autosubmit", this);
|
|
Services.prefs.removeObserver("metro.private_browsing.enabled", this);
|
|
|
|
Services.obs.removeObserver(this, "handle-xul-text-link");
|
|
|
|
PanelUI.uninit();
|
|
FlyoutPanelsUI.uninit();
|
|
MetroDownloadsView.uninit();
|
|
SettingsCharm.uninit();
|
|
PageThumbs.uninit();
|
|
if (WindowsPrefSync) {
|
|
WindowsPrefSync.uninit();
|
|
}
|
|
this.stopDebugServer();
|
|
},
|
|
|
|
/************************************
|
|
* Devtools Debugger
|
|
*/
|
|
runDebugServer: function runDebugServer(aPort) {
|
|
let port = aPort || Services.prefs.getIntPref(debugServerPortChanged);
|
|
if (!DebuggerServer.initialized) {
|
|
DebuggerServer.init();
|
|
DebuggerServer.addBrowserActors();
|
|
DebuggerServer.addActors('chrome://browser/content/dbg-metro-actors.js');
|
|
}
|
|
DebuggerServer.openListener(port);
|
|
},
|
|
|
|
stopDebugServer: function stopDebugServer() {
|
|
if (DebuggerServer.initialized) {
|
|
DebuggerServer.destroy();
|
|
}
|
|
},
|
|
|
|
// If the server is not on, port changes have nothing to effect. The new value
|
|
// will be picked up if the server is started.
|
|
// To be consistent with desktop fx, if the port is changed while the server
|
|
// is running, restart server.
|
|
changeDebugPort:function changeDebugPort(aPort) {
|
|
if (DebuggerServer.initialized) {
|
|
this.stopDebugServer();
|
|
this.runDebugServer(aPort);
|
|
}
|
|
},
|
|
|
|
/*********************************
|
|
* Content visibility
|
|
*/
|
|
|
|
get isContentShowing() {
|
|
return Elements.contentShowing.getAttribute("disabled") != true;
|
|
},
|
|
|
|
showContent: function showContent(aURI) {
|
|
this.updateStartURIAttributes(aURI);
|
|
ContextUI.dismissTabs();
|
|
ContextUI.dismissContextAppbar();
|
|
FlyoutPanelsUI.hide();
|
|
PanelUI.hide();
|
|
},
|
|
|
|
/*********************************
|
|
* Crash reporting
|
|
*/
|
|
|
|
get CrashSubmit() {
|
|
delete this.CrashSubmit;
|
|
Cu.import("resource://gre/modules/CrashSubmit.jsm", this);
|
|
return this.CrashSubmit;
|
|
},
|
|
|
|
get lastCrashID() {
|
|
return Cc["@mozilla.org/xre/runtime;1"].getService(Ci.nsIXULRuntime).lastRunCrashID;
|
|
},
|
|
|
|
startupCrashCheck: function startupCrashCheck() {
|
|
#ifdef MOZ_CRASHREPORTER
|
|
if (!CrashReporter.enabled) {
|
|
return;
|
|
}
|
|
|
|
// Ensure that CrashReporter state matches pref
|
|
CrashReporter.submitReports = Services.prefs.getBoolPref("app.crashreporter.autosubmit");
|
|
|
|
BrowserUI.submitLastCrashReportOrShowPrompt();
|
|
#endif
|
|
},
|
|
|
|
|
|
/*********************************
|
|
* Navigation
|
|
*/
|
|
|
|
// BrowserUI update bit flags
|
|
NO_STARTUI_VISIBILITY: 1, // don't change the start ui visibility
|
|
|
|
/*
|
|
* Updates the overall state of startui visibility and the toolbar, but not
|
|
* the URL bar.
|
|
*/
|
|
update: function(aFlags) {
|
|
let flags = aFlags || 0;
|
|
if (!(flags & this.NO_STARTUI_VISIBILITY)) {
|
|
let uri = this.getDisplayURI(Browser.selectedBrowser);
|
|
this.updateStartURIAttributes(uri);
|
|
}
|
|
this._updateButtons();
|
|
this._updateToolbar();
|
|
},
|
|
|
|
/* Updates the URL bar. */
|
|
updateURI: function(aOptions) {
|
|
let uri = this.getDisplayURI(Browser.selectedBrowser);
|
|
let cleanURI = Util.isURLEmpty(uri) ? "" : uri;
|
|
this._edit.value = cleanURI;
|
|
},
|
|
|
|
get isStartTabVisible() {
|
|
return this.isStartURI();
|
|
},
|
|
|
|
isStartURI: function isStartURI(aURI) {
|
|
aURI = aURI || Browser.selectedBrowser.currentURI.spec;
|
|
return aURI.startsWith(kStartURI) || aURI == "about:start" || aURI == "about:home";
|
|
},
|
|
|
|
updateStartURIAttributes: function (aURI) {
|
|
let wasStart = Elements.windowState.hasAttribute("startpage");
|
|
aURI = aURI || Browser.selectedBrowser.currentURI.spec;
|
|
if (this.isStartURI(aURI)) {
|
|
ContextUI.displayNavbar();
|
|
Elements.windowState.setAttribute("startpage", "true");
|
|
} else if (aURI != "about:blank") { // about:blank is loaded briefly for new tabs; ignore it
|
|
Elements.windowState.removeAttribute("startpage");
|
|
}
|
|
|
|
let isStart = Elements.windowState.hasAttribute("startpage");
|
|
if (wasStart != isStart) {
|
|
let event = document.createEvent("Events");
|
|
event.initEvent("StartUIChange", true, true);
|
|
Browser.selectedBrowser.dispatchEvent(event);
|
|
}
|
|
},
|
|
|
|
getDisplayURI: function(browser) {
|
|
let uri = browser.currentURI;
|
|
let spec = uri.spec;
|
|
|
|
try {
|
|
spec = gURIFixup.createExposableURI(uri).spec;
|
|
} catch (ex) {}
|
|
|
|
try {
|
|
let charset = browser.characterSet;
|
|
let textToSubURI = Cc["@mozilla.org/intl/texttosuburi;1"].
|
|
getService(Ci.nsITextToSubURI);
|
|
spec = textToSubURI.unEscapeNonAsciiURI(charset, spec);
|
|
} catch (ex) {}
|
|
|
|
return spec;
|
|
},
|
|
|
|
goToURI: function(aURI) {
|
|
aURI = aURI || this._edit.value;
|
|
if (!aURI)
|
|
return;
|
|
|
|
this._edit.value = aURI;
|
|
|
|
// Make sure we're online before attempting to load
|
|
Util.forceOnline();
|
|
|
|
BrowserUI.showContent(aURI);
|
|
Browser.selectedBrowser.focus();
|
|
|
|
Task.spawn(function() {
|
|
let postData = {};
|
|
let webNav = Ci.nsIWebNavigation;
|
|
let flags = webNav.LOAD_FLAGS_ALLOW_THIRD_PARTY_FIXUP |
|
|
webNav.LOAD_FLAGS_FIXUP_SCHEME_TYPOS;
|
|
aURI = yield Browser.getShortcutOrURI(aURI, postData);
|
|
Browser.loadURI(aURI, { flags: flags, postData: postData });
|
|
|
|
// Delay doing the fixup so the raw URI is passed to loadURIWithFlags
|
|
// and the proper third-party fixup can be done
|
|
let fixupFlags = Ci.nsIURIFixup.FIXUP_FLAG_ALLOW_KEYWORD_LOOKUP |
|
|
Ci.nsIURIFixup.FIXUP_FLAG_FIX_SCHEME_TYPOS;
|
|
let uri = gURIFixup.createFixupURI(aURI, fixupFlags);
|
|
gHistSvc.markPageAsTyped(uri);
|
|
|
|
BrowserUI._titleChanged(Browser.selectedBrowser);
|
|
});
|
|
},
|
|
|
|
doOpenSearch: function doOpenSearch(aName) {
|
|
// save the current value of the urlbar
|
|
let searchValue = this._edit.value;
|
|
let engine = Services.search.getEngineByName(aName);
|
|
let submission = engine.getSubmission(searchValue, null);
|
|
|
|
this._edit.value = submission.uri.spec;
|
|
|
|
// Make sure we're online before attempting to load
|
|
Util.forceOnline();
|
|
|
|
BrowserUI.showContent();
|
|
Browser.selectedBrowser.focus();
|
|
|
|
Task.spawn(function () {
|
|
Browser.loadURI(submission.uri.spec, { postData: submission.postData });
|
|
|
|
// loadURI may open a new tab, so get the selectedBrowser afterward.
|
|
Browser.selectedBrowser.userTypedValue = submission.uri.spec;
|
|
BrowserUI._titleChanged(Browser.selectedBrowser);
|
|
});
|
|
},
|
|
|
|
/*********************************
|
|
* Tab management
|
|
*/
|
|
|
|
/**
|
|
* Open a new tab in the foreground in response to a user action.
|
|
* See Browser.addTab for more documentation.
|
|
*/
|
|
addAndShowTab: function (aURI, aOwner, aParams) {
|
|
ContextUI.peekTabs(kForegroundTabAnimationDelay);
|
|
return Browser.addTab(aURI || kStartURI, true, aOwner, aParams);
|
|
},
|
|
|
|
addAndShowPrivateTab: function (aURI, aOwner) {
|
|
return this.addAndShowTab(aURI, aOwner, { private: true });
|
|
},
|
|
|
|
get isPrivateBrowsingEnabled() {
|
|
return Services.prefs.getBoolPref("metro.private_browsing.enabled");
|
|
},
|
|
|
|
updatePrivateBrowsingUI: function () {
|
|
let command = document.getElementById("cmd_newPrivateTab");
|
|
if (this.isPrivateBrowsingEnabled) {
|
|
command.removeAttribute("disabled");
|
|
} else {
|
|
command.setAttribute("disabled", "true");
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Open a new tab in response to clicking a link in an existing tab.
|
|
* See Browser.addTab for more documentation.
|
|
*/
|
|
openLinkInNewTab: function (aURI, aBringFront, aOwner) {
|
|
ContextUI.peekTabs(aBringFront ? kForegroundTabAnimationDelay
|
|
: kBackgroundTabAnimationDelay);
|
|
let params = null;
|
|
if (aOwner) {
|
|
params = {
|
|
referrerURI: aOwner.browser.documentURI,
|
|
charset: aOwner.browser.characterSet,
|
|
};
|
|
}
|
|
let tab = Browser.addTab(aURI, aBringFront, aOwner, params);
|
|
Elements.tabList.strip.ensureElementIsVisible(tab.chromeTab);
|
|
return tab;
|
|
},
|
|
|
|
setOnTabAnimationEnd: function setOnTabAnimationEnd(aCallback) {
|
|
Elements.tabs.addEventListener("animationend", function onAnimationEnd() {
|
|
Elements.tabs.removeEventListener("animationend", onAnimationEnd);
|
|
aCallback();
|
|
});
|
|
},
|
|
|
|
closeTab: function closeTab(aTab) {
|
|
// If no tab is passed in, assume the current tab
|
|
let tab = aTab || Browser.selectedTab;
|
|
Browser.closeTab(tab);
|
|
},
|
|
|
|
animateClosingTab: function animateClosingTab(tabToClose) {
|
|
tabToClose.chromeTab.setAttribute("closing", "true");
|
|
|
|
let wasCollapsed = !ContextUI.tabbarVisible;
|
|
if (wasCollapsed) {
|
|
ContextUI.displayTabs();
|
|
}
|
|
|
|
this.setOnTabAnimationEnd(function() {
|
|
Browser.closeTab(tabToClose, { forceClose: true } );
|
|
if (wasCollapsed)
|
|
ContextUI.dismissTabsWithDelay(kChangeTabAnimationDelay);
|
|
});
|
|
},
|
|
|
|
/**
|
|
* Re-open a closed tab.
|
|
* @param aIndex
|
|
* The index of the tab (via nsSessionStore.getClosedTabData)
|
|
* @returns a reference to the reopened tab.
|
|
*/
|
|
undoCloseTab: function undoCloseTab(aIndex) {
|
|
var tab = null;
|
|
aIndex = aIndex || 0;
|
|
var ss = Cc["@mozilla.org/browser/sessionstore;1"].
|
|
getService(Ci.nsISessionStore);
|
|
if (ss.getClosedTabCount(window) > (aIndex)) {
|
|
tab = ss.undoCloseTab(window, aIndex);
|
|
}
|
|
return tab;
|
|
},
|
|
|
|
// Useful for when we've received an event to close a particular DOM window.
|
|
// Since we don't have windows, we want to close the corresponding tab.
|
|
closeTabForBrowser: function closeTabForBrowser(aBrowser) {
|
|
// Find the relevant tab, and close it.
|
|
let browsers = Browser.browsers;
|
|
for (let i = 0; i < browsers.length; i++) {
|
|
if (browsers[i] == aBrowser) {
|
|
Browser.closeTab(Browser.getTabAtIndex(i));
|
|
return { preventDefault: true };
|
|
}
|
|
}
|
|
|
|
return {};
|
|
},
|
|
|
|
selectTab: function selectTab(aTab) {
|
|
Browser.selectedTab = aTab;
|
|
},
|
|
|
|
selectTabAndDismiss: function selectTabAndDismiss(aTab) {
|
|
this.selectTab(aTab);
|
|
ContextUI.dismissTabsWithDelay(kChangeTabAnimationDelay);
|
|
},
|
|
|
|
selectTabAtIndex: function selectTabAtIndex(aIndex) {
|
|
// count backwards for aIndex < 0
|
|
if (aIndex < 0)
|
|
aIndex += Browser._tabs.length;
|
|
|
|
if (aIndex >= 0 && aIndex < Browser._tabs.length)
|
|
Browser.selectedTab = Browser._tabs[aIndex];
|
|
},
|
|
|
|
selectNextTab: function selectNextTab() {
|
|
if (Browser._tabs.length == 1 || !Browser.selectedTab) {
|
|
return;
|
|
}
|
|
|
|
let tabIndex = Browser._tabs.indexOf(Browser.selectedTab) + 1;
|
|
if (tabIndex >= Browser._tabs.length) {
|
|
tabIndex = 0;
|
|
}
|
|
|
|
Browser.selectedTab = Browser._tabs[tabIndex];
|
|
},
|
|
|
|
selectPreviousTab: function selectPreviousTab() {
|
|
if (Browser._tabs.length == 1 || !Browser.selectedTab) {
|
|
return;
|
|
}
|
|
|
|
let tabIndex = Browser._tabs.indexOf(Browser.selectedTab) - 1;
|
|
if (tabIndex < 0) {
|
|
tabIndex = Browser._tabs.length - 1;
|
|
}
|
|
|
|
Browser.selectedTab = Browser._tabs[tabIndex];
|
|
},
|
|
|
|
// Used for when we're about to open a modal dialog,
|
|
// and want to ensure the opening tab is in front.
|
|
selectTabForBrowser: function selectTabForBrowser(aBrowser) {
|
|
for (let i = 0; i < Browser.tabs.length; i++) {
|
|
if (Browser._tabs[i].browser == aBrowser) {
|
|
Browser.selectedTab = Browser.tabs[i];
|
|
break;
|
|
}
|
|
}
|
|
},
|
|
|
|
updateUIFocus: function _updateUIFocus() {
|
|
if (Elements.contentShowing.getAttribute("disabled") == "true" && Browser.selectedBrowser)
|
|
Browser.selectedBrowser.messageManager.sendAsyncMessage("Browser:Blur", { });
|
|
},
|
|
|
|
blurFocusedElement: function blurFocusedElement() {
|
|
let focusedElement = document.commandDispatcher.focusedElement;
|
|
if (focusedElement)
|
|
focusedElement.blur();
|
|
},
|
|
|
|
blurNavBar: function blurNavBar() {
|
|
if (this._edit.focused) {
|
|
this._edit.blur();
|
|
|
|
// Advanced notice to CAO, so we can shuffle the nav bar in advance
|
|
// of the keyboard transition.
|
|
ContentAreaObserver.navBarWillBlur();
|
|
|
|
return true;
|
|
}
|
|
return false;
|
|
},
|
|
|
|
observe: function BrowserUI_observe(aSubject, aTopic, aData) {
|
|
switch (aTopic) {
|
|
case "handle-xul-text-link":
|
|
let handled = aSubject.QueryInterface(Ci.nsISupportsPRBool);
|
|
if (!handled.data) {
|
|
this.addAndShowTab(aData, Browser.selectedTab);
|
|
handled.data = true;
|
|
}
|
|
break;
|
|
case "nsPref:changed":
|
|
switch (aData) {
|
|
case "browser.cache.disk_cache_ssl":
|
|
this._sslDiskCacheEnabled = Services.prefs.getBoolPref(aData);
|
|
break;
|
|
case debugServerStateChanged:
|
|
if (Services.prefs.getBoolPref(aData)) {
|
|
this.runDebugServer();
|
|
} else {
|
|
this.stopDebugServer();
|
|
}
|
|
break;
|
|
case debugServerPortChanged:
|
|
this.changeDebugPort(Services.prefs.getIntPref(aData));
|
|
break;
|
|
case "app.crashreporter.autosubmit":
|
|
#ifdef MOZ_CRASHREPORTER
|
|
CrashReporter.submitReports = Services.prefs.getBoolPref(aData);
|
|
|
|
// The user explicitly set the autosubmit option, so there is no
|
|
// need to prompt them about crash reporting in the future
|
|
Services.prefs.setBoolPref("app.crashreporter.prompted", true);
|
|
|
|
BrowserUI.submitLastCrashReportOrShowPrompt;
|
|
#endif
|
|
break;
|
|
case "metro.private_browsing.enabled":
|
|
this.updatePrivateBrowsingUI();
|
|
break;
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
|
|
submitLastCrashReportOrShowPrompt: function() {
|
|
#ifdef MOZ_CRASHREPORTER
|
|
let lastCrashID = this.lastCrashID;
|
|
if (lastCrashID && lastCrashID.length) {
|
|
if (Services.prefs.getBoolPref("app.crashreporter.autosubmit")) {
|
|
Util.dumpLn("Submitting last crash id:", lastCrashID);
|
|
let params = {};
|
|
if (!Services.prefs.getBoolPref("app.crashreporter.submitURLs")) {
|
|
params['extraExtraKeyVals'] = { URL: '' };
|
|
}
|
|
try {
|
|
this.CrashSubmit.submit(lastCrashID, params);
|
|
} catch (ex) {
|
|
Util.dumpLn(ex);
|
|
}
|
|
} else if (!Services.prefs.getBoolPref("app.crashreporter.prompted")) {
|
|
BrowserUI.addAndShowTab("about:crashprompt", null);
|
|
}
|
|
}
|
|
#endif
|
|
},
|
|
|
|
|
|
|
|
/*********************************
|
|
* Internal utils
|
|
*/
|
|
|
|
_titleChanged: function(aBrowser) {
|
|
let url = this.getDisplayURI(aBrowser);
|
|
|
|
let tabCaption;
|
|
if (aBrowser.contentTitle) {
|
|
tabCaption = aBrowser.contentTitle;
|
|
} else if (!Util.isURLEmpty(aBrowser.userTypedValue)) {
|
|
tabCaption = aBrowser.userTypedValue;
|
|
} else if (!Util.isURLEmpty(url)) {
|
|
tabCaption = url;
|
|
} else {
|
|
tabCaption = Util.getEmptyURLTabTitle();
|
|
}
|
|
|
|
let tab = Browser.getTabForBrowser(aBrowser);
|
|
if (tab)
|
|
tab.chromeTab.updateTitle(tabCaption);
|
|
},
|
|
|
|
_updateButtons: function _updateButtons() {
|
|
let browser = Browser.selectedBrowser;
|
|
if (!browser) {
|
|
return;
|
|
}
|
|
if (browser.canGoBack) {
|
|
this._back.removeAttribute("disabled");
|
|
} else {
|
|
this._back.setAttribute("disabled", true);
|
|
}
|
|
if (browser.canGoForward) {
|
|
this._forward.removeAttribute("disabled");
|
|
} else {
|
|
this._forward.setAttribute("disabled", true);
|
|
}
|
|
},
|
|
|
|
_updateToolbar: function _updateToolbar() {
|
|
if (Browser.selectedTab.isLoading()) {
|
|
Elements.loadingState.setAttribute("loading", true);
|
|
} else {
|
|
Elements.loadingState.removeAttribute("loading");
|
|
}
|
|
},
|
|
|
|
_closeOrQuit: function _closeOrQuit() {
|
|
// Close active dialog, if we have one. If not then close the application.
|
|
if (!BrowserUI.isContentShowing()) {
|
|
BrowserUI.showContent();
|
|
} else {
|
|
// Check to see if we should really close the window
|
|
if (Browser.closing()) {
|
|
window.close();
|
|
let appStartup = Cc["@mozilla.org/toolkit/app-startup;1"].getService(Ci.nsIAppStartup);
|
|
appStartup.quit(Ci.nsIAppStartup.eForceQuit);
|
|
}
|
|
}
|
|
},
|
|
|
|
_onPreciseInput: function _onPreciseInput() {
|
|
document.getElementById("bcast_preciseInput").setAttribute("input", "precise");
|
|
let uri = Util.makeURI("chrome://browser/content/cursor.css");
|
|
if (StyleSheetSvc.sheetRegistered(uri, Ci.nsIStyleSheetService.AGENT_SHEET)) {
|
|
StyleSheetSvc.unregisterSheet(uri,
|
|
Ci.nsIStyleSheetService.AGENT_SHEET);
|
|
}
|
|
},
|
|
|
|
_onImpreciseInput: function _onImpreciseInput() {
|
|
document.getElementById("bcast_preciseInput").setAttribute("input", "imprecise");
|
|
let uri = Util.makeURI("chrome://browser/content/cursor.css");
|
|
if (!StyleSheetSvc.sheetRegistered(uri, Ci.nsIStyleSheetService.AGENT_SHEET)) {
|
|
StyleSheetSvc.loadAndRegisterSheet(uri,
|
|
Ci.nsIStyleSheetService.AGENT_SHEET);
|
|
}
|
|
},
|
|
|
|
_getMeasures: function() {
|
|
let dimensions = {
|
|
"window-width": ContentAreaObserver.width,
|
|
"window-height": ContentAreaObserver.height
|
|
};
|
|
return dimensions;
|
|
},
|
|
|
|
/*********************************
|
|
* Event handling
|
|
*/
|
|
|
|
handleEvent: function handleEvent(aEvent) {
|
|
var target = aEvent.target;
|
|
switch (aEvent.type) {
|
|
// Window events
|
|
case "keypress":
|
|
if (aEvent.keyCode == aEvent.DOM_VK_ESCAPE)
|
|
this.handleEscape(aEvent);
|
|
break;
|
|
case "MozPrecisePointer":
|
|
this._onPreciseInput();
|
|
break;
|
|
case "MozImprecisePointer":
|
|
this._onImpreciseInput();
|
|
break;
|
|
}
|
|
},
|
|
|
|
// Checks if various different parts of the UI is visible and closes
|
|
// them one at a time.
|
|
handleEscape: function (aEvent) {
|
|
aEvent.stopPropagation();
|
|
aEvent.preventDefault();
|
|
|
|
if (this._edit.popupOpen) {
|
|
this._edit.endEditing(true);
|
|
return;
|
|
}
|
|
|
|
// Check open popups
|
|
if (DialogUI._popup) {
|
|
DialogUI._hidePopup();
|
|
return;
|
|
}
|
|
|
|
// Check open panel
|
|
if (PanelUI.isVisible) {
|
|
PanelUI.hide();
|
|
return;
|
|
}
|
|
|
|
// Check content helper
|
|
if (FindHelperUI.isActive) {
|
|
FindHelperUI.hide();
|
|
return;
|
|
}
|
|
|
|
if (Browser.selectedTab.isLoading()) {
|
|
Browser.selectedBrowser.stop();
|
|
return;
|
|
}
|
|
|
|
if (ContextUI.dismiss()) {
|
|
return;
|
|
}
|
|
},
|
|
|
|
handleBackspace: function handleBackspace() {
|
|
switch (Services.prefs.getIntPref("browser.backspace_action")) {
|
|
case 0:
|
|
CommandUpdater.doCommand("cmd_back");
|
|
break;
|
|
case 1:
|
|
CommandUpdater.doCommand("cmd_scrollPageUp");
|
|
break;
|
|
}
|
|
},
|
|
|
|
handleShiftBackspace: function handleShiftBackspace() {
|
|
switch (Services.prefs.getIntPref("browser.backspace_action")) {
|
|
case 0:
|
|
CommandUpdater.doCommand("cmd_forward");
|
|
break;
|
|
case 1:
|
|
CommandUpdater.doCommand("cmd_scrollPageDown");
|
|
break;
|
|
}
|
|
},
|
|
|
|
openFile: function() {
|
|
try {
|
|
const nsIFilePicker = Ci.nsIFilePicker;
|
|
let fp = Cc["@mozilla.org/filepicker;1"].createInstance(nsIFilePicker);
|
|
let self = this;
|
|
let fpCallback = function fpCallback_done(aResult) {
|
|
if (aResult == nsIFilePicker.returnOK) {
|
|
self.goToURI(fp.fileURL.spec);
|
|
}
|
|
};
|
|
|
|
let windowTitle = Strings.browser.GetStringFromName("browserForOpenLocation");
|
|
fp.init(window, windowTitle, nsIFilePicker.modeOpen);
|
|
fp.appendFilters(nsIFilePicker.filterAll | nsIFilePicker.filterText |
|
|
nsIFilePicker.filterImages | nsIFilePicker.filterXML |
|
|
nsIFilePicker.filterHTML);
|
|
fp.open(fpCallback);
|
|
} catch (ex) {
|
|
dump ('BrowserUI openFile exception: ' + ex + '\n');
|
|
}
|
|
},
|
|
|
|
savePage: function() {
|
|
Browser.savePage();
|
|
},
|
|
|
|
receiveMessage: function receiveMessage(aMessage) {
|
|
let browser = aMessage.target;
|
|
let json = aMessage.json;
|
|
switch (aMessage.name) {
|
|
case "DOMTitleChanged":
|
|
this._titleChanged(browser);
|
|
break;
|
|
case "DOMWillOpenModalDialog":
|
|
this.selectTabForBrowser(browser);
|
|
break;
|
|
case "DOMWindowClose":
|
|
return this.closeTabForBrowser(browser);
|
|
break;
|
|
// XXX this and content's sender are a little warped
|
|
case "Browser:OpenURI":
|
|
let referrerURI = null;
|
|
if (json.referrer)
|
|
referrerURI = Services.io.newURI(json.referrer, null, null);
|
|
this.goToURI(json.uri);
|
|
break;
|
|
case "Content:StateChange": {
|
|
let tab = Browser.selectedTab;
|
|
if (this.shouldCaptureThumbnails(tab)) {
|
|
PageThumbs.captureAndStore(tab.browser);
|
|
let currPage = tab.browser.currentURI.spec;
|
|
Services.obs.notifyObservers(null, "Metro:RefreshTopsiteThumbnail", currPage);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
return {};
|
|
},
|
|
|
|
shouldCaptureThumbnails: function shouldCaptureThumbnails(aTab) {
|
|
// Capture only if it's the currently selected tab.
|
|
if (aTab != Browser.selectedTab) {
|
|
return false;
|
|
}
|
|
// Skip private tabs
|
|
if (aTab.isPrivate) {
|
|
return false;
|
|
}
|
|
// FIXME Bug 720575 - Don't capture thumbnails for SVG or XML documents as
|
|
// that currently regresses Talos SVG tests.
|
|
let browser = aTab.browser;
|
|
let doc = browser.contentDocument;
|
|
if (doc instanceof SVGDocument || doc instanceof XMLDocument) {
|
|
return false;
|
|
}
|
|
|
|
// Don't capture pages in snapped mode, this produces 2/3 black
|
|
// thumbs or stretched out ones
|
|
// Ci.nsIWinMetroUtils.snapped is inaccessible on
|
|
// desktop/nonwindows systems
|
|
if(Elements.windowState.getAttribute("viewstate") == "snapped") {
|
|
return false;
|
|
}
|
|
// There's no point in taking screenshot of loading pages.
|
|
if (browser.docShell.busyFlags != Ci.nsIDocShell.BUSY_FLAGS_NONE) {
|
|
return false;
|
|
}
|
|
|
|
// Don't take screenshots of about: pages.
|
|
if (browser.currentURI.schemeIs("about")) {
|
|
return false;
|
|
}
|
|
|
|
// No valid document channel. We shouldn't take a screenshot.
|
|
let channel = browser.docShell.currentDocumentChannel;
|
|
if (!channel) {
|
|
return false;
|
|
}
|
|
|
|
// Don't take screenshots of internally redirecting about: pages.
|
|
// This includes error pages.
|
|
let uri = channel.originalURI;
|
|
if (uri.schemeIs("about")) {
|
|
return false;
|
|
}
|
|
|
|
// http checks
|
|
let httpChannel;
|
|
try {
|
|
httpChannel = channel.QueryInterface(Ci.nsIHttpChannel);
|
|
} catch (e) { /* Not an HTTP channel. */ }
|
|
|
|
if (httpChannel) {
|
|
// Continue only if we have a 2xx status code.
|
|
try {
|
|
if (Math.floor(httpChannel.responseStatus / 100) != 2) {
|
|
return false;
|
|
}
|
|
} catch (e) {
|
|
// Can't get response information from the httpChannel
|
|
// because mResponseHead is not available.
|
|
return false;
|
|
}
|
|
|
|
// Cache-Control: no-store.
|
|
if (httpChannel.isNoStoreResponse()) {
|
|
return false;
|
|
}
|
|
|
|
// Don't capture HTTPS pages unless the user enabled it.
|
|
if (uri.schemeIs("https") && !this.sslDiskCacheEnabled) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
},
|
|
|
|
_sslDiskCacheEnabled: null,
|
|
|
|
get sslDiskCacheEnabled() {
|
|
if (this._sslDiskCacheEnabled === null) {
|
|
this._sslDiskCacheEnabled = Services.prefs.getBoolPref("browser.cache.disk_cache_ssl");
|
|
}
|
|
return this._sslDiskCacheEnabled;
|
|
},
|
|
|
|
supportsCommand : function(cmd) {
|
|
var isSupported = false;
|
|
switch (cmd) {
|
|
case "cmd_back":
|
|
case "cmd_forward":
|
|
case "cmd_reload":
|
|
case "cmd_forceReload":
|
|
case "cmd_stop":
|
|
case "cmd_go":
|
|
case "cmd_home":
|
|
case "cmd_openLocation":
|
|
case "cmd_addBookmark":
|
|
case "cmd_bookmarks":
|
|
case "cmd_history":
|
|
case "cmd_remoteTabs":
|
|
case "cmd_quit":
|
|
case "cmd_close":
|
|
case "cmd_newTab":
|
|
case "cmd_newTabKey":
|
|
case "cmd_closeTab":
|
|
case "cmd_undoCloseTab":
|
|
case "cmd_actions":
|
|
case "cmd_panel":
|
|
case "cmd_reportingCrashesSubmitURLs":
|
|
case "cmd_flyout_back":
|
|
case "cmd_sanitize":
|
|
case "cmd_volumeLeft":
|
|
case "cmd_volumeRight":
|
|
case "cmd_openFile":
|
|
case "cmd_savePage":
|
|
isSupported = true;
|
|
break;
|
|
default:
|
|
isSupported = false;
|
|
break;
|
|
}
|
|
return isSupported;
|
|
},
|
|
|
|
isCommandEnabled : function(cmd) {
|
|
let elem = document.getElementById(cmd);
|
|
if (elem && elem.getAttribute("disabled") == "true")
|
|
return false;
|
|
return true;
|
|
},
|
|
|
|
doCommand : function(cmd) {
|
|
if (!this.isCommandEnabled(cmd))
|
|
return;
|
|
let browser = getBrowser();
|
|
switch (cmd) {
|
|
case "cmd_back":
|
|
browser.goBack();
|
|
break;
|
|
case "cmd_forward":
|
|
browser.goForward();
|
|
break;
|
|
case "cmd_reload":
|
|
browser.reload();
|
|
break;
|
|
case "cmd_forceReload":
|
|
{
|
|
// Simulate a new page
|
|
browser.lastLocation = null;
|
|
|
|
const reloadFlags = Ci.nsIWebNavigation.LOAD_FLAGS_BYPASS_PROXY |
|
|
Ci.nsIWebNavigation.LOAD_FLAGS_BYPASS_CACHE;
|
|
browser.reloadWithFlags(reloadFlags);
|
|
break;
|
|
}
|
|
case "cmd_stop":
|
|
browser.stop();
|
|
break;
|
|
case "cmd_go":
|
|
this.goToURI();
|
|
break;
|
|
case "cmd_home":
|
|
this.goToURI(Browser.getHomePage());
|
|
break;
|
|
case "cmd_openLocation":
|
|
ContextUI.displayNavbar();
|
|
this._edit.beginEditing(true);
|
|
this._edit.select();
|
|
break;
|
|
case "cmd_addBookmark":
|
|
ContextUI.displayNavbar();
|
|
Appbar.onStarButton(true);
|
|
break;
|
|
case "cmd_bookmarks":
|
|
PanelUI.show("bookmarks-container");
|
|
break;
|
|
case "cmd_history":
|
|
PanelUI.show("history-container");
|
|
break;
|
|
case "cmd_remoteTabs":
|
|
#ifdef MOZ_SERVICES_SYNC
|
|
if (Weave.Status.checkSetup() == Weave.CLIENT_NOT_CONFIGURED) {
|
|
FlyoutPanelsUI.show('SyncFlyoutPanel');
|
|
} else {
|
|
PanelUI.show("remotetabs-container");
|
|
}
|
|
#endif
|
|
break;
|
|
case "cmd_quit":
|
|
// Only close one window
|
|
this._closeOrQuit();
|
|
break;
|
|
case "cmd_close":
|
|
this._closeOrQuit();
|
|
break;
|
|
case "cmd_newTab":
|
|
this.addAndShowTab();
|
|
break;
|
|
case "cmd_newTabKey":
|
|
this.addAndShowTab();
|
|
// Make sure navbar is displayed before setting focus on url bar. Bug 907244
|
|
ContextUI.displayNavbar();
|
|
this._edit.beginEditing(false);
|
|
break;
|
|
case "cmd_closeTab":
|
|
this.closeTab();
|
|
break;
|
|
case "cmd_undoCloseTab":
|
|
this.undoCloseTab();
|
|
break;
|
|
case "cmd_sanitize":
|
|
this.confirmSanitizeDialog();
|
|
break;
|
|
case "cmd_flyout_back":
|
|
FlyoutPanelsUI.onBackButton();
|
|
break;
|
|
case "cmd_reportingCrashesSubmitURLs":
|
|
let urlCheckbox = document.getElementById("prefs-reporting-submitURLs");
|
|
Services.prefs.setBoolPref('app.crashreporter.submitURLs', urlCheckbox.checked);
|
|
break;
|
|
case "cmd_panel":
|
|
PanelUI.toggle();
|
|
break;
|
|
case "cmd_openFile":
|
|
this.openFile();
|
|
break;
|
|
case "cmd_savePage":
|
|
this.savePage();
|
|
break;
|
|
}
|
|
},
|
|
|
|
confirmSanitizeDialog: function () {
|
|
let bundle = Services.strings.createBundle("chrome://browser/locale/browser.properties");
|
|
let title = bundle.GetStringFromName("clearPrivateData.title2");
|
|
let message = bundle.GetStringFromName("clearPrivateData.message3");
|
|
let clearbutton = bundle.GetStringFromName("clearPrivateData.clearButton");
|
|
|
|
let prefsClearButton = document.getElementById("prefs-clear-data");
|
|
prefsClearButton.disabled = true;
|
|
|
|
let buttonPressed = Services.prompt.confirmEx(
|
|
null,
|
|
title,
|
|
message,
|
|
Ci.nsIPrompt.BUTTON_POS_0 * Ci.nsIPrompt.BUTTON_TITLE_IS_STRING +
|
|
Ci.nsIPrompt.BUTTON_POS_1 * Ci.nsIPrompt.BUTTON_TITLE_CANCEL,
|
|
clearbutton,
|
|
null,
|
|
null,
|
|
null,
|
|
{ value: false });
|
|
|
|
// Clicking 'Clear' will call onSanitize().
|
|
if (buttonPressed === 0) {
|
|
SanitizeUI.onSanitize();
|
|
}
|
|
|
|
prefsClearButton.disabled = false;
|
|
},
|
|
};
|
|
|
|
var PanelUI = {
|
|
get _panels() { return document.getElementById("panel-items"); },
|
|
|
|
get isVisible() {
|
|
return !Elements.panelUI.hidden;
|
|
},
|
|
|
|
views: {
|
|
"console-container": "ConsolePanelView",
|
|
},
|
|
|
|
init: function() {
|
|
// Perform core init soon
|
|
setTimeout(function () {
|
|
for each (let viewName in this.views) {
|
|
let view = window[viewName];
|
|
if (view.init)
|
|
view.init();
|
|
}
|
|
}.bind(this), 0);
|
|
|
|
// Lazily run other initialization tasks when the views are shown
|
|
this._panels.addEventListener("ToolPanelShown", function(aEvent) {
|
|
let viewName = this.views[this._panels.selectedPanel.id];
|
|
let view = window[viewName];
|
|
if (view.show)
|
|
view.show();
|
|
}.bind(this), true);
|
|
},
|
|
|
|
uninit: function() {
|
|
for each (let viewName in this.views) {
|
|
let view = window[viewName];
|
|
if (view.uninit)
|
|
view.uninit();
|
|
}
|
|
},
|
|
|
|
switchPane: function switchPane(aPanelId) {
|
|
BrowserUI.blurFocusedElement();
|
|
|
|
let panel = aPanelId ? document.getElementById(aPanelId) : this._panels.selectedPanel;
|
|
let oldPanel = this._panels.selectedPanel;
|
|
|
|
if (oldPanel != panel) {
|
|
this._panels.selectedPanel = panel;
|
|
|
|
this._fire("ToolPanelHidden", oldPanel);
|
|
}
|
|
|
|
this._fire("ToolPanelShown", panel);
|
|
},
|
|
|
|
isPaneVisible: function isPaneVisible(aPanelId) {
|
|
return this.isVisible && this._panels.selectedPanel.id == aPanelId;
|
|
},
|
|
|
|
show: function show(aPanelId) {
|
|
Elements.panelUI.hidden = false;
|
|
Elements.contentShowing.setAttribute("disabled", "true");
|
|
|
|
this.switchPane(aPanelId);
|
|
},
|
|
|
|
hide: function hide() {
|
|
if (!this.isVisible)
|
|
return;
|
|
|
|
Elements.panelUI.hidden = true;
|
|
Elements.contentShowing.removeAttribute("disabled");
|
|
BrowserUI.blurFocusedElement();
|
|
|
|
this._fire("ToolPanelHidden", this._panels);
|
|
},
|
|
|
|
toggle: function toggle() {
|
|
if (this.isVisible) {
|
|
this.hide();
|
|
} else {
|
|
this.show();
|
|
}
|
|
},
|
|
|
|
_fire: function _fire(aName, anElement) {
|
|
let event = document.createEvent("Events");
|
|
event.initEvent(aName, true, true);
|
|
anElement.dispatchEvent(event);
|
|
}
|
|
};
|
|
|
|
var DialogUI = {
|
|
_popup: null,
|
|
|
|
init: function() {
|
|
window.addEventListener("mousedown", this, true);
|
|
},
|
|
|
|
/*******************************************
|
|
* Popups
|
|
*/
|
|
|
|
pushPopup: function pushPopup(aPanel, aElements, aParent) {
|
|
this._hidePopup();
|
|
this._popup = { "panel": aPanel,
|
|
"elements": (aElements instanceof Array) ? aElements : [aElements] };
|
|
this._dispatchPopupChanged(true, aPanel);
|
|
},
|
|
|
|
popPopup: function popPopup(aPanel) {
|
|
if (!this._popup || aPanel != this._popup.panel)
|
|
return;
|
|
this._popup = null;
|
|
this._dispatchPopupChanged(false, aPanel);
|
|
},
|
|
|
|
_hidePopup: function _hidePopup() {
|
|
if (!this._popup)
|
|
return;
|
|
let panel = this._popup.panel;
|
|
if (panel.hide)
|
|
panel.hide();
|
|
},
|
|
|
|
/*******************************************
|
|
* Events
|
|
*/
|
|
|
|
handleEvent: function (aEvent) {
|
|
switch (aEvent.type) {
|
|
case "mousedown":
|
|
if (!this._isEventInsidePopup(aEvent))
|
|
this._hidePopup();
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
},
|
|
|
|
_dispatchPopupChanged: function _dispatchPopupChanged(aVisible, aElement) {
|
|
let event = document.createEvent("UIEvents");
|
|
event.initUIEvent("PopupChanged", true, true, window, aVisible);
|
|
aElement.dispatchEvent(event);
|
|
},
|
|
|
|
_isEventInsidePopup: function _isEventInsidePopup(aEvent) {
|
|
if (!this._popup)
|
|
return false;
|
|
let elements = this._popup.elements;
|
|
let targetNode = aEvent.target;
|
|
while (targetNode && elements.indexOf(targetNode) == -1) {
|
|
if (targetNode instanceof Element && targetNode.hasAttribute("for"))
|
|
targetNode = document.getElementById(targetNode.getAttribute("for"));
|
|
else
|
|
targetNode = targetNode.parentNode;
|
|
}
|
|
return targetNode ? true : false;
|
|
}
|
|
};
|