releases-comm-central/suite/common/nsContextMenu.js

1423 строки
55 KiB
JavaScript

/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* 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 Communicator client code, released
* March 31, 1998.
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1998
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* William A. ("PowerGUI") Law <law@netscape.com>
* Blake Ross <blakeross@telocity.com>
* Gervase Markham <gerv@gerv.net>
* Kathleen Brade <brade@pearlcrescent.com>
* Mark Smith <mcs@pearlcrescent.com>
*
* Alternatively, the contents of this file may be used under the terms of
* either of 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 ***** */
/*------------------------------ nsContextMenu ---------------------------------
| This JavaScript "class" is used to implement the browser's content-area |
| context menu. |
| |
| For usage, see references to this class in navigator.xul. |
| |
| Currently, this code is relatively useless for any other purpose. In the |
| longer term, this code will be restructured to make it more reusable. |
------------------------------------------------------------------------------*/
Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
function nsContextMenu(aXulMenu, aBrowser) {
this.shouldDisplay = true;
this.initMenu();
}
// Prototype for nsContextMenu "class."
nsContextMenu.prototype = {
initMenu: function() {
// Get contextual info.
this.setTarget(document.popupNode, document.popupRangeParent,
document.popupRangeOffset);
if (!this.shouldDisplay)
return;
this.isTextSelected = this.isTextSelection();
this.isContentSelected = this.isContentSelection();
this.initPopupURL();
// Initialize (disable/remove) menu items.
this.initItems();
},
initItems: function() {
this.initOpenItems();
this.initNavigationItems();
this.initViewItems();
this.initMiscItems();
this.initSpellingItems();
this.initSaveItems();
this.initClipboardItems();
this.initMetadataItems();
this.initMediaPlayerItems();
},
initOpenItems: function() {
var showOpen = this.onSaveableLink || (this.inDirList && this.onLink);
this.showItem("context-openlink", showOpen);
this.showItem("context-openlinkintab", showOpen);
this.showItem("context-sep-open", showOpen);
},
initNavigationItems: function() {
// Back/Forward determined by canGoBack/canGoForward broadcasters.
this.setItemAttrFromNode("context-back", "disabled", "canGoBack");
this.setItemAttrFromNode("context-forward", "disabled", "canGoForward");
var showNav = !(this.isContentSelected || this.onLink || this.onImage ||
this.onCanvas || this.onVideo || this.onAudio ||
this.onTextInput);
this.showItem("context-back", showNav);
this.showItem("context-forward", showNav);
this.showItem("context-reload", showNav);
this.showItem("context-stop", showNav);
this.showItem("context-sep-stop", showNav);
// XXX: Stop is determined in navigator.js; the canStop broadcaster is broken
//this.setItemAttrFromNode( "context-stop", "disabled", "canStop" );
},
initSaveItems: function() {
var showSave = !(this.inDirList || this.isContentSelected ||
this.onTextInput || this.onStandaloneImage ||
this.onCanvas || this.onVideo || this.onAudio ||
(this.onLink && this.onImage));
if (showSave)
goSetMenuValue("context-savepage",
this.autoDownload ? "valueSave" : "valueSaveAs");
this.showItem("context-savepage", showSave);
// Save/send link depends on whether we're in a link.
if (this.onSaveableLink)
goSetMenuValue("context-savelink",
this.autoDownload ? "valueSave" : "valueSaveAs");
this.showItem("context-savelink", this.onSaveableLink);
this.showItem("context-sendlink", this.onSaveableLink);
// Save image depends on having loaded its content, video and audio don't.
showSave = this.onLoadedImage || this.onStandaloneImage || this.onCanvas;
if (showSave)
goSetMenuValue("context-saveimage",
this.autoDownload ? "valueSave" : "valueSaveAs");
this.showItem("context-saveimage", showSave);
this.showItem("context-savevideo", this.onVideo);
this.showItem("context-saveaudio", this.onAudio);
this.showItem("context-video-saveimage", this.onVideo);
if (this.onVideo)
this.setItemAttr("context-savevideo", "disabled", !this.mediaURL);
if (this.onAudio)
this.setItemAttr("context-saveaudio", "disabled", !this.mediaURL);
// Send media URL (but not for canvas, since it's a big data: URL)
this.showItem("context-sendimage", showSave);
this.showItem("context-sendvideo", this.onVideo);
this.showItem("context-sendaudio", this.onAudio);
if (this.onVideo)
this.setItemAttr("context-sendvideo", "disabled", !this.mediaURL);
if (this.onAudio)
this.setItemAttr("context-sendaudio", "disabled", !this.mediaURL);
},
initViewItems: function() {
// View source is always OK, unless in directory listing.
this.showItem("context-viewpartialsource-selection",
this.isContentSelected && !this.onTextInput);
this.showItem("context-viewpartialsource-mathml",
this.onMathML && !this.isContentSelected);
var showView = !(this.inDirList || this.onImage || this.isContentSelected ||
this.onCanvas || this.onVideo || this.onAudio ||
this.onLink || this.onTextInput);
this.showItem("context-viewsource", showView);
this.showItem("context-viewinfo", showView);
this.showItem("context-sep-properties",
!(this.inDirList || this.isContentSelected || this.onTextInput ||
this.onCanvas || this.onVideo || this.onAudio));
// Set As Wallpaper depends on whether an image was clicked on,
// and requires the shell service.
var hasShell = "@mozilla.org/suite/shell-service;1" in Components.classes;
this.showItem("context-setWallpaper",
hasShell && (this.onLoadedImage || this.onStandaloneImage));
this.showItem("context-sep-image",
this.onLoadedImage || this.onStandaloneImage);
if (hasShell && this.onLoadedImage)
// Disable the Set As Wallpaper menu item if we're still trying to load the image
this.setItemAttr("context-setWallpaper", "disabled",
(("complete" in this.target) && !this.target.complete) ? "true" : null);
this.showItem("context-fitimage", this.onStandaloneImage &&
content.document.imageResizingEnabled);
if (this.onStandaloneImage && content.document.imageResizingEnabled) {
this.setItemAttr("context-fitimage", "disabled",
content.document.imageIsOverflowing ? null : "true");
this.setItemAttr("context-fitimage", "checked",
content.document.imageIsResized ? "true" : null);
}
this.showItem("context-reloadimage", this.onImage);
// View Image depends on whether an image was clicked on.
this.showItem("context-viewimage", this.onImage &&
(!this.onStandaloneImage || this.inFrame) || this.onCanvas);
this.showItem("context-viewvideo", this.onVideo && (this.inFrame ||
this.mediaURL != this.target.ownerDocument.location.href));
this.setItemAttr("context-viewvideo", "disabled", !this.mediaURL);
// View background image depends on whether there is one.
this.showItem("context-viewbgimage", showView && !this.onStandaloneImage);
this.showItem("context-sep-viewbgimage", showView && !this.onStandaloneImage);
this.setItemAttr("context-viewbgimage", "disabled", this.hasBGImage ? null : "true");
// Hide Block and Unblock menuitems.
this.showItem("context-blockimage", false);
this.showItem("context-unblockimage", false);
// Block image depends on whether an image was clicked on.
if (this.onImage) {
var uri = Services.io.newURI(this.mediaURL, null, null);
if (uri instanceof Components.interfaces.nsIURL && uri.host) {
var serverLabel = uri.host;
// Limit length to max 15 characters.
serverLabel = serverLabel.replace(/^www\./i, "");
if (serverLabel.length > 15)
serverLabel = serverLabel.substr(0, 15) + this.ellipsis;
// Set label and accesskey for appropriate action and unhide menuitem.
var id = "context-blockimage";
var attr = "blockImage";
if (Services.perms.testPermission(uri, "image") == Services.perms.DENY_ACTION) {
id = "context-unblockimage";
attr = "unblockImage";
}
const bundle = document.getElementById("contentAreaCommandsBundle");
this.setItemAttr(id, "label",
bundle.getFormattedString(attr, [serverLabel]));
this.setItemAttr(id, "accesskey",
bundle.getString(attr + ".accesskey"));
this.showItem(id, true);
}
}
},
initMiscItems: function() {
// Use "Bookmark This Link" if on a link.
this.showItem("context-bookmarkpage",
!(this.isContentSelected || this.onTextInput ||
this.onStandaloneImage || this.onVideo || this.onAudio));
this.showItem("context-bookmarklink", this.onLink && !this.onMailtoLink);
this.showItem("context-searchselect", this.isTextSelected && !this.onTextInput);
this.showItem("context-keywordfield", this.onTextInput && this.onKeywordField);
this.showItem("frame", this.inFrame);
this.showItem("frame-sep", this.inFrame);
if (this.inFrame)
goSetMenuValue("context-saveframe",
this.autoDownload ? "valueSave" : "valueSaveAs");
var blocking = true;
if (this.popupURL)
try {
const PM = Components.classes["@mozilla.org/PopupWindowManager;1"]
.getService(Components.interfaces.nsIPopupWindowManager);
blocking = PM.testPermission(this.popupURL) ==
Components.interfaces.nsIPopupWindowManager.DENY_POPUP;
} catch (e) {
}
this.showItem("popupwindow-reject", this.popupURL && !blocking);
this.showItem("popupwindow-allow", this.popupURL && blocking);
this.showItem("context-sep-popup", this.popupURL);
// BiDi UI
this.showItem("context-sep-bidi", gShowBiDi);
this.showItem("context-bidi-text-direction-toggle",
this.onTextInput && gShowBiDi);
this.showItem("context-bidi-page-direction-toggle",
!this.onTextInput && gShowBiDi);
},
initSpellingItems: function() {
var canSpell = InlineSpellCheckerUI.canSpellCheck;
var onMisspelling = InlineSpellCheckerUI.overMisspelling;
this.showItem("spell-check-enabled", canSpell);
this.showItem("spell-separator", canSpell || this.possibleSpellChecking);
if (canSpell)
this.setItemAttr("spell-check-enabled", "checked", InlineSpellCheckerUI.enabled);
this.showItem("spell-add-to-dictionary", onMisspelling);
this.showItem("spell-ignore-word", onMisspelling);
// suggestion list
this.showItem("spell-add-separator", onMisspelling);
this.showItem("spell-suggestions-separator", onMisspelling);
if (onMisspelling) {
var suggestionsSeparator = document.getElementById("spell-add-separator");
var numsug = InlineSpellCheckerUI.addSuggestionsToMenu(suggestionsSeparator.parentNode, suggestionsSeparator, 5);
this.showItem("spell-no-suggestions", numsug == 0);
} else {
this.showItem("spell-no-suggestions", false);
}
// dictionary list
this.showItem("spell-dictionaries", InlineSpellCheckerUI.enabled);
var dictMenu = document.getElementById("spell-dictionaries-menu");
if (canSpell && dictMenu) {
var dictSep = document.getElementById("spell-language-separator");
InlineSpellCheckerUI.addDictionaryListToMenu(dictMenu, dictSep);
}
// when there is no spellchecker but we might be able to spellcheck
// add the add to dictionaries item. This will ensure that people
// with no dictionaries will be able to download them
this.showItem("spell-add-dictionaries-main",
!canSpell && this.possibleSpellChecking);
},
initClipboardItems: function() {
// Copy depends on whether there is selected text.
// Enabling this context menu item is now done through the global
// command updating system
// this.setItemAttr("context-copy", "disabled", !this.isTextSelected());
goUpdateGlobalEditMenuItems();
this.showItem("context-undo", this.onTextInput);
this.showItem("context-redo", this.onTextInput);
this.showItem("context-sep-undo", this.onTextInput);
this.showItem("context-cut", this.onTextInput);
this.showItem("context-copy", this.isContentSelected || this.onTextInput);
this.showItem("context-paste", this.onTextInput);
this.showItem("context-delete", this.onTextInput);
this.showItem("context-sep-paste", this.onTextInput);
this.showItem("context-selectall", !(this.onLink || this.onImage ||
this.onVideo || this.onAudio));
this.showItem("context-sep-selectall",
this.isContentSelected && !this.onTextInput);
// In a text area there will be nothing after select all, so we don't want a sep
// Otherwise, if there's text selected then there are extra menu items
// (search for selection and view selection source), so we do want a sep
// XXX dr
// ------
// nsDocumentViewer.cpp has code to determine whether we're
// on a link or an image. we really ought to be using that...
// Copy email link depends on whether we're on an email link.
this.showItem("context-copyemail", this.onMailtoLink);
// Copy link location depends on whether we're on a link.
this.showItem("context-copylink", this.onLink);
this.showItem("context-sep-copylink", this.onLink);
// Copy image location depends on whether we're on an image.
this.showItem("context-copyimage", this.onImage);
this.showItem("context-copyvideourl", this.onVideo);
this.showItem("context-copyaudiourl", this.onAudio);
if (this.onVideo)
this.setItemAttr("context-copyvideourl", "disabled", !this.mediaURL);
if (this.onAudio)
this.setItemAttr("context-copyaudiourl", "disabled", !this.mediaURL);
this.showItem("context-sep-copyimage",
this.onImage || this.onVideo || this.onAudio);
},
initMetadataItems: function() {
// Show if user clicked on something which has metadata.
this.showItem("context-metadata", this.onMetaDataItem);
},
initMediaPlayerItems: function() {
var onMedia = (this.onVideo || this.onAudio);
// Several mutually exclusive items... play/pause, mute/unmute, show/hide
this.showItem("context-media-play",
onMedia && (this.target.paused || this.target.ended));
this.showItem("context-media-pause",
onMedia && !this.target.paused && !this.target.ended);
this.showItem("context-media-mute", onMedia && !this.target.muted);
this.showItem("context-media-unmute", onMedia && this.target.muted);
this.showItem("context-media-showcontrols", onMedia && !this.target.controls);
this.showItem("context-media-hidecontrols", onMedia && this.target.controls);
this.showItem("context-video-fullscreen", this.onVideo);
var statsShowing = this.onVideo &&
this.target.wrappedJSObject.mozMediaStatisticsShowing;
this.showItem("context-video-showstats",
this.onVideo && this.target.controls && !statsShowing);
this.showItem("context-video-hidestats",
this.onVideo && this.target.controls && statsShowing);
// Disable them when there isn't a valid media source loaded.
if (onMedia) {
var hasError = this.target.error != null ||
this.target.networkState == this.target.NETWORK_NO_SOURCE;
this.setItemAttr("context-media-play", "disabled", hasError);
this.setItemAttr("context-media-pause", "disabled", hasError);
this.setItemAttr("context-media-mute", "disabled", hasError);
this.setItemAttr("context-media-unmute", "disabled", hasError);
this.setItemAttr("context-media-showcontrols", "disabled", hasError);
this.setItemAttr("context-media-hidecontrols", "disabled", hasError);
if (this.onVideo) {
let canSave = this.target.readyState >= this.target.HAVE_CURRENT_DATA;
this.setItemAttr("context-video-saveimage", "disabled", !canSave);
this.setItemAttr("context-video-fullscreen", "disabled", hasError);
this.setItemAttr("context-video-showstats", "disabled", hasError);
this.setItemAttr("context-video-hidestats", "disabled", hasError);
}
}
this.showItem("context-media-sep-commands", onMedia);
},
// Set various context menu attributes based on the state of the world.
setTarget: function(aNode, aRangeParent, aRangeOffset) {
const xulNS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
// Initialize contextual info.
this.onImage = false;
this.onLoadedImage = false;
this.onStandaloneImage = false;
this.onCanvas = false;
this.onVideo = false;
this.onAudio = false;
this.onMetaDataItem = false;
this.onTextInput = false;
this.onKeywordField = false;
this.mediaURL = "";
this.onLink = false;
this.onMailtoLink = false;
this.onSaveableLink = false;
this.inDirList = false;
this.link = null;
this.linkURL = "";
this.linkURI = null;
this.linkProtocol = "";
this.onMathML = false;
this.inFrame = false;
this.hasBGImage = false;
this.bgImageURL = "";
this.popupURL = null;
this.autoDownload = false;
this.isTextSelected = false;
this.isContentSelected = false;
this.possibleSpellChecking = false;
// Remember the node that was clicked.
this.target = aNode;
// Clear any old spellchecking items from the menu, this used to
// be in the menu hiding code but wasn't getting called in all
// situations. Here, we can ensure it gets cleaned up any time the
// menu is shown. Note: must be before uninit because that clears the
// internal vars
InlineSpellCheckerUI.clearSuggestionsFromMenu();
InlineSpellCheckerUI.clearDictionaryListFromMenu();
InlineSpellCheckerUI.uninit();
if (aNode.namespaceURI == xulNS || this.isTargetAFormControl(aNode)) {
this.shouldDisplay = false;
return;
}
this.autoDownload = Components.classes["@mozilla.org/preferences-service;1"]
.getService(Components.interfaces.nsIPrefBranch)
.getBoolPref("browser.download.useDownloadDir");
// if the document is editable, show context menu like in text inputs
var win = this.target.ownerDocument.defaultView;
if (win) {
var webNav = win.QueryInterface(Components.interfaces.nsIInterfaceRequestor)
.getInterface(Components.interfaces.nsIWebNavigation);
this.browser = webNav.QueryInterface(Components.interfaces.nsIDocShell)
.chromeEventHandler;
var editingSession = webNav.QueryInterface(Components.interfaces.nsIInterfaceRequestor)
.getInterface(Components.interfaces.nsIEditingSession);
if (editingSession.windowIsEditable(win) && this.isTargetEditable()) {
this.onTextInput = true;
this.possibleSpellChecking = true;
InlineSpellCheckerUI.init(editingSession.getEditorForWindow(win));
var canSpell = InlineSpellCheckerUI.canSpellCheck;
InlineSpellCheckerUI.initFromEvent(aRangeParent, aRangeOffset);
this.showItem("spell-check-enabled", canSpell);
this.showItem("spell-separator", canSpell);
return;
}
}
// See if the user clicked on an image.
if (this.target.nodeType == Node.ELEMENT_NODE) {
if (this.target instanceof Components.interfaces.nsIImageLoadingContent &&
this.target.currentURI) {
this.onImage = true;
var request =
this.target.getRequest(Components.interfaces.nsIImageLoadingContent.CURRENT_REQUEST);
if (request && (request.imageStatus & request.STATUS_SIZE_AVAILABLE))
this.onLoadedImage = true;
this.mediaURL = this.target.currentURI.spec;
if (this.target.ownerDocument instanceof ImageDocument)
this.onStandaloneImage = true;
}
else if (this.target instanceof HTMLCanvasElement) {
this.onCanvas = true;
}
else if (this.target instanceof HTMLVideoElement) {
this.onVideo = true;
this.mediaURL = this.target.currentSrc || this.target.src;
}
else if (this.target instanceof HTMLAudioElement) {
this.onAudio = true;
this.mediaURL = this.target.currentSrc || this.target.src;
}
else if (this.target instanceof HTMLInputElement) {
this.onTextInput = this.isTargetATextBox(this.target);
// allow spellchecking UI on all writable text boxes except passwords
if (!this.target.readOnly && !this.target.disabled &&
this.target.mozIsTextField(true)) {
this.possibleSpellChecking = true;
InlineSpellCheckerUI.init(this.target.QueryInterface(Components.interfaces.nsIDOMNSEditableElement).editor);
InlineSpellCheckerUI.initFromEvent(aRangeParent, aRangeOffset);
}
this.onKeywordField = this.isTargetAKeywordField(this.target);
}
else if (this.target instanceof HTMLTextAreaElement) {
this.onTextInput = true;
if (!this.target.readOnly && !this.target.disabled) {
this.possibleSpellChecking = true;
InlineSpellCheckerUI.init(this.target.QueryInterface(Components.interfaces.nsIDOMNSEditableElement).editor);
InlineSpellCheckerUI.initFromEvent(aRangeParent, aRangeOffset);
}
}
else if ( this.target instanceof HTMLHtmlElement ) {
// pages with multiple <body>s are lame. we'll teach them a lesson.
var bodyElt = this.target.ownerDocument.body;
if (bodyElt) {
var computedURL = this.getComputedURL(bodyElt, "background-image");
if (computedURL) {
this.hasBGImage = true;
this.bgImageURL = makeURLAbsolute(bodyElt.baseURI, computedURL);
}
}
}
else if ("HTTPIndex" in content &&
content.HTTPIndex instanceof Components.interfaces.nsIHTTPIndex) {
this.inDirList = true;
// Bubble outward till we get to an element with URL attribute
// (which should be the href).
var root = this.target;
while (root && !this.link) {
if (root.tagName == "tree") {
// Hit root of tree; must have clicked in empty space;
// thus, no link.
break;
}
if (root.getAttribute("URL")) {
// Build pseudo link object so link-related functions work.
this.onLink = true;
this.link = {href: root.getAttribute("URL"),
getAttribute: function(attr) {
if (attr == "title") {
return root.firstChild.firstChild.getAttribute("label");
} else {
return "";
}
}
};
this.linkURL = this.getLinkURL();
this.linkURI = this.getLinkURI();
this.linkProtocol = this.getLinkProtocol();
this.onMailtoLink = (this.linkProtocol == "mailto");
// If element is a directory, then you can't save it.
this.onSaveableLink = root.getAttribute("container") != "true";
}
else {
root = root.parentNode;
}
}
}
}
// We have meta data on images.
this.onMetaDataItem = this.onImage;
// See if the user clicked on MathML
const NS_MathML = "http://www.w3.org/1998/Math/MathML";
if ((this.target.nodeType == Node.TEXT_NODE &&
this.target.parentNode.namespaceURI == NS_MathML) ||
(this.target.namespaceURI == NS_MathML))
this.onMathML = true;
// See if the user clicked in a frame.
var docDefaultView = this.target.ownerDocument.defaultView;
if (docDefaultView != docDefaultView.top)
this.inFrame = true;
// Bubble out, looking for items of interest
const XMLNS = "http://www.w3.org/XML/1998/namespace";
var elem = this.target;
while (elem) {
if (elem.nodeType == Node.ELEMENT_NODE) {
// Link?
if (!this.onLink &&
((elem instanceof HTMLAnchorElement && elem.href) ||
elem instanceof HTMLAreaElement ||
elem instanceof HTMLLinkElement ||
elem.getAttributeNS("http://www.w3.org/1999/xlink", "type") == "simple")) {
// Clicked on a link.
this.onLink = true;
this.onMetaDataItem = true;
// Remember corresponding element.
this.link = elem;
this.linkURL = this.getLinkURL();
this.linkURI = this.getLinkURI();
this.linkProtocol = this.getLinkProtocol();
this.onMailtoLink = (this.linkProtocol == "mailto");
// Remember if it is saveable.
this.onSaveableLink = this.isLinkSaveable();
}
// Text input?
if (!this.onTextInput) {
// Clicked on a link.
this.onTextInput = this.isTargetATextBox(elem);
}
// Metadata item?
if (!this.onMetaDataItem) {
// We currently display metadata on anything which fits
// the below test.
if ((elem instanceof HTMLQuoteElement && elem.cite) ||
(elem instanceof HTMLTableElement && elem.summary) ||
(elem instanceof HTMLModElement && (elem.cite || elem.dateTime)) ||
(elem instanceof HTMLElement && (elem.title || elem.lang)) ||
elem.getAttributeNS(XMLNS, "lang")) {
dump("On metadata item.\n");
this.onMetaDataItem = true;
}
}
// Background image? Don't bother if we've already found a
// background image further down the hierarchy. Otherwise,
// we look for the computed background-image style.
if (!this.hasBGImage) {
var bgImgUrl = this.getComputedURL(elem, "background-image");
if (bgImgUrl) {
this.hasBGImage = true;
this.bgImageURL = makeURLAbsolute(elem.baseURI, bgImgUrl);
}
}
}
elem = elem.parentNode;
}
},
initPopupURL: function() {
// quick check: if no opener, it can't be a popup
if (!window.content.opener)
return;
try {
var show = false;
// is it a popup window?
const CI = Components.interfaces;
var xulwin = window
.QueryInterface(CI.nsIInterfaceRequestor)
.getInterface(CI.nsIWebNavigation)
.QueryInterface(CI.nsIDocShellTreeItem)
.treeOwner
.QueryInterface(CI.nsIInterfaceRequestor)
.getInterface(CI.nsIXULWindow);
if (xulwin.contextFlags &
CI.nsIWindowCreator2.PARENT_IS_LOADING_OR_RUNNING_TIMEOUT) {
// do the pref settings allow site-by-site popup management?
const PB = Components.classes["@mozilla.org/preferences-service;1"]
.getService(CI.nsIPrefBranch);
show = !PB.getBoolPref("dom.disable_open_during_load");
}
if (show) {
// initialize popupURL
this.popupURL = Services.io.newURI(window.content.opener.location.href, null, null);
}
} catch(e) {
}
},
// Returns the computed style attribute for the given element.
getComputedStyle: function(aElem, aProp) {
return aElem.ownerDocument
.defaultView
.getComputedStyle(aElem, "").getPropertyValue(aProp);
},
// Returns a "url"-type computed style attribute value, with the url() stripped.
getComputedURL: function(aElem, aProp) {
var url = aElem.ownerDocument.defaultView
.getComputedStyle(aElem, "")
.getPropertyCSSValue(aProp);
if (url instanceof CSSPrimitiveValue)
url = [url];
for (var i = 0; i < url.length; i++)
if (url[i].primitiveType == CSSPrimitiveValue.CSS_URI)
return url[i].getStringValue();
return null;
},
// Returns true if clicked-on link targets a resource that can be saved.
isLinkSaveable: function() {
return this.linkProtocol && this.linkProtocol != "mailto" &&
this.linkProtocol != "javascript";
},
// Block popup windows
rejectPopupWindows: function(aAndClose) {
const PM = Components.classes["@mozilla.org/PopupWindowManager;1"]
.getService(Components.interfaces.nsIPopupWindowManager);
PM.add(this.popupURL, false);
if (aAndClose)
Services.obs.notifyObservers(window, "popup-perm-close", this.popupURL.spec);
},
// Unblock popup windows
allowPopupWindows: function() {
const PM = Components.classes["@mozilla.org/PopupWindowManager;1"]
.getService(Components.interfaces.nsIPopupWindowManager);
PM.add(this.popupURL, true);
},
// Block/Unblock image from loading in the future.
toggleImageBlocking: function(aBlock) {
const uri = Services.io.newURI(this.mediaURL, null, null);
if (aBlock)
Services.perms.add(uri, "image", Services.perms.DENY_ACTION);
else
Services.perms.remove(uri.host, "image");
},
// Open linked-to URL in a new window.
openLink: function() {
// Determine linked-to URL.
return openNewWindowWith(this.linkURL, this.target.ownerDocument);
},
// Open linked-to URL in a new tab.
openLinkInTab: function(aEvent) {
// Determine linked-to URL.
return openNewTabWith(this.linkURL, this.target.ownerDocument, null,
aEvent);
},
// Open frame in a new tab.
openFrameInTab: function(aEvent) {
// Determine linked-to URL.
return openNewTabWith(this.target.ownerDocument.location.href,
this.target.ownerDocument, null, aEvent);
},
// Reload clicked-in frame.
reloadFrame: function() {
this.target.ownerDocument.location.reload();
},
// Open clicked-in frame in its own window.
openFrame: function() {
return openNewWindowWith(this.target.ownerDocument.location.href,
this.target.ownerDocument);
},
// Open clicked-in frame in the same window
showOnlyThisFrame: function() {
openTopWin( this.target.ownerDocument.location.href, this.target.ownerDocument.defaultView );
},
// View Partial Source
viewPartialSource: function(aContext) {
var focusedWindow = document.commandDispatcher.focusedWindow;
if (focusedWindow == window)
focusedWindow = content;
var docCharset = null;
if (focusedWindow)
docCharset = "charset=" + focusedWindow.document.characterSet;
// "View Selection Source" and others such as "View MathML Source"
// are mutually exclusive, with the precedence given to the selection
// when there is one
var reference = null;
if (aContext == "selection")
reference = focusedWindow.getSelection();
else if (aContext == "mathml")
reference = this.target;
else
throw "not reached";
var docUrl = null; // unused (and play nice for fragments generated via XSLT too)
window.openDialog("chrome://global/content/viewPartialSource.xul",
"_blank", "all,dialog=no",
docUrl, docCharset, reference, aContext);
},
// Open new "view source" window with the frame's URL.
viewFrameSource: function() {
BrowserViewSourceOfDocument(this.target.ownerDocument);
},
viewInfo: function() {
BrowserPageInfo();
},
viewFrameInfo: function() {
BrowserPageInfo(this.target.ownerDocument);
},
toggleImageSize: function() {
content.document.toggleImageSize();
},
// Reload image
reloadImage: function() {
urlSecurityCheck(this.mediaURL, this.target.nodePrincipal,
Components.interfaces.nsIScriptSecurityManager.ALLOW_CHROME);
if (this.target instanceof Components.interfaces.nsIImageLoadingContent)
this.target.forceReload();
},
// Change current window to the URL of the image, video, or audio.
viewMedia: function(aEvent) {
var viewURL;
if (this.onCanvas)
viewURL = this.target.toDataURL();
else {
viewURL = this.mediaURL;
urlSecurityCheck(viewURL, this.target.nodePrincipal,
Components.interfaces.nsIScriptSecurityManager.ALLOW_CHROME);
}
var doc = this.target.ownerDocument;
var where = whereToOpenLink(aEvent);
if (where == "current")
openTopWin(viewURL, doc.defaultView);
else
openUILinkIn(viewURL, where, null, null, doc.documentURIObject);
},
saveVideoFrameAsImage: function () {
urlSecurityCheck(this.mediaURL, this.browser.contentPrincipal,
Components.interfaces.nsIScriptSecurityManager.DISALLOW_SCRIPT);
var name = "snapshot.jpg";
try {
let uri = makeURI(this.mediaURL);
let url = uri.QueryInterface(Components.interfaces.nsIURL);
if (url.fileBaseName)
name = url.fileBaseName + ".jpg";
} catch (e) { }
var video = this.target;
var canvas = document.createElementNS("http://www.w3.org/1999/xhtml", "canvas");
canvas.width = video.videoWidth;
canvas.height = video.videoHeight;
var ctxDraw = canvas.getContext("2d");
ctxDraw.drawImage(video, 0, 0);
saveImageURL(canvas.toDataURL("image/jpeg", ""), name, "SaveImageTitle",
true, true,
this.target.ownerDocument.documentURIObject);
},
// Full screen video playback
fullScreenVideo: function() {
var isPaused = this.target.paused && this.target.currentTime > 0;
this.target.pause();
openDialog("chrome://communicator/content/fullscreen-video.xhtml",
"", "chrome,centerscreen,dialog=no", this.target, isPaused);
},
// Change current window to the URL of the background image.
viewBGImage: function(aEvent) {
urlSecurityCheck(this.bgImageURL, this.target.nodePrincipal,
Components.interfaces.nsIScriptSecurityManager.ALLOW_CHROME);
var doc = this.target.ownerDocument;
var where = whereToOpenLink(aEvent);
if (where == "current")
openTopWin(this.bgImageURL, doc.defaultView);
else
openUILinkIn(this.bgImageURL, where, null, null, doc.documentURIObject);
},
setWallpaper: function() {
// Confirm since it's annoying if you hit this accidentally.
var navigatorBundle = document.getElementById("bundle_navigator");
var promptTitle = navigatorBundle.getString("wallpaperConfirmTitle");
var promptMsg = navigatorBundle.getString("wallpaperConfirmMsg");
var promptConfirmButton = navigatorBundle.getString("wallpaperConfirmButton");
if (Services.prompt.confirmEx(window, promptTitle, promptMsg,
(Services.prompt.BUTTON_TITLE_IS_STRING *
Services.prompt.BUTTON_POS_0) +
(Services.prompt.BUTTON_TITLE_CANCEL *
Services.prompt.BUTTON_POS_1),
promptConfirmButton, null, null, null,
{value: false}) != 0)
return;
const nsIShellService = Components.interfaces.nsIShellService;
Components.classes["@mozilla.org/suite/shell-service;1"]
.getService(nsIShellService)
.setDesktopBackground(this.target,
nsIShellService.BACKGROUND_STRETCH);
},
// Save URL of clicked-on frame.
saveFrame: function() {
saveDocument(this.target.ownerDocument, true);
},
// Save URL of clicked-on link.
saveLink: function() {
var doc = this.target.ownerDocument;
urlSecurityCheck(this.linkURL, this.target.nodePrincipal);
this.saveHelper(this.linkURL, this.linkText(), null, true, doc);
},
// Helper function to wait for appropriate MIME-type headers and
// then prompt the user with a file picker
saveHelper: function(linkURL, linkText, dialogTitle, bypassCache, doc) {
// canonical def in nsURILoader.h
const NS_ERROR_SAVE_LINK_AS_TIMEOUT = 0x805d0020;
// an object to proxy the data through to
// nsIExternalHelperAppService.doContent, which will wait for the
// appropriate MIME-type headers and then prompt the user with a
// file picker
function SaveAsListener() {}
SaveAsListener.prototype = {
extListener: null,
onStartRequest: function onStartRequest(aRequest, aContext) {
// If the timer fired, the error status will have been caused by that,
// and we'll be restarting in onStopRequest, so no reason to notify
// the user.
if (aRequest.status == NS_ERROR_SAVE_LINK_AS_TIMEOUT)
return;
clearTimeout(timer);
// some other error occured; notify the user...
if (!Components.isSuccessCode(aRequest.status)) {
try {
const bundle = Services.strings.createBundle(
"chrome://mozapps/locale/downloads/downloads.properties");
const title = bundle.GetStringFromName("downloadErrorAlertTitle");
const msg = bundle.GetStringFromName("downloadErrorGeneric");
Services.prompt.alert(doc.defaultView, title, msg);
} catch (ex) {}
return;
}
var extHelperAppSvc =
Components.classes["@mozilla.org/uriloader/external-helper-app-service;1"]
.getService(Components.interfaces.nsIExternalHelperAppService);
var channel = aRequest.QueryInterface(Components.interfaces.nsIChannel);
this.extListener = extHelperAppSvc.doContent(channel.contentType, aRequest,
doc.defaultView, true);
this.extListener.onStartRequest(aRequest, aContext);
},
onStopRequest: function onStopRequest(aRequest, aContext, aStatusCode) {
if (aStatusCode == NS_ERROR_SAVE_LINK_AS_TIMEOUT) {
// Do it the old fashioned way, which will pick the best filename
// it can without waiting.
saveURL(linkURL, linkText, dialogTitle, bypassCache, true, doc.documentURIObject);
}
if (this.extListener)
this.extListener.onStopRequest(aRequest, aContext, aStatusCode);
},
onDataAvailable: function onDataAvailable(aRequest, aContext, aInputStream,
aOffset, aCount) {
this.extListener.onDataAvailable(aRequest, aContext, aInputStream,
aOffset, aCount);
}
}
function Callbacks() {}
Callbacks.prototype = {
getInterface: function getInterface(aIID) {
if (aIID.equals(Components.interfaces.nsIAuthPrompt) ||
aIID.equals(Components.interfaces.nsIAuthPrompt2)) {
// If the channel demands authentication prompt, we must cancel it
// because the save-as-timer would expire and cancel the channel
// before we get credentials from user. Both authentication dialog
// and save as dialog would appear on the screen as we fall back to
// the old fashioned way after the timeout.
timer.cancel();
channel.cancel(NS_ERROR_SAVE_LINK_AS_TIMEOUT);
}
throw Components.results.NS_ERROR_NO_INTERFACE;
}
}
// If we don't have the headers after a short time the user won't have
// received any feedback from the click. That's bad, so we give up
// waiting for the filename.
function timerCallback() {
channel.cancel(NS_ERROR_SAVE_LINK_AS_TIMEOUT);
}
// set up a channel to do the saving
var channel = Services.io.newChannel(linkURL, null, null);
channel.notificationCallbacks = new Callbacks();
var flags = Components.interfaces.nsIChannel.LOAD_CALL_CONTENT_SNIFFERS;
if (bypassCache)
flags |= Components.interfaces.nsIRequest.LOAD_BYPASS_CACHE;
if (channel instanceof Components.interfaces.nsICachingChannel)
flags |= Components.interfaces.nsICachingChannel.LOAD_BYPASS_LOCAL_CACHE_IF_BUSY;
channel.loadFlags |= flags;
if (channel instanceof Components.interfaces.nsIHttpChannel) {
channel.referrer = doc.documentURIObject;
if (channel instanceof Components.interfaces.nsIHttpChannelInternal)
channel.forceAllowThirdPartyCookie = true;
}
// fallback to the old way if we don't see the headers quickly
var timeToWait = Components.classes["@mozilla.org/preferences-service;1"]
.getService(Components.interfaces.nsIPrefBranch)
.getIntPref("browser.download.saveLinkAsFilenameTimeout");
var timer = setTimeout(timerCallback, timeToWait);
// kick off the channel with our proxy object as the listener
channel.asyncOpen(new SaveAsListener(), null);
},
// Save URL of clicked-on image, video, or audio.
saveMedia: function() {
if (this.onCanvas)
// Bypass cache, since it's a data: URL.
saveImageURL(this.target.toDataURL(), "canvas.png", "SaveImageTitle",
true, true, null);
else if (this.onImage)
saveImageURL(this.mediaURL, null, "SaveImageTitle", false, true,
this.target.ownerDocument.documentURIObject);
else if (this.onVideo || this.onAudio) {
var dialogTitle = this.onVideo ? "SaveVideoTitle" : "SaveAudioTitle";
this.saveHelper(this.mediaURL, null, dialogTitle, false,
this.target.ownerDocument);
}
},
// Backwards-compatability wrapper
saveImage: function() {
if (this.onCanvas || this.onImage)
this.saveMedia();
},
// Generate email address.
getEmail: function() {
// Get the comma-separated list of email addresses only.
// There are other ways of embedding email addresses in a mailto:
// link, but such complex parsing is beyond us.
var addresses;
try {
// Let's try to unescape it using a character set
var characterSet = this.target.ownerDocument.characterSet;
const textToSubURI = Components.classes["@mozilla.org/intl/texttosuburi;1"]
.getService(Components.interfaces.nsITextToSubURI);
addresses = this.linkURL.match(/^mailto:([^?]+)/)[1];
addresses = textToSubURI.unEscapeURIForUI(characterSet, addresses);
}
catch(ex) {
// Do nothing.
}
return addresses;
},
// Copy email to clipboard
copyEmail: function() {
var clipboard = this.getService("@mozilla.org/widget/clipboardhelper;1",
Components.interfaces.nsIClipboardHelper);
clipboard.copyString(this.getEmail());
},
bookmarkThisPage : function() {
window.top.PlacesCommandHook.bookmarkPage(this.browser,
PlacesUtils.bookmarksMenuFolderId,
true);
},
bookmarkLink: function CM_bookmarkLink() {
window.top.PlacesCommandHook.bookmarkLink(PlacesUtils.bookmarksMenuFolderId,
this.linkURL,
this.linkText());
},
addBookmarkForFrame: function() {
var doc = this.target.ownerDocument;
var uri = doc.documentURIObject;
var itemId = PlacesUtils.getMostRecentBookmarkForURI(uri);
if (itemId == -1) {
var title = doc.title;
var description = PlacesUIUtils.getDescriptionFromDocument(doc);
PlacesUIUtils.showMinimalAddBookmarkUI(uri, title, description);
}
else
PlacesUIUtils.showItemProperties(itemId,
PlacesUtils.bookmarks.TYPE_BOOKMARK);
},
// Open Metadata window for node
showMetadata: function() {
window.openDialog("chrome://navigator/content/metadata.xul",
"_blank",
"scrollbars,resizable,chrome,dialog=no",
this.target);
},
///////////////
// Utilities //
///////////////
// Create instance of component given contractId and iid (as string).
createInstance: function(aContractId, aIIDName) {
var iid = Components.interfaces[aIIDName];
return Components.classes[aContractId].createInstance(iid);
},
// Get service given contractId and iid (as string).
getService: function(aContractId, aIIDName) {
var iid = Components.interfaces[aIIDName];
return Components.classes[aContractId].getService(iid);
},
// Show/hide one item (specified via name or the item element itself).
showItem: function(aItemOrId, aShow) {
var item = aItemOrId.constructor == String ? document.getElementById(aItemOrId) : aItemOrId;
if (item)
item.hidden = !aShow;
},
// Set given attribute of specified context-menu item. If the
// value is null, then it removes the attribute (which works
// nicely for the disabled attribute).
setItemAttr: function(aID, aAttr, aVal) {
var elem = document.getElementById(aID);
if (elem) {
if (aVal == null) {
// null indicates attr should be removed.
elem.removeAttribute(aAttr);
}
else {
// Set attr=val.
elem.setAttribute(aAttr, aVal);
}
}
},
// Set context menu attribute according to like attribute of another node
// (such as a broadcaster).
setItemAttrFromNode: function(aItem_id, aAttr, aOther_id) {
var elem = document.getElementById(aOther_id);
if (elem && elem.getAttribute(aAttr) == "true") {
this.setItemAttr(aItem_id, aAttr, "true");
}
else {
this.setItemAttr(aItem_id, aAttr, null);
}
},
// Temporary workaround for DOM api not yet implemented by XUL nodes.
cloneNode: function(aItem) {
// Create another element like the one we're cloning.
var node = document.createElement(aItem.tagName);
// Copy attributes from argument item to the new one.
var attrs = aItem.attributes;
for (var i = 0; i < attrs.length; i++) {
var attr = attrs.item(i);
node.setAttribute(attr.nodeName, attr.nodeValue);
}
// Voila!
return node;
},
// Generate fully qualified URL for clicked-on link.
getLinkURL: function() {
if (this.link.href)
return this.link.href;
var href = this.link.getAttributeNS("http://www.w3.org/1999/xlink", "href");
if (!href || !href.match(/\S/)) {
// Without this we try to save as the current doc,
// for example, HTML case also throws if empty
throw "Empty href";
}
return makeURLAbsolute(this.link.baseURI, href);
},
getLinkURI: function() {
try {
return makeURI(this.linkURL);
}
catch (ex) {
// e.g. empty URL string
}
return null;
},
getLinkProtocol: function() {
if (this.linkURI)
return this.linkURI.scheme; // can be |undefined|
return null;
},
// Get text of link.
linkText: function() {
var text = gatherTextUnder(this.link);
if (!text || !text.match(/\S/)) {
text = this.link.getAttribute("title");
if (!text || !text.match(/\S/)) {
text = this.link.getAttribute("alt");
if (!text || !text.match(/\S/)) {
if (this.link.href) {
text = this.link.href;
}
else {
text = getAttributeNS("http://www.w3.org/1999/xlink", "href");
if (text && text.match(/\S/)) {
text = makeURLAbsolute(this.link.baseURI, text);
}
}
}
}
}
return text;
},
/**
* Determines whether the focused window has selected text, and if so
* formats the first 15 characters for the label of the context-searchselect
* element according to the searchText string.
* @return true if there is selected text, false if not
*/
isTextSelection: function() {
var searchSelectText = this.searchSelected(16);
if (!searchSelectText)
return false;
if (searchSelectText.length > 15)
searchSelectText = searchSelectText.substr(0, 15) + this.ellipsis;
// Use the current engine if it's a browser window and the search bar is
// visible, the default engine otherwise.
var engineName = "";
if (window.BrowserSearch && isElementVisible(BrowserSearch.searchBar))
engineName = Services.search.currentEngine.name;
else
engineName = Services.search.defaultEngine.name;
// format "Search <engine> for <selection>" string to show in menu
const bundle = document.getElementById("contentAreaCommandsBundle");
var menuLabel = bundle.getFormattedString("contextMenuSearchText",
[engineName, searchSelectText]);
this.setItemAttr("context-searchselect", "label", menuLabel);
this.setItemAttr("context-searchselect", "accesskey",
bundle.getString("contextMenuSearchText.accesskey"));
return true;
},
searchSelected: function(aCharlen) {
var focusedWindow = document.commandDispatcher.focusedWindow;
var searchStr = focusedWindow.getSelection();
searchStr = searchStr.toString();
// searching for more than 150 chars makes no sense
if (!aCharlen)
aCharlen = 150;
if (aCharlen < searchStr.length) {
// only use the first charlen important chars. see bug 221361
var pattern = new RegExp("^(?:\\s*.){0," + aCharlen + "}");
pattern.test(searchStr);
searchStr = RegExp.lastMatch;
}
return searchStr.trim().replace(/\s+/g, " ");
},
// Returns true if anything is selected.
isContentSelection: function() {
return !document.commandDispatcher.focusedWindow.getSelection().isCollapsed;
},
// Returns true if the target is editable
isTargetEditable: function() {
if (this.target.ownerDocument.designMode == "on")
return true;
for (var node = this.target; node; node = node.parentNode)
if (node instanceof Components.interfaces.nsIDOMHTMLElement)
return node.isContentEditable;
return false;
},
toString: function() {
return "contextMenu.target = " + this.target + "\n" +
"contextMenu.onImage = " + this.onImage + "\n" +
"contextMenu.onLink = " + this.onLink + "\n" +
"contextMenu.link = " + this.link + "\n" +
"contextMenu.inFrame = " + this.inFrame + "\n" +
"contextMenu.hasBGImage = " + this.hasBGImage + "\n";
},
// Returns true if aNode is a form control (except text boxes and images).
// This is used to disable the context menu for form controls.
isTargetAFormControl: function(aNode) {
if (aNode instanceof HTMLInputElement)
return (!aNode.mozIsTextField(false) && aNode.type != "image");
return (aNode instanceof HTMLButtonElement) ||
(aNode instanceof HTMLSelectElement) ||
(aNode instanceof HTMLOptionElement) ||
(aNode instanceof HTMLOptGroupElement);
},
isTargetATextBox: function(aNode) {
if (aNode instanceof HTMLInputElement)
return aNode.mozIsTextField(false);
return (aNode instanceof HTMLTextAreaElement);
},
isTargetAKeywordField: function(aNode) {
if (!(aNode instanceof HTMLInputElement))
return false;
var form = aNode.form;
if (!form || !aNode.mozIsTextField(true))
return false;
return form.method == "get" || (form.method == "post" &&
form.enctype == "application/x-www-form-urlencoded");
},
// Determines whether or not the separator with the specified ID should be
// shown or not by determining if there are any non-hidden items between it
// and the previous separator.
shouldShowSeparator: function(aSeparatorID) {
var separator = document.getElementById(aSeparatorID);
if (separator) {
var sibling = separator.previousSibling;
while (sibling && sibling.localName != "menuseparator") {
if (sibling.getAttribute("hidden") != "true")
return true;
sibling = sibling.previousSibling;
}
}
return false;
},
mediaCommand: function(aCommand) {
var media = this.target;
switch (aCommand) {
case "play":
media.play();
break;
case "pause":
media.pause();
break;
case "mute":
media.muted = true;
break;
case "unmute":
media.muted = false;
break;
case "hidecontrols":
media.removeAttribute("controls");
break;
case "showcontrols":
media.setAttribute("controls", "true");
break;
case "showstats":
var event = document.createEvent("CustomEvent");
event.initCustomEvent("media-showStatistics", false, true, true);
media.dispatchEvent(event);
break;
case "hidestats":
var event = document.createEvent("CustomEvent");
event.initCustomEvent("media-showStatistics", false, true, false);
media.dispatchEvent(event);
break;
}
},
copyMediaLocation: function() {
var clipboard = Components.classes["@mozilla.org/widget/clipboardhelper;1"]
.getService(Components.interfaces.nsIClipboardHelper);
clipboard.copyString(this.mediaURL);
},
get imageURL() {
if (this.onImage)
return this.mediaURL;
return "";
}
};
XPCOMUtils.defineLazyGetter(nsContextMenu.prototype, "ellipsis", function() {
return Services.prefs.getComplexValue("intl.ellipsis",
Components.interfaces.nsIPrefLocalizedString).data;
});