2000-06-21 06:34:59 +00:00
|
|
|
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* The contents of this file are subject to the Netscape 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/NPL/
|
|
|
|
*
|
|
|
|
* 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 Netscape are
|
|
|
|
* Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*/
|
|
|
|
|
2001-01-30 22:02:27 +00:00
|
|
|
var gLastMessageUriToLoad = null;
|
2001-03-17 01:59:34 +00:00
|
|
|
var gThreadPaneCommandUpdater = null;
|
2001-01-30 22:02:27 +00:00
|
|
|
|
2000-06-21 06:34:59 +00:00
|
|
|
function ThreadPaneOnClick(event)
|
|
|
|
{
|
2001-07-03 05:19:50 +00:00
|
|
|
// we only care about button 0 (left click) events
|
|
|
|
if (event.button != 0) return;
|
|
|
|
|
2001-03-17 01:59:34 +00:00
|
|
|
// we are already handling marking as read and flagging
|
|
|
|
// in nsMsgDBView.cpp
|
|
|
|
// so all we need to worry about here is double clicks
|
|
|
|
// and column header.
|
|
|
|
//
|
|
|
|
// we get in here for clicks on the "outlinercol" (headers)
|
|
|
|
// and the "scrollbarbutton" (scrollbar buttons)
|
|
|
|
// we don't want those events to cause a "double click"
|
|
|
|
|
2000-12-30 20:48:15 +00:00
|
|
|
var t = event.originalTarget;
|
2000-09-07 08:17:32 +00:00
|
|
|
|
2001-03-17 01:59:34 +00:00
|
|
|
if (t.localName == "outlinercol") {
|
|
|
|
HandleColumnClick(t.id);
|
|
|
|
}
|
|
|
|
else if (event.detail == 2 && t.localName == "outlinerbody") {
|
2001-04-03 06:13:38 +00:00
|
|
|
var row = new Object;
|
|
|
|
var colID = new Object;
|
|
|
|
var childElt = new Object;
|
|
|
|
|
|
|
|
var outliner = GetThreadOutliner();
|
|
|
|
// figure out what cell the click was in
|
|
|
|
outliner.boxObject.QueryInterface(Components.interfaces.nsIOutlinerBoxObject).getCellAt(event.clientX, event.clientY, row, colID, childElt);
|
|
|
|
|
|
|
|
// if the cell is in a "cycler" column
|
2001-07-25 06:34:59 +00:00
|
|
|
// or if the user double clicked on the twisty,
|
2001-04-03 06:13:38 +00:00
|
|
|
// don't open the message in a new window
|
|
|
|
var col = document.getElementById(colID.value);
|
2001-07-25 06:34:59 +00:00
|
|
|
if (col && col.getAttribute("cycler") != "true" && (childElt.value != "twisty")) {
|
2001-04-03 06:13:38 +00:00
|
|
|
ThreadPaneDoubleClick();
|
|
|
|
}
|
2000-12-30 20:48:15 +00:00
|
|
|
}
|
2001-03-17 01:59:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function nsMsgDBViewCommandUpdater()
|
|
|
|
{}
|
|
|
|
|
|
|
|
nsMsgDBViewCommandUpdater.prototype =
|
|
|
|
{
|
|
|
|
updateCommandStatus : function()
|
|
|
|
{
|
|
|
|
// the back end is smart and is only telling us to update command status
|
|
|
|
// when the # of items in the selection has actually changed.
|
|
|
|
document.commandDispatcher.updateCommands('mail-toolbar');
|
|
|
|
},
|
|
|
|
|
|
|
|
displayMessageChanged : function(aFolder, aSubject)
|
|
|
|
{
|
|
|
|
setTitleFromFolder(aFolder, aSubject);
|
|
|
|
gHaveLoadedMessage = true;
|
|
|
|
},
|
|
|
|
|
|
|
|
QueryInterface : function(iid)
|
|
|
|
{
|
|
|
|
if(iid.equals(Components.interfaces.nsIMsgDBViewCommandUpdater))
|
|
|
|
return this;
|
|
|
|
|
|
|
|
throw Components.results.NS_NOINTERFACE;
|
|
|
|
return null;
|
2000-06-21 06:34:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-03-17 01:59:34 +00:00
|
|
|
function HandleColumnClick(columnID)
|
|
|
|
{
|
2001-04-03 06:13:38 +00:00
|
|
|
var sortType = ConvertColumnIDToSortType(columnID);
|
|
|
|
|
|
|
|
// if sortType is 0, this is an unsupported sort type
|
|
|
|
// return, since we can't sort by that column.
|
|
|
|
if (sortType == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var dbview = GetDBView();
|
|
|
|
if (dbview.sortType == sortType) {
|
|
|
|
MsgReverseSortThreadPane();
|
2001-03-17 01:59:34 +00:00
|
|
|
}
|
|
|
|
else {
|
2001-04-03 06:13:38 +00:00
|
|
|
MsgSortThreadPane(sortType);
|
2001-03-17 01:59:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-02-07 04:35:37 +00:00
|
|
|
function MsgComposeDraftMessage()
|
|
|
|
{
|
|
|
|
var loadedFolder = GetLoadedMsgFolder();
|
|
|
|
var messageArray = GetSelectedMessages();
|
|
|
|
|
|
|
|
ComposeMessage(msgComposeType.Draft, msgComposeFormat.Default, loadedFolder, messageArray);
|
|
|
|
}
|
|
|
|
|
2001-01-20 05:06:10 +00:00
|
|
|
function ThreadPaneDoubleClick()
|
2000-06-21 06:34:59 +00:00
|
|
|
{
|
2001-03-17 01:59:34 +00:00
|
|
|
if (IsSpecialFolderSelected(MSG_FOLDER_FLAG_DRAFTS)) {
|
2001-02-07 04:35:37 +00:00
|
|
|
MsgComposeDraftMessage();
|
2000-06-21 06:34:59 +00:00
|
|
|
}
|
2001-03-17 01:59:34 +00:00
|
|
|
else if(IsSpecialFolderSelected(MSG_FOLDER_FLAG_TEMPLATES)) {
|
2001-04-03 06:13:38 +00:00
|
|
|
var loadedFolder = GetLoadedMsgFolder();
|
|
|
|
var messageArray = GetSelectedMessages();
|
2000-06-21 06:34:59 +00:00
|
|
|
ComposeMessage(msgComposeType.Template, msgComposeFormat.Default, loadedFolder, messageArray);
|
|
|
|
}
|
2001-03-17 01:59:34 +00:00
|
|
|
else {
|
2001-01-20 05:06:10 +00:00
|
|
|
MsgOpenSelectedMessages();
|
2000-09-14 22:58:41 +00:00
|
|
|
}
|
2000-06-21 06:34:59 +00:00
|
|
|
}
|
|
|
|
|
2000-09-14 22:58:41 +00:00
|
|
|
function ThreadPaneKeyPress(event)
|
|
|
|
{
|
2001-04-13 08:17:56 +00:00
|
|
|
if (event.keyCode == 13)
|
|
|
|
ThreadPaneDoubleClick();
|
2000-09-14 22:58:41 +00:00
|
|
|
}
|
2000-06-21 06:34:59 +00:00
|
|
|
|
|
|
|
function MsgSortByDate()
|
|
|
|
{
|
2001-03-17 01:59:34 +00:00
|
|
|
MsgSortThreadPane(nsMsgViewSortType.byDate);
|
2000-06-21 06:34:59 +00:00
|
|
|
}
|
|
|
|
|
2001-04-11 23:03:04 +00:00
|
|
|
function MsgSortBySenderOrRecipient()
|
2000-06-21 06:34:59 +00:00
|
|
|
{
|
2001-04-11 23:03:04 +00:00
|
|
|
if (IsSpecialFolderSelected(MSG_FOLDER_FLAG_SENTMAIL | MSG_FOLDER_FLAG_DRAFTS | MSG_FOLDER_FLAG_QUEUE)) {
|
|
|
|
MsgSortThreadPane(nsMsgViewSortType.byRecipient);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
MsgSortThreadPane(nsMsgViewSortType.byAuthor);
|
|
|
|
}
|
2000-06-21 06:34:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function MsgSortByStatus()
|
|
|
|
{
|
2001-03-17 01:59:34 +00:00
|
|
|
MsgSortThreadPane(nsMsgViewSortType.byStatus);
|
2000-06-21 06:34:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function MsgSortBySubject()
|
|
|
|
{
|
2001-03-17 01:59:34 +00:00
|
|
|
MsgSortThreadPane(nsMsgViewSortType.bySubject);
|
2000-06-21 06:34:59 +00:00
|
|
|
}
|
|
|
|
|
2001-05-11 01:20:54 +00:00
|
|
|
function MsgSortByLocation()
|
|
|
|
{
|
|
|
|
MsgSortThreadPane(nsMsgViewSortType.byLocation);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-21 06:34:59 +00:00
|
|
|
function MsgSortByFlagged()
|
|
|
|
{
|
2001-03-17 01:59:34 +00:00
|
|
|
MsgSortThreadPane(nsMsgViewSortType.byFlagged);
|
2000-06-21 06:34:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function MsgSortByPriority()
|
|
|
|
{
|
2001-03-17 01:59:34 +00:00
|
|
|
MsgSortThreadPane(nsMsgViewSortType.byPriority);
|
2000-06-21 06:34:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function MsgSortBySize()
|
|
|
|
{
|
2001-03-17 01:59:34 +00:00
|
|
|
MsgSortThreadPane(nsMsgViewSortType.bySize);
|
2000-06-21 06:34:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function MsgSortByUnread()
|
|
|
|
{
|
2001-03-17 01:59:34 +00:00
|
|
|
MsgSortThreadPane(nsMsgViewSortType.byUnread);
|
2000-06-21 06:34:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function MsgSortByOrderReceived()
|
|
|
|
{
|
2001-03-17 01:59:34 +00:00
|
|
|
MsgSortThreadPane(nsMsgViewSortType.byId);
|
2000-06-21 06:34:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function MsgSortByTotal()
|
|
|
|
{
|
2001-03-24 01:12:33 +00:00
|
|
|
dump("XXX fix MsgSortByTotal\n");
|
2001-03-17 01:59:34 +00:00
|
|
|
//MsgSortThreadPane(nsMsgViewSortType.byTotal);
|
2000-06-21 06:34:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function MsgSortByThread()
|
|
|
|
{
|
2001-03-17 01:59:34 +00:00
|
|
|
MsgSortThreadPane(nsMsgViewSortType.byThread);
|
2000-06-21 06:34:59 +00:00
|
|
|
}
|
|
|
|
|
2001-03-17 01:59:34 +00:00
|
|
|
function MsgSortThreadPane(sortType)
|
2000-06-21 06:34:59 +00:00
|
|
|
{
|
2001-04-03 06:13:38 +00:00
|
|
|
var dbview = GetDBView();
|
|
|
|
dbview.sort(sortType, nsMsgViewSortOrder.ascending);
|
|
|
|
UpdateSortIndicators(sortType, nsMsgViewSortOrder.ascending);
|
2000-06-30 06:02:30 +00:00
|
|
|
}
|
|
|
|
|
2001-04-03 06:13:38 +00:00
|
|
|
function MsgReverseSortThreadPane()
|
|
|
|
{
|
|
|
|
var dbview = GetDBView();
|
|
|
|
if (dbview.sortOrder == nsMsgViewSortOrder.ascending) {
|
|
|
|
MsgSortDescending();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
MsgSortAscending();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-03-23 04:39:54 +00:00
|
|
|
function MsgSortAscending()
|
|
|
|
{
|
2001-04-03 06:13:38 +00:00
|
|
|
var dbview = GetDBView();
|
|
|
|
dbview.sort(dbview.sortType, nsMsgViewSortOrder.ascending);
|
|
|
|
UpdateSortIndicators(dbview.sortType, nsMsgViewSortOrder.ascending);
|
2001-03-23 04:39:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function MsgSortDescending()
|
|
|
|
{
|
2001-04-03 06:13:38 +00:00
|
|
|
var dbview = GetDBView();
|
|
|
|
dbview.sort(dbview.sortType, nsMsgViewSortOrder.descending);
|
|
|
|
UpdateSortIndicators(dbview.sortType, nsMsgViewSortOrder.descending);
|
|
|
|
}
|
|
|
|
|
|
|
|
function UpdateSortIndicators(sortType, sortOrder)
|
|
|
|
{
|
|
|
|
var colID = ConvertSortTypeToColumnID(sortType);
|
|
|
|
var sortedColumn;
|
|
|
|
|
|
|
|
// set the sort indicator on the column we are sorted by
|
|
|
|
if (colID) {
|
|
|
|
sortedColumn = document.getElementById(colID);
|
|
|
|
if (sortedColumn) {
|
|
|
|
if (sortOrder == nsMsgViewSortOrder.ascending) {
|
|
|
|
sortedColumn.setAttribute("sortDirection","ascending");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sortedColumn.setAttribute("sortDirection","descending");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// remove the sort indicator from all the columns
|
|
|
|
// except the one we are sorted by
|
|
|
|
var currCol = GetThreadOutliner().firstChild;
|
|
|
|
while (currCol) {
|
|
|
|
while (currCol && currCol.localName != "outlinercol")
|
|
|
|
currCol = currCol.nextSibling;
|
|
|
|
if (currCol && (currCol != sortedColumn)) {
|
|
|
|
currCol.removeAttribute("sortDirection");
|
|
|
|
}
|
|
|
|
if (currCol)
|
|
|
|
currCol = currCol.nextSibling;
|
|
|
|
}
|
2001-03-23 04:39:54 +00:00
|
|
|
}
|
|
|
|
|
2001-03-17 01:59:34 +00:00
|
|
|
function IsSpecialFolderSelected(flags)
|
2000-06-30 06:02:30 +00:00
|
|
|
{
|
2001-04-11 23:03:04 +00:00
|
|
|
var selectedFolder = GetThreadPaneFolder();
|
|
|
|
if (!selectedFolder || ((selectedFolder.flags & flags) == 0)) {
|
2001-03-17 01:59:34 +00:00
|
|
|
return false;
|
2001-01-30 22:02:27 +00:00
|
|
|
}
|
2001-03-17 01:59:34 +00:00
|
|
|
else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2001-01-30 22:02:27 +00:00
|
|
|
|
2001-03-17 01:59:34 +00:00
|
|
|
function GetThreadOutliner()
|
|
|
|
{
|
|
|
|
if (gThreadOutliner) return gThreadOutliner;
|
|
|
|
gThreadOutliner = document.getElementById('threadOutliner');
|
|
|
|
return gThreadOutliner;
|
|
|
|
}
|
2001-01-30 22:02:27 +00:00
|
|
|
|
2001-03-17 01:59:34 +00:00
|
|
|
function GetThreadPaneFolder()
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
return gDBView.msgFolder;
|
|
|
|
}
|
|
|
|
catch (ex) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2001-01-30 22:02:27 +00:00
|
|
|
|
2001-03-17 01:59:34 +00:00
|
|
|
function EnsureRowInThreadOutlinerIsVisible(index)
|
|
|
|
{
|
|
|
|
var outliner = GetThreadOutliner();
|
|
|
|
outliner.boxObject.QueryInterface(Components.interfaces.nsIOutlinerBoxObject).ensureRowIsVisible(index);
|
2000-06-30 06:02:30 +00:00
|
|
|
}
|