2012-08-04 01:22:55 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-08-08 17:31:32 +00:00
|
|
|
|
2012-10-31 16:13:28 +00:00
|
|
|
this.EXPORTED_SYMBOLS = ["PageMenu"];
|
2011-08-08 17:31:32 +00:00
|
|
|
|
2012-10-31 16:13:28 +00:00
|
|
|
this.PageMenu = function PageMenu() {
|
2011-08-08 17:31:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
PageMenu.prototype = {
|
|
|
|
PAGEMENU_ATTR: "pagemenu",
|
2011-08-18 16:37:26 +00:00
|
|
|
GENERATEDITEMID_ATTR: "generateditemid",
|
2011-08-08 17:31:32 +00:00
|
|
|
|
|
|
|
popup: null,
|
|
|
|
builder: null,
|
|
|
|
|
2011-08-18 16:37:26 +00:00
|
|
|
maybeBuildAndAttachMenu: function(aTarget, aPopup) {
|
2011-08-08 17:31:32 +00:00
|
|
|
var pageMenu = null;
|
|
|
|
var target = aTarget;
|
|
|
|
while (target) {
|
|
|
|
var contextMenu = target.contextMenu;
|
|
|
|
if (contextMenu) {
|
|
|
|
pageMenu = contextMenu;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
target = target.parentNode;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!pageMenu) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
var insertionPoint = this.getInsertionPoint(aPopup);
|
|
|
|
if (!insertionPoint) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
pageMenu.QueryInterface(Components.interfaces.nsIHTMLMenu);
|
|
|
|
pageMenu.sendShowEvent();
|
|
|
|
// the show event is not cancelable, so no need to check a result here
|
|
|
|
|
|
|
|
var fragment = aPopup.ownerDocument.createDocumentFragment();
|
|
|
|
|
|
|
|
var builder = pageMenu.createBuilder();
|
|
|
|
if (!builder) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
builder.QueryInterface(Components.interfaces.nsIXULContextMenuBuilder);
|
2011-08-18 16:37:26 +00:00
|
|
|
builder.init(fragment, this.GENERATEDITEMID_ATTR);
|
2011-08-08 17:31:32 +00:00
|
|
|
|
|
|
|
pageMenu.build(builder);
|
|
|
|
|
|
|
|
var pos = insertionPoint.getAttribute(this.PAGEMENU_ATTR);
|
2011-08-18 16:37:26 +00:00
|
|
|
if (pos == "start") {
|
2011-08-08 17:31:32 +00:00
|
|
|
insertionPoint.insertBefore(fragment,
|
|
|
|
insertionPoint.firstChild);
|
2011-08-18 16:37:26 +00:00
|
|
|
} else {
|
|
|
|
insertionPoint.appendChild(fragment);
|
2011-08-08 17:31:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
this.builder = builder;
|
|
|
|
this.popup = aPopup;
|
|
|
|
|
|
|
|
this.popup.addEventListener("command", this);
|
|
|
|
this.popup.addEventListener("popuphidden", this);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
|
|
|
handleEvent: function(event) {
|
|
|
|
var type = event.type;
|
|
|
|
var target = event.target;
|
2011-08-18 16:37:26 +00:00
|
|
|
if (type == "command" && target.hasAttribute(this.GENERATEDITEMID_ATTR)) {
|
|
|
|
this.builder.click(target.getAttribute(this.GENERATEDITEMID_ATTR));
|
2011-08-08 17:31:32 +00:00
|
|
|
} else if (type == "popuphidden" && this.popup == target) {
|
|
|
|
this.removeGeneratedContent(this.popup);
|
|
|
|
|
|
|
|
this.popup.removeEventListener("popuphidden", this);
|
|
|
|
this.popup.removeEventListener("command", this);
|
|
|
|
|
|
|
|
this.popup = null;
|
|
|
|
this.builder = null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
getImmediateChild: function(element, tag) {
|
|
|
|
var child = element.firstChild;
|
|
|
|
while (child) {
|
|
|
|
if (child.localName == tag) {
|
|
|
|
return child;
|
|
|
|
}
|
|
|
|
child = child.nextSibling;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
|
|
|
|
getInsertionPoint: function(aPopup) {
|
|
|
|
if (aPopup.hasAttribute(this.PAGEMENU_ATTR))
|
|
|
|
return aPopup;
|
|
|
|
|
|
|
|
var element = aPopup.firstChild;
|
|
|
|
while (element) {
|
|
|
|
if (element.localName == "menu") {
|
|
|
|
var popup = this.getImmediateChild(element, "menupopup");
|
|
|
|
if (popup) {
|
|
|
|
var result = this.getInsertionPoint(popup);
|
|
|
|
if (result) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
element = element.nextSibling;
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
|
|
|
|
removeGeneratedContent: function(aPopup) {
|
|
|
|
var ungenerated = [];
|
|
|
|
ungenerated.push(aPopup);
|
|
|
|
|
|
|
|
var count;
|
|
|
|
while (0 != (count = ungenerated.length)) {
|
|
|
|
var last = count - 1;
|
|
|
|
var element = ungenerated[last];
|
|
|
|
ungenerated.splice(last, 1);
|
|
|
|
|
|
|
|
var i = element.childNodes.length;
|
|
|
|
while (i-- > 0) {
|
|
|
|
var child = element.childNodes[i];
|
2011-08-18 16:37:26 +00:00
|
|
|
if (!child.hasAttribute(this.GENERATEDITEMID_ATTR)) {
|
2011-08-08 17:31:32 +00:00
|
|
|
ungenerated.push(child);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
element.removeChild(child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|