releases-comm-central/suite/mailnews/widgetglue.js

275 строки
9.0 KiB
JavaScript

/* -*- Mode: javascript; tab-width: 2; 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 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-1999
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Jan Varga (varga@ku.sk)
* Håkan Waara (hwaara@chello.se)
*
* 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 ***** */
/*
* widget-specific wrapper glue. There should be one function for every
* widget/menu item, which gets some context (like the current selection)
* and then calls a function/command in commandglue
*/
//The eventual goal is for this file to go away and its contents to be brought into
//mailWindowOverlay.js. This is currently being done.
Components.utils.import("resource://app/modules/MailUtils.js");
//NOTE: gMessengerBundle must be defined and set or this Overlay won't work
function ConvertDOMListToResourceArray(nodeList)
{
var result = Components.classes["@mozilla.org/supports-array;1"].createInstance(Components.interfaces.nsISupportsArray);
for (var i=0; i<nodeList.length; i++) {
result.AppendElement(nodeList[i].resource);
}
return result;
}
function GetSelectedFolderURI()
{
let folders = GetSelectedMsgFolders();
return folders.length == 1 ? folders[0].URI : null;
}
function MsgRenameFolder()
{
let folder = GetSelectedMsgFolders()[0];
let dialog = window.openDialog(
"chrome://messenger/content/renameFolderDialog.xul",
"",
"chrome,modal,centerscreen",
{preselectedURI: folder.URI,
okCallback: RenameFolder, name: folder.prettyName});
}
function RenameFolder(name,uri)
{
var folderTree = GetFolderTree();
if (folderTree)
{
if (uri && (uri != "") && name && (name != ""))
{
var selectedFolder = GetMsgFolderFromUri(uri);
if (gDBView)
gCurrentlyDisplayedMessage = gDBView.currentlyDisplayedMessage;
ClearThreadPane();
ClearMessagePane();
folderTree.view.selection.clearSelection();
try
{
selectedFolder.rename(name, msgWindow);
}
catch(e)
{
SelectFolder(selectedFolder.URI); //restore selection
throw(e); // so that the dialog does not automatically close
dump ("Exception : RenameFolder \n");
}
}
else
{
dump("no name or nothing selected\n");
}
}
else
{
dump("no folder tree\n");
}
}
function MsgEmptyTrash()
{
let folders = GetSelectedMsgFolders();
if (folders.length != 1 || !confirmToProceed("emptyTrash"))
return;
folders[0].emptyTrash(msgWindow, null);
}
function MsgCompactFolder(aCompactAccount)
{
// Get the selected folders.
var selectedFolders = GetSelectedMsgFolders();
if (selectedFolders.length == 1)
{
var selectedFolder = selectedFolders[0];
var isImapFolder = selectedFolder.server.type == "imap";
if (!isImapFolder)
{
if (selectedFolder.expungedBytes > 0)
{
if (gDBView)
{
gCurrentlyDisplayedMessage = gDBView.currentlyDisplayedMessage;
if (gDBView.msgFolder == selectedFolder || aCompactAccount)
{
ClearThreadPaneSelection();
ClearThreadPane();
ClearMessagePane();
}
}
}
else
{
if (!aCompactAccount) // you have one local folder with no room to compact
return;
}
}
if (aCompactAccount)
selectedFolder.compactAll(null, msgWindow, isImapFolder || selectedFolder.server.type == "nntp");
else
selectedFolder.compact(null, msgWindow);
}
}
function openNewVirtualFolderDialogWithArgs(defaultViewName, aSearchTerms)
{
var folder = GetFirstSelectedMsgFolder();
let name = folder.prettyName + "-" + defaultViewName;
var dialog = window.openDialog("chrome://messenger/content/virtualFolderProperties.xul", "",
"chrome,modal,centerscreen",
{folder:folder,
searchTerms:aSearchTerms,
newFolderName:name});
}
function MsgVirtualFolderProperties(aEditExistingVFolder)
{
var preselectedFolder = GetFirstSelectedMsgFolder();
var dialog = window.openDialog("chrome://messenger/content/virtualFolderProperties.xul", "",
"chrome,modal,centerscreen",
{folder:preselectedFolder,
editExistingFolder: aEditExistingVFolder,
onOKCallback:onEditVirtualFolderPropertiesCallback,
msgWindow:msgWindow});
}
function onEditVirtualFolderPropertiesCallback(aVirtualFolderURI)
{
// we need to reload the folder if it is the currently loaded folder...
if (gMsgFolderSelected && aVirtualFolderURI == gMsgFolderSelected.URI)
{
gMsgFolderSelected = null; // force the folder pane to reload the virtual folder
FolderPaneSelectionChange();
}
}
function MsgFolderProperties()
{
let msgFolder = GetMsgFolderFromUri(GetSelectedFolderURI(), true);
// if a server is selected, view settings for that account
if (msgFolder.isServer) {
MsgAccountManager(null);
return;
}
if (msgFolder.flags & Components.interfaces.nsMsgFolderFlags.Virtual)
{
// virtual folders get their own property dialog that contains all of the
// search information related to the virtual folder.
MsgVirtualFolderProperties(true);
return;
}
var windowTitle = gMessengerBundle.getString("folderProperties");
var dialog = window.openDialog(
"chrome://messenger/content/folderProps.xul",
"",
"chrome,modal,centerscreen",
{folder: msgFolder, serverType: msgFolder.server.type,
msgWindow: msgWindow, title: windowTitle,
okCallback: FolderProperties, tabID: "", tabIndex: 0,
name: msgFolder.prettyName,
rebuildSummaryCallback: RebuildSummaryFile});
}
function RebuildSummaryFile(msgFolder)
{
if (msgFolder.locked)
{
msgFolder.throwAlertMsg("operationFailedFolderBusy", msgWindow);
return;
}
var msgDB = msgFolder.msgDatabase;
msgDB.summaryValid = false;
try {
msgFolder.closeAndBackupFolderDB("");
}
catch(e) {
// In a failure, proceed anyway since we're dealing with problems
msgFolder.ForceDBClosed();
}
// these two lines will cause the thread pane to get reloaded
// when the download/reparse is finished. Only do this
// if the selected folder is loaded (i.e., not thru the
// context menu on a non-loaded folder).
if (msgFolder == GetLoadedMsgFolder())
{
gRerootOnFolderLoad = true;
gCurrentFolderToReroot = msgFolder.URI;
}
msgFolder.updateFolder(msgWindow);
}
function FolderProperties(name, oldName, uri)
{
if (name != oldName)
RenameFolder(name, uri);
}
// Given a URI we would like to return corresponding message folder here.
// An additonal input param which specifies whether or not to check folder
// attributes (like if there exists a parent or is it a server) is also passed
// to this routine. Qualifying against those checks would return an existing
// folder. Callers who don't want to check those attributes will specify the
// same and then this routine will simply return a msgfolder. This scenario
// applies to a new imap account creation where special folders are created
// on demand and hence needs to prior check of existence.
function GetMsgFolderFromUri(uri, checkFolderAttributes)
{
return MailUtils.getFolderForURI(uri, checkFolderAttributes);
}