2007-03-25 05:28:29 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** 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 History System
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Google Inc.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2005
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
2010-02-25 10:30:09 -08:00
|
|
|
* Brett Wilson <brettw@gmail.com> (Original author)
|
|
|
|
* Asaf Romano <mano@mozilla.com> (JavaScript version)
|
2007-03-25 05:28:29 -07:00
|
|
|
*
|
|
|
|
* 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 ***** */
|
|
|
|
|
|
|
|
PlacesTreeView.prototype = {
|
|
|
|
_makeAtom: function PTV__makeAtom(aString) {
|
|
|
|
return Cc["@mozilla.org/atom-service;1"].
|
|
|
|
getService(Ci.nsIAtomService).
|
|
|
|
getAtom(aString);
|
|
|
|
},
|
|
|
|
|
2007-11-19 18:01:53 -08:00
|
|
|
_atoms: [],
|
|
|
|
_getAtomFor: function PTV__getAtomFor(aName) {
|
|
|
|
if (!this._atoms[aName])
|
|
|
|
this._atoms[aName] = this._makeAtom(aName);
|
2007-03-25 05:28:29 -07:00
|
|
|
|
2007-11-19 18:01:53 -08:00
|
|
|
return this._atoms[aName];
|
2007-03-25 05:28:29 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
__dateService: null,
|
|
|
|
get _dateService() {
|
|
|
|
if (!this.__dateService) {
|
|
|
|
this.__dateService = Cc["@mozilla.org/intl/scriptabledateformat;1"].
|
|
|
|
getService(Ci.nsIScriptableDateFormat);
|
|
|
|
}
|
|
|
|
return this.__dateService;
|
|
|
|
},
|
|
|
|
|
|
|
|
QueryInterface: function PTV_QueryInterface(aIID) {
|
|
|
|
if (aIID.equals(Ci.nsITreeView) ||
|
2010-03-12 03:14:47 -08:00
|
|
|
aIID.equals(Ci.nsINavHistoryResultObserver) ||
|
2007-03-25 05:28:29 -07:00
|
|
|
aIID.equals(Ci.nsINavHistoryResultTreeViewer) ||
|
2010-03-12 03:14:47 -08:00
|
|
|
aIID.equals(Ci.nsISupportsWeakReference) ||
|
2007-03-25 05:28:29 -07:00
|
|
|
aIID.equals(Ci.nsISupports))
|
|
|
|
return this;
|
|
|
|
throw Cr.NS_ERROR_NO_INTERFACE;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2009-10-01 09:53:26 -07:00
|
|
|
* This is called once both the result and the tree are set.
|
2007-03-25 05:28:29 -07:00
|
|
|
*/
|
|
|
|
_finishInit: function PTV__finishInit() {
|
2010-02-25 10:30:09 -08:00
|
|
|
let selection = this.selection;
|
2008-04-21 15:07:05 -07:00
|
|
|
if (selection)
|
|
|
|
selection.selectEventsSuppressed = true;
|
|
|
|
|
2009-10-01 09:53:26 -07:00
|
|
|
if (!this._rootNode.containerOpen) {
|
|
|
|
// This triggers containerOpened which then builds the visible section.
|
|
|
|
this._rootNode.containerOpen = true;
|
2007-03-25 05:28:29 -07:00
|
|
|
}
|
2009-10-01 09:53:26 -07:00
|
|
|
else
|
|
|
|
this.invalidateContainer(this._rootNode);
|
|
|
|
|
|
|
|
// "Activate" the sorting column and update commands.
|
|
|
|
this.sortingChanged(this._result.sortingMode);
|
2007-04-03 18:08:43 -07:00
|
|
|
|
2008-04-21 15:07:05 -07:00
|
|
|
if (selection)
|
|
|
|
selection.selectEventsSuppressed = false;
|
2007-03-25 05:28:29 -07:00
|
|
|
},
|
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
/**
|
|
|
|
* Plain Container: container result nodes which may never include sub
|
|
|
|
* hierarchies.
|
|
|
|
*
|
|
|
|
* When the rows array is constructed, we don't set the children of plain
|
|
|
|
* containers. Instead, we keep placeholders for these children. We then
|
|
|
|
* build these children lazily as the tree asks us for information about each
|
|
|
|
* row. Luckily, the tree doesn't ask about rows outside the visible area.
|
|
|
|
*
|
|
|
|
* @see _getNodeForRow and _getRowForNode for the actual magic.
|
|
|
|
*
|
|
|
|
* @note It's guaranteed that all containers are listed in the rows
|
|
|
|
* elements array. It's also guaranteed that separators (if they're not
|
|
|
|
* filtered, see below) are listed in the visible elements array, because
|
|
|
|
* bookmark folders are never built lazily, as described above.
|
|
|
|
*
|
|
|
|
* @param aContainer
|
|
|
|
* A container result node.
|
|
|
|
*
|
|
|
|
* @return true if aContainer is a plain container, false otherwise.
|
|
|
|
*/
|
|
|
|
_isPlainContainer: function PTV__isPlainContainer(aContainer) {
|
|
|
|
if (aContainer._plainContainer !== undefined)
|
|
|
|
return aContainer._plainContainer;
|
|
|
|
|
|
|
|
// We don't know enough about non-query containers.
|
|
|
|
if (!(aContainer instanceof Ci.nsINavHistoryQueryResultNode))
|
|
|
|
return aContainer._plainContainer = false;
|
|
|
|
|
|
|
|
let resultType = aContainer.queryOptions.resultType;
|
|
|
|
switch (resultType) {
|
|
|
|
case Ci.nsINavHistoryQueryOptions.RESULTS_AS_DATE_QUERY:
|
|
|
|
case Ci.nsINavHistoryQueryOptions.RESULTS_AS_SITE_QUERY:
|
|
|
|
case Ci.nsINavHistoryQueryOptions.RESULTS_AS_DATE_SITE_QUERY:
|
|
|
|
case Ci.nsINavHistoryQueryOptions.RESULTS_AS_TAG_QUERY:
|
|
|
|
return aContainer._plainContainer = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If it's a folder, it's not a plain container.
|
|
|
|
let nodeType = aContainer.type;
|
|
|
|
return aContainer._plainContainer =
|
|
|
|
(nodeType != Ci.nsINavHistoryResultNode.RESULT_TYPE_FOLDER &&
|
|
|
|
nodeType != Ci.nsINavHistoryResultNode.RESULT_TYPE_FOLDER_SHORTCUT);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the row number for a given node. Assumes that the given node is
|
|
|
|
* visible (i.e. it's not an obsolete node).
|
|
|
|
*
|
|
|
|
* @param aNode
|
|
|
|
* A result node. Do not pass an obsolete node, or any
|
|
|
|
* node which isn't supposed to be in the tree (e.g. separators in
|
|
|
|
* sorted trees).
|
|
|
|
* @param [optional] aForceBuild
|
|
|
|
* @see isPlainContainer.
|
|
|
|
* If true, the row will be computed even if the node still isn't set
|
|
|
|
* in our rows array.
|
|
|
|
* @param [optional] aParentRow
|
|
|
|
* The row of aNode's parent.
|
|
|
|
* DO NOT compute this yourself for the purpose of calling this
|
|
|
|
* function. However, do pass it if you have it handy.
|
|
|
|
* Ignored for the root node.
|
|
|
|
* @param [optional] aNodeIndex
|
|
|
|
* The index of aNode in its parent. Only used if aParentRow is
|
|
|
|
* set too.
|
|
|
|
*
|
|
|
|
* @throws if aNode is invisible.
|
|
|
|
* @return aNode's row if it's in the rows list or if aForceBuild is set, -1
|
|
|
|
* otherwise.
|
|
|
|
*/
|
|
|
|
_getRowForNode:
|
|
|
|
function PTV__getRowForNode(aNode, aForceBuild, aParentRow, aNodeIndex) {
|
|
|
|
if (aNode == this._rootNode)
|
|
|
|
throw "The root node is never visible";
|
|
|
|
|
|
|
|
let parent = aNode.parent;
|
|
|
|
if (!parent || !parent.containerOpen)
|
|
|
|
throw "Invisible node passed to _getRowForNode";
|
|
|
|
|
|
|
|
// Non-plain containers are initially built with their contents.
|
|
|
|
let parentIsPlain = this._isPlainContainer(parent);
|
|
|
|
if (!parentIsPlain) {
|
|
|
|
if (parent == this._rootNode)
|
|
|
|
return this._rows.indexOf(aNode);
|
|
|
|
|
|
|
|
return this._rows.indexOf(aNode, aParentRow);
|
|
|
|
}
|
|
|
|
|
|
|
|
let row = -1;
|
|
|
|
let useNodeIndex = typeof(aNodeIndex) == "number";
|
|
|
|
if (parent == this._rootNode)
|
|
|
|
row = useNodeIndex ? aNodeIndex : this._rootNode.getChildIndex(aNode);
|
|
|
|
else if (useNodeIndex && typeof(aParentRow) == "number") {
|
|
|
|
// If we have both the row of the parent node, and the node's index, we
|
|
|
|
// can avoid searching the rows array if the parent is a plain container.
|
|
|
|
row = aParentRow + aNodeIndex + 1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Look for the node in the nodes array. Start the search at the parent
|
|
|
|
// row. If the parent row isn't passed, we'll pass undefined to indexOf,
|
|
|
|
// which is fine.
|
|
|
|
row = this._rows.indexOf(aNode, aParentRow);
|
|
|
|
if (row == -1 && aForceBuild) {
|
|
|
|
let parentRow = typeof(aParentRow) == "number" ? aParentRow
|
|
|
|
: this._getRowForNode(parent);
|
|
|
|
row = parentRow + parent.getChildIndex(aNode) + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (row != -1)
|
|
|
|
this._rows[row] = aNode;
|
|
|
|
|
|
|
|
return row;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Given a row, finds and returns the parent details of the associated node.
|
|
|
|
*
|
|
|
|
* @param aChildRow
|
|
|
|
* Row number.
|
|
|
|
* @return [parentNode, parentRow]
|
|
|
|
*/
|
|
|
|
_getParentByChildRow: function PTV__getParentByChildRow(aChildRow) {
|
|
|
|
let parent = this._getNodeForRow(aChildRow).parent;
|
|
|
|
|
|
|
|
// The root node is never visible
|
|
|
|
if (parent == this._rootNode)
|
|
|
|
return [this._rootNode, -1];
|
|
|
|
|
|
|
|
let parentRow = this._rows.lastIndexOf(parent, aChildRow - 1);
|
|
|
|
return [parent, parentRow];
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the node at a given row.
|
|
|
|
*/
|
|
|
|
_getNodeForRow: function PTV__getNodeForRow(aRow) {
|
|
|
|
let node = this._rows[aRow];
|
|
|
|
if (node !== undefined)
|
|
|
|
return node;
|
|
|
|
|
|
|
|
// Find the nearest node.
|
|
|
|
let rowNode, row;
|
|
|
|
for (let i = aRow - 1; i >= 0 && rowNode === undefined; i--) {
|
|
|
|
rowNode = this._rows[i];
|
|
|
|
row = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there's no container prior to the given row, it's a child of
|
|
|
|
// the root node (remember: all containers are listed in the rows array).
|
|
|
|
if (!rowNode)
|
|
|
|
return this._rows[aRow] = this._rootNode.getChild(aRow);
|
|
|
|
|
|
|
|
// Unset elements may exist only in plain containers. Thus, if the nearest
|
|
|
|
// node is a container, it's the row's parent, otherwise, it's a sibling.
|
|
|
|
if (rowNode instanceof Ci.nsINavHistoryContainerResultNode)
|
|
|
|
return this._rows[aRow] = rowNode.getChild(aRow - row - 1);
|
|
|
|
|
|
|
|
let [parent, parentRow] = this._getParentByChildRow(row);
|
|
|
|
return this._rows[aRow] = parent.getChild(aRow - parentRow - 1);
|
|
|
|
},
|
|
|
|
|
2009-10-01 09:53:26 -07:00
|
|
|
_rootNode: null,
|
|
|
|
|
2007-03-25 05:28:29 -07:00
|
|
|
/**
|
2010-02-25 10:30:09 -08:00
|
|
|
* This takes a container and recursively appends our rows array per its
|
|
|
|
* contents. Assumes that the rows arrays has no rows for the given
|
|
|
|
* container.
|
|
|
|
*
|
|
|
|
* @param [in] aContainer
|
|
|
|
* A container result node.
|
|
|
|
* @param [in] aFirstChildRow
|
|
|
|
* The first row at which nodes may be inserted to the row array.
|
|
|
|
* In other words, that's aContainer's row + 1.
|
|
|
|
* @param [out] aToOpen
|
|
|
|
* An array of containers to open once the build is done.
|
2007-03-25 05:28:29 -07:00
|
|
|
*
|
2010-02-25 10:30:09 -08:00
|
|
|
* @return the number of rows which were inserted.
|
2007-03-25 05:28:29 -07:00
|
|
|
*/
|
|
|
|
_buildVisibleSection:
|
2010-02-25 10:30:09 -08:00
|
|
|
function PTV__buildVisibleSection(aContainer, aFirstChildRow, aToOpen)
|
2007-03-25 05:28:29 -07:00
|
|
|
{
|
2010-02-25 10:30:09 -08:00
|
|
|
// There's nothing to do if the container is closed.
|
2007-03-25 05:28:29 -07:00
|
|
|
if (!aContainer.containerOpen)
|
2010-02-25 10:30:09 -08:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Inserting the new elements into the rows array in one shot (by
|
|
|
|
// Array.concat) is faster than resizing the array (by splice) on each loop
|
|
|
|
// iteration.
|
|
|
|
let cc = aContainer.childCount;
|
|
|
|
let newElements = new Array(cc);
|
|
|
|
this._rows =
|
|
|
|
this._rows.slice(0, aFirstChildRow).concat(newElements)
|
|
|
|
.concat(this._rows.slice(aFirstChildRow, this._rows.length));
|
|
|
|
|
|
|
|
if (this._isPlainContainer(aContainer))
|
|
|
|
return cc;
|
2007-03-25 05:28:29 -07:00
|
|
|
|
2008-03-13 12:25:49 -07:00
|
|
|
const openLiteral = PlacesUIUtils.RDF.GetResource("http://home.netscape.com/NC-rdf#open");
|
|
|
|
const trueLiteral = PlacesUIUtils.RDF.GetLiteral("true");
|
2010-02-25 10:30:09 -08:00
|
|
|
let sortingMode = this._result.sortingMode;
|
|
|
|
|
|
|
|
let rowsInsertedCounter = 0;
|
|
|
|
for (let i = 0; i < cc; i++) {
|
|
|
|
let curChild = aContainer.getChild(i);
|
|
|
|
let curChildType = curChild.type;
|
2007-05-16 18:14:27 -07:00
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
let row = aFirstChildRow + rowsInsertedCounter;
|
2007-03-25 05:28:29 -07:00
|
|
|
|
2009-10-01 09:53:26 -07:00
|
|
|
// Don't display separators when sorted.
|
2007-10-24 19:02:28 -07:00
|
|
|
if (curChildType == Ci.nsINavHistoryResultNode.RESULT_TYPE_SEPARATOR) {
|
2009-10-01 09:53:26 -07:00
|
|
|
if (sortingMode != Ci.nsINavHistoryQueryOptions.SORT_BY_NONE) {
|
2010-02-25 10:30:09 -08:00
|
|
|
// Remove the element for the filtered separator.
|
|
|
|
// Notice that the rows array was initially resized to include all
|
|
|
|
// children.
|
|
|
|
this._rows.splice(row, 1);
|
2007-03-25 05:28:29 -07:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
this._rows[row] = curChild;
|
|
|
|
rowsInsertedCounter++;
|
2007-10-24 19:02:28 -07:00
|
|
|
|
2009-10-01 09:53:26 -07:00
|
|
|
// Recursively do containers.
|
|
|
|
if (!this._flatList &&
|
|
|
|
curChild instanceof Ci.nsINavHistoryContainerResultNode) {
|
2010-02-25 10:30:09 -08:00
|
|
|
let resource = this._getResourceForNode(curChild);
|
|
|
|
let isopen = resource != null &&
|
|
|
|
PlacesUIUtils.localStore.HasAssertion(resource,
|
|
|
|
openLiteral,
|
2008-03-13 12:25:49 -07:00
|
|
|
trueLiteral, true);
|
2007-05-16 18:14:27 -07:00
|
|
|
if (isopen != curChild.containerOpen)
|
|
|
|
aToOpen.push(curChild);
|
|
|
|
else if (curChild.containerOpen && curChild.childCount > 0)
|
2010-02-25 10:30:09 -08:00
|
|
|
rowsAddedCounter += this._buildVisibleSection(curChild, aToOpen,
|
|
|
|
row + 1);
|
2007-03-25 05:28:29 -07:00
|
|
|
}
|
|
|
|
}
|
2010-02-25 10:30:09 -08:00
|
|
|
|
|
|
|
return rowsInsertedCounter;
|
2007-03-25 05:28:29 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2009-10-01 09:53:26 -07:00
|
|
|
* This counts how many rows a node takes in the tree. For containers it
|
|
|
|
* will count the node itself plus any child node following it.
|
2007-03-25 05:28:29 -07:00
|
|
|
*/
|
2010-02-25 10:30:09 -08:00
|
|
|
_countVisibleRowsForNodeAtRow:
|
|
|
|
function PTV__countVisibleRowsForNodeAtRow(aNodeRow) {
|
|
|
|
let node = this._rows[aNodeRow];
|
|
|
|
|
|
|
|
// If it's not listed yet, we know that it's a leaf node.
|
|
|
|
if (node === undefined ||
|
|
|
|
!(node instanceof Ci.nsINavHistoryContainerResultNode))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
let outerLevel = node.indentLevel;
|
|
|
|
for (let i = aNodeRow + 1; i < this._rows.length; i++) {
|
|
|
|
let rowNode = this._rows[i];
|
|
|
|
if (rowNode && rowNode.indentLevel <= outerLevel)
|
|
|
|
return i - aNodeRow;
|
2007-03-27 17:28:34 -07:00
|
|
|
}
|
2007-12-28 18:59:22 -08:00
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
// This node plus its children take up the bottom of the list.
|
|
|
|
return this._rows.length - aNodeRow;
|
|
|
|
},
|
2010-02-22 14:58:09 -08:00
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
_getSelectedNodesInRange:
|
|
|
|
function PTV__getSelectedNodesInRange(aFirstRow, aLastRow) {
|
|
|
|
let selection = this.selection;
|
|
|
|
let rc = selection.getRangeCount();
|
|
|
|
if (rc == 0)
|
|
|
|
return [];
|
|
|
|
|
|
|
|
// The visible-area borders are needed for checking whether a
|
|
|
|
// selected row is also visible.
|
|
|
|
let firstVisibleRow = this._tree.getFirstVisibleRow();
|
|
|
|
let lastVisibleRow = this._tree.getLastVisibleRow();
|
|
|
|
|
|
|
|
let nodesInfo = [];
|
|
|
|
for (let rangeIndex = 0; rangeIndex < rc; rangeIndex++) {
|
|
|
|
let min = { }, max = { };
|
2010-02-22 14:58:09 -08:00
|
|
|
selection.getRangeAt(rangeIndex, min, max);
|
2010-02-25 10:30:09 -08:00
|
|
|
|
2009-10-01 09:53:26 -07:00
|
|
|
// If this range does not overlap the replaced chunk, we don't need to
|
2008-12-16 02:04:08 -08:00
|
|
|
// persist the selection.
|
2010-02-25 10:30:09 -08:00
|
|
|
if (max.value < aFirstRow || min.value > aLastRow)
|
2007-12-17 14:05:43 -08:00
|
|
|
continue;
|
2009-10-01 09:53:26 -07:00
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
let firstRow = Math.max(min.value, aFirstRow);
|
|
|
|
let lastRow = Math.min(max.value, aLastRow);
|
|
|
|
for (let i = firstRow; i <= lastRow; i++) {
|
|
|
|
nodesInfo.push({
|
|
|
|
node: this._rows[i],
|
|
|
|
oldRow: i,
|
|
|
|
wasVisbile: i >= firstVisibleRow && i <= lastVisibleRow
|
|
|
|
});
|
2009-10-01 09:53:26 -07:00
|
|
|
}
|
2007-12-17 14:05:43 -08:00
|
|
|
}
|
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
return nodesInfo;
|
|
|
|
},
|
2007-05-16 18:14:27 -07:00
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
/**
|
|
|
|
* Tries to find an equivalent node for a node which was removed. We first
|
|
|
|
* look for the original node, in case it was just relocated. Then, if we
|
|
|
|
* that node was not found, we look for a node that has the same itemId, uri
|
|
|
|
* and time values.
|
|
|
|
*
|
|
|
|
* @param aUpdatedContainer
|
|
|
|
* An ancestor of the node which was removed. It does not have to be
|
|
|
|
* its direct parent.
|
|
|
|
* @param aOldNode
|
|
|
|
* The node which was removed.
|
|
|
|
*
|
|
|
|
* @return the row number of an equivalent node for aOldOne, if one was
|
|
|
|
* found, -1 otherwise.
|
|
|
|
*/
|
|
|
|
_getNewRowForRemovedNode:
|
|
|
|
function PTV__getNewRowForRemovedNode(aUpdatedContainer, aOldNode) {
|
|
|
|
let parent = aOldNode.parent;
|
|
|
|
if (parent) {
|
|
|
|
// If the node's parent is still set, the node is not obsolete
|
|
|
|
// and we should just find out its new position. However, if the node's
|
|
|
|
// parent is closed, the node is invisible.
|
|
|
|
if (parent.containerOpen)
|
|
|
|
return this._getRowForNode(aOldNode, true);
|
2007-09-28 13:52:26 -07:00
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
return -1;
|
2010-02-22 14:58:09 -08:00
|
|
|
}
|
2007-11-19 18:01:53 -08:00
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
// There's a broken edge case here.
|
|
|
|
// If a visit appears in two queries, and the second one was
|
|
|
|
// the old node, we'll select the first one after refresh. There's
|
|
|
|
// nothing we could do about that, because aOldNode.parent is
|
|
|
|
// gone by the time invalidateContainer is called.
|
|
|
|
let newNode = aUpdatedContainer.findNodeByDetails(aOldNode.uri,
|
|
|
|
aOldNode.time,
|
|
|
|
aOldNode.itemId,
|
|
|
|
true);
|
|
|
|
if (!newNode)
|
|
|
|
return -1;
|
2009-10-01 09:53:26 -07:00
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
return this._getRowForNode(newNode, true);
|
|
|
|
},
|
2008-01-11 14:04:01 -08:00
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
/**
|
|
|
|
* Restores a given selection state as near as possible to the original
|
|
|
|
* selection state.
|
|
|
|
*
|
|
|
|
* @param aNodesInfo
|
|
|
|
* The persisted selection state as returned by
|
|
|
|
* _getSelectedNodesInRange.
|
|
|
|
* @param aUpdatedContainer
|
|
|
|
* The container which was updated.
|
|
|
|
*/
|
|
|
|
_restoreSelection:
|
|
|
|
function PTV__restoreSelection(aNodesInfo, aUpdatedContainer) {
|
|
|
|
if (aNodesInfo.length == 0)
|
|
|
|
return;
|
2010-02-22 13:37:52 -08:00
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
let selection = this.selection;
|
|
|
|
|
|
|
|
// Attempt to ensure that previously-visible selection will be visible
|
|
|
|
// if it's re-selected. However, we can only ensure that for one row.
|
|
|
|
let scrollToRow = -1;
|
|
|
|
for (let i = 0; i < aNodesInfo.length; i++) {
|
|
|
|
let nodeInfo = aNodesInfo[i];
|
|
|
|
let row = this._getNewRowForRemovedNode(aUpdatedContainer,
|
|
|
|
aNodesInfo[i].node);
|
|
|
|
// Select the found node, if any.
|
|
|
|
if (row != -1) {
|
|
|
|
selection.rangedSelect(row, row, true);
|
|
|
|
if (nodeInfo.wasVisible && scrollToRow == -1)
|
|
|
|
scrollToRow = row;
|
2010-02-22 14:58:09 -08:00
|
|
|
}
|
2010-02-22 13:37:52 -08:00
|
|
|
}
|
2010-02-25 10:30:09 -08:00
|
|
|
|
|
|
|
// If only one node was previously selected and there's no selection now,
|
|
|
|
// select the node at its old row, if any.
|
|
|
|
if (aNodesInfo.length == 1 && selection.getRangeCount() == 0) {
|
|
|
|
let row = Math.min(aNodesInfo[0].oldRow, this._rows.length - 1);
|
|
|
|
selection.rangedSelect(row, row, true);
|
|
|
|
if (aNodesInfo[0].wasVisible && scrollToRow == -1)
|
|
|
|
scrollToRow = aNodesInfo[0].oldRow;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (scrollToRow != -1)
|
|
|
|
this._tree.ensureRowIsVisible(scrollToRow);
|
2007-03-25 05:28:29 -07:00
|
|
|
},
|
|
|
|
|
2007-05-18 17:40:55 -07:00
|
|
|
_convertPRTimeToString: function PTV__convertPRTimeToString(aTime) {
|
2009-11-06 07:24:56 -08:00
|
|
|
const MS_PER_MINUTE = 60000;
|
|
|
|
const MS_PER_DAY = 86400000;
|
|
|
|
let timeMs = aTime / 1000; // PRTime is in microseconds
|
2007-05-18 17:40:55 -07:00
|
|
|
|
2009-01-13 02:48:26 -08:00
|
|
|
// Date is calculated starting from midnight, so the modulo with a day are
|
|
|
|
// milliseconds from today's midnight.
|
2009-11-06 07:24:56 -08:00
|
|
|
// getTimezoneOffset corrects that based on local time, notice midnight
|
|
|
|
// can have a different offset during DST-change days.
|
|
|
|
let dateObj = new Date();
|
|
|
|
let now = dateObj.getTime() - dateObj.getTimezoneOffset() * MS_PER_MINUTE;
|
|
|
|
let midnight = now - (now % MS_PER_DAY);
|
|
|
|
midnight += new Date(midnight).getTimezoneOffset() * MS_PER_MINUTE;
|
|
|
|
|
|
|
|
let dateFormat = timeMs >= midnight ?
|
2009-01-13 02:48:26 -08:00
|
|
|
Ci.nsIScriptableDateFormat.dateFormatNone :
|
|
|
|
Ci.nsIScriptableDateFormat.dateFormatShort;
|
|
|
|
|
2009-11-06 07:24:56 -08:00
|
|
|
let timeObj = new Date(timeMs);
|
2007-05-18 17:40:55 -07:00
|
|
|
return (this._dateService.FormatDateTime("", dateFormat,
|
|
|
|
Ci.nsIScriptableDateFormat.timeFormatNoSeconds,
|
|
|
|
timeObj.getFullYear(), timeObj.getMonth() + 1,
|
|
|
|
timeObj.getDate(), timeObj.getHours(),
|
|
|
|
timeObj.getMinutes(), timeObj.getSeconds()));
|
|
|
|
},
|
2007-09-28 13:52:26 -07:00
|
|
|
|
2007-03-25 05:28:29 -07:00
|
|
|
COLUMN_TYPE_UNKNOWN: 0,
|
|
|
|
COLUMN_TYPE_TITLE: 1,
|
|
|
|
COLUMN_TYPE_URI: 2,
|
|
|
|
COLUMN_TYPE_DATE: 3,
|
|
|
|
COLUMN_TYPE_VISITCOUNT: 4,
|
2007-05-14 14:53:33 -07:00
|
|
|
COLUMN_TYPE_KEYWORD: 5,
|
|
|
|
COLUMN_TYPE_DESCRIPTION: 6,
|
2007-05-18 17:40:55 -07:00
|
|
|
COLUMN_TYPE_DATEADDED: 7,
|
|
|
|
COLUMN_TYPE_LASTMODIFIED: 8,
|
2007-08-21 15:31:44 -07:00
|
|
|
COLUMN_TYPE_TAGS: 9,
|
2007-05-14 14:53:33 -07:00
|
|
|
|
2007-03-25 05:28:29 -07:00
|
|
|
_getColumnType: function PTV__getColumnType(aColumn) {
|
2010-02-25 10:30:09 -08:00
|
|
|
let columnType = aColumn.element.getAttribute("anonid") || aColumn.id;
|
2008-03-08 03:42:58 -08:00
|
|
|
|
2007-08-15 18:15:50 -07:00
|
|
|
switch (columnType) {
|
2007-03-25 05:28:29 -07:00
|
|
|
case "title":
|
|
|
|
return this.COLUMN_TYPE_TITLE;
|
|
|
|
case "url":
|
|
|
|
return this.COLUMN_TYPE_URI;
|
|
|
|
case "date":
|
|
|
|
return this.COLUMN_TYPE_DATE;
|
|
|
|
case "visitCount":
|
|
|
|
return this.COLUMN_TYPE_VISITCOUNT;
|
2007-05-14 14:53:33 -07:00
|
|
|
case "keyword":
|
|
|
|
return this.COLUMN_TYPE_KEYWORD;
|
|
|
|
case "description":
|
|
|
|
return this.COLUMN_TYPE_DESCRIPTION;
|
2007-05-18 17:40:55 -07:00
|
|
|
case "dateAdded":
|
|
|
|
return this.COLUMN_TYPE_DATEADDED;
|
|
|
|
case "lastModified":
|
|
|
|
return this.COLUMN_TYPE_LASTMODIFIED;
|
2007-08-21 15:31:44 -07:00
|
|
|
case "tags":
|
|
|
|
return this.COLUMN_TYPE_TAGS;
|
2007-03-25 05:28:29 -07:00
|
|
|
}
|
|
|
|
return this.COLUMN_TYPE_UNKNOWN;
|
|
|
|
},
|
|
|
|
|
|
|
|
_sortTypeToColumnType: function PTV__sortTypeToColumnType(aSortType) {
|
2007-12-20 11:07:58 -08:00
|
|
|
switch (aSortType) {
|
2007-03-25 05:28:29 -07:00
|
|
|
case Ci.nsINavHistoryQueryOptions.SORT_BY_TITLE_ASCENDING:
|
|
|
|
return [this.COLUMN_TYPE_TITLE, false];
|
|
|
|
case Ci.nsINavHistoryQueryOptions.SORT_BY_TITLE_DESCENDING:
|
|
|
|
return [this.COLUMN_TYPE_TITLE, true];
|
|
|
|
case Ci.nsINavHistoryQueryOptions.SORT_BY_DATE_ASCENDING:
|
2007-05-18 17:40:55 -07:00
|
|
|
return [this.COLUMN_TYPE_DATE, false];
|
2007-03-25 05:28:29 -07:00
|
|
|
case Ci.nsINavHistoryQueryOptions.SORT_BY_DATE_DESCENDING:
|
2007-05-18 17:40:55 -07:00
|
|
|
return [this.COLUMN_TYPE_DATE, true];
|
2007-03-25 05:28:29 -07:00
|
|
|
case Ci.nsINavHistoryQueryOptions.SORT_BY_URI_ASCENDING:
|
|
|
|
return [this.COLUMN_TYPE_URI, false];
|
|
|
|
case Ci.nsINavHistoryQueryOptions.SORT_BY_URI_DESCENDING:
|
|
|
|
return [this.COLUMN_TYPE_URI, true];
|
|
|
|
case Ci.nsINavHistoryQueryOptions.SORT_BY_VISITCOUNT_ASCENDING:
|
|
|
|
return [this.COLUMN_TYPE_VISITCOUNT, false];
|
|
|
|
case Ci.nsINavHistoryQueryOptions.SORT_BY_VISITCOUNT_DESCENDING:
|
|
|
|
return [this.COLUMN_TYPE_VISITCOUNT, true];
|
2007-05-14 14:53:33 -07:00
|
|
|
case Ci.nsINavHistoryQueryOptions.SORT_BY_KEYWORD_ASCENDING:
|
|
|
|
return [this.COLUMN_TYPE_KEYWORD, false];
|
|
|
|
case Ci.nsINavHistoryQueryOptions.SORT_BY_KEYWORD_DESCENDING:
|
|
|
|
return [this.COLUMN_TYPE_KEYWORD, true];
|
|
|
|
case Ci.nsINavHistoryQueryOptions.SORT_BY_ANNOTATION_ASCENDING:
|
|
|
|
if (this._result.sortingAnnotation == DESCRIPTION_ANNO)
|
|
|
|
return [this.COLUMN_TYPE_DESCRIPTION, false];
|
|
|
|
break;
|
|
|
|
case Ci.nsINavHistoryQueryOptions.SORT_BY_ANNOTATION_DESCENDING:
|
|
|
|
if (this._result.sortingAnnotation == DESCRIPTION_ANNO)
|
|
|
|
return [this.COLUMN_TYPE_DESCRIPTION, true];
|
2007-05-18 17:40:55 -07:00
|
|
|
case Ci.nsINavHistoryQueryOptions.SORT_BY_DATEADDED_ASCENDING:
|
|
|
|
return [this.COLUMN_TYPE_DATEADDED, false];
|
|
|
|
case Ci.nsINavHistoryQueryOptions.SORT_BY_DATEADDED_DESCENDING:
|
|
|
|
return [this.COLUMN_TYPE_DATEADDED, true];
|
|
|
|
case Ci.nsINavHistoryQueryOptions.SORT_BY_LASTMODIFIED_ASCENDING:
|
|
|
|
return [this.COLUMN_TYPE_LASTMODIFIED, false];
|
|
|
|
case Ci.nsINavHistoryQueryOptions.SORT_BY_LASTMODIFIED_DESCENDING:
|
|
|
|
return [this.COLUMN_TYPE_LASTMODIFIED, true];
|
2007-12-20 11:07:58 -08:00
|
|
|
case Ci.nsINavHistoryQueryOptions.SORT_BY_TAGS_ASCENDING:
|
|
|
|
return [this.COLUMN_TYPE_TAGS, false];
|
|
|
|
case Ci.nsINavHistoryQueryOptions.SORT_BY_TAGS_DESCENDING:
|
|
|
|
return [this.COLUMN_TYPE_TAGS, true];
|
2007-03-25 05:28:29 -07:00
|
|
|
}
|
|
|
|
return [this.COLUMN_TYPE_UNKNOWN, false];
|
|
|
|
},
|
|
|
|
|
2010-03-12 03:14:47 -08:00
|
|
|
// nsINavHistoryResultObserver
|
2009-10-01 09:53:26 -07:00
|
|
|
nodeInserted: function PTV_nodeInserted(aParentNode, aNode, aNewIndex) {
|
2010-02-25 10:30:09 -08:00
|
|
|
NS_ASSERT(this._result, "Got a notification but have no result!");
|
|
|
|
if (!this._tree || !this._result)
|
2007-03-25 05:28:29 -07:00
|
|
|
return;
|
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
// Bail out for hidden separators.
|
2009-10-01 09:53:26 -07:00
|
|
|
if (PlacesUtils.nodeIsSeparator(aNode) &&
|
2010-02-25 10:30:09 -08:00
|
|
|
this._result.sortingMode != Ci.nsINavHistoryQueryOptions.SORT_BY_NONE)
|
2007-03-25 05:28:29 -07:00
|
|
|
return;
|
2010-02-25 10:30:09 -08:00
|
|
|
|
|
|
|
let parentRow;
|
|
|
|
if (aParentNode != this._rootNode) {
|
|
|
|
parentRow = this._getRowForNode(aParentNode);
|
|
|
|
|
|
|
|
// Update parent when inserting the first item, since twisty has changed.
|
|
|
|
if (aParentNode.childCount == 1)
|
|
|
|
this._tree.invalidateRow(parentRow);
|
2007-03-25 05:28:29 -07:00
|
|
|
}
|
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
// Compute the new row number of the node.
|
|
|
|
let row = -1;
|
|
|
|
if (aNewIndex == 0 || this._isPlainContainer(aParentNode)) {
|
|
|
|
// We don't need to worry about sub hierarchies of the parent node
|
|
|
|
// if it's a plain container, or if the new node is its first child.
|
|
|
|
if (aParentNode == this._rootNode)
|
|
|
|
row = aNewIndex;
|
|
|
|
else
|
|
|
|
row = parentRow + aNewIndex + 1;
|
2007-03-25 05:28:29 -07:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Here, we try to find the next visible element in the child list so we
|
2010-02-25 10:30:09 -08:00
|
|
|
// can set the new visible index to be right before that. Note that we
|
|
|
|
// have to search down instead of up, because some siblings could have
|
2007-03-25 05:28:29 -07:00
|
|
|
// children themselves that would be in the way.
|
2010-02-25 10:30:09 -08:00
|
|
|
let cc = aParentNode.childCount;
|
|
|
|
let separatorsAreHidden = PlacesUtils.nodeIsSeparator(aNode) &&
|
|
|
|
this._result.sortingMode != Ci.nsINavHistoryQueryOptions.SORT_BY_NONE;
|
|
|
|
for (let i = aNewIndex + 1; i < cc; i++) {
|
|
|
|
let node = aParentNode.getChild(i);
|
|
|
|
if (!separatorsAreHidden || PlacesUtils.nodeIsSeparator(node)) {
|
|
|
|
// The children have not been shifted so the next item will have what
|
|
|
|
// should be our index.
|
|
|
|
row = this._getRowForNode(node, false, parentRow, i);
|
2007-03-25 05:28:29 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2010-02-25 10:30:09 -08:00
|
|
|
if (row < 0) {
|
|
|
|
// At the end of the child list without finding a visible sibling. This
|
2007-03-25 05:28:29 -07:00
|
|
|
// is a little harder because we don't know how many rows the last item
|
|
|
|
// in our list takes up (it could be a container with many children).
|
2010-02-25 10:30:09 -08:00
|
|
|
let prevChild = aParentNode.getChild(aNewIndex - 1);
|
|
|
|
let prevIndex = this._getRowForNode(prevChild, false, parentRow,
|
|
|
|
aNewIndex - 1);
|
|
|
|
row = prevIndex + this._countVisibleRowsForNodeAtRow(prevIndex);
|
2007-03-25 05:28:29 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
this._rows.splice(row, 0, aNode);
|
|
|
|
this._tree.rowCountChanged(row, 1);
|
2007-03-25 05:28:29 -07:00
|
|
|
|
2009-10-01 09:53:26 -07:00
|
|
|
if (PlacesUtils.nodeIsContainer(aNode) && asContainer(aNode).containerOpen)
|
2010-02-25 10:30:09 -08:00
|
|
|
this.invalidateContainer(aNode);
|
2008-02-03 17:22:39 -08:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* THIS FUNCTION DOES NOT HANDLE cases where a collapsed node is being
|
|
|
|
* removed but the node it is collapsed with is not being removed (this then
|
2008-10-01 23:49:45 -07:00
|
|
|
* just swap out the removee with its collapsing partner). The only time
|
2008-02-03 17:22:39 -08:00
|
|
|
* when we really remove things is when deleting URIs, which will apply to
|
|
|
|
* all collapsees. This function is called sometimes when resorting items.
|
|
|
|
* However, we won't do this when sorted by date because dates will never
|
|
|
|
* change for visits, and date sorting is the only time things are collapsed.
|
|
|
|
*/
|
2009-10-01 09:53:26 -07:00
|
|
|
nodeRemoved: function PTV_nodeRemoved(aParentNode, aNode, aOldIndex) {
|
2008-02-03 17:22:39 -08:00
|
|
|
NS_ASSERT(this._result, "Got a notification but have no result!");
|
2010-02-25 10:30:09 -08:00
|
|
|
if (!this._tree || !this._result)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// XXX bug 517701: We don't know what to do when the root node is removed.
|
|
|
|
if (aNode == this._rootNode)
|
|
|
|
throw Cr.NS_ERROR_NOT_IMPLEMENTED;
|
2008-02-03 17:22:39 -08:00
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
// Bail out for hidden separators.
|
|
|
|
if (PlacesUtils.nodeIsSeparator(aNode) &&
|
|
|
|
this._result.sortingMode != Ci.nsINavHistoryQueryOptions.SORT_BY_NONE)
|
2009-10-01 09:53:26 -07:00
|
|
|
return;
|
2010-02-25 10:30:09 -08:00
|
|
|
|
|
|
|
let oldRow = this._getRowForNode(aNode, true);
|
|
|
|
if (oldRow < 0)
|
|
|
|
throw Cr.NS_ERROR_UNEXPECTED;
|
2008-02-03 17:22:39 -08:00
|
|
|
|
2009-10-01 09:53:26 -07:00
|
|
|
// If the node was exclusively selected, the node next to it will be
|
|
|
|
// selected.
|
2010-02-25 10:30:09 -08:00
|
|
|
let selectNext = false;
|
|
|
|
let selection = this.selection;
|
2008-02-03 17:22:39 -08:00
|
|
|
if (selection.getRangeCount() == 1) {
|
2010-02-25 10:30:09 -08:00
|
|
|
let min = { }, max = { };
|
2008-02-03 17:22:39 -08:00
|
|
|
selection.getRangeAt(0, min, max);
|
|
|
|
if (min.value == max.value &&
|
2009-10-01 09:53:26 -07:00
|
|
|
this.nodeForTreeIndex(min.value) == aNode)
|
2008-02-03 17:22:39 -08:00
|
|
|
selectNext = true;
|
|
|
|
}
|
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
// Remove the node and its children, if any.
|
|
|
|
let count = this._countVisibleRowsForNodeAtRow(oldRow);
|
|
|
|
this._rows.splice(oldRow, count);
|
|
|
|
this._tree.rowCountChanged(oldRow, -count);
|
|
|
|
|
|
|
|
// Redraw the parent if its twisty state has changed.
|
|
|
|
if (aParentNode != this._rootNode && !aParentNode.hasChildren) {
|
|
|
|
let parentRow = oldRow - 1;
|
|
|
|
this._tree.invalidateRow(parentRow);
|
|
|
|
}
|
2008-02-03 17:22:39 -08:00
|
|
|
|
2009-10-01 09:53:26 -07:00
|
|
|
// Restore selection if the node was exclusively selected.
|
2008-02-06 13:05:23 -08:00
|
|
|
if (!selectNext)
|
|
|
|
return;
|
2009-10-01 09:53:26 -07:00
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
// Restore selection.
|
|
|
|
let rowToSelect = Math.min(oldRow, this._rows.length - 1);
|
|
|
|
this.selection.rangedSelect(rowToSelect, rowToSelect, true);
|
2007-03-25 05:28:29 -07:00
|
|
|
},
|
|
|
|
|
2009-10-01 09:53:26 -07:00
|
|
|
nodeMoved:
|
|
|
|
function PTV_nodeMoved(aNode, aOldParent, aOldIndex, aNewParent, aNewIndex) {
|
2007-12-28 18:59:22 -08:00
|
|
|
NS_ASSERT(this._result, "Got a notification but have no result!");
|
2010-02-25 10:30:09 -08:00
|
|
|
if (!this._tree || !this._result)
|
|
|
|
return;
|
2007-12-28 18:59:22 -08:00
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
// Bail out for hidden separators.
|
|
|
|
if (PlacesUtils.nodeIsSeparator(aNode) &&
|
|
|
|
this._result.sortingMode != Ci.nsINavHistoryQueryOptions.SORT_BY_NONE)
|
2009-10-01 09:53:26 -07:00
|
|
|
return;
|
2007-12-28 18:59:22 -08:00
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
let oldRow = this._getRowForNode(aNode, true);
|
2007-12-28 18:59:22 -08:00
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
// If this node is a container it could take up more than one row.
|
|
|
|
let count = this._countVisibleRowsForNodeAtRow(oldRow);
|
2010-02-22 14:58:09 -08:00
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
// Persist selection state.
|
|
|
|
let nodesToReselect =
|
|
|
|
this._getSelectedNodesInRange(oldRow, oldRow + count);
|
|
|
|
if (nodesToReselect.length > 0)
|
|
|
|
this.selection.selectEventsSuppressed = true;
|
|
|
|
|
|
|
|
// Redraw the parent if its twisty state has changed.
|
|
|
|
if (aOldParent != this._rootNode && !aOldParent.hasChildren) {
|
|
|
|
let parentRow = oldRow - 1;
|
|
|
|
this._tree.invalidateRow(parentRow);
|
2007-12-28 18:59:22 -08:00
|
|
|
}
|
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
// Remove node and its children, if any, from the old position.
|
|
|
|
this._rows.splice(oldRow, count);
|
|
|
|
this._tree.rowCountChanged(oldRow, -count);
|
2008-02-03 17:22:39 -08:00
|
|
|
|
2009-10-01 09:53:26 -07:00
|
|
|
// Insert the node into the new position.
|
|
|
|
this.nodeInserted(aNewParent, aNode, aNewIndex);
|
2007-12-28 18:59:22 -08:00
|
|
|
|
2009-10-01 09:53:26 -07:00
|
|
|
// Restore selection.
|
2010-02-25 10:30:09 -08:00
|
|
|
if (nodesToReselect.length > 0) {
|
|
|
|
this._restoreSelection(nodesToReselect, aNewParent);
|
|
|
|
this.selection.selectEventsSuppressed = false;
|
2007-12-28 18:59:22 -08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2007-03-25 05:28:29 -07:00
|
|
|
/**
|
2009-10-01 09:53:26 -07:00
|
|
|
* Be careful, the parameter 'aIndex' here specifies the node's index in the
|
|
|
|
* parent node, not the visible index.
|
2007-03-25 05:28:29 -07:00
|
|
|
*/
|
2009-10-01 09:53:26 -07:00
|
|
|
nodeReplaced:
|
|
|
|
function PTV_nodeReplaced(aParentNode, aOldNode, aNewNode, aIndexDoNotUse) {
|
2010-02-25 10:30:09 -08:00
|
|
|
NS_ASSERT(this._result, "Got a notification but have no result!");
|
|
|
|
if (!this._tree || !this._result)
|
2007-03-25 05:28:29 -07:00
|
|
|
return;
|
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
// Nothing to do if the replaced node was not set.
|
|
|
|
let row = this._getRowForNode(aOldNode);
|
|
|
|
if (row != -1) {
|
|
|
|
this._rows[row] = aNewNode;
|
|
|
|
this._tree.invalidateRow(row);
|
2008-03-04 03:22:48 -08:00
|
|
|
}
|
2007-03-25 05:28:29 -07:00
|
|
|
},
|
|
|
|
|
2009-10-01 09:53:26 -07:00
|
|
|
_invalidateCellValue: function PTV__invalidateCellValue(aNode,
|
|
|
|
aColumnType) {
|
2007-03-25 05:28:29 -07:00
|
|
|
NS_ASSERT(this._result, "Got a notification but have no result!");
|
2010-02-25 10:30:09 -08:00
|
|
|
if (!this._tree || !this._result)
|
2010-02-22 13:37:52 -08:00
|
|
|
return;
|
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
let row = this._getRowForNode(aNode);
|
|
|
|
if (row == -1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
let column = this._findColumnByType(aColumnType);
|
|
|
|
if (column && !column.element.hidden)
|
|
|
|
this._tree.invalidateCell(row, column);
|
|
|
|
|
|
|
|
// Last modified time is altered for almost all node changes.
|
|
|
|
if (aColumnType != this.COLUMN_TYPE_LASTMODIFIED) {
|
|
|
|
let lastModifiedColumn =
|
|
|
|
this._findColumnByType(this.COLUMN_TYPE_LASTMODIFIED);
|
|
|
|
if (lastModifiedColumn && !lastModifiedColumn.hidden)
|
|
|
|
this._tree.invalidateCell(row, lastModifiedColumn);
|
2009-10-01 09:53:26 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
nodeTitleChanged: function PTV_nodeTitleChanged(aNode, aNewTitle) {
|
|
|
|
this._invalidateCellValue(aNode, this.COLUMN_TYPE_TITLE);
|
|
|
|
},
|
|
|
|
|
|
|
|
nodeURIChanged: function PTV_nodeURIChanged(aNode, aNewURI) {
|
|
|
|
this._invalidateCellValue(aNode, this.COLUMN_TYPE_URI);
|
|
|
|
},
|
|
|
|
|
|
|
|
nodeIconChanged: function PTV_nodeIconChanged(aNode) {
|
|
|
|
this._invalidateCellValue(aNode, this.COLUMN_TYPE_TITLE);
|
|
|
|
},
|
|
|
|
|
|
|
|
nodeHistoryDetailsChanged:
|
|
|
|
function PTV_nodeHistoryDetailsChanged(aNode, aUpdatedVisitDate,
|
|
|
|
aUpdatedVisitCount) {
|
|
|
|
this._invalidateCellValue(aNode, this.COLUMN_TYPE_DATE);
|
|
|
|
this._invalidateCellValue(aNode, this.COLUMN_TYPE_VISITCOUNT);
|
|
|
|
},
|
|
|
|
|
|
|
|
nodeTagsChanged: function PTV_nodeTagsChanged(aNode) {
|
|
|
|
this._invalidateCellValue(aNode, this.COLUMN_TYPE_TAGS);
|
|
|
|
},
|
|
|
|
|
|
|
|
nodeKeywordChanged: function PTV_nodeKeywordChanged(aNode, aNewKeyword) {
|
|
|
|
this._invalidateCellValue(aNode, this.COLUMN_TYPE_KEYWORD);
|
|
|
|
},
|
|
|
|
|
|
|
|
nodeAnnotationChanged: function PTV_nodeAnnotationChanged(aNode, aAnno) {
|
|
|
|
if (aAnno == DESCRIPTION_ANNO)
|
|
|
|
this._invalidateCellValue(aNode, this.COLUMN_TYPE_DESCRIPTION);
|
|
|
|
},
|
|
|
|
|
|
|
|
nodeDateAddedChanged: function PTV_nodeDateAddedChanged(aNode, aNewValue) {
|
|
|
|
this._invalidateCellValue(aNode, this.COLUMN_TYPE_DATEADDED);
|
2007-03-25 05:28:29 -07:00
|
|
|
},
|
|
|
|
|
2009-10-01 09:53:26 -07:00
|
|
|
nodeLastModifiedChanged:
|
|
|
|
function PTV_nodeLastModifiedChanged(aNode, aNewValue) {
|
|
|
|
this._invalidateCellValue(aNode, this.COLUMN_TYPE_LASTMODIFIED);
|
2007-03-25 05:28:29 -07:00
|
|
|
},
|
|
|
|
|
2009-10-01 09:53:26 -07:00
|
|
|
containerOpened: function PTV_containerOpened(aNode) {
|
|
|
|
this.invalidateContainer(aNode);
|
2007-12-12 13:07:42 -08:00
|
|
|
},
|
|
|
|
|
2009-10-01 09:53:26 -07:00
|
|
|
containerClosed: function PTV_containerClosed(aNode) {
|
|
|
|
this.invalidateContainer(aNode);
|
|
|
|
},
|
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
invalidateContainer: function PTV_invalidateContainer(aContainer) {
|
|
|
|
NS_ASSERT(this._result, "Need to have a result to update");
|
2007-03-25 05:28:29 -07:00
|
|
|
if (!this._tree)
|
2010-02-25 10:30:09 -08:00
|
|
|
return;
|
2010-02-22 13:37:52 -08:00
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
let startReplacement, replaceCount;
|
|
|
|
if (aContainer == this._rootNode) {
|
|
|
|
startReplacement = 0;
|
|
|
|
replaceCount = this._rows.length;
|
|
|
|
|
|
|
|
// If the root node is now closed, the tree is empty.
|
|
|
|
if (!this._rootNode.containerOpen) {
|
|
|
|
this._rows = [];
|
|
|
|
if (replaceCount)
|
|
|
|
this._tree.rowCountChanged(startReplacement, -replaceCount);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2010-02-22 13:37:52 -08:00
|
|
|
}
|
2010-02-25 10:30:09 -08:00
|
|
|
else {
|
|
|
|
// Update the twisty state.
|
|
|
|
let row = this._getRowForNode(aContainer);
|
|
|
|
this._tree.invalidateRow(row);
|
|
|
|
|
|
|
|
// We don't replace the container node itself, so we should decrease the
|
|
|
|
// replaceCount by 1.
|
|
|
|
startReplacement = row + 1;
|
|
|
|
replaceCount = this._countVisibleRowsForNodeAtRow(row) - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Persist selection state.
|
|
|
|
let nodesToReselect =
|
|
|
|
this._getSelectedNodesInRange(startReplacement,
|
|
|
|
startReplacement + replaceCount);
|
|
|
|
|
|
|
|
// Now update the number of elements.
|
|
|
|
this.selection.selectEventsSuppressed = true;
|
|
|
|
|
|
|
|
// First remove the old elements
|
|
|
|
this._rows.splice(startReplacement, replaceCount);
|
|
|
|
|
|
|
|
// If the container is now closed, we're done.
|
|
|
|
if (!aContainer.containerOpen) {
|
|
|
|
let oldSelectionCount = this.selection.count;
|
|
|
|
if (replaceCount)
|
|
|
|
this._tree.rowCountChanged(startReplacement, -replaceCount);
|
|
|
|
|
|
|
|
// Select the row next to the closed container if any of its
|
|
|
|
// children were selected, and nothing else is selected.
|
|
|
|
if (nodesToReselect.length > 0 &&
|
|
|
|
nodesToReselect.length == oldSelectionCount) {
|
|
|
|
this.selection.rangedSelect(startReplacement, startReplacement, true);
|
|
|
|
this._tree.ensureRowIsVisible(startReplacement);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.selection.selectEventsSuppressed = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, start a batch first.
|
|
|
|
this._tree.beginUpdateBatch();
|
|
|
|
if (replaceCount)
|
|
|
|
this._tree.rowCountChanged(startReplacement, -replaceCount);
|
|
|
|
|
|
|
|
let toOpenElements = [];
|
|
|
|
let elementsAddedCount = this._buildVisibleSection(aContainer,
|
|
|
|
startReplacement,
|
|
|
|
toOpenElements);
|
|
|
|
if (elementsAddedCount)
|
|
|
|
this._tree.rowCountChanged(startReplacement, elementsAddedCount);
|
|
|
|
|
|
|
|
if (!this._flatList) {
|
|
|
|
// Now, open any containers that were persisted.
|
|
|
|
for (let i = 0; i < toOpenElements.length; i++) {
|
|
|
|
let item = toOpenElements[i];
|
|
|
|
let parent = item.parent;
|
|
|
|
|
|
|
|
// Avoid recursively opening containers.
|
|
|
|
while (parent) {
|
|
|
|
if (parent.uri == item.uri)
|
|
|
|
break;
|
|
|
|
parent = parent.parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we don't have a parent, we made it all the way to the root
|
|
|
|
// and didn't find a match, so we can open our item.
|
|
|
|
if (!parent && !item.containerOpen)
|
|
|
|
item.containerOpen = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this._tree.endUpdateBatch();
|
|
|
|
|
|
|
|
// Restore selection.
|
|
|
|
this._restoreSelection(nodesToReselect, aContainer);
|
|
|
|
this.selection.selectEventsSuppressed = false;
|
2007-03-25 05:28:29 -07:00
|
|
|
},
|
|
|
|
|
2009-10-01 09:53:26 -07:00
|
|
|
_columns: [],
|
|
|
|
_findColumnByType: function PTV__findColumnByType(aColumnType) {
|
|
|
|
if (this._columns[aColumnType])
|
|
|
|
return this._columns[aColumnType];
|
2007-03-25 05:28:29 -07:00
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
let columns = this._tree.columns;
|
|
|
|
let colCount = columns.count;
|
|
|
|
for (let i = 0; i < colCount; i++) {
|
2009-10-01 09:53:26 -07:00
|
|
|
let column = columns.getColumnAt(i);
|
|
|
|
let columnType = this._getColumnType(column);
|
|
|
|
this._columns[columnType] = column;
|
|
|
|
if (columnType == aColumnType)
|
|
|
|
return column;
|
|
|
|
}
|
2007-03-25 05:28:29 -07:00
|
|
|
|
2009-10-01 09:53:26 -07:00
|
|
|
// That's completely valid. Most of our trees actually include just the
|
|
|
|
// title column.
|
|
|
|
return null;
|
2007-03-25 05:28:29 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
sortingChanged: function PTV__sortingChanged(aSortingMode) {
|
|
|
|
if (!this._tree || !this._result)
|
|
|
|
return;
|
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
// Depending on the sort mode, certain commands may be disabled.
|
2007-06-19 09:13:19 -07:00
|
|
|
window.updateCommands("sort");
|
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
let columns = this._tree.columns;
|
2007-03-25 05:28:29 -07:00
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
// Clear old sorting indicator.
|
|
|
|
let sortedColumn = columns.getSortedColumn();
|
2007-03-25 05:28:29 -07:00
|
|
|
if (sortedColumn)
|
|
|
|
sortedColumn.element.removeAttribute("sortDirection");
|
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
// Set new sorting indicator by looking through all columns for ours.
|
2007-03-25 05:28:29 -07:00
|
|
|
if (aSortingMode == Ci.nsINavHistoryQueryOptions.SORT_BY_NONE)
|
|
|
|
return;
|
2009-10-01 09:53:26 -07:00
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
let [desiredColumn, desiredIsDescending] =
|
2007-03-25 05:28:29 -07:00
|
|
|
this._sortTypeToColumnType(aSortingMode);
|
2010-02-25 10:30:09 -08:00
|
|
|
let colCount = columns.count;
|
|
|
|
let column = this._findColumnByType(desiredColumn);
|
2009-10-01 09:53:26 -07:00
|
|
|
if (column) {
|
|
|
|
let sortDir = desiredIsDescending ? "descending" : "ascending";
|
|
|
|
column.element.setAttribute("sortDirection", sortDir);
|
2007-03-25 05:28:29 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
get result() this._result,
|
2007-03-25 05:28:29 -07:00
|
|
|
set result(val) {
|
2010-03-12 03:14:47 -08:00
|
|
|
if (this._result) {
|
|
|
|
this._result.removeObserver(this);
|
|
|
|
this._rootNode.containerOpen = false;
|
2010-03-09 08:23:32 -08:00
|
|
|
}
|
2010-03-12 03:14:47 -08:00
|
|
|
|
|
|
|
this._result = val;
|
|
|
|
this._rootNode = val ? val.root : null;
|
|
|
|
|
|
|
|
// If the tree is not set yet, setTree will call finishInit.
|
|
|
|
if (this._tree && val)
|
|
|
|
this._finishInit();
|
|
|
|
|
2007-03-25 05:28:29 -07:00
|
|
|
return val;
|
|
|
|
},
|
|
|
|
|
|
|
|
nodeForTreeIndex: function PTV_nodeForTreeIndex(aIndex) {
|
2010-02-25 10:30:09 -08:00
|
|
|
if (aIndex > this._rows.length)
|
2007-03-25 05:28:29 -07:00
|
|
|
throw Cr.NS_ERROR_INVALID_ARG;
|
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
return this._getNodeForRow(aIndex);
|
2007-03-25 05:28:29 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
treeIndexForNode: function PTV_treeNodeForIndex(aNode) {
|
2010-02-25 10:30:09 -08:00
|
|
|
// The API allows passing invisible nodes.
|
|
|
|
try {
|
|
|
|
return this._getRowForNode(aNode, true);
|
|
|
|
}
|
|
|
|
catch(ex) { }
|
2007-03-25 05:28:29 -07:00
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
return Ci.nsINavHistoryResultTreeViewer.INDEX_INVISIBLE;
|
2007-03-25 05:28:29 -07:00
|
|
|
},
|
|
|
|
|
2007-10-24 19:02:28 -07:00
|
|
|
_getResourceForNode: function PTV_getResourceForNode(aNode)
|
2007-05-16 18:14:27 -07:00
|
|
|
{
|
2010-02-25 10:30:09 -08:00
|
|
|
let uri = aNode.uri;
|
2007-06-19 22:19:06 -07:00
|
|
|
NS_ASSERT(uri, "if there is no uri, we can't persist the open state");
|
2008-03-13 12:25:49 -07:00
|
|
|
return uri ? PlacesUIUtils.RDF.GetResource(uri) : null;
|
2007-05-16 18:14:27 -07:00
|
|
|
},
|
|
|
|
|
2007-03-25 05:28:29 -07:00
|
|
|
// nsITreeView
|
2010-02-25 10:30:09 -08:00
|
|
|
get rowCount() this._rows.length,
|
|
|
|
get selection() this._selection,
|
|
|
|
set selection(val) this._selection = val,
|
2010-02-22 14:58:09 -08:00
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
getRowProperties: function() { },
|
2007-11-19 18:01:53 -08:00
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
getCellProperties:
|
|
|
|
function PTV_getCellProperties(aRow, aColumn, aProperties) {
|
2007-11-19 18:01:53 -08:00
|
|
|
// for anonid-trees, we need to add the column-type manually
|
2010-02-25 10:30:09 -08:00
|
|
|
let columnType = aColumn.element.getAttribute("anonid");
|
2007-11-19 18:01:53 -08:00
|
|
|
if (columnType)
|
|
|
|
aProperties.AppendElement(this._getAtomFor(columnType));
|
|
|
|
else
|
2010-02-25 10:30:09 -08:00
|
|
|
columnType = aColumn.id;
|
2007-11-19 18:01:53 -08:00
|
|
|
|
2009-02-27 10:37:59 -08:00
|
|
|
// Set the "ltr" property on url cells
|
|
|
|
if (columnType == "url")
|
|
|
|
aProperties.AppendElement(this._getAtomFor("ltr"));
|
|
|
|
|
2007-08-15 18:15:50 -07:00
|
|
|
if (columnType != "title")
|
2007-05-10 23:17:18 -07:00
|
|
|
return;
|
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
let node = this._getNodeForRow(aRow);
|
2009-10-01 09:53:26 -07:00
|
|
|
if (!node._cellProperties) {
|
|
|
|
let properties = new Array();
|
2010-02-25 10:30:09 -08:00
|
|
|
let itemId = node.itemId;
|
|
|
|
let nodeType = node.type;
|
2008-03-04 03:22:48 -08:00
|
|
|
if (PlacesUtils.containerTypes.indexOf(nodeType) != -1) {
|
|
|
|
if (nodeType == Ci.nsINavHistoryResultNode.RESULT_TYPE_QUERY) {
|
|
|
|
properties.push(this._getAtomFor("query"));
|
2008-04-15 10:09:00 -07:00
|
|
|
if (PlacesUtils.nodeIsTagQuery(node))
|
|
|
|
properties.push(this._getAtomFor("tagContainer"));
|
|
|
|
else if (PlacesUtils.nodeIsDay(node))
|
|
|
|
properties.push(this._getAtomFor("dayContainer"));
|
|
|
|
else if (PlacesUtils.nodeIsHost(node))
|
|
|
|
properties.push(this._getAtomFor("hostContainer"));
|
|
|
|
}
|
2008-03-04 03:22:48 -08:00
|
|
|
else if (nodeType == Ci.nsINavHistoryResultNode.RESULT_TYPE_FOLDER ||
|
2008-02-26 20:48:51 -08:00
|
|
|
nodeType == Ci.nsINavHistoryResultNode.RESULT_TYPE_FOLDER_SHORTCUT) {
|
2009-06-12 15:39:42 -07:00
|
|
|
if (PlacesUtils.nodeIsLivemarkContainer(node))
|
2008-03-04 03:22:48 -08:00
|
|
|
properties.push(this._getAtomFor("livemark"));
|
|
|
|
}
|
2008-04-07 22:51:23 -07:00
|
|
|
|
|
|
|
if (itemId != -1) {
|
2010-02-25 10:30:09 -08:00
|
|
|
let queryName = PlacesUIUtils.getLeftPaneQueryNameFromId(itemId);
|
2009-06-12 15:21:47 -07:00
|
|
|
if (queryName)
|
|
|
|
properties.push(this._getAtomFor("OrganizerQuery_" + queryName));
|
2008-04-07 22:51:23 -07:00
|
|
|
}
|
2007-11-19 18:01:53 -08:00
|
|
|
}
|
2008-03-04 03:22:48 -08:00
|
|
|
else if (nodeType == Ci.nsINavHistoryResultNode.RESULT_TYPE_SEPARATOR)
|
|
|
|
properties.push(this._getAtomFor("separator"));
|
2009-03-12 06:05:48 -07:00
|
|
|
else if (PlacesUtils.nodeIsURI(node)) {
|
|
|
|
properties.push(this._getAtomFor(PlacesUIUtils.guessUrlSchemeForUI(node.uri)));
|
|
|
|
if (itemId != -1) {
|
|
|
|
if (PlacesUtils.nodeIsLivemarkContainer(node.parent))
|
|
|
|
properties.push(this._getAtomFor("livemarkItem"));
|
2009-03-09 06:15:46 -07:00
|
|
|
}
|
2008-04-08 17:39:18 -07:00
|
|
|
}
|
2008-03-04 03:22:48 -08:00
|
|
|
|
2009-10-01 09:53:26 -07:00
|
|
|
node._cellProperties = properties;
|
2007-11-19 18:01:53 -08:00
|
|
|
}
|
2010-02-25 10:30:09 -08:00
|
|
|
for (let i = 0; i < node._cellProperties.length; i++)
|
2009-10-01 09:53:26 -07:00
|
|
|
aProperties.AppendElement(node._cellProperties[i]);
|
2007-05-10 23:17:18 -07:00
|
|
|
},
|
|
|
|
|
2007-03-25 05:28:29 -07:00
|
|
|
getColumnProperties: function(aColumn, aProperties) { },
|
|
|
|
|
|
|
|
isContainer: function PTV_isContainer(aRow) {
|
2010-02-25 10:30:09 -08:00
|
|
|
// Only leaf nodes aren't listed in the rows array.
|
|
|
|
let node = this._rows[aRow];
|
|
|
|
if (!node)
|
|
|
|
return false;
|
2007-11-19 18:01:53 -08:00
|
|
|
|
2007-03-25 05:28:29 -07:00
|
|
|
if (PlacesUtils.nodeIsContainer(node)) {
|
2008-07-23 14:14:23 -07:00
|
|
|
// Flat-lists may ignore expandQueries and other query options when
|
|
|
|
// they are asked to open a container.
|
|
|
|
if (this._flatList)
|
|
|
|
return true;
|
|
|
|
|
2008-05-05 11:16:56 -07:00
|
|
|
// treat non-expandable childless queries as non-containers
|
2007-03-25 05:28:29 -07:00
|
|
|
if (PlacesUtils.nodeIsQuery(node)) {
|
2010-02-25 10:30:09 -08:00
|
|
|
let parent = node.parent;
|
2009-10-01 09:53:26 -07:00
|
|
|
if ((PlacesUtils.nodeIsQuery(parent) ||
|
|
|
|
PlacesUtils.nodeIsFolder(parent)) &&
|
|
|
|
!node.hasChildren)
|
2008-04-30 21:57:47 -07:00
|
|
|
return asQuery(parent).queryOptions.expandQueries;
|
2007-03-25 05:28:29 -07:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
isContainerOpen: function PTV_isContainerOpen(aRow) {
|
2007-11-19 18:01:53 -08:00
|
|
|
if (this._flatList)
|
|
|
|
return false;
|
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
// All containers are listed in the rows array.
|
|
|
|
return this._rows[aRow].containerOpen;
|
2007-03-25 05:28:29 -07:00
|
|
|
},
|
|
|
|
|
2007-03-25 05:35:15 -07:00
|
|
|
isContainerEmpty: function PTV_isContainerEmpty(aRow) {
|
2007-11-19 18:01:53 -08:00
|
|
|
if (this._flatList)
|
|
|
|
return true;
|
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
// All containers are listed in the rows array.
|
|
|
|
return !this._rows[aRow].hasChildren;
|
2007-03-25 05:28:29 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
isSeparator: function PTV_isSeparator(aRow) {
|
2010-02-25 10:30:09 -08:00
|
|
|
// All separators are listed in the rows array.
|
|
|
|
let node = this._rows[aRow];
|
|
|
|
return node && PlacesUtils.nodeIsSeparator(node);
|
2007-03-25 05:28:29 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
isSorted: function PTV_isSorted() {
|
|
|
|
return this._result.sortingMode !=
|
2009-10-01 09:53:26 -07:00
|
|
|
Ci.nsINavHistoryQueryOptions.SORT_BY_NONE;
|
2007-03-25 05:28:29 -07:00
|
|
|
},
|
|
|
|
|
2010-02-23 07:20:36 -08:00
|
|
|
canDrop: function PTV_canDrop(aRow, aOrientation, aDataTransfer) {
|
2008-01-29 12:04:43 -08:00
|
|
|
if (!this._result)
|
|
|
|
throw Cr.NS_ERROR_UNEXPECTED;
|
|
|
|
|
2010-02-23 07:20:36 -08:00
|
|
|
// Drop position into a sorted treeview would be wrong.
|
2008-09-19 08:47:45 -07:00
|
|
|
if (this.isSorted())
|
|
|
|
return false;
|
|
|
|
|
2010-02-23 07:20:36 -08:00
|
|
|
let ip = this._getInsertionPoint(aRow, aOrientation);
|
|
|
|
return ip && PlacesControllerDragHelper.canDrop(ip, aDataTransfer);
|
2008-01-29 12:04:43 -08:00
|
|
|
},
|
|
|
|
|
|
|
|
_getInsertionPoint: function PTV__getInsertionPoint(index, orientation) {
|
2010-02-25 10:30:09 -08:00
|
|
|
let container = this._result.root;
|
|
|
|
let dropNearItemId = -1;
|
2008-01-29 12:04:43 -08:00
|
|
|
// When there's no selection, assume the container is the container
|
|
|
|
// the view is populated from (i.e. the result's itemId).
|
|
|
|
if (index != -1) {
|
2010-02-25 10:30:09 -08:00
|
|
|
let lastSelected = this.nodeForTreeIndex(index);
|
2008-01-29 12:04:43 -08:00
|
|
|
if (this.isContainer(index) && orientation == Ci.nsITreeView.DROP_ON) {
|
|
|
|
// If the last selected item is an open container, append _into_
|
2010-02-25 10:30:09 -08:00
|
|
|
// it, rather than insert adjacent to it.
|
2008-01-29 12:04:43 -08:00
|
|
|
container = lastSelected;
|
|
|
|
index = -1;
|
|
|
|
}
|
2008-09-19 08:47:45 -07:00
|
|
|
else if (lastSelected.containerOpen &&
|
2008-04-25 16:44:10 -07:00
|
|
|
orientation == Ci.nsITreeView.DROP_AFTER &&
|
|
|
|
lastSelected.hasChildren) {
|
2009-10-01 09:53:26 -07:00
|
|
|
// If the last selected node is an open container and the user is
|
|
|
|
// trying to drag into it as a first node, really insert into it.
|
2008-01-29 12:04:43 -08:00
|
|
|
container = lastSelected;
|
2008-09-19 08:47:45 -07:00
|
|
|
orientation = Ci.nsITreeView.DROP_ON;
|
2008-01-29 12:04:43 -08:00
|
|
|
index = 0;
|
|
|
|
}
|
|
|
|
else {
|
2010-02-25 10:30:09 -08:00
|
|
|
// Use the last-selected node's container.
|
|
|
|
container = lastSelected.parent;
|
|
|
|
|
|
|
|
// During its Drag & Drop operation, the tree code closes-and-opens
|
|
|
|
// containers very often (part of the XUL "spring-loaded folders"
|
|
|
|
// implementation). And in certain cases, we may reach a closed
|
|
|
|
// container here. However, we can simply bail out when this happens,
|
|
|
|
// because we would then be back here in less than a millisecond, when
|
|
|
|
// the container had been reopened.
|
|
|
|
if (!container || !container.containerOpen)
|
|
|
|
return null;
|
2008-01-29 12:04:43 -08:00
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
// Avoid the potentially expensive call to getChildIndex
|
|
|
|
// if we know this container doesn't allow insertion.
|
2008-09-19 08:47:45 -07:00
|
|
|
if (PlacesControllerDragHelper.disallowInsertion(container))
|
2008-01-29 12:04:43 -08:00
|
|
|
return null;
|
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
let queryOptions = asQuery(this._result.root).queryOptions;
|
2008-09-19 08:47:45 -07:00
|
|
|
if (queryOptions.sortingMode !=
|
|
|
|
Ci.nsINavHistoryQueryOptions.SORT_BY_NONE) {
|
2010-02-25 10:30:09 -08:00
|
|
|
// If we are within a sorted view, insert at the end.
|
2008-04-25 16:44:10 -07:00
|
|
|
index = -1;
|
|
|
|
}
|
|
|
|
else if (queryOptions.excludeItems ||
|
|
|
|
queryOptions.excludeQueries ||
|
|
|
|
queryOptions.excludeReadOnlyFolders) {
|
|
|
|
// Some item may be invisible, insert near last selected one.
|
|
|
|
// We don't replace index here to avoid requests to the db,
|
|
|
|
// instead it will be calculated later by the controller.
|
|
|
|
index = -1;
|
|
|
|
dropNearItemId = lastSelected.itemId;
|
|
|
|
}
|
|
|
|
else {
|
2010-02-25 10:30:09 -08:00
|
|
|
let lsi = container.getChildIndex(lastSelected);
|
2008-04-25 16:44:10 -07:00
|
|
|
index = orientation == Ci.nsITreeView.DROP_BEFORE ? lsi : lsi + 1;
|
|
|
|
}
|
2008-01-29 12:04:43 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-19 08:47:45 -07:00
|
|
|
if (PlacesControllerDragHelper.disallowInsertion(container))
|
2008-01-29 12:04:43 -08:00
|
|
|
return null;
|
|
|
|
|
|
|
|
return new InsertionPoint(PlacesUtils.getConcreteItemId(container),
|
2008-04-11 09:22:01 -07:00
|
|
|
index, orientation,
|
2008-04-25 16:44:10 -07:00
|
|
|
PlacesUtils.nodeIsTagQuery(container),
|
|
|
|
dropNearItemId);
|
2007-03-25 05:28:29 -07:00
|
|
|
},
|
|
|
|
|
2010-02-23 07:20:36 -08:00
|
|
|
drop: function PTV_drop(aRow, aOrientation, aDataTransfer) {
|
2010-02-25 10:30:09 -08:00
|
|
|
// We are responsible for translating the |index| and |orientation|
|
|
|
|
// parameters into a container id and index within the container,
|
2008-01-29 12:04:43 -08:00
|
|
|
// since this information is specific to the tree view.
|
2010-02-23 07:20:36 -08:00
|
|
|
let ip = this._getInsertionPoint(aRow, aOrientation);
|
|
|
|
if (ip)
|
|
|
|
PlacesControllerDragHelper.onDrop(ip, aDataTransfer);
|
|
|
|
|
|
|
|
PlacesControllerDragHelper.currentDropTarget = null;
|
2007-03-25 05:28:29 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
getParentIndex: function PTV_getParentIndex(aRow) {
|
2010-02-25 10:30:09 -08:00
|
|
|
let [parentNode, parentRow] = this._getParentByChildRow(aRow);
|
|
|
|
return parentRow;
|
2007-03-25 05:28:29 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
hasNextSibling: function PTV_hasNextSibling(aRow, aAfterIndex) {
|
2010-02-25 10:30:09 -08:00
|
|
|
if (aRow == this._rows.length - 1) {
|
|
|
|
// The last row has no sibling.
|
2007-03-25 05:28:29 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
let node = this._rows[aRow];
|
|
|
|
if (node === undefined || this._isPlainContainer(node.parent)) {
|
|
|
|
// The node is a child of a plain container.
|
|
|
|
// If the next row is either unset or has the same parent,
|
|
|
|
// it's a sibling.
|
|
|
|
let nextNode = this._rows[aRow + 1];
|
|
|
|
return (nextNode == undefined || nextNode.parent == node.parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
let thisLevel = node.indentLevel;
|
|
|
|
for (let i = aAfterIndex + 1; i < this._rows.length; ++i) {
|
|
|
|
let rowNode = this._getNodeForRow(i);
|
|
|
|
let nextLevel = rowNode.indentLevel;
|
2007-10-24 02:31:46 -07:00
|
|
|
if (nextLevel == thisLevel)
|
|
|
|
return true;
|
|
|
|
if (nextLevel < thisLevel)
|
|
|
|
break;
|
|
|
|
}
|
2010-02-25 10:30:09 -08:00
|
|
|
|
2007-10-24 02:31:46 -07:00
|
|
|
return false;
|
2007-03-25 05:28:29 -07:00
|
|
|
},
|
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
getLevel: function(aRow) this._getNodeForRow(aRow).indentLevel,
|
2007-03-25 05:28:29 -07:00
|
|
|
|
|
|
|
getImageSrc: function PTV_getImageSrc(aRow, aColumn) {
|
2010-02-25 10:30:09 -08:00
|
|
|
// Only the title column has an image.
|
2008-03-08 03:42:58 -08:00
|
|
|
if (this._getColumnType(aColumn) != this.COLUMN_TYPE_TITLE)
|
2007-03-25 05:28:29 -07:00
|
|
|
return "";
|
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
return this._getNodeForRow(aRow).icon;
|
2007-03-25 05:28:29 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
getProgressMode: function(aRow, aColumn) { },
|
|
|
|
getCellValue: function(aRow, aColumn) { },
|
|
|
|
|
|
|
|
getCellText: function PTV_getCellText(aRow, aColumn) {
|
2010-02-25 10:30:09 -08:00
|
|
|
let node = this._getNodeForRow(aRow);
|
|
|
|
let columnType = this._getColumnType(aColumn);
|
2007-11-19 18:01:53 -08:00
|
|
|
switch (columnType) {
|
2007-03-25 05:28:29 -07:00
|
|
|
case this.COLUMN_TYPE_TITLE:
|
|
|
|
// normally, this is just the title, but we don't want empty items in
|
|
|
|
// the tree view so return a special string if the title is empty.
|
|
|
|
// Do it here so that callers can still get at the 0 length title
|
|
|
|
// if they go through the "result" API.
|
|
|
|
if (PlacesUtils.nodeIsSeparator(node))
|
|
|
|
return "";
|
2008-03-13 12:25:49 -07:00
|
|
|
return PlacesUIUtils.getBestTitle(node);
|
2007-08-21 15:31:44 -07:00
|
|
|
case this.COLUMN_TYPE_TAGS:
|
2007-12-20 11:07:58 -08:00
|
|
|
return node.tags;
|
2007-03-25 05:28:29 -07:00
|
|
|
case this.COLUMN_TYPE_URI:
|
|
|
|
if (PlacesUtils.nodeIsURI(node))
|
|
|
|
return node.uri;
|
|
|
|
return "";
|
|
|
|
case this.COLUMN_TYPE_DATE:
|
2009-10-01 09:53:26 -07:00
|
|
|
let nodeTime = node.time;
|
|
|
|
if (nodeTime == 0 || !PlacesUtils.nodeIsURI(node)) {
|
2007-03-25 05:28:29 -07:00
|
|
|
// hosts and days shouldn't have a value for the date column.
|
|
|
|
// Actually, you could argue this point, but looking at the
|
|
|
|
// results, seeing the most recently visited date is not what
|
|
|
|
// I expect, and gives me no information I know how to use.
|
|
|
|
// Only show this for URI-based items.
|
|
|
|
return "";
|
|
|
|
}
|
2009-10-01 09:53:26 -07:00
|
|
|
|
|
|
|
return this._convertPRTimeToString(nodeTime);
|
2007-03-25 05:28:29 -07:00
|
|
|
case this.COLUMN_TYPE_VISITCOUNT:
|
|
|
|
return node.accessCount;
|
2007-05-14 14:53:33 -07:00
|
|
|
case this.COLUMN_TYPE_KEYWORD:
|
|
|
|
if (PlacesUtils.nodeIsBookmark(node))
|
|
|
|
return PlacesUtils.bookmarks.getKeywordForBookmark(node.itemId);
|
|
|
|
return "";
|
|
|
|
case this.COLUMN_TYPE_DESCRIPTION:
|
2009-05-18 16:06:55 -07:00
|
|
|
if (node.itemId != -1) {
|
|
|
|
try {
|
|
|
|
return PlacesUtils.annotations.
|
|
|
|
getItemAnnotation(node.itemId, DESCRIPTION_ANNO);
|
|
|
|
}
|
|
|
|
catch (ex) { /* has no description */ }
|
|
|
|
}
|
2007-05-18 17:40:55 -07:00
|
|
|
return "";
|
|
|
|
case this.COLUMN_TYPE_DATEADDED:
|
|
|
|
if (node.dateAdded)
|
|
|
|
return this._convertPRTimeToString(node.dateAdded);
|
|
|
|
return "";
|
|
|
|
case this.COLUMN_TYPE_LASTMODIFIED:
|
|
|
|
if (node.lastModified)
|
|
|
|
return this._convertPRTimeToString(node.lastModified);
|
2007-05-14 14:53:33 -07:00
|
|
|
return "";
|
2007-03-25 05:28:29 -07:00
|
|
|
}
|
|
|
|
return "";
|
|
|
|
},
|
|
|
|
|
|
|
|
setTree: function PTV_setTree(aTree) {
|
2010-02-25 10:30:09 -08:00
|
|
|
let hasOldTree = this._tree != null;
|
2007-03-25 05:28:29 -07:00
|
|
|
this._tree = aTree;
|
|
|
|
|
2009-10-01 09:53:26 -07:00
|
|
|
if (this._result) {
|
|
|
|
if (hasOldTree) {
|
|
|
|
// detach from result when we are detaching from the tree.
|
|
|
|
// This breaks the reference cycle between us and the result.
|
2010-03-12 03:14:47 -08:00
|
|
|
if (!aTree) {
|
|
|
|
this._result.removeObserver(this);
|
|
|
|
this._rootNode.containerOpen = false;
|
|
|
|
}
|
2009-10-01 09:53:26 -07:00
|
|
|
}
|
|
|
|
if (aTree)
|
|
|
|
this._finishInit();
|
2007-03-25 05:28:29 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
toggleOpenState: function PTV_toggleOpenState(aRow) {
|
|
|
|
if (!this._result)
|
|
|
|
throw Cr.NS_ERROR_UNEXPECTED;
|
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
let node = this._rows[aRow];
|
2008-02-16 22:17:34 -08:00
|
|
|
if (this._flatList && this._openContainerCallback) {
|
|
|
|
this._openContainerCallback(node);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
let resource = this._getResourceForNode(node);
|
2007-05-16 18:14:27 -07:00
|
|
|
if (resource) {
|
2008-03-13 12:25:49 -07:00
|
|
|
const openLiteral = PlacesUIUtils.RDF.GetResource("http://home.netscape.com/NC-rdf#open");
|
|
|
|
const trueLiteral = PlacesUIUtils.RDF.GetLiteral("true");
|
2007-05-16 18:14:27 -07:00
|
|
|
|
|
|
|
if (node.containerOpen)
|
2008-03-13 12:25:49 -07:00
|
|
|
PlacesUIUtils.localStore.Unassert(resource, openLiteral, trueLiteral);
|
2007-05-16 18:14:27 -07:00
|
|
|
else
|
2008-03-13 12:25:49 -07:00
|
|
|
PlacesUIUtils.localStore.Assert(resource, openLiteral, trueLiteral, true);
|
2007-05-16 18:14:27 -07:00
|
|
|
}
|
|
|
|
|
2007-03-25 05:28:29 -07:00
|
|
|
node.containerOpen = !node.containerOpen;
|
|
|
|
},
|
|
|
|
|
|
|
|
cycleHeader: function PTV_cycleHeader(aColumn) {
|
|
|
|
if (!this._result)
|
|
|
|
throw Cr.NS_ERROR_UNEXPECTED;
|
|
|
|
|
|
|
|
// Sometimes you want a tri-state sorting, and sometimes you don't. This
|
|
|
|
// rule allows tri-state sorting when the root node is a folder. This will
|
|
|
|
// catch the most common cases. When you are looking at folders, you want
|
|
|
|
// the third state to reset the sorting to the natural bookmark order. When
|
|
|
|
// you are looking at history, that third state has no meaning so we try
|
|
|
|
// to disallow it.
|
|
|
|
//
|
|
|
|
// The problem occurs when you have a query that results in bookmark
|
|
|
|
// folders. One example of this is the subscriptions view. In these cases,
|
|
|
|
// this rule doesn't allow you to sort those sub-folders by their natural
|
|
|
|
// order.
|
2010-02-25 10:30:09 -08:00
|
|
|
let allowTriState = PlacesUtils.nodeIsFolder(this._result.root);
|
2007-03-25 05:28:29 -07:00
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
let oldSort = this._result.sortingMode;
|
|
|
|
let oldSortingAnnotation = this._result.sortingAnnotation;
|
|
|
|
let newSort;
|
|
|
|
let newSortingAnnotation = "";
|
2007-03-25 05:28:29 -07:00
|
|
|
const NHQO = Ci.nsINavHistoryQueryOptions;
|
2010-02-25 10:30:09 -08:00
|
|
|
let columnType = this._getColumnType(aColumn);
|
2007-11-19 18:01:53 -08:00
|
|
|
switch (columnType) {
|
2007-03-25 05:28:29 -07:00
|
|
|
case this.COLUMN_TYPE_TITLE:
|
|
|
|
if (oldSort == NHQO.SORT_BY_TITLE_ASCENDING)
|
|
|
|
newSort = NHQO.SORT_BY_TITLE_DESCENDING;
|
|
|
|
else if (allowTriState && oldSort == NHQO.SORT_BY_TITLE_DESCENDING)
|
|
|
|
newSort = NHQO.SORT_BY_NONE;
|
|
|
|
else
|
|
|
|
newSort = NHQO.SORT_BY_TITLE_ASCENDING;
|
|
|
|
|
|
|
|
break;
|
|
|
|
case this.COLUMN_TYPE_URI:
|
|
|
|
if (oldSort == NHQO.SORT_BY_URI_ASCENDING)
|
|
|
|
newSort = NHQO.SORT_BY_URI_DESCENDING;
|
|
|
|
else if (allowTriState && oldSort == NHQO.SORT_BY_URI_DESCENDING)
|
|
|
|
newSort = NHQO.SORT_BY_NONE;
|
|
|
|
else
|
|
|
|
newSort = NHQO.SORT_BY_URI_ASCENDING;
|
|
|
|
|
|
|
|
break;
|
|
|
|
case this.COLUMN_TYPE_DATE:
|
|
|
|
if (oldSort == NHQO.SORT_BY_DATE_ASCENDING)
|
|
|
|
newSort = NHQO.SORT_BY_DATE_DESCENDING;
|
|
|
|
else if (allowTriState &&
|
|
|
|
oldSort == NHQO.SORT_BY_DATE_DESCENDING)
|
|
|
|
newSort = NHQO.SORT_BY_NONE;
|
|
|
|
else
|
|
|
|
newSort = NHQO.SORT_BY_DATE_ASCENDING;
|
|
|
|
|
|
|
|
break;
|
|
|
|
case this.COLUMN_TYPE_VISITCOUNT:
|
|
|
|
// visit count default is unusual because we sort by descending
|
|
|
|
// by default because you are most likely to be looking for
|
|
|
|
// highly visited sites when you click it
|
|
|
|
if (oldSort == NHQO.SORT_BY_VISITCOUNT_DESCENDING)
|
|
|
|
newSort = NHQO.SORT_BY_VISITCOUNT_ASCENDING;
|
|
|
|
else if (allowTriState && oldSort == NHQO.SORT_BY_VISITCOUNT_ASCENDING)
|
|
|
|
newSort = NHQO.SORT_BY_NONE;
|
|
|
|
else
|
|
|
|
newSort = NHQO.SORT_BY_VISITCOUNT_DESCENDING;
|
|
|
|
|
2007-05-14 14:53:33 -07:00
|
|
|
break;
|
|
|
|
case this.COLUMN_TYPE_KEYWORD:
|
|
|
|
if (oldSort == NHQO.SORT_BY_KEYWORD_ASCENDING)
|
|
|
|
newSort = NHQO.SORT_BY_KEYWORD_DESCENDING;
|
|
|
|
else if (allowTriState && oldSort == NHQO.SORT_BY_KEYWORD_DESCENDING)
|
|
|
|
newSort = NHQO.SORT_BY_NONE;
|
|
|
|
else
|
|
|
|
newSort = NHQO.SORT_BY_KEYWORD_ASCENDING;
|
|
|
|
|
|
|
|
break;
|
|
|
|
case this.COLUMN_TYPE_DESCRIPTION:
|
|
|
|
if (oldSort == NHQO.SORT_BY_ANNOTATION_ASCENDING &&
|
|
|
|
oldSortingAnnotation == DESCRIPTION_ANNO) {
|
|
|
|
newSort = NHQO.SORT_BY_ANNOTATION_DESCENDING;
|
|
|
|
newSortingAnnotation = DESCRIPTION_ANNO;
|
|
|
|
}
|
|
|
|
else if (allowTriState &&
|
|
|
|
oldSort == NHQO.SORT_BY_ANNOTATION_DESCENDING &&
|
|
|
|
oldSortingAnnotation == DESCRIPTION_ANNO)
|
|
|
|
newSort = NHQO.SORT_BY_NONE;
|
|
|
|
else {
|
|
|
|
newSort = NHQO.SORT_BY_ANNOTATION_ASCENDING;
|
|
|
|
newSortingAnnotation = DESCRIPTION_ANNO;
|
|
|
|
}
|
2007-10-10 23:42:38 -07:00
|
|
|
|
2007-05-18 17:40:55 -07:00
|
|
|
break;
|
|
|
|
case this.COLUMN_TYPE_DATEADDED:
|
|
|
|
if (oldSort == NHQO.SORT_BY_DATEADDED_ASCENDING)
|
|
|
|
newSort = NHQO.SORT_BY_DATEADDED_DESCENDING;
|
|
|
|
else if (allowTriState &&
|
|
|
|
oldSort == NHQO.SORT_BY_DATEADDED_DESCENDING)
|
|
|
|
newSort = NHQO.SORT_BY_NONE;
|
|
|
|
else
|
|
|
|
newSort = NHQO.SORT_BY_DATEADDED_ASCENDING;
|
|
|
|
|
|
|
|
break;
|
|
|
|
case this.COLUMN_TYPE_LASTMODIFIED:
|
|
|
|
if (oldSort == NHQO.SORT_BY_LASTMODIFIED_ASCENDING)
|
|
|
|
newSort = NHQO.SORT_BY_LASTMODIFIED_DESCENDING;
|
|
|
|
else if (allowTriState &&
|
|
|
|
oldSort == NHQO.SORT_BY_LASTMODIFIED_DESCENDING)
|
|
|
|
newSort = NHQO.SORT_BY_NONE;
|
|
|
|
else
|
|
|
|
newSort = NHQO.SORT_BY_LASTMODIFIED_ASCENDING;
|
|
|
|
|
2007-12-20 11:07:58 -08:00
|
|
|
break;
|
|
|
|
case this.COLUMN_TYPE_TAGS:
|
|
|
|
if (oldSort == NHQO.SORT_BY_TAGS_ASCENDING)
|
|
|
|
newSort = NHQO.SORT_BY_TAGS_DESCENDING;
|
|
|
|
else if (allowTriState && oldSort == NHQO.SORT_BY_TAGS_DESCENDING)
|
|
|
|
newSort = NHQO.SORT_BY_NONE;
|
|
|
|
else
|
|
|
|
newSort = NHQO.SORT_BY_TAGS_ASCENDING;
|
|
|
|
|
2007-03-25 05:28:29 -07:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw Cr.NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
2007-05-14 14:53:33 -07:00
|
|
|
this._result.sortingAnnotation = newSortingAnnotation;
|
2007-03-25 05:28:29 -07:00
|
|
|
this._result.sortingMode = newSort;
|
|
|
|
},
|
|
|
|
|
2008-03-13 17:52:21 -07:00
|
|
|
isEditable: function PTV_isEditable(aRow, aColumn) {
|
|
|
|
// At this point we only support editing the title field.
|
|
|
|
if (aColumn.index != 0)
|
|
|
|
return false;
|
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
// Only bookmark-nodes are editable, and those are never built lazily
|
|
|
|
let node = this._rows[aRow];
|
|
|
|
if (!node || node.itemId == -1)
|
|
|
|
return false;
|
2010-02-22 13:37:52 -08:00
|
|
|
|
2010-02-25 10:30:09 -08:00
|
|
|
// The following items are never editable:
|
|
|
|
// * Read-only items.
|
|
|
|
// * places-roots
|
|
|
|
// * livemark items
|
|
|
|
// * separators
|
|
|
|
if (PlacesUtils.nodeIsReadOnly(node) ||
|
|
|
|
PlacesUtils.nodeIsLivemarkItem(node) ||
|
|
|
|
PlacesUtils.nodeIsSeparator(node))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (PlacesUtils.nodeIsFolder(node)) {
|
|
|
|
let itemId = PlacesUtils.getConcreteItemId(node);
|
|
|
|
if (PlacesUtils.isRootItem(itemId))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2008-03-13 17:52:21 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
setCellText: function PTV_setCellText(aRow, aColumn, aText) {
|
2010-02-25 10:30:09 -08:00
|
|
|
// We may only get here if the cell is editable.
|
|
|
|
let node = this._rows[aRow];
|
2008-03-13 17:52:21 -07:00
|
|
|
if (node.title != aText) {
|
2010-02-25 10:30:09 -08:00
|
|
|
let txn = PlacesUIUtils.ptm.editItemTitle(node.itemId, aText);
|
2008-03-16 23:39:42 -07:00
|
|
|
PlacesUIUtils.ptm.doTransaction(txn);
|
2008-03-13 17:52:21 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2008-01-29 12:04:43 -08:00
|
|
|
selectionChanged: function() { },
|
2010-02-25 10:30:09 -08:00
|
|
|
cycleCell: function(aRow, aColumn) { },
|
2007-03-25 05:28:29 -07:00
|
|
|
isSelectable: function(aRow, aColumn) { return false; },
|
2008-01-29 12:04:43 -08:00
|
|
|
performAction: function(aAction) { },
|
|
|
|
performActionOnRow: function(aAction, aRow) { },
|
|
|
|
performActionOnCell: function(aAction, aRow, aColumn) { }
|
2007-03-25 05:28:29 -07:00
|
|
|
};
|
|
|
|
|
2009-10-01 09:53:26 -07:00
|
|
|
function PlacesTreeView(aFlatList, aOnOpenFlatContainer) {
|
2007-03-25 05:28:29 -07:00
|
|
|
this._tree = null;
|
|
|
|
this._result = null;
|
|
|
|
this._selection = null;
|
2010-02-25 10:30:09 -08:00
|
|
|
this._rows = [];
|
2007-11-19 18:01:53 -08:00
|
|
|
this._flatList = aFlatList;
|
2008-02-16 22:17:34 -08:00
|
|
|
this._openContainerCallback = aOnOpenFlatContainer;
|
2007-03-25 05:28:29 -07:00
|
|
|
}
|